diff --git a/aurorastation.dme b/aurorastation.dme index 05ca6618388..aa75cd311d7 100644 --- a/aurorastation.dme +++ b/aurorastation.dme @@ -1430,6 +1430,7 @@ #include "code\game\objects\structures\crates_lockers\closets\secure\security.dm" #include "code\game\objects\structures\crates_lockers\closets\secure\service.dm" #include "code\game\objects\structures\crates_lockers\crates\gear_loadout.dm" +#include "code\game\objects\structures\fluff\evidenceshelf.dm" #include "code\game\objects\structures\fluff\engineering\maintenance.dm" #include "code\game\objects\structures\gore\core.dm" #include "code\game\objects\structures\gore\nest.dm" @@ -2228,6 +2229,7 @@ #include "code\modules\cooking\plates.dm" #include "code\modules\cooking\trays.dm" #include "code\modules\cooking\machinery\commissary.dm" +#include "code\modules\cooking\machinery\evidence.dm" #include "code\modules\cooking\machinery\foodcart.dm" #include "code\modules\cooking\machinery\gibber.dm" #include "code\modules\cooking\machinery\icecream.dm" diff --git a/code/game/objects/structures/fluff/evidenceshelf.dm b/code/game/objects/structures/fluff/evidenceshelf.dm new file mode 100644 index 00000000000..4403b1cd0ad --- /dev/null +++ b/code/game/objects/structures/fluff/evidenceshelf.dm @@ -0,0 +1,22 @@ +/obj/structure/fluff/evidenceshelf + name = "evidence shelf" + desc = "A shelf filled with meticulously labeled cardboard boxes. It's fastened to the floor by sturdy bolts." + icon = 'icons/obj/fluff/evidenceshelf.dmi' + icon_state = "evidence_shelf" + density = TRUE + anchored = TRUE + opacity = TRUE + climbable = TRUE + material = DEFAULT_WALL_MATERIAL + +/obj/structure/fluff/evidenceshelf/attackby(obj/item/attacking_item, mob/user) + + if(attacking_item.tool_behaviour == TOOL_WRENCH) //hopefully unanchors the shelf + anchored = !anchored + var/obj/structure/fluff/evidenceshelf/E + for(E in src.loc) + if(E != src && E.anchored) //only one shelf per tile please + to_chat(user, "There is already a shelf secured here!") + return + attacking_item.play_tool_sound(get_turf(src), 50) + visible_message(SPAN_NOTICE("\The [src] has been [anchored ? "secured in place" : "unsecured"] by \the [user].")) diff --git a/code/modules/cooking/machinery/evidence.dm b/code/modules/cooking/machinery/evidence.dm new file mode 100644 index 00000000000..c30d55f2e39 --- /dev/null +++ b/code/modules/cooking/machinery/evidence.dm @@ -0,0 +1,17 @@ +/obj/structure/machinery/smartfridge/tradeshelf/evidence + name = "evidence shelf" + desc = "A shelf for evidence and associated items." + icon_state = "evidence_shelf" + contents_path = "-evidencebox" + accepted_items = list(/obj/item/storage/box, + /obj/item/folder, + /obj/item/clipboard, + /obj/item/journal, + /obj/item/smallDelivery + ) + display_tiers = 6 + display_tier_amt = 2 + has_emissive = FALSE + visible_takeout = TRUE + initial_contents = list(/obj/item/storage/box/large = 6, + /obj/item/storage/box = 6) diff --git a/html/changelogs/D3SecurityGlowup-ASmallCuteCat.yml b/html/changelogs/D3SecurityGlowup-ASmallCuteCat.yml new file mode 100644 index 00000000000..463a7bbc735 --- /dev/null +++ b/html/changelogs/D3SecurityGlowup-ASmallCuteCat.yml @@ -0,0 +1,63 @@ +################################ +# 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: ASmallCuteCat + +# 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: + - qol: "The Crime Kits now spawn on a rack in the Investigators' Office." + - qol: "There are now two interrogation rooms." + - qol: "Reorganizes Evidence Storage - morgue is now separate, there's a front desk to leave evidence for Investigators, and there's individually labeled lockers to store contraband." + - qol: "Expands Forensics. Adds a whiteboard, neatens the desks by moving all of the spare equipment to shelving, adds another coatrack." + - qol: "Expands the Autopsy Lab. Literally. The only difference is that it's a little bit bigger than before." + - imageadd: "Adds a new sprite for the Evidence Shelf, edited from the original Retail Shelf sprite." diff --git a/icons/obj/fluff/evidenceshelf.dmi b/icons/obj/fluff/evidenceshelf.dmi new file mode 100644 index 00000000000..2f3814d2c1d Binary files /dev/null and b/icons/obj/fluff/evidenceshelf.dmi differ diff --git a/icons/obj/machinery/smartfridge.dmi b/icons/obj/machinery/smartfridge.dmi index 55cc13591db..39c91d45b88 100644 Binary files a/icons/obj/machinery/smartfridge.dmi and b/icons/obj/machinery/smartfridge.dmi differ diff --git a/maps/sccv_horizon/areas/horizon_areas_security.dm b/maps/sccv_horizon/areas/horizon_areas_security.dm index 79093b76b3e..c7f2ca5bdd4 100644 --- a/maps/sccv_horizon/areas/horizon_areas_security.dm +++ b/maps/sccv_horizon/areas/horizon_areas_security.dm @@ -94,8 +94,16 @@ horizon_deck = 3 lightswitch = FALSE -/area/horizon/security/interrogation - name = "Interrogation" +/area/horizon/security/interrogation_1 + name = "Interrogation Room 1" + icon_state = "investigations" + ambience = list(AMBIENCE_HIGHSEC, AMBIENCE_FOREBODING) + sound_environment = SOUND_AREA_SMALL_ENCLOSED + horizon_deck = 3 + lightswitch = FALSE + +/area/horizon/security/interrogation_2 + name = "Interrogation Room 2" icon_state = "investigations" ambience = list(AMBIENCE_HIGHSEC, AMBIENCE_FOREBODING) sound_environment = SOUND_AREA_SMALL_ENCLOSED diff --git a/maps/sccv_horizon/sccv_horizon.dmm b/maps/sccv_horizon/sccv_horizon.dmm index 6a3522eee0e..0ca35dd5dfe 100644 --- a/maps/sccv_horizon/sccv_horizon.dmm +++ b/maps/sccv_horizon/sccv_horizon.dmm @@ -239,15 +239,6 @@ }, /turf/unsimulated/floor/wood, /area/centcom/holding) -"abK" = ( -/obj/structure/bed/stool/chair/sofa/pew/left{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/horizon/service/chapel/main) "abO" = ( /obj/effect/floor_decal/corner/mauve{ dir = 5 @@ -398,6 +389,16 @@ /obj/structure/cable/green, /turf/simulated/floor, /area/horizon/command/bridge/aibunker) +"acz" = ( +/obj/structure/machinery/papershredder, +/obj/effect/floor_decal/corner/beige/diagonal, +/obj/structure/machinery/light_switch{ + pixel_x = -3; + pixel_y = -19 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) "acE" = ( /obj/structure/disposalpipe/segment, /obj/structure/lattice/catwalk/indoor/grate, @@ -407,6 +408,27 @@ /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/horizon/hallway/primary/deck_1/central) +"acG" = ( +/obj/structure/machinery/door/airlock/security{ + name = "Interrogation Monitoring"; + req_access = list(1); + dir = 4 + }, +/obj/structure/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/interrogation/monitoring) "acO" = ( /obj/item/storage/belt/security/tactical, /obj/item/storage/belt/security/tactical, @@ -592,18 +614,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/reception) -"adT" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/machinery/light, -/obj/structure/closet/secure_closet/evidence{ - name = "evidence storage locker A" - }, -/obj/structure/machinery/alarm/east, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/evidence_storage) "adV" = ( /obj/effect/floor_decal/industrial/outline/operations, /obj/structure/table/rack, @@ -705,6 +715,13 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard/far) +"aeh" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "aek" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 @@ -724,14 +741,6 @@ /obj/structure/grille, /turf/simulated/floor/tiled/dark/full/airless, /area/horizon/command/bridge/controlroom) -"aem" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/office) "aes" = ( /obj/item/tank/oxygen, /obj/item/clothing/shoes/magboots, @@ -754,31 +763,6 @@ /obj/effect/floor_decal/industrial/warning/cee, /turf/simulated/floor/reinforced, /area/horizon/shuttle/canary) -"aey" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow, -/obj/structure/machinery/door/airlock/security{ - dir = 4; - name = "Investigators' Office"; - req_access = list(4) - }, -/turf/simulated/floor/tiled/full, -/area/horizon/security/investigators_office) "aeA" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -1042,14 +1026,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/bluespace_drive) -"afG" = ( -/obj/structure/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/spline/fancy{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "afI" = ( /obj/structure/machinery/door/airlock/highsecurity{ dir = 1; @@ -1141,6 +1117,15 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/engineering/atmos/propulsion) +"agb" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/machinery/smartfridge/tradeshelf/evidence{ + name = "Evidence Shelf A" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "agc" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -1275,20 +1260,6 @@ /obj/structure/machinery/alarm/north, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos/propulsion/starboard) -"agx" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/door/window{ - dir = 4 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "agy" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 10 @@ -1408,6 +1379,10 @@ }, /turf/unsimulated/floor, /area/centcom/legion) +"ahg" = ( +/obj/effect/floor_decal/corner/brown, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "ahk" = ( /obj/structure/machinery/door/airlock/centcom{ dir = 1; @@ -1659,28 +1634,6 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) -"aiI" = ( -/obj/effect/floor_decal/corner/beige/full{ - dir = 4 - }, -/obj/structure/machinery/light, -/obj/random/pottedplant, -/obj/structure/machinery/camera/network/security{ - c_tag = "Security - Forensic Laboratory Port"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/security/forensic_laboratory) -"aiK" = ( -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/handcuffs, -/obj/item/flash, -/obj/item/flash, -/obj/item/flash, -/obj/item/flash, -/obj/item/storage/box/tactical/teargas, -/turf/unsimulated/floor, -/area/centcom/legion) "aiL" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -1753,6 +1706,18 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/atmos) +"ajd" = ( +/obj/structure/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/obj/structure/machinery/door/airlock/maintenance{ + name = "Chaplain Office's Maintenance"; + req_access = list(22) + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/chapel/office) "ajf" = ( /turf/simulated/floor/wood, /area/horizon/repoffice/consular_two) @@ -1813,21 +1778,6 @@ }, /turf/unsimulated/wall/darkshuttlewall, /area/centcom/bar) -"ajM" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/railing/mapped, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/lattice/catwalk/indoor/grate/light, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "ajQ" = ( /obj/effect/floor_decal/industrial/warning{ dir = 9 @@ -1996,15 +1946,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/command/bridge/selfdestruct) -"akz" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/maintenance/deck_3/security/port) "akB" = ( /obj/structure/machinery/atmospherics/pipe/manifold/hidden{ dir = 8 @@ -2219,6 +2160,23 @@ }, /turf/simulated/floor/holofloor/carpet/rubber, /area/horizon/holodeck/source_basketball) +"aml" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/machinery/light_switch/east{ + pixel_y = -23; + dir = 2; + pixel_x = 0 + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/office) "amm" = ( /obj/structure/table/reinforced/steel, /obj/structure/machinery/door/window/brigdoor/northright{ @@ -2520,21 +2478,6 @@ icon_state = "white" }, /area/tdome/tdomeobserve) -"aoj" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/interrogation) "aok" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2593,24 +2536,6 @@ /obj/structure/machinery/suit_storage_unit/standard_unit, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"aow" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/central) "aoy" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -2726,6 +2651,15 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/research) +"apP" = ( +/obj/structure/railing/mapped, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/lattice/catwalk/indoor/grate/light, +/turf/simulated/floor/plating, +/area/horizon/operations/machinist) "aqb" = ( /obj/structure/table/steel, /obj/item/storage/toolbox/electrical{ @@ -2775,6 +2709,24 @@ }, /turf/unsimulated/floor, /area/centcom/distress_prep) +"aql" = ( +/obj/structure/closet/secure_closet/evidence{ + name = "closet" + }, +/obj/item/camera_film, +/obj/item/camera{ + desc = "A one use - polaroid camera. 30 photos left."; + name = "detectives camera"; + pictures_left = 30 + }, +/obj/item/storage/slide_projector, +/obj/item/taperecorder{ + pixel_y = 5 + }, +/obj/item/portable_whiteboard, +/obj/structure/machinery/newscaster/east, +/turf/simulated/floor/lino, +/area/horizon/security/investigators_office) "aqp" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -3194,16 +3146,6 @@ }, /turf/simulated/floor/carpet/rubber, /area/horizon/crew/chargebay) -"atA" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/main) "atC" = ( /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, @@ -3352,6 +3294,12 @@ }, /turf/simulated/floor/wood, /area/merchant_station) +"aug" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/security/investigations_hallway) "auh" = ( /obj/structure/machinery/power/terminal{ dir = 1 @@ -3383,15 +3331,6 @@ }, /turf/simulated/floor, /area/horizon/maintenance/deck_3/aft/port) -"aux" = ( -/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/interrogation/monitoring) "auC" = ( /obj/structure/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 @@ -3853,16 +3792,6 @@ }, /turf/unsimulated/floor/wood, /area/antag/raider) -"axj" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/structure/table/steel, -/obj/structure/machinery/light_switch/south{ - pixel_x = 6 - }, -/turf/simulated/floor/tiled, -/area/horizon/security/custodial) "axm" = ( /obj/structure/sign/emergency/evacuation{ dir = 8 @@ -3915,9 +3844,6 @@ /obj/structure/machinery/alarm/south, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/elevator) -"axw" = ( -/turf/simulated/wall, -/area/horizon/security/interrogation) "axx" = ( /obj/structure/machinery/alarm/north, /obj/random/dirt_75, @@ -3951,9 +3877,6 @@ /obj/effect/decal/fake_object/light_source/invisible, /turf/unsimulated/floor, /area/antag/ninja) -"axZ" = ( -/turf/simulated/wall/r_wall, -/area/horizon/security/custodial) "ayb" = ( /obj/structure/foamedmetal, /obj/structure/shuttle_part/scc_space_ship{ @@ -3981,19 +3904,6 @@ /obj/structure/machinery/firealarm/south, /turf/simulated/floor/tiled/dark/full, /area/horizon/stairwell/bridge/deck_2) -"ayh" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/security/forensic_laboratory) "ayi" = ( /obj/structure/cart/storage/parcelcart, /obj/effect/floor_decal/corner/brown{ @@ -4001,6 +3911,19 @@ }, /turf/simulated/floor/tiled/gunmetal/full, /area/horizon/operations/warehouse) +"ayj" = ( +/obj/effect/floor_decal/corner/dark_blue/full, +/obj/structure/table/steel, +/obj/item/hand_labeler{ + pixel_x = -7 + }, +/obj/item/storage/box/evidence{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/item/stack/material/cardboard/full, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "ayn" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -4235,23 +4158,6 @@ }, /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) -"azQ" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/industrial/outline/medical, -/obj/structure/closet/walllocker/medical/firstaid{ - pixel_y = -32 - }, -/obj/structure/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/maintenance/deck_3/security/port) "azT" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -4273,6 +4179,18 @@ "azU" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/medical/smoking) +"aAc" = ( +/obj/structure/machinery/alarm/west{ + dir = 1; + pixel_x = 0; + pixel_y = 20 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/light, +/turf/simulated/floor/plating, +/area/horizon/operations/machinist) "aAe" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -4327,15 +4245,6 @@ /obj/effect/floor_decal/industrial/hatch_door/yellow, /turf/simulated/floor/tiled/full, /area/horizon/hallway/primary/deck_2/starboard) -"aAs" = ( -/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) "aAu" = ( /obj/structure/machinery/light/small, /obj/random/maintenance_junk_or_loot, @@ -4344,6 +4253,18 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/port/near) +"aAz" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint2) "aAD" = ( /obj/structure/machinery/door/firedoor{ req_one_access = list(24,11,67,73); @@ -4449,6 +4370,10 @@ }, /turf/unsimulated/floor/wood, /area/centcom/holding) +"aBv" = ( +/obj/structure/table/wood, +/turf/simulated/floor/carpet/art, +/area/horizon/crew/lounge) "aBx" = ( /obj/structure/lattice/catwalk/indoor/grate/damaged{ color = "#4c535b" @@ -4663,6 +4588,17 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/horizon/engineering/reactor/indra/mainchamber) +"aCF" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 8; + name = "Machinist Workshop"; + sortType = "Machinist Workshop" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/starboard) "aCG" = ( /obj/structure/machinery/firealarm/east, /obj/structure/table/reinforced/glass, @@ -4839,6 +4775,22 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/rnd/chemistry) +"aEo" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/security/port) "aEp" = ( /obj/effect/floor_decal/industrial/warning, /obj/random/dirt_75, @@ -4887,25 +4839,6 @@ }, /turf/simulated/floor/exoplanet/snow, /area/centcom/shared_dream) -"aEG" = ( -/obj/effect/floor_decal/corner/dark_blue/full, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 3 - }, -/obj/item/pen{ - pixel_x = -7; - pixel_y = -1 - }, -/obj/structure/table/steel, -/obj/structure/machinery/button/switch/windowtint{ - id = "Interro"; - pixel_x = 8; - dir = 9; - pixel_y = -1 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/interrogation/monitoring) "aEL" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -5117,6 +5050,25 @@ }, /turf/space, /area/horizon/exterior) +"aGB" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/structure/machinery/light/floor{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) +"aGE" = ( +/obj/structure/bed/stool/chair/office/dark, +/obj/effect/landmark/start{ + name = "Machinist" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "aGF" = ( /obj/structure/machinery/light{ dir = 1 @@ -5178,6 +5130,14 @@ /obj/structure/bed/stool/chair/office/dark, /turf/simulated/floor/wood, /area/horizon/maintenance/deck_2/wing/starboard) +"aGV" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/spline/fancy{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/operations/machinist) "aGY" = ( /obj/effect/landmark/entry_point/starboard{ name = "starboard, escape pods" @@ -5299,19 +5259,6 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor, /area/centcom/legion) -"aHw" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/security/forensic_laboratory) "aHz" = ( /obj/structure/foamedmetal, /obj/structure/shuttle_part/scc_space_ship{ @@ -5488,29 +5435,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_1/operations/starboard) -"aID" = ( -/obj/structure/machinery/power/apc/low/west, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/engineering/atmos/storage_maintenance) -"aIM" = ( -/obj/structure/bed/stool/chair, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/structure/machinery/computer/security/telescreen{ - name = "Interrogation Monitor"; - console_networks = list("Interrogation"); - desc = "A camera monitor that connects to the interrogation room."; - pixel_y = -30 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/interrogation/monitoring) "aIO" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -5621,18 +5545,6 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/operations/lobby) -"aJq" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/starboard) "aJs" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/spline/plain{ @@ -5750,6 +5662,14 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/command/bridge/meeting_room) +"aKe" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/structure/machinery/papershredder, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/horizon/security/investigations_hallway) "aKj" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/floor_decal/industrial/outline/grey, @@ -5896,27 +5816,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/rnd/xenoarch/hallway/hangar) -"aKN" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/machinery/light/floor{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/horizon/security/investigations_hallway) "aKP" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -6028,13 +5927,16 @@ /obj/structure/table/steel, /turf/unsimulated/floor/plating, /area/centcom/specops) -"aLB" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 +"aLF" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 }, -/obj/item/radio/intercom/interrogation/broadcasting/north, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/interrogation) +/obj/structure/machinery/power/apc/west, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled, +/area/horizon/security/interrogation/monitoring) "aLN" = ( /obj/effect/floor_decal/industrial/outline/service, /obj/structure/table/rack, @@ -6135,6 +6037,16 @@ /obj/random/dirt_75, /turf/simulated/floor/tiled/gunmetal/full, /area/horizon/operations/ship_supply_warehouse) +"aMu" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) "aMw" = ( /obj/structure/machinery/computer/ship/engines/terminal{ dir = 4 @@ -6361,6 +6273,14 @@ /obj/structure/platform, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_2/wing/port/far) +"aOb" = ( +/obj/structure/morgue{ + dir = 2; + name = "investigations morgue B" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/evidence_storage) "aOd" = ( /obj/structure/flora/tree/jungle/small/patience, /turf/simulated/floor/grass/no_edge, @@ -6451,26 +6371,16 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/command/bridge/aibunker) -"aOB" = ( -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +"aOw" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 }, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/obj/structure/machinery/power/apc/east, +/obj/structure/cable/green{ + icon_state = "0-8" }, -/obj/structure/machinery/camera{ - c_tag = "Operations - Machinist Surgical Theatre"; - network = list("Operations") - }, -/obj/structure/railing/mapped, -/obj/structure/machinery/firealarm/west{ - dir = 1; - pixel_x = 0; - pixel_y = 26 - }, -/obj/structure/lattice/catwalk/indoor/grate/light, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) +/turf/simulated/floor/tiled, +/area/horizon/security/investigations_hallway) "aOI" = ( /turf/simulated/wall/r_wall, /area/horizon/maintenance/substation/engineering) @@ -6700,20 +6610,6 @@ /obj/structure/machinery/atmospherics/pipe/simple/hidden/aux, /turf/simulated/floor/redgrid, /area/horizon/command/bridge/selfdestruct) -"aPK" = ( -/obj/structure/table/rack, -/obj/item/melee/energy/sword/knife{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/material/knife/bayonet{ - pixel_x = 3; - pixel_y = -2 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/legion/hangar5) "aPM" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 9 @@ -6819,6 +6715,12 @@ "aQx" = ( /turf/simulated/wall/r_wall, /area/horizon/tcommsat/chamber) +"aQy" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/corner/beige/diagonal, +/obj/item/mass_spectrometer/adv, +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) "aQC" = ( /obj/structure/tank_wall/hydrogen{ icon_state = "h15" @@ -7352,46 +7254,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/hallway/primary/deck_3/starboard/docks) -"aUV" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 9 - }, -/obj/structure/table/glass, -/obj/structure/machinery/requests_console/west{ - department = "Forensics Lab"; - departmentType = 5 - }, -/obj/item/folder/sec{ - pixel_x = 7; - pixel_y = 8 - }, -/obj/item/folder/sec{ - pixel_x = 7; - pixel_y = 8 - }, -/obj/item/folder/sec{ - pixel_x = 7; - pixel_y = 8 - }, -/obj/item/pen/red, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/folder/sec{ - pixel_x = 7; - pixel_y = 8 - }, -/obj/item/pen{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/paper/stickynotes/pad/random{ - pixel_x = 10; - pixel_y = -3 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/security/forensic_laboratory) "aUW" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -7446,15 +7308,6 @@ }, /turf/simulated/open, /area/horizon/hallway/primary/deck_3/central) -"aVt" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/office) "aVu" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 7 @@ -7562,6 +7415,16 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/port) +"aWi" = ( +/obj/structure/machinery/mecha_part_fabricator{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist) "aWv" = ( /obj/structure/shuttle/engine/propulsion{ name = "spaceship engine"; @@ -7711,6 +7574,15 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/hallway/primary/deck_1/central) +"aXq" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/structure/machinery/smartfridge/tradeshelf/evidence{ + name = "Evidence Shelf E" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "aXs" = ( /obj/effect/floor_decal/corner/lime{ dir = 5 @@ -7877,13 +7749,6 @@ /obj/structure/railing/mapped, /turf/simulated/floor/tiled/dark, /area/horizon/service/custodial) -"aYA" = ( -/obj/structure/bed/stool/chair/wood, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/horizon/service/chapel/main) "aYF" = ( /turf/simulated/wall/shuttle/unique/tcfl{ icon_state = "8,6" @@ -7914,6 +7779,14 @@ "aYK" = ( /turf/simulated/wall/r_wall, /area/horizon/stairwell/engineering/deck_2) +"aYM" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/office) "aYN" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -7945,6 +7818,14 @@ icon_state = "white" }, /area/centcom/holding) +"aYT" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "aYY" = ( /obj/item/material/shard{ icon_state = "small" @@ -7982,6 +7863,20 @@ }, /turf/simulated/floor, /area/horizon/command/bridge/cciaroom) +"aZg" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/starboard) "aZi" = ( /obj/structure/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ dir = 8 @@ -8143,15 +8038,6 @@ /obj/structure/flora/grass/jungle, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) -"bas" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/evidence_storage) "baC" = ( /obj/structure/bed/stool/bar/padded/red{ dir = 4 @@ -8223,6 +8109,15 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard/far) +"baY" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/bed/stool/chair/sofa/right/beige{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/rnd/hallway) "baZ" = ( /obj/structure/cable{ icon_state = "1-2" @@ -8317,6 +8212,15 @@ icon_state = "dark_preview" }, /area/centcom/specops) +"bbD" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/security/investigations_hallway) "bbG" = ( /obj/structure/table/standard, /obj/item/storage/box/drinkingglasses{ @@ -8389,6 +8293,11 @@ /obj/random/junk, /turf/simulated/floor/tiled, /area/horizon/maintenance/deck_3/aft/holodeck) +"bcn" = ( +/obj/effect/floor_decal/corner/beige/diagonal, +/obj/structure/whiteboard, +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) "bcs" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -8592,6 +8501,12 @@ /obj/item/radio/intercom/east, /turf/simulated/floor/tiled/dark, /area/horizon/command/teleporter) +"bdq" = ( +/obj/structure/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "bdr" = ( /obj/structure/table/stone/marble, /obj/structure/machinery/door/firedoor, @@ -8636,6 +8551,9 @@ }, /turf/simulated/floor, /area/horizon/maintenance/deck_3/auxatmos) +"bdB" = ( +/turf/simulated/wall/r_wall, +/area/horizon/service/bar) "bdD" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/structure/bed/stool/chair/wood{ @@ -8676,6 +8594,19 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/commissary) +"bdK" = ( +/obj/effect/landmark/entry_point/fore{ + name = "fore, chapel" + }, +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/structure/machinery/door/blast/shutters/open{ + dir = 2; + id = "machinistspaceshutters"; + name = "Machinist Lab Shutters" + }, +/turf/simulated/floor/plating, +/area/horizon/operations/machinist) "bdS" = ( /obj/effect/mist, /turf/simulated/floor/exoplanet/water/shallow{ @@ -8704,6 +8635,21 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/hangar/auxiliary) +"bec" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) "bef" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/machinery/camera/network/research{ @@ -8719,17 +8665,6 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"bep" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/machinery/light/floor{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/security/investigations_hallway) "beE" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/machinery/suit_cycler/mining/prepared, @@ -8813,27 +8748,6 @@ /obj/structure/machinery/firealarm/north, /turf/simulated/floor/wood, /area/horizon/repoffice/representative_two) -"beV" = ( -/obj/structure/closet{ - icon_door = "blue"; - name = "Spare Uniforms" - }, -/obj/item/clothing/shoes/combat, -/obj/item/clothing/shoes/combat, -/obj/item/clothing/shoes/combat, -/obj/item/clothing/shoes/combat, -/obj/item/clothing/shoes/jackboots/toeless, -/obj/item/clothing/shoes/jackboots/toeless, -/obj/item/towel, -/obj/item/towel, -/obj/item/rig/light/offworlder, -/obj/item/clothing/accessory/offworlder/bracer, -/obj/item/storage/pill_bottle/rmt, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/legion/hangar5) "beW" = ( /obj/structure/machinery/door/airlock/centcom{ name = "Administrative Wing"; @@ -8926,12 +8840,6 @@ "bfC" = ( /turf/simulated/open, /area/horizon/stairwell/starboard/deck_3) -"bfD" = ( -/obj/structure/platform_deco{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/main) "bfG" = ( /obj/effect/decal/fake_object{ density = 1; @@ -9265,6 +9173,21 @@ icon_state = "dark_preview" }, /area/centcom/holding) +"bhy" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/obj/structure/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/machinery/camera/network/security{ + c_tag = "Security - Interrogation B"; + name = "interrogation"; + network = list("Interrogation"); + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/interrogation_1) "bhz" = ( /obj/effect/floor_decal/corner/yellow/full{ dir = 1 @@ -9846,6 +9769,16 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/rnd/xenobiology/xenoflora) +"bkx" = ( +/obj/structure/bed/stool/chair{ + name = "uncomfortable chair"; + dir = 8 + }, +/obj/effect/floor_decal/corner/red/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/interrogation_2) "bkD" = ( /obj/structure/window/reinforced/crescent{ dir = 8 @@ -9861,20 +9794,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/warden) -"bkN" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/random/dirt_75, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_3/security/port) "bkO" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 @@ -9915,15 +9834,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/wing/starboard) -"blb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "blc" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/red{ dir = 5 @@ -10213,6 +10123,14 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/reactor/supermatter/mainchamber) +"bnb" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "bni" = ( /obj/random/dirt_75, /obj/structure/cable{ @@ -10235,12 +10153,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard/near) -"bnr" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/machinery/vending/overloaders, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/wood, -/area/horizon/hallway/primary/deck_2/starboard) "bnv" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/structure/grille, @@ -10288,13 +10200,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_2/wing/starboard/nacelle) -"bnM" = ( -/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/horizon/security/meeting_room) "bnO" = ( /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 @@ -10647,6 +10552,18 @@ /obj/structure/closet/emcloset, /turf/simulated/floor/tiled, /area/horizon/operations/lobby) +"bpg" = ( +/obj/structure/table/rack, +/obj/item/storage/briefcase/crimekit{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/storage/briefcase/crimekit{ + pixel_x = 5; + pixel_y = 9 + }, +/turf/simulated/floor/lino, +/area/horizon/security/investigators_office) "bph" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/structure/machinery/door/airlock{ @@ -10895,30 +10812,9 @@ /obj/effect/floor_decal/industrial/outline/emergency_closet, /turf/simulated/floor/tiled, /area/horizon/command/bridge/bridge_crew) -"bqT" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/item/radio/intercom/east, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/evidence_storage) "bqZ" = ( /turf/simulated/wall/r_wall, /area/horizon/maintenance/deck_2/wing/port/near) -"bra" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 9 - }, -/obj/structure/machinery/disposal/small/east, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/camera/network/security{ - c_tag = "Security - Forensic Laboratory Starboard"; - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/security/forensic_laboratory) "brc" = ( /obj/effect/floor_decal/corner/red{ dir = 5 @@ -11270,19 +11166,41 @@ /obj/structure/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos/turbine) -"btJ" = ( -/obj/structure/machinery/door/blast/regular{ +"btF" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light_switch/east{ + pixel_y = 30 + }, +/obj/structure/machinery/light/floor{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ dir = 4; - name = "Interior Mass Driver Blast Door"; - id = "interiormassdriver" + icon_state = "pipe-c" }, -/obj/structure/plasticflaps/airtight, -/obj/structure/machinery/door/window/southleft{ - dir = 1; - pixel_y = -17 +/turf/simulated/floor/lino, +/area/horizon/security/investigators_office) +"btG" = ( +/obj/structure/platform, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/turf/simulated/floor/plating, -/area/horizon/crew/lounge) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) "btM" = ( /obj/structure/grille, /obj/structure/machinery/door/blast/regular{ @@ -11342,6 +11260,10 @@ }, /turf/simulated/floor/tiled, /area/horizon/engineering/hallway/aft) +"bum" = ( +/obj/effect/floor_decal/corner/brown/diagonal, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "buo" = ( /obj/random/dirt_75, /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -11553,6 +11475,19 @@ /obj/structure/machinery/alarm/west, /turf/simulated/floor/tiled/dark/full, /area/horizon/ai/upload) +"bvR" = ( +/obj/item/modular_computer/console/preset/supply/machinist{ + dir = 4 + }, +/obj/structure/machinery/camera{ + c_tag = "Operations - Machinist Workshop 2"; + network = list("Operations") + }, +/obj/effect/floor_decal/spline/plain/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/machinist) "bvV" = ( /obj/random/dirt_75, /obj/random/maintenance_junk_or_loot, @@ -11614,6 +11549,14 @@ }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_dininghall) +"bwx" = ( +/obj/structure/machinery/mech_recharger, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "bwz" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -11635,6 +11578,14 @@ /obj/structure/table/reinforced/wood, /turf/simulated/floor/tiled/dark, /area/horizon/command/bridge/meeting_room) +"bwM" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) "bwO" = ( /obj/structure/railing/mapped{ dir = 4 @@ -11869,6 +11820,12 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/hallway/primary/deck_3/starboard/docks) +"bys" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) "byt" = ( /obj/structure/machinery/atmospherics/binary/pump/fuel{ name = "Fuel Tank to Thrusters" @@ -11896,17 +11853,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/shuttle/canary) -"byx" = ( -/obj/structure/machinery/door/firedoor{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/structure/machinery/door/airlock/maintenance{ - dir = 4; - req_one_access = list(2,3,4) - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/security/evidence_storage) "byC" = ( /obj/item/weldingtool/largetank{ pixel_y = 8; @@ -12113,14 +12059,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/starboard) -"bAm" = ( -/obj/structure/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow, -/turf/simulated/floor/tiled/full, -/area/horizon/security/investigations_hallway) "bAp" = ( /obj/structure/machinery/atmospherics/pipe/manifold4w/visible/yellow, /turf/simulated/floor/tiled/dark, @@ -12230,19 +12168,6 @@ /obj/effect/floor_decal/industrial/hatch/engineering, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/supermatter/waste) -"bAW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor, -/obj/structure/machinery/door/airlock/maintenance{ - dir = 1; - name = "Machinist Workshop Maintenance"; - req_access = list(29) - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/chapel/main) "bAY" = ( /obj/structure/railing/mapped, /obj/structure/lattice/catwalk/indoor/grate/dark, @@ -12353,6 +12278,18 @@ }, /turf/simulated/floor/plating, /area/horizon/service/kitchen/freezer) +"bBr" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/structure/machinery/light/floor{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway) "bBu" = ( /obj/effect/floor_decal/corner_wide/purple{ dir = 9 @@ -12471,16 +12408,6 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"bCi" = ( -/obj/effect/floor_decal/spline/plain, -/obj/structure/bed/stool/chair/sofa/pew/left{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/horizon/service/chapel/main) "bCp" = ( /obj/structure/table/reinforced/steel, /obj/item/aicard, @@ -12865,18 +12792,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/service/port) -"bFB" = ( -/obj/structure/machinery/door/firedoor, -/obj/structure/machinery/door/airlock/maintenance{ - name = "Atmospherics Maintenance"; - req_access = list(24); - welded = 1 - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/maintenance/deck_2/elevator) "bFC" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -12950,20 +12865,18 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/command/bridge/upperdeck) -"bGr" = ( -/obj/structure/machinery/door/airlock/multi_tile/glass{ - dir = 2; - name = "Deck 2 Stairwell" +"bGv" = ( +/obj/structure/machinery/light/floor{ + dir = 4 }, -/obj/structure/machinery/door/firedoor/multi_tile{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-2" }, -/turf/simulated/floor/tiled/full, -/area/horizon/operations/lobby) +/obj/structure/platform{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist) "bGw" = ( /obj/random/junk, /obj/random/dirt_75, @@ -13051,9 +12964,34 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/horizon/maintenance/substation/engineering) -"bHq" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/horizon/operations/machinist) +"bHu" = ( +/obj/structure/closet/wardrobe{ + name = "Chaplain Wardrobe" + }, +/obj/item/clothing/head/chaplain_hood, +/obj/item/clothing/suit/chaplain_hoodie, +/obj/item/clothing/under/rank/chaplain, +/obj/item/clothing/head/nun_hood, +/obj/item/clothing/suit/nun, +/obj/item/reagent_containers/spray/aspergillum, +/obj/item/nullrod/obsidianshards, +/obj/item/storage/box/fancy/crayons, +/obj/item/storage/box/fancy/candle_box, +/obj/item/storage/box/fancy/candle_box, +/obj/item/mesmetron, +/obj/item/storage/box/fancy/candle_box, +/obj/item/storage/box/fancy/candle_box, +/obj/item/radio/headset/headset_service, +/obj/item/radio/headset/wrist/clip/service, +/obj/item/radio/headset/wrist/service, +/obj/item/spirit_board, +/obj/item/clothing/shoes/sneakers/black, +/obj/item/toy/plushie/therapy, +/obj/item/deck/tarot, +/obj/item/reagent_containers/food/drinks/bottle/holywater, +/obj/item/stack/packageWrap, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/office) "bHv" = ( /obj/effect/floor_decal/corner/red{ dir = 5 @@ -13210,20 +13148,6 @@ }, /turf/simulated/floor/reinforced/n20, /area/horizon/engineering/atmos/air) -"bIF" = ( -/obj/structure/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/camera{ - c_tag = "Service - Chapel Office"; - network = list("Service") - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/office) "bIG" = ( /obj/structure/disposaloutlet{ dir = 4 @@ -13288,17 +13212,15 @@ /turf/simulated/floor/tiled/dark, /area/horizon/storage/eva) "bJd" = ( -/obj/structure/machinery/light/floor{ - dir = 4 +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 }, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/structure/closet/secure_closet/evidence{ + name = "Papers and Records" }, -/obj/structure/platform{ - dir = 8 - }, -/turf/simulated/floor/carpet/rubber, -/area/horizon/operations/machinist) +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "bJf" = ( /obj/random/maintenance_junk_or_loot, /obj/effect/floor_decal/industrial/warning{ @@ -13745,6 +13667,15 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/rnd/hallway) +"bMe" = ( +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/light/floor, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "bMf" = ( /turf/simulated/floor/tiled/ramp/bottom{ dir = 8 @@ -13762,6 +13693,15 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) +"bMk" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) "bMm" = ( /obj/structure/machinery/appliance/cooker/oven, /obj/effect/floor_decal/industrial/outline/grey, @@ -13842,17 +13782,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/office) -"bME" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/horizon/security/custodial) "bMG" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -14145,16 +14074,6 @@ /obj/effect/floor_decal/industrial/hatch_door/yellow, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_2/research) -"bOY" = ( -/obj/structure/table/wood, -/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/art, -/area/horizon/crew/lounge) "bOZ" = ( /obj/structure/machinery/light, /obj/effect/floor_decal/corner_wide/black{ @@ -14210,13 +14129,6 @@ /obj/effect/floor_decal/industrial/outline/firefighting_closet, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos/propulsion) -"bPm" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/railing/mapped, -/turf/simulated/floor/grass/no_edge, -/area/horizon/rnd/hallway) "bPp" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -14421,17 +14333,6 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/atmos) -"bQF" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/obj/structure/machinery/power/apc/north, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/random/pottedplant, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/interrogation/monitoring) "bQG" = ( /obj/structure/machinery/door/airlock/centcom{ name = "Advanced Interrogation"; @@ -14494,6 +14395,22 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/hallway/upper) +"bQQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/platform_deco{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist) "bQX" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -14609,13 +14526,6 @@ /obj/effect/floor_decal/corner/dark_green/full, /turf/simulated/floor/tiled, /area/horizon/operations/lobby) -"bRR" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/main) "bRS" = ( /obj/effect/floor_decal/corner/yellow{ dir = 5 @@ -14736,23 +14646,6 @@ /obj/structure/machinery/atmospherics/pipe/simple/visible/yellow, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos/turbine) -"bSw" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/light_switch/east{ - pixel_y = -23; - dir = 2; - pixel_x = 0 - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/office) "bSB" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 10 @@ -14792,6 +14685,15 @@ /obj/effect/floor_decal/industrial/hatch_door/engineering, /turf/simulated/floor/tiled/dark/full, /area/horizon/command/heads/chief) +"bSH" = ( +/obj/structure/platform, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner_wide/black{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist) "bSN" = ( /obj/structure/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1337; @@ -14857,24 +14759,18 @@ }, /turf/unsimulated/floor, /area/centcom/evac) -"bTq" = ( -/obj/structure/machinery/light{ +"bTs" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction/yjunction{ dir = 1 }, -/obj/structure/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/machinery/button/remote/blast_door{ - dir = 1; - id = "shutters_deck2_workshopgarage"; - name = "Machinist Workshop Garage Shutters"; - pixel_x = 9; - pixel_y = 22 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, /obj/structure/cable/green{ - icon_state = "2-4" + icon_state = "1-2" }, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) "bTv" = ( /obj/structure/shuttle_part/scc_space_ship{ icon_state = "d3-6" @@ -14943,6 +14839,10 @@ /obj/structure/machinery/cell_charger, /turf/simulated/floor/tiled, /area/horizon/operations/mining_main/refinery) +"bUa" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) "bUb" = ( /obj/structure/reagent_dispensers/extinguisher, /obj/effect/decal/cleanable/dirt, @@ -14975,6 +14875,12 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/command/heads/rd) +"bUl" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ + id = "chapel" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/chapel/main) "bUn" = ( /obj/structure/machinery/light, /obj/effect/floor_decal/corner/dark_green/full{ @@ -15801,6 +15707,19 @@ /obj/structure/stairs_lower/stairs_upper, /turf/simulated/floor/tiled/white, /area/horizon/medical/hallway) +"caM" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/machinery/light/floor{ + dir = 1 + }, +/obj/structure/machinery/light/floor, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) "caN" = ( /obj/structure/bed/stool/padded/red{ dir = 4 @@ -16000,6 +15919,16 @@ }, /turf/unsimulated/floor/dark, /area/antag/actor) +"ccf" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/machinery/newscaster/north, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) "cck" = ( /obj/structure/morgue{ dir = 8 @@ -16287,12 +16216,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_3/security/starboard) -"cec" = ( -/obj/structure/machinery/mech_recharger, -/mob/living/heavy_vehicle/premade/random/boring, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "ceg" = ( /turf/simulated/wall/r_wall, /area/horizon/rnd/xenoarch/isolation_b) @@ -16548,16 +16471,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/hangar/auxiliary) -"cgf" = ( -/obj/structure/bookcase/libraryspawn/religion, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/main) "cgg" = ( /turf/unsimulated/floor{ name = "staircase" @@ -16884,6 +16797,15 @@ }, /turf/simulated/floor/tiled, /area/horizon/hangar/auxiliary) +"cio" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) "cip" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 9 @@ -16906,6 +16828,14 @@ }, /turf/simulated/floor/wood, /area/horizon/rnd/xenoarch/presentation) +"ciu" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) "ciH" = ( /obj/structure/table/wood, /obj/item/paper_bin, @@ -17134,10 +17064,6 @@ /obj/structure/platform, /turf/simulated/floor/tiled/dark, /area/horizon/command/bridge/controlroom) -"cjW" = ( -/obj/structure/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/security/interrogation/monitoring) "cjY" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -17217,13 +17143,6 @@ }, /turf/simulated/floor/carpet/art, /area/horizon/crew/lounge) -"ckZ" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/starboard) "cla" = ( /obj/effect/floor_decal/corner_wide/yellow/full{ dir = 4 @@ -17643,15 +17562,6 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/operations/secure_ammunition_storage) -"cov" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/structure/bed/stool/chair/sofa/left/beige{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/horizon/rnd/hallway) "coz" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -17751,15 +17661,6 @@ /obj/item/rig_module/cooling_unit, /turf/unsimulated/floor, /area/centcom/distress_prep) -"cpl" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/horizon/service/chapel/office) "cpm" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -17943,16 +17844,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/hallway/primary/deck_2/fore) -"cqw" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline/security, -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/security/investigations_hallway) "cqx" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/tiled/dark, @@ -18087,14 +17978,6 @@ }, /turf/simulated/floor/wood, /area/horizon/repoffice/representative_two) -"crG" = ( -/obj/structure/machinery/vending/robotics, -/obj/effect/floor_decal/corner/brown/full{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "crH" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/machinery/portable_atmospherics/canister/deuttrit, @@ -18137,6 +18020,24 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/bar) +"crV" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) "crZ" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 @@ -18900,18 +18801,6 @@ }, /turf/unsimulated/floor/freezer, /area/antag/mercenary) -"cwi" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/closet/secure_closet/machinist, -/obj/effect/floor_decal/corner_wide/black{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) "cwl" = ( /turf/simulated/wall/shuttle/unique/scc/mining{ icon_state = "2,1" @@ -19110,24 +18999,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/hydroponics) -"cxC" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/horizon/service/chapel/office) "cxF" = ( /obj/structure/machinery/computer/general_air_control/large_tank_control/terminal{ input_tag = "fusion_injector_air"; @@ -19138,18 +19009,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/indra/monitoring) -"cxH" = ( -/obj/structure/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch_door/yellow{ - dir = 8 - }, -/obj/structure/machinery/door/airlock/maintenance{ - name = "Chaplain Office's Maintenance"; - req_access = list(22) - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/chapel/office) "cxI" = ( /obj/structure/cable{ icon_state = "4-8" @@ -19348,21 +19207,6 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/hallway/primary/deck_1/central) -"cyE" = ( -/obj/structure/machinery/atmospherics/binary/pump/on{ - dir = 8; - name = "Distro to Starboard Docks"; - target_pressure = 200 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/horizon/security/checkpoint2) "cyK" = ( /obj/structure/reagent_dispensers/water_cooler, /obj/effect/floor_decal/corner/dark_blue/full{ @@ -19581,12 +19425,6 @@ /obj/structure/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/structure/machinery/door/airlock/external{ dir = 4; @@ -19773,21 +19611,6 @@ }, /turf/simulated/floor/holofloor/tiled/dark, /area/tdome/tdome1) -"cBh" = ( -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/industrial/outline_straight/yellow{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "cBp" = ( /obj/structure/flora/bush/adhomai, /turf/simulated/floor/holofloor/snow, @@ -19986,28 +19809,6 @@ }, /turf/simulated/floor/carpet, /area/horizon/service/bar/backroom) -"cCL" = ( -/obj/structure/machinery/alarm/west{ - dir = 2; - pixel_x = 0; - pixel_y = -10 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/item/radio/intercom/north{ - pixel_y = 0; - dir = 2 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "cCN" = ( /turf/simulated/wall/r_wall, /area/horizon/command/bridge/controlroom) @@ -20076,14 +19877,6 @@ }, /turf/unsimulated/floor/carpet, /area/centcom/bar) -"cDh" = ( -/obj/structure/platform, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_wide/black{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) "cDj" = ( /obj/structure/table/wood/gamblingtable, /obj/item/trash/plate, @@ -20205,17 +19998,6 @@ /obj/item/tank/jetpack/carbondioxide, /turf/simulated/floor/tiled/white, /area/horizon/storage/eva/expedition) -"cEq" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1; - pixel_y = 14 - }, -/obj/structure/crate_shelf, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "cEz" = ( /obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ id = "rdoffice" @@ -20292,14 +20074,6 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"cFa" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/aft) "cFg" = ( /obj/effect/floor_decal/corner/mauve{ dir = 9 @@ -20363,12 +20137,6 @@ }, /turf/simulated/floor/plating, /area/horizon/operations/office_aux) -"cFI" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/horizon/crew/lounge) "cFK" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -20457,6 +20225,18 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/horizon/command/bridge/supply) +"cGC" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/closet/secure_closet/machinist, +/obj/effect/floor_decal/corner_wide/black{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist) "cGE" = ( /obj/structure/railing/mapped{ dir = 8 @@ -20477,6 +20257,20 @@ /obj/structure/machinery/photocopier, /turf/simulated/floor/tiled/full, /area/horizon/command/bridge/cciaroom) +"cGO" = ( +/obj/structure/machinery/computer/rdconsole/robotics{ + dir = 4 + }, +/obj/structure/machinery/camera{ + c_tag = "Operations - Machinist RnD Lab"; + network = list("Operations"); + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/black{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist) "cGR" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -21083,11 +20877,6 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"cKz" = ( -/obj/item/hullbeacon/red, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/reinforced/airless, -/area/horizon/exterior) "cKB" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -21115,6 +20904,14 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/atmos/air) +"cKU" = ( +/obj/effect/floor_decal/corner/beige/diagonal, +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) "cKV" = ( /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/exoplanet/grass/grove, @@ -21155,6 +20952,16 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/storage/eva) +"cLp" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 8 + }, +/obj/structure/machinery/camera{ + c_tag = "Service - Chapel 1"; + network = list("Service") + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) "cLz" = ( /obj/effect/floor_decal/industrial/warning{ dir = 9 @@ -21162,6 +20969,15 @@ /obj/structure/extinguisher_cabinet/west, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/supermatter/mainchamber) +"cLE" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "cLG" = ( /obj/structure/dueling_table{ icon_state = "center_center" @@ -21421,23 +21237,17 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/command/heads/cmo) -"cNt" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 +"cNo" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 4 }, -/obj/structure/machinery/door/firedoor, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/effect/floor_decal/industrial/outline/operations, +/obj/structure/machinery/ringer_button{ + pixel_x = 21; + id = "Machinist" }, -/obj/structure/machinery/door/airlock/service{ - dir = 1; - name = "Security Custodial Closet"; - req_access = list(63) - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/security/custodial) +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "cNu" = ( /obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -21507,6 +21317,16 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_trinary) +"cOc" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/starboard) "cOd" = ( /obj/effect/decal/cleanable/cobweb2, /obj/effect/decal/cleanable/spiderling_remains, @@ -21606,29 +21426,6 @@ }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_theatre) -"cOL" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/item/flag/biesel/l{ - pixel_y = 8 - }, -/obj/item/flag/biesel/l{ - pixel_y = 8 - }, -/obj/item/flag/biesel{ - pixel_y = 8 - }, -/obj/item/flag/biesel{ - pixel_y = 8 - }, -/obj/item/flag/biesel{ - pixel_y = 8 - }, -/obj/item/storage/box/tcaf_pamphlet, -/obj/item/material/twohanded/pike/flag, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) "cOQ" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -21719,6 +21516,24 @@ /obj/structure/closet/cabinet, /turf/simulated/floor/wood, /area/shuttle/skipjack) +"cPR" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/machinery/light_switch/north{ + pixel_x = 23; + pixel_y = 0; + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/brown{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist) "cPS" = ( /obj/structure/flora/ausbushes/leafybush, /turf/simulated/floor/exoplanet/grass, @@ -21976,16 +21791,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hangar/auxiliary) -"cRo" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/security, -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/security/investigations_hallway) "cRs" = ( /obj/effect/landmark/start{ name = "wizard" @@ -22041,6 +21846,23 @@ }, /turf/simulated/floor/wood, /area/horizon/crew/lounge) +"cRK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_3/security/port) "cRQ" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -22331,6 +22153,12 @@ }, /turf/simulated/floor/exoplanet/barren, /area/centcom/shared_dream) +"cTs" = ( +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "cTw" = ( /obj/structure/bed/stool/chair/sofa/red{ dir = 1 @@ -22610,17 +22438,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/hangar/operations) -"cUP" = ( -/obj/structure/grille, -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/machinery/door/blast/shutters/open{ - dir = 2; - id = "machinistspaceshutters"; - name = "Machinist Lab Shutters" - }, -/obj/structure/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "cUQ" = ( /obj/structure/cable/green{ icon_state = "1-8" @@ -22976,6 +22793,25 @@ /obj/effect/decal/fake_object/light_source/invisible, /turf/simulated/floor/reinforced/airless, /area/horizon/engineering/atmos/air) +"cWQ" = ( +/obj/item/storage/belt/security/tactical, +/obj/item/storage/belt/security/tactical, +/obj/item/storage/belt/security/tactical, +/obj/item/storage/belt/security/tactical, +/obj/item/clothing/mask/gas/half, +/obj/item/clothing/mask/gas/half, +/obj/item/clothing/mask/gas/half, +/obj/item/clothing/mask/gas/half, +/obj/item/clothing/mask/gas/tactical, +/obj/item/clothing/mask/gas/tactical, +/obj/item/clothing/mask/gas/tactical, +/obj/item/clothing/mask/gas/tactical, +/obj/item/melee/energy/sword/knife, +/obj/item/melee/energy/sword/knife, +/obj/item/melee/energy/sword/knife, +/obj/item/melee/energy/sword/knife, +/turf/unsimulated/floor, +/area/centcom/legion) "cWY" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -23145,42 +22981,6 @@ /obj/effect/floor_decal/industrial/outline/operations, /turf/simulated/floor/tiled/dark/full, /area/horizon/storage/eva) -"cYo" = ( -/obj/structure/closet/secure_closet/evidence{ - name = "closet" - }, -/obj/item/camera_film, -/obj/item/camera{ - desc = "A one use - polaroid camera. 30 photos left."; - name = "detectives camera"; - pictures_left = 30 - }, -/obj/item/storage/slide_projector, -/obj/item/taperecorder{ - pixel_y = 5 - }, -/obj/item/portable_whiteboard, -/turf/simulated/floor/lino, -/area/horizon/security/investigators_office) -"cYt" = ( -/obj/structure/machinery/door/airlock/security{ - dir = 4; - name = "Evidence Storage"; - req_access = list(4) - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/security/evidence_storage) "cYv" = ( /obj/structure/machinery/door/airlock/glass_security{ name = "Security Disarmament Point"; @@ -23633,19 +23433,6 @@ /obj/structure/machinery/light, /turf/simulated/floor/tiled/white, /area/horizon/medical/equipment) -"dbf" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/aft) "dbi" = ( /obj/structure/machinery/door/firedoor{ req_one_access = list(24,11,67,73); @@ -23716,6 +23503,10 @@ /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/horizon/shuttle/intrepid/main_compartment) +"dbK" = ( +/obj/structure/machinery/light, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/evidence_storage) "dbR" = ( /turf/simulated/floor/tiled, /area/horizon/command/bridge/upperdeck) @@ -23857,30 +23648,12 @@ }, /turf/simulated/floor/plating, /area/horizon/rnd/xenobiology) -"dcK" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/lobby) "dcL" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 1 }, /turf/simulated/floor/shuttle/dark_blue, /area/shuttle/transport1) -"dcM" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/item/folder/sec{ - pixel_x = -7; - pixel_y = -12 - }, -/obj/structure/table/steel, -/obj/item/radio/intercom/interrogation/west, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/interrogation/monitoring) "dcO" = ( /obj/structure/cable{ icon_state = "1-2" @@ -23905,6 +23678,20 @@ /obj/structure/machinery/atmospherics/pipe/simple/visible/black, /turf/simulated/floor/airless, /area/horizon/engineering/atmos) +"dcU" = ( +/obj/structure/machinery/door/airlock/security{ + dir = 1; + name = "Evidence Storage - Morgue"; + req_access = list(4) + }, +/obj/structure/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/evidence_storage) "dcY" = ( /obj/structure/machinery/light{ dir = 8 @@ -23955,6 +23742,19 @@ /obj/structure/flora/bush, /turf/simulated/floor/exoplanet/snow, /area/centcom/shared_dream) +"ddq" = ( +/obj/structure/machinery/door/blast/regular{ + dir = 4; + name = "Interior Mass Driver Blast Door"; + id = "interiormassdriver" + }, +/obj/structure/plasticflaps/airtight, +/obj/structure/machinery/door/window/southleft{ + dir = 1; + pixel_y = -17 + }, +/turf/simulated/floor/plating, +/area/horizon/crew/lounge) "ddr" = ( /obj/effect/floor_decal/industrial/hatch_door/yellow, /obj/structure/machinery/door/firedoor{ @@ -24083,18 +23883,31 @@ /obj/structure/table/reinforced/steel, /turf/simulated/floor/wood, /area/horizon/command/heads/chief) +"deA" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "deB" = ( /obj/structure/railing/mapped{ dir = 8 }, /turf/simulated/open, /area/horizon/operations/office) -"deE" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/spline/fancy{ - dir = 4 +"deD" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/structure/machinery/door/firedoor, +/obj/structure/machinery/door/blast/shutters/open{ + dir = 2; + id = "machinistspaceshutters"; + name = "Machinist Lab Shutters" }, -/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/operations/machinist) "deG" = ( @@ -25213,20 +25026,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/medical/paramedic) -"dlb" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/horizon/security/investigations_hallway) "dld" = ( /obj/structure/bed/stool/chair{ dir = 1 @@ -25313,6 +25112,16 @@ /obj/structure/table/steel, /turf/unsimulated/floor/plating, /area/centcom/specops) +"dlH" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/structure/machinery/light, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) "dlI" = ( /obj/structure/bed/stool/chair/shuttle, /turf/simulated/floor/shuttle/dark_blue, @@ -25339,6 +25148,9 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/transport1) +"dlQ" = ( +/turf/simulated/wall/r_wall, +/area/horizon/maintenance/deck_2/service/starboard) "dlS" = ( /obj/effect/decal/fake_object/light_source/invisible{ light_color = "#C48A18"; @@ -25529,24 +25341,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/atmos/propulsion) -"dmR" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/security/investigations_hallway) "dmW" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -25849,6 +25643,18 @@ /obj/structure/lattice, /turf/space, /area/horizon/exterior) +"dox" = ( +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -29; + pixel_x = 2 + }, +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/full, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "doU" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/atmospherics/binary/pump/on{ @@ -25939,18 +25745,6 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_tribunal) -"dpq" = ( -/obj/structure/bed/stool/chair/sofa/pew/right{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/horizon/service/chapel/main) "dps" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden{ dir = 9 @@ -26136,21 +25930,6 @@ /obj/effect/floor_decal/industrial/hatch_door/yellow, /turf/simulated/floor/tiled/full, /area/horizon/command/bridge/minibar) -"dqh" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/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/security/port) "dqs" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/warning{ @@ -26245,19 +26024,6 @@ /obj/random/pottedplant, /turf/simulated/floor/wood, /area/horizon/service/cafeteria) -"dqG" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/horizon/security/checkpoint2) "dqJ" = ( /obj/structure/ladder{ pixel_y = 16 @@ -26316,20 +26082,6 @@ }, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"dqW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/horizon/security/investigations_hallway) "dqX" = ( /obj/structure/table/reinforced/steel, /obj/structure/window/reinforced/crescent, @@ -26583,13 +26335,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/warden) -"dsz" = ( -/obj/structure/platform_stairs, -/obj/structure/platform{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/main) "dsE" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -26695,14 +26440,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/carpet/rubber, /area/horizon/rnd/xenobiology/xenoflora) -"dtE" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 6 - }, -/obj/structure/table/glass, -/obj/item/storage/box/unique/sharps, -/turf/simulated/floor/tiled/white, -/area/horizon/security/forensic_laboratory) "dtM" = ( /obj/effect/floor_decal/spline/fancy, /obj/structure/machinery/computer/ship/engines{ @@ -27062,13 +26799,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/engineering/hallway/interior) -"dvV" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/machinery/newscaster/west, -/turf/simulated/floor/tiled, -/area/horizon/security/investigations_hallway) "dvX" = ( /obj/effect/floor_decal/corner/brown{ dir = 10 @@ -27182,6 +26912,14 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/horizon/rnd/test_range) +"dwQ" = ( +/obj/structure/grille, +/obj/structure/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/turf/simulated/floor/plating, +/area/horizon/security/checkpoint2) "dwR" = ( /obj/structure/closet/crate/freezer{ name = "Assorted Blood Packs" @@ -27280,14 +27018,12 @@ /turf/simulated/floor/tiled/full, /area/horizon/rnd/hallway/secondary) "dxr" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/bed/stool/chair/sofa/left/beige{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/horizon/rnd/hallway) +/turf/simulated/floor, +/area/horizon/security/firing_range) "dxz" = ( /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark, @@ -27400,6 +27136,19 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/operations/commissary) +"dyh" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/machinery/requests_console/north{ + department = "Chapel"; + departmentType = 1 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/office) "dyi" = ( /obj/structure/tank_wall{ icon_state = "m-10" @@ -27446,15 +27195,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/medical/ward) -"dyv" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/interrogation/monitoring) "dyx" = ( /obj/structure/cable{ icon_state = "1-2" @@ -27563,17 +27303,19 @@ icon_state = "dark_preview" }, /area/centcom/ferry) -"dzm" = ( -/obj/effect/floor_decal/corner/beige{ +"dzh" = ( +/obj/structure/closet/secure_closet/evidence{ + name = "evidence storage locker C" + }, +/obj/effect/floor_decal/corner/dark_blue{ dir = 9 }, -/obj/structure/machinery/alarm/west, -/obj/structure/coatrack{ - pixel_x = -9; - pixel_y = 1 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/horizon/security/forensic_laboratory) +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "dzv" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/dark/full, @@ -28340,6 +28082,15 @@ }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_courtroom) +"dDO" = ( +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "dDT" = ( /obj/structure/railing/mapped{ dir = 1 @@ -28432,31 +28183,6 @@ /obj/random/loot, /turf/simulated/floor, /area/horizon/maintenance/deck_3/aft/starboard) -"dEp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow, -/obj/structure/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/maintenance{ - dir = 4; - name = "Machinist Workshop Maintenance"; - req_access = list(29) - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/maintenance/deck_2/service/starboard) "dEs" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/red/diagonal, @@ -28574,13 +28300,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hangar/operations) -"dFg" = ( -/obj/effect/floor_decal/corner/red/full, -/obj/structure/machinery/alarm/west, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/reagent_dispensers/water_cooler, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/interrogation) "dFh" = ( /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/maple, @@ -28599,6 +28318,10 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/checkpoint2) +"dFq" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) "dFt" = ( /obj/structure/railing/mapped{ dir = 1 @@ -28851,27 +28574,6 @@ /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 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/evidence_storage) -"dGN" = ( -/obj/effect/floor_decal/corner_wide/black{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) "dGY" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 9 @@ -29133,15 +28835,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/indra/monitoring) -"dIS" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/effect/landmark/entry_point/fore{ - name = "fore, civilian lounges, port" - }, -/obj/structure/grille, -/obj/structure/machinery/door/firedoor, -/turf/simulated/floor/reinforced/airless, -/area/horizon/crew/lounge) "dIU" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -29348,6 +29041,12 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/surgery) +"dKx" = ( +/obj/structure/machinery/conveyor{ + id = "Robocompo" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "dKy" = ( /obj/structure/closet/secure_closet/merchant, /turf/simulated/floor/tiled/dark, @@ -29430,6 +29129,15 @@ "dKX" = ( /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_sauna) +"dKY" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/security/investigations_hallway) "dKZ" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -29722,6 +29430,27 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, /area/horizon/shuttle/intrepid/port_compartment) +"dNC" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/structure/engineer_maintenance/pipe, +/obj/structure/engineer_maintenance/electric{ + dir = 8 + }, +/obj/structure/machinery/light_switch/west{ + pixel_y = -3 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/mail_room) "dNF" = ( /obj/item/megaphone/red{ pixel_x = 1; @@ -29881,14 +29610,6 @@ }, /turf/simulated/floor/carpet, /area/horizon/security/investigators_office) -"dOH" = ( -/obj/effect/floor_decal/corner/blue/full{ - dir = 1 - }, -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/floor_decal/industrial/outline/security, -/turf/simulated/floor/tiled/white, -/area/horizon/security/autopsy_laboratory) "dOJ" = ( /obj/structure/machinery/porta_turret/cannon, /obj/structure/machinery/light/colored/red, @@ -29928,6 +29649,13 @@ }, /turf/unsimulated/floor, /area/centcom/legion) +"dOT" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/structure/machinery/smartfridge/tradeshelf/evidence{ + name = "Evidence Shelf B" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "dPc" = ( /obj/structure/machinery/door/airlock/multi_tile/glass{ dir = 2; @@ -29943,6 +29671,18 @@ /obj/effect/floor_decal/industrial/hatch_door/yellow, /turf/simulated/floor/tiled/full, /area/horizon/stairwell/starboard/deck_1) +"dPh" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "dPk" = ( /obj/structure/cable/green{ icon_state = "1-8" @@ -29991,21 +29731,6 @@ name = "shallow water" }, /area/horizon/holodeck/source_konyang) -"dPu" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch_door/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/maintenance/deck_3/aft/port/far) "dPE" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/effect/floor_decal/spline/plain{ @@ -30047,17 +29772,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/operations/warehouse) -"dPN" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/obj/structure/table/glass, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/storage/box/unique/sharps, -/turf/simulated/floor/tiled/white, -/area/horizon/security/autopsy_laboratory) "dPQ" = ( /turf/simulated/floor, /area/horizon/operations/ship_supply_warehouse) @@ -30211,6 +29925,22 @@ }, /turf/simulated/floor/tiled, /area/horizon/command/bridge/cciaroom/lounge) +"dRa" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) +"dRd" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/structure/machinery/smartfridge/tradeshelf/evidence{ + name = "Evidence Shelf C" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "dRm" = ( /obj/effect/floor_decal/corner/mauve{ dir = 6 @@ -30235,17 +29965,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos) -"dRy" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/obj/structure/table/glass, -/obj/item/storage/box/fancy/vials{ - pixel_x = 4; - pixel_y = 6 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/security/autopsy_laboratory) "dRE" = ( /obj/effect/floor_decal/corner/dark_green/full{ dir = 1 @@ -30311,6 +30030,14 @@ }, /turf/simulated/floor/reinforced/hydrogen, /area/horizon/engineering/atmos) +"dRY" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/operations/machinist) "dSb" = ( /obj/structure/machinery/atmospherics/pipe/simple/visible/purple, /obj/structure/cable/yellow{ @@ -30318,13 +30045,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/atmos/turbine) -"dSc" = ( -/obj/structure/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/horizon/security/meeting_room) "dSi" = ( /obj/structure/cable/orange{ icon_state = "1-2" @@ -30819,19 +30539,6 @@ }, /turf/simulated/floor/plating, /area/merchant_station/warehouse) -"dVP" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/starboard) "dVQ" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/effect/floor_decal/spline/plain, @@ -30853,6 +30560,25 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/atmos/air) +"dVT" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/structure/machinery/cell_charger{ + pixel_y = 3; + pixel_x = 5 + }, +/obj/structure/machinery/cell_charger{ + pixel_y = 12; + pixel_x = 5 + }, +/obj/structure/machinery/power/outlet{ + pixel_y = 10; + pixel_x = -9 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "dVU" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -30906,14 +30632,6 @@ /obj/random/dirt_75, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_2/wing/port/nacelle) -"dWp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/horizon/security/interrogation/monitoring) "dWy" = ( /obj/effect/floor_decal/corner/mauve{ dir = 6 @@ -30971,6 +30689,12 @@ /obj/structure/machinery/light/small, /turf/unsimulated/floor/plating, /area/centcom/specops) +"dWN" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ + id = "Interro_B" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/interrogation_2) "dWR" = ( /obj/structure/table/rack, /obj/effect/floor_decal/industrial/outline/operations, @@ -31222,17 +30946,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/hydroponics/lower) -"dYL" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/horizon/service/chapel/main) "dYR" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 @@ -31444,6 +31157,16 @@ /obj/structure/window/shuttle/scc_space_ship/cardinal, /turf/simulated/floor/plating, /area/horizon/security/forensic_laboratory) +"dZX" = ( +/obj/structure/machinery/bodyscanner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/outline/security, +/turf/simulated/floor/tiled/white, +/area/horizon/security/autopsy_laboratory) "dZY" = ( /obj/structure/machinery/porta_turret, /obj/effect/floor_decal/industrial/warning/full, @@ -31535,11 +31258,6 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/legion) -"eaG" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/aft) "eaM" = ( /turf/simulated/wall, /area/horizon/maintenance/substation/engineering/lower) @@ -31826,6 +31544,24 @@ "ecg" = ( /turf/simulated/wall/r_wall, /area/horizon/hallway/primary/deck_2/central) +"eci" = ( +/obj/structure/machinery/door/airlock/security{ + dir = 4; + name = "Evidence Storage - Morgue"; + req_access = list(4) + }, +/obj/structure/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/evidence_storage) "ecj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/trash_pile, @@ -32098,27 +31834,6 @@ }, /turf/simulated/wall/r_wall, /area/horizon/rnd/xenobiology/foyer) -"edO" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/service/starboard) -"edQ" = ( -/obj/structure/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch_door/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/maintenance/deck_2/aft) "edX" = ( /obj/structure/railing/mapped{ dir = 4 @@ -32284,6 +31999,11 @@ /obj/structure/machinery/newscaster/west, /turf/simulated/floor/tiled, /area/horizon/engineering/hallway/fore) +"eeL" = ( +/obj/item/modular_computer/console/preset/security/investigations, +/obj/effect/floor_decal/corner/beige/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) "eeO" = ( /obj/structure/machinery/atmospherics/pipe/simple/visible{ dir = 4 @@ -32649,12 +32369,6 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/main/port) -"egF" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) "egG" = ( /obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -32881,17 +32595,6 @@ /obj/structure/sign/pharmacy, /turf/unsimulated/wall/steel, /area/antag/raider) -"eid" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/machinery/papershredder, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/security/investigations_hallway) "eif" = ( /obj/structure/flora/log_bench{ dir = 8 @@ -33042,12 +32745,6 @@ /obj/effect/decal/cleanable/generic, /turf/simulated/floor/carpet/rubber, /area/horizon/maintenance/deck_1/workshop) -"ejC" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/horizon/security/checkpoint2) "ejJ" = ( /obj/effect/floor_decal/industrial/warning, /obj/effect/floor_decal/industrial/warning{ @@ -33066,13 +32763,6 @@ "ejO" = ( /turf/simulated/wall/r_wall, /area/horizon/rnd/server) -"ejR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/alarm/west, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/aft) "ejX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/atmospherics/unary/vent_pump/on, @@ -33141,11 +32831,6 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/open, /area/horizon/operations/office) -"ekw" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/structure/bed/stool/padded/blue, -/turf/simulated/floor/tiled/white, -/area/horizon/security/forensic_laboratory) "ekx" = ( /obj/structure/table/reinforced/steel, /obj/item/paper/fluff/bluespacedrive_manual{ @@ -33446,10 +33131,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/stairwell/port/deck_2) -"emv" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/security/evidence_storage) "emx" = ( /obj/structure/cable/green{ icon_state = "0-4" @@ -33507,6 +33188,13 @@ /obj/structure/flora/ausbushes/lavendergrass, /turf/simulated/floor/grass/no_edge, /area/centcom/bar) +"emP" = ( +/obj/structure/bed/stool/chair/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) "emT" = ( /obj/structure/closet/secure_closet{ req_access = list(150) @@ -33723,6 +33411,17 @@ /obj/effect/floor_decal/industrial/outline, /turf/simulated/floor/reinforced, /area/horizon/shuttle/canary) +"eol" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/door/airlock/mining{ + name = "Machinist Workshop"; + req_access = list(29) + }, +/obj/structure/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "eop" = ( /obj/structure/sign/radiation{ pixel_x = 32 @@ -34038,6 +33737,14 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/teleporter) +"eqG" = ( +/obj/structure/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_2/aft) "eqK" = ( /obj/item/towel_flat, /obj/item/towel, @@ -34144,6 +33851,11 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/hallway/primary/deck_2/central) +"erk" = ( +/obj/effect/floor_decal/corner/beige/diagonal, +/obj/structure/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) "erq" = ( /obj/structure/foamedmetal, /obj/structure/shuttle_part/scc_space_ship{ @@ -34274,6 +33986,18 @@ /obj/effect/floor_decal/industrial/hatch_door/yellow, /turf/simulated/floor/tiled/full, /area/horizon/hallway/primary/deck_3/port/docks) +"esl" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) "ess" = ( /obj/effect/floor_decal/corner/dark_green/full{ dir = 8 @@ -34374,12 +34098,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/rnd/xenobiology/xenoflora) -"eta" = ( -/obj/random/junk, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/aft) "etd" = ( /obj/structure/machinery/light_switch/south, /obj/effect/floor_decal/corner/brown{ @@ -34696,9 +34414,6 @@ /obj/item/holomenu/holodeck, /turf/simulated/wall, /area/horizon/holodeck_control/beta) -"euV" = ( -/turf/simulated/wall/r_wall, -/area/horizon/operations/machinist) "evf" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/security/investigations_hallway) @@ -35002,6 +34717,18 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/horizon/medical/gen_treatment) +"exv" = ( +/obj/structure/closet/walllocker/medical/firstaid{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) "exx" = ( /turf/simulated/wall/shuttle/unique/scc/mining{ icon_state = "4,2" @@ -35074,9 +34801,6 @@ }, /turf/simulated/floor/airless, /area/horizon/hangar/operations) -"eyb" = ( -/turf/simulated/wall/r_wall, -/area/horizon/security/checkpoint2) "eyc" = ( /obj/structure/machinery/door/airlock/external, /obj/structure/machinery/access_button{ @@ -35092,19 +34816,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_3/aft/starboard/far) -"eye" = ( -/obj/structure/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/horizon/security/checkpoint2) "eyg" = ( /obj/structure/table/steel, /obj/item/aiModule/reset, @@ -35347,6 +35058,16 @@ "ezl" = ( /turf/unsimulated/floor/monotile, /area/antag/mercenary) +"ezv" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/structure/platform_stairs/full{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "ezx" = ( /obj/structure/disposalpipe/junction{ icon_state = "pipe-j2" @@ -35401,6 +35122,9 @@ "eAa" = ( /turf/simulated/wall, /area/horizon/stairwell/starboard/deck_3) +"eAd" = ( +/turf/simulated/wall, +/area/horizon/security/interrogation_2) "eAg" = ( /obj/effect/floor_decal/sign/b{ pixel_x = -10; @@ -35521,13 +35245,6 @@ name = "overgrowth" }, /area/horizon/holodeck/source_moghes) -"eBm" = ( -/obj/random/dirt_75, -/obj/random/dirt_75, -/obj/random/dirt_75, -/obj/structure/grille/broken, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/elevator) "eBo" = ( /obj/effect/floor_decal/corner/yellow{ dir = 5 @@ -35644,6 +35361,27 @@ }, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_chapel) +"eCc" = ( +/obj/structure/closet/crate, +/obj/item/stack/material/lead{ + amount = 10 + }, +/obj/item/stack/material/phoron{ + amount = 20 + }, +/obj/item/stack/material/uranium{ + amount = 10 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/machinery/camera{ + c_tag = "Operations - Machinist Workshop 1"; + network = list("Operations") + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "eCg" = ( /obj/random/junk, /obj/effect/floor_decal/industrial/warning{ @@ -35733,6 +35471,24 @@ /obj/structure/flora/ausbushes/fullgrass, /turf/unsimulated/floor/grass, /area/antag/actor) +"eCR" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/office) "eDf" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -36200,6 +35956,13 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/icu) +"eFk" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor, +/area/horizon/security/meeting_room) "eFs" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, @@ -36433,6 +36196,23 @@ /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood, /area/horizon/service/bar) +"eGO" = ( +/obj/structure/table/wood, +/obj/structure/machinery/button/switch/windowtint{ + dir = 10; + id = "chapeloffice"; + pixel_y = 7; + pixel_x = 9; + name = "exterior window tint control" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/toy/figure/chaplain{ + pixel_x = -6 + }, +/turf/simulated/floor/carpet/red, +/area/horizon/service/chapel/office) "eGS" = ( /obj/structure/machinery/light{ dir = 8 @@ -36556,6 +36336,12 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/storage_hard/upper) +"eHy" = ( +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist) "eHz" = ( /obj/structure/table/wood, /turf/simulated/floor/carpet, @@ -36767,17 +36553,6 @@ /obj/structure/machinery/pipedispenser, /turf/simulated/floor/carpet/rubber, /area/horizon/engineering/atmos/storage_maintenance) -"eJc" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor, -/obj/structure/machinery/door/airlock/maintenance{ - name = "Security Maintenance"; - req_access = list(63) - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/security/investigations_hallway) "eJe" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -36811,13 +36586,6 @@ /obj/item/reagent_containers/glass/bucket, /turf/simulated/floor/carpet/rubber, /area/horizon/rnd/xenoarch/spectrometry) -"eJk" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "eJl" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -36883,27 +36651,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/engineering/hallway/interior) -"eJN" = ( -/obj/effect/floor_decal/industrial/hatch_door/engineering{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/machinery/door/airlock/maintenance{ - name = "Atmospherics Storage Room"; - dir = 4; - req_one_access = list(12,29,47) - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/maintenance/deck_2/aft) "eKq" = ( /obj/effect/floor_decal/corner/lime{ dir = 8 @@ -37018,23 +36765,6 @@ }, /turf/simulated/floor/plating, /area/horizon/service/hydroponics) -"eKX" = ( -/obj/structure/table/wood, -/obj/structure/machinery/button/switch/windowtint{ - dir = 10; - id = "chapeloffice"; - pixel_y = 7; - pixel_x = 9; - name = "exterior window tint control" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/item/toy/figure/chaplain{ - pixel_x = -6 - }, -/turf/simulated/floor/carpet/red, -/area/horizon/service/chapel/office) "eLa" = ( /obj/structure/bed/stool/chair/sofa/right/brown{ dir = 8 @@ -37124,45 +36854,6 @@ /obj/structure/closet/secure_closet/refrigerator/station/alt, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/kitchen) -"eLU" = ( -/obj/structure/table/standard, -/obj/structure/machinery/requests_console/west{ - department = "Machinist Workshop"; - departmentType = 2; - name = "Machinist Requests Console"; - dir = 4; - pixel_x = 18 - }, -/obj/structure/machinery/button/remote/blast_door{ - dir = 5; - id = "mech_bay_shutter"; - name = "Machinist Bay Shutters"; - pixel_y = 3 - }, -/obj/structure/machinery/button/remote/blast_door{ - dir = 5; - id = "shutters_deck2_workshopdesk"; - name = "Machinist Workshop Desk Shutters"; - pixel_x = -9; - pixel_y = 3 - }, -/obj/item/paper_bin{ - pixel_x = 9; - pixel_y = 8 - }, -/obj/item/pen/black{ - pixel_x = 10; - pixel_y = 9 - }, -/obj/item/paper/stickynotes/pad/random{ - pixel_x = -10; - pixel_y = -3 - }, -/obj/effect/floor_decal/spline/plain/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/operations/machinist) "eMl" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -37263,6 +36954,18 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/hallway/upper) +"eMQ" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/machinery/camera/network/security{ + c_tag = "Security - Interrogation"; + name = "interrogation"; + network = list("Interrogation"); + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/security/interrogation/monitoring) "eMY" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -37592,6 +37295,12 @@ "ePZ" = ( /turf/simulated/floor/exoplanet/snow, /area/centcom/shared_dream) +"eQb" = ( +/obj/random/junk, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) "eQe" = ( /obj/structure/closet/walllocker/emerglocker/north, /obj/effect/floor_decal/spline/plain/black{ @@ -37624,21 +37333,6 @@ }, /turf/simulated/floor/airless, /area/horizon/engineering/atmos) -"eQz" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light/floor{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/security/investigations_hallway) "eQA" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, @@ -37671,6 +37365,16 @@ /obj/structure/lattice, /turf/space, /area/horizon/exterior) +"eQJ" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/obj/structure/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/radio/intercom/interrogation/broadcasting/south, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/interrogation_2) "eQK" = ( /obj/structure/machinery/porta_turret/crescent, /obj/structure/machinery/light, @@ -37696,6 +37400,19 @@ }, /turf/unsimulated/floor/marble, /area/antag/wizard) +"eQR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/mail_room) "eQS" = ( /obj/structure/flora/ausbushes/lavendergrass, /obj/structure/flora/ausbushes/sparsegrass, @@ -38027,6 +37744,20 @@ name = "shuttle bay blast door" }, /area/centcom/evac) +"eSF" = ( +/obj/structure/machinery/door/airlock/maintenance{ + dir = 1; + req_one_access = list(63) + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/obj/structure/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_3/security/port) "eSI" = ( /obj/effect/floor_decal/carpet{ dir = 4 @@ -38170,13 +37901,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/turbolift/scc_ship/robotics_lift) -"eTg" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/item/hullbeacon/red, -/turf/simulated/floor/reinforced/airless, -/area/horizon/exterior/no_shields) "eTh" = ( /obj/structure/machinery/holosign/surgery{ id = 2 @@ -38400,16 +38124,6 @@ /obj/structure/sign/flag/scc, /turf/simulated/floor/tiled, /area/horizon/command/bridge/controlroom) -"eUB" = ( -/obj/structure/morgue{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/full{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/security, -/turf/simulated/floor/tiled/white, -/area/horizon/security/autopsy_laboratory) "eUP" = ( /obj/structure/machinery/door/firedoor, /obj/structure/grille, @@ -38435,6 +38149,17 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/break_room) +"eVf" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 4 + }, +/obj/item/radio/intercom/interrogation/west{ + dir = 4; + pixel_x = 6 + }, +/obj/structure/bed/stool/chair, +/turf/simulated/floor/tiled, +/area/horizon/security/interrogation/monitoring) "eVh" = ( /obj/structure/machinery/door/firedoor, /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -38660,6 +38385,27 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/reception) +"eWt" = ( +/obj/effect/floor_decal/corner/dark_blue/full, +/obj/structure/table/steel, +/obj/structure/machinery/button/switch/windowtint{ + id = "Interro_A"; + pixel_x = 8; + dir = 9; + pixel_y = -1 + }, +/obj/structure/machinery/light, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/pen{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/structure/machinery/firealarm/west, +/turf/simulated/floor/tiled, +/area/horizon/security/interrogation/monitoring) "eWz" = ( /obj/structure/table/reinforced/wood, /obj/random/pottedplant_small{ @@ -38696,6 +38442,27 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/carpet/rubber, /area/horizon/engineering/locker_room) +"eWQ" = ( +/obj/structure/table/standard, +/obj/item/storage/toolbox/electrical{ + pixel_y = 14; + pixel_x = -8 + }, +/obj/item/stack/cable_coil{ + pixel_x = -6 + }, +/obj/effect/floor_decal/corner/brown/full{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/robotanalyzer{ + pixel_y = 11; + pixel_x = 7 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "eWU" = ( /obj/structure/machinery/portable_atmospherics/canister/oxygen, /turf/unsimulated/floor{ @@ -39113,15 +38880,6 @@ /obj/random/dirt_75, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/research) -"eZZ" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/evidence_storage) "fad" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -39144,28 +38902,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard) -"fal" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple/full{ - dir = 8 - }, -/obj/structure/table/steel, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/paper/stickynotes/pad/random{ - pixel_x = 10; - pixel_y = -3 - }, -/turf/simulated/floor/tiled, -/area/horizon/security/custodial) "fan" = ( /obj/structure/railing/mapped{ dir = 4 @@ -39346,6 +39082,20 @@ pixel_y = -16 }, /area/antag/raider) +"fbC" = ( +/obj/structure/machinery/door/airlock/multi_tile/glass{ + dir = 2; + name = "Deck 2 Stairwell" + }, +/obj/structure/machinery/door/firedoor/multi_tile{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/lobby) "fbG" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 @@ -39644,6 +39394,13 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/rnd/chemistry) +"fdS" = ( +/obj/structure/bed/stool/chair/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) "fdW" = ( /obj/structure/closet/crate/drop/grey, /obj/random/coin, @@ -39896,24 +39653,6 @@ /obj/structure/machinery/power/radial_floodlight, /turf/simulated/floor/carpet/rubber, /area/horizon/engineering/storage_hard/aft) -"feY" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/horizon/rnd/hallway) -"ffb" = ( -/obj/structure/morgue{ - dir = 2; - name = "investigations morgue B" - }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/evidence_storage) "ffl" = ( /obj/structure/machinery/disposal/small/south, /obj/structure/disposalpipe/trunk, @@ -40391,6 +40130,14 @@ /obj/structure/sign/nosmoking_2, /turf/simulated/wall, /area/merchant_station/warehouse) +"fiv" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/elevator) "fiE" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/effect/floor_decal/spline/plain{ @@ -40532,6 +40279,27 @@ /obj/structure/shuttle/engine/propulsion/burst, /turf/unsimulated/floor/plating, /area/shuttle/distress) +"fjQ" = ( +/obj/structure/machinery/door/airlock/maintenance{ + dir = 4; + req_one_access = list(12,19) + }, +/obj/structure/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_3/security/port) "fjX" = ( /obj/vehicle/droppod/syndie{ connected_blastdoor = "merc_droppod_2" @@ -40679,6 +40447,19 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/drone_fabrication) +"fkX" = ( +/obj/structure/machinery/camera/network/security{ + c_tag = "Security - Interrogation A"; + name = "interrogation"; + network = list("Interrogation") + }, +/obj/structure/table/steel, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/obj/item/taperecorder, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/interrogation_2) "fkY" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 4 @@ -41049,18 +40830,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/command/bridge/aibunker) -"fnG" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/machinery/alarm/north, -/obj/random/dirt_75, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_3/security/port) "fnH" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -41342,6 +41111,19 @@ /obj/structure/bed/stool/chair/plastic, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/port/near) +"fpr" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "fps" = ( /obj/structure/table/rack, /obj/item/tank/oxygen/red, @@ -41486,6 +41268,15 @@ icon_state = "beach" }, /area/centcom/shared_dream) +"fqt" = ( +/obj/structure/bed/stool/chair/padded/black{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Chaplain" + }, +/turf/simulated/floor/carpet/red, +/area/horizon/service/chapel/office) "fqv" = ( /obj/effect/floor_decal/spline/plain{ dir = 9 @@ -41516,6 +41307,10 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/operations/office) +"fqC" = ( +/obj/item/radio/intercom/west, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/evidence_storage) "fqF" = ( /obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 1 @@ -41628,9 +41423,6 @@ /obj/effect/floor_decal/industrial/outline/security, /turf/simulated/floor/tiled, /area/horizon/security/equipment) -"fqX" = ( -/turf/simulated/wall/r_wall, -/area/horizon/service/chapel/office) "fre" = ( /obj/structure/table/reinforced/steel, /obj/structure/machinery/door/firedoor, @@ -41682,19 +41474,6 @@ }, /turf/unsimulated/floor/plating, /area/centcom/distress_prep) -"frs" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 9 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "fru" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -41736,6 +41515,31 @@ /obj/structure/machinery/light_switch/north, /turf/simulated/floor/tiled, /area/horizon/crew/fitness/changing) +"frK" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) +"frO" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/structure/machinery/light/floor{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/horizon/security/investigations_hallway) "frW" = ( /obj/structure/disposalpipe/junction{ dir = 8; @@ -41886,6 +41690,16 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_1/operations/starboard) +"ftg" = ( +/obj/effect/floor_decal/corner/blue/full{ + dir = 8 + }, +/obj/structure/machinery/reagentgrinder{ + pixel_y = 7 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/horizon/security/autopsy_laboratory) "ftp" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 @@ -41907,6 +41721,16 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/supply/dock) +"ftR" = ( +/obj/structure/machinery/power/apc/low/west, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/storage_maintenance) "ftU" = ( /obj/structure/table/standard, /obj/item/autopsy_scanner{ @@ -42144,6 +41968,19 @@ /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, /area/horizon/hallway/primary/deck_2/fore) +"fvB" = ( +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/obj/item/radio/intercom/interrogation/west{ + dir = 4; + pixel_x = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/security/interrogation/monitoring) "fvD" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -42349,16 +42186,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/shuttle/quark/cargo_hold) -"fxw" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/service/starboard) "fxE" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -42840,6 +42667,15 @@ "fBK" = ( /turf/simulated/floor/tiled/ramp/bottom, /area/centcom/legion) +"fBL" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway) "fBO" = ( /obj/effect/floor_decal/corner_wide/paleblue/full{ dir = 8 @@ -43020,6 +42856,15 @@ icon_state = "wood" }, /area/centcom/control) +"fDe" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/interrogation_1) "fDj" = ( /obj/structure/sign/directions/dock{ dir = 4; @@ -43359,15 +43204,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/horizon/stairwell/port/deck_3) -"fFC" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/full, -/area/horizon/security/investigations_hallway) "fFF" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -43541,6 +43377,13 @@ /obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/reinforced, /area/shuttle/hapt) +"fGP" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) "fGS" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 @@ -43548,6 +43391,24 @@ /obj/item/hullbeacon/red, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) +"fGU" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/machinery/light/floor{ + dir = 8 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/security/investigations_hallway) "fGY" = ( /obj/effect/floor_decal/industrial/warning{ dir = 9 @@ -43701,6 +43562,18 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/main/port/shortcut) +"fIf" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/wood, +/area/horizon/rnd/hallway) "fIj" = ( /obj/effect/floor_decal/corner/red{ dir = 6 @@ -43840,14 +43713,27 @@ icon_state = "dark_preview" }, /area/centcom/control) -"fJv" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 10 +"fJw" = ( +/obj/structure/bed/stool/chair/sofa/pew/right{ + dir = 4 }, -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/floor_decal/industrial/outline/security, -/turf/simulated/floor/tiled/white, -/area/horizon/security/forensic_laboratory) +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/machinery/firealarm/west{ + dir = 1; + pixel_x = 0; + pixel_y = 26 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/machinery/camera{ + c_tag = "Service - Chapel 2"; + network = list("Service") + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) "fJz" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/machinery/light{ @@ -43938,6 +43824,24 @@ /obj/structure/lattice, /turf/space, /area/template_noop) +"fJT" = ( +/obj/item/healthanalyzer{ + pixel_y = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/obj/item/healthanalyzer{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -5; + pixel_y = 16 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/horizon/security/autopsy_laboratory) "fJX" = ( /turf/simulated/wall, /area/horizon/maintenance/deck_2/wing/starboard) @@ -44040,6 +43944,14 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/ai/chamber) +"fKP" = ( +/obj/structure/platform, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner_wide/black{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist) "fKS" = ( /obj/structure/heavy_vehicle_frame, /obj/structure/machinery/mech_recharger, @@ -44394,6 +44306,20 @@ /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, /area/horizon/medical/ward/isolation) +"fMQ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/stack/material/bronze/full, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/wood/full, +/obj/item/stack/material/glass/full, +/obj/item/hand_labeler, +/obj/structure/closet/crate{ + name = "Urn Materials Crate" + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/office) "fMS" = ( /obj/structure/cable{ icon_state = "4-8" @@ -44443,6 +44369,19 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) +"fNa" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/starboard) "fNd" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 7 @@ -44699,18 +44638,6 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"fPn" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline_straight/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/arrow/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/operations/machinist) "fPo" = ( /turf/simulated/floor/holofloor/beach/sand{ icon_state = "desert4" @@ -44803,19 +44730,6 @@ /obj/structure/machinery/meter, /turf/simulated/floor/plating, /area/horizon/engineering/reactor/supermatter/mainchamber) -"fPS" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/structure/machinery/firealarm/east{ - pixel_y = 9 - }, -/obj/structure/machinery/light_switch/east{ - pixel_y = -4; - pixel_x = 20 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/evidence_storage) "fPV" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, @@ -45373,20 +45287,6 @@ }, /turf/unsimulated/floor/grass, /area/antag/actor) -"fTG" = ( -/obj/structure/closet/walllocker/medical{ - desc = "It's a wall-mounted locker full of SBS and a little blood for augmented crewmembers."; - name = "SBS closet"; - pixel_x = -32 - }, -/obj/item/reagent_containers/blood/sbs, -/obj/item/reagent_containers/blood/sbs, -/obj/item/reagent_containers/blood/OMinus, -/obj/effect/floor_decal/corner_wide/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) "fTH" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -45718,26 +45618,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/rnd/xenobiology) -"fVy" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/obj/structure/table/glass, -/obj/item/storage/box/masks{ - pixel_x = 7; - pixel_y = 8 - }, -/obj/item/healthanalyzer{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/item/storage/box/gloves{ - pixel_x = 7; - pixel_y = 1 - }, -/obj/item/radio/intercom/south, -/turf/simulated/floor/tiled/white, -/area/horizon/security/autopsy_laboratory) "fVE" = ( /obj/effect/floor_decal/corner/dark_blue/full, /obj/structure/cable/green{ @@ -45802,22 +45682,6 @@ }, /turf/simulated/floor/carpet/rubber, /area/horizon/crew/fitness/gym) -"fWf" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/horizon/hallway/primary/deck_2/starboard) "fWg" = ( /obj/structure/grille, /obj/structure/machinery/door/blast/regular{ @@ -45890,17 +45754,6 @@ /obj/item/modular_computer/console/preset/merchant, /turf/simulated/floor/wood, /area/merchant_station/warehouse) -"fXc" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/obj/structure/table/steel, -/obj/item/clipboard{ - pixel_x = 6; - pixel_y = 20 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/interrogation/monitoring) "fXe" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -46040,10 +45893,6 @@ "fXV" = ( /turf/simulated/floor/beach/water/alt, /area/centcom/shared_dream) -"fXX" = ( -/obj/effect/floor_decal/corner/brown/diagonal, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "fYd" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 5 @@ -46137,32 +45986,6 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/storage_hard/lower) -"fYx" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch_door/engineering, -/obj/structure/machinery/door/airlock/atmos{ - dir = 4; - name = "Deck 3 Port Auxiliary Atmospherics"; - req_one_access = list(11,24) - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/maintenance/deck_3/auxatmos) -"fYy" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/wood, -/area/horizon/service/chapel/main) "fYG" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 10 @@ -46182,6 +46005,22 @@ "fYU" = ( /turf/simulated/floor/wood, /area/horizon/command/bridge/meeting_room) +"fYV" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_2/starboard) "fZf" = ( /obj/structure/table/stone/marble, /obj/item/storage/box/fancy/donut{ @@ -46377,6 +46216,13 @@ /obj/structure/machinery/vending/snack/horizon, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/cafeteria) +"gas" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/structure/machinery/light_switch/south, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "gat" = ( /turf/simulated/floor/beach/sand{ icon_state = "seashallow" @@ -46414,6 +46260,19 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/hallway/upper) +"gaz" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/structure/machinery/camera/network/second_deck{ + c_tag = "Second Deck - Operations Hallway"; + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) "gaC" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, @@ -46688,15 +46547,6 @@ /obj/random/maintenance_junk_or_loot, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/hangar/port) -"gck" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/horizon/service/chapel/main) "gcm" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -46812,6 +46662,20 @@ }, /turf/unsimulated/floor/rubber_carpet, /area/centcom/control) +"gcM" = ( +/obj/structure/table/rack, +/obj/item/melee/energy/sword/knife{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/material/knife/bayonet{ + pixel_x = 3; + pixel_y = -2 + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/legion/hangar5) "gcS" = ( /turf/simulated/wall/r_wall, /area/horizon/engineering/locker_room) @@ -46854,13 +46718,6 @@ "gdv" = ( /turf/simulated/open, /area/horizon/engineering/storage_hard/upper) -"gdw" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/horizon/security/investigations_hallway) "gdB" = ( /obj/item/stock_parts/subspace/transmitter, /obj/item/stock_parts/subspace/transmitter, @@ -46962,6 +46819,22 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/weapons/longbow) +"ges" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'WARNING: FIRING RANGE'."; + name = "\improper WARNING: FIRING RANGE sign"; + pixel_y = 32 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/radio/intercom/interrogation/west{ + dir = 4; + pixel_x = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/firing_range) "geu" = ( /obj/structure/table/wood, /obj/random/pottedplant_small{ @@ -47082,16 +46955,6 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"gfe" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/arrow/yellow, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "gff" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -47130,12 +46993,36 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard/near) +"gfn" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway) "gfo" = ( /obj/structure/machinery/atmospherics/pipe/simple/visible{ dir = 5 }, /turf/simulated/floor/plating, /area/horizon/engineering/atmos/air) +"gfp" = ( +/obj/structure/closet/secure_closet/evidence{ + name = "evidence storage locker B" + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/machinery/camera/network/security{ + c_tag = "Security - Evidence Storage 2"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "gfs" = ( /obj/structure/table/wood, /obj/item/paper_bin{ @@ -47824,15 +47711,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/white, /area/horizon/rnd/lab) -"gkG" = ( -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "gkJ" = ( /obj/structure/machinery/telecomms/hub/preset, /turf/simulated/floor/bluegrid, @@ -48108,6 +47986,26 @@ "gmB" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/engineering/reactor/supermatter/airlock) +"gmD" = ( +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/structure/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/security/investigations_hallway) "gmF" = ( /obj/structure/table/reinforced/wood, /obj/effect/floor_decal/spline/fancy/wood{ @@ -48133,21 +48031,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/atmos/turbine) -"gmS" = ( -/obj/structure/table/standard, -/obj/item/robot_parts/r_arm{ - pixel_y = 5; - pixel_x = 8 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/item/portable_whiteboard{ - pixel_y = 6; - pixel_x = -7 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "gmT" = ( /obj/structure/table/reinforced/steel, /obj/structure/machinery/reagentgrinder{ @@ -48502,6 +48385,25 @@ /obj/random/dirt_75, /turf/simulated/floor/tiled/gunmetal, /area/horizon/operations/ship_supply_warehouse) +"goZ" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + name = "Chapel Office"; + sortType = "Chapel Office" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) "gpe" = ( /obj/structure/railing/mapped{ dir = 8 @@ -48608,6 +48510,12 @@ "gpF" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/security/brig) +"gpI" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "gpM" = ( /turf/simulated/wall/shuttle/unique/tcfl{ icon_state = "3,5" @@ -48931,19 +48839,6 @@ /obj/structure/lattice/catwalk/indoor, /turf/unsimulated/floor/plating, /area/centcom/specops) -"grx" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/structure/table/glass, -/obj/item/paper_scanner{ - pixel_x = 6; - pixel_y = 20 - }, -/obj/item/mass_spectrometer/adv{ - pixel_y = 20; - pixel_x = -8 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/security/forensic_laboratory) "gry" = ( /obj/structure/disposalpipe/trunk{ dir = 8 @@ -49024,17 +48919,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/wing/starboard/far) -"gsm" = ( -/obj/structure/closet/walllocker/firecloset{ - pixel_x = -32 - }, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled, -/area/horizon/maintenance/deck_3/security/port) "gss" = ( /obj/structure/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 @@ -49386,6 +49270,17 @@ icon_state = "wood" }, /area/centcom/legion) +"guU" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/office) "guW" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -49414,43 +49309,26 @@ name = "mossy grass" }, /area/horizon/holodeck/source_konyang) -"gvc" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/platform, -/obj/structure/machinery/optable, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) "gvf" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/machinery/vending/coffee, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/hallway/fore) +"gvg" = ( +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/structure/machinery/door/blast/shutters{ + id = "shutters_deck2_workshopgarage"; + name = "Machinist Workshop Garage Shutter" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "gvh" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/railing/mapped, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) -"gvk" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/door/firedoor/multi_tile, -/obj/structure/machinery/door/airlock/multi_tile/glass{ - name = "Deck 2 Starboard Docks" - }, -/obj/structure/machinery/door/blast/shutters/open{ - dir = 2; - id = "seconddeckdockint"; - name = "Security Checkpoint Internal Shutter" - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/security/checkpoint2) "gvl" = ( /obj/effect/floor_decal/industrial/outline/custodial, /obj/structure/closet, @@ -49556,6 +49434,21 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/bar) +"gvP" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/machinery/alarm/north, +/obj/random/dirt_75, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/security/port) "gvV" = ( /obj/structure/machinery/door/firedoor{ req_one_access = list(24,11,67,73); @@ -49725,6 +49618,13 @@ }, /turf/simulated/floor/carpet/rubber, /area/horizon/tcommsat/chamber) +"gwU" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/security/port) "gwX" = ( /obj/structure/table/steel, /obj/item/circuitboard/smes{ @@ -49785,6 +49685,21 @@ /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/horizon/security/brig) +"gxw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/full{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "gxx" = ( /obj/effect/floor_decal/corner/lime/full{ dir = 8 @@ -50281,6 +50196,11 @@ "gAJ" = ( /turf/simulated/wall/r_wall, /area/horizon/operations/break_room) +"gAL" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/turf/simulated/floor/carpet/red, +/area/horizon/service/chapel/office) "gAO" = ( /obj/effect/floor_decal/corner/lime{ dir = 9 @@ -50410,6 +50330,17 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/engineering/hallway/fore) +"gBE" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/table/stone/marble, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/random/pottedplant_small, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) "gBF" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -50564,15 +50495,6 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"gCJ" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/bed/stool/chair/sofa/right/beige{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/horizon/rnd/hallway) "gCK" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -51337,6 +51259,12 @@ /obj/structure/machinery/door/firedoor, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/custodial/auxiliary) +"gIg" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) "gIh" = ( /obj/structure/reagent_dispensers/extinguisher, /obj/effect/floor_decal/industrial/outline/red, @@ -51387,18 +51315,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard) -"gIN" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/structure/machinery/light/floor{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "gIO" = ( /obj/structure/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/machinery/computer/general_air_control/large_tank_control/terminal{ @@ -51451,6 +51367,19 @@ icon_state = "desert3" }, /area/horizon/holodeck/source_desert) +"gJa" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/security/investigations_hallway) "gJc" = ( /obj/structure/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 @@ -51584,6 +51513,15 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/loading) +"gJS" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/bed/stool/chair/sofa/right/beige{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/rnd/hallway) "gJV" = ( /obj/structure/platform/ledge{ dir = 1 @@ -51705,9 +51643,6 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"gKG" = ( -/turf/simulated/wall/r_wall, -/area/horizon/stairwell/starboard/deck_2) "gKK" = ( /obj/effect/shuttle_landmark/ccia/dock, /turf/template_noop, @@ -51967,6 +51902,15 @@ /obj/structure/machinery/optable, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) +"gMM" = ( +/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/central) "gMP" = ( /obj/random/junk, /obj/structure/lattice/catwalk/indoor/grate/dark, @@ -52256,6 +52200,14 @@ /obj/item/rig/ert, /turf/unsimulated/floor/wood, /area/centcom/specops) +"gOH" = ( +/obj/structure/roller_rack/two, +/obj/effect/floor_decal/corner/blue/full{ + dir = 1 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/horizon/security/autopsy_laboratory) "gOI" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -52289,6 +52241,11 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor, /area/horizon/crew/resdeck/living_quarters_lift) +"gOR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) "gPb" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark/full, @@ -52394,6 +52351,12 @@ }, /turf/unsimulated/floor/wood, /area/antag/actor) +"gPP" = ( +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "gPS" = ( /obj/structure/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -52442,6 +52405,18 @@ }, /turf/simulated/floor/wood, /area/horizon/repoffice/consular_two) +"gQn" = ( +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = -7 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = 8 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "gQq" = ( /obj/structure/toilet{ dir = 8 @@ -52668,20 +52643,23 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/hallway/upper) -"gSe" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 +"gSc" = ( +/obj/structure/platform, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/obj/item/flashlight/lamp{ - on = 0 +/obj/structure/machinery/disposal/small/north{ + dir = 2; + pixel_y = -1 }, -/obj/structure/table/standard, -/obj/structure/machinery/camera/network/security{ - c_tag = "Security - Morgue"; +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/evidence_storage) +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) "gSj" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -53125,6 +53103,16 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion/hangar5) +"gVf" = ( +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/random/dirt_75, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/security/port) "gVg" = ( /turf/simulated/floor/exoplanet/ice, /area/centcom/shared_dream) @@ -53468,6 +53456,13 @@ }, /turf/space, /area/horizon/exterior) +"gXl" = ( +/obj/structure/machinery/firealarm/west, +/obj/structure/platform_deco{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) "gXo" = ( /obj/structure/machinery/anti_bluespace, /obj/structure/machinery/alarm/south, @@ -53655,26 +53650,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/command/bridge/upperdeck) -"gYq" = ( -/obj/structure/machinery/light_switch/east, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/random/pottedplant, -/turf/simulated/floor/wood, -/area/horizon/service/chapel/main) -"gYx" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_green{ - dir = 1 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/starboard/deck_2) "gYD" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/tank_wall/oxygen{ @@ -53919,19 +53894,9 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_boxingcourt) -"gZM" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/north, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/horizon/security/checkpoint2) +"gZT" = ( +/turf/simulated/wall/r_wall, +/area/horizon/service/chapel/main) "gZY" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -54312,6 +54277,11 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark/full, /area/shuttle/skipjack) +"hcV" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/machinery/vending/games, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/hallway) "hcW" = ( /obj/effect/floor_decal/corner/yellow/full{ dir = 4 @@ -54774,13 +54744,30 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) -"hfz" = ( -/obj/structure/table/wood, -/turf/simulated/floor/carpet/art, -/area/horizon/crew/lounge) "hfB" = ( /turf/simulated/wall/r_wall, /area/horizon/rnd/hallway/secondary) +"hfD" = ( +/obj/structure/machinery/door/airlock/security{ + name = "Interrogation B"; + req_access = list(1); + dir = 4 + }, +/obj/structure/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/interrogation_2) "hfG" = ( /obj/structure/machinery/light{ dir = 4 @@ -54823,21 +54810,6 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/medical/hallway) -"hfP" = ( -/obj/structure/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/machinery/conveyor_switch/oneway{ - id = "sorting"; - pixel_x = -13; - pixel_y = 22 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/mail_room) "hfZ" = ( /obj/structure/machinery/vending/snack, /obj/effect/floor_decal/corner/paleblue{ @@ -54913,6 +54885,27 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/commissary) +"hgj" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/brown/full, +/obj/structure/machinery/firealarm/south, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/mail_room) "hgn" = ( /obj/structure/machinery/door/firedoor{ dir = 4 @@ -55003,6 +54996,13 @@ }, /turf/simulated/floor/grass/no_edge, /area/horizon/hallway/primary/deck_3/starboard) +"hgV" = ( +/obj/structure/bed/stool/chair/padded/black{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/office) "hhb" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -55036,6 +55036,16 @@ /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /turf/simulated/floor, /area/tdome/tdome2) +"hhj" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "hhn" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 1 @@ -55046,6 +55056,14 @@ /obj/structure/railing/mapped/no_density/low, /turf/simulated/floor/tiled/gunmetal, /area/horizon/operations/ship_supply_warehouse) +"hho" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "hhq" = ( /obj/structure/machinery/door/blast/shutters/open{ dir = 8; @@ -55307,18 +55325,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_1/main/starboard) -"hju" = ( -/obj/structure/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/vending/wardrobe/chap_wardrobe, -/obj/structure/machinery/camera{ - c_tag = "Service - Chapel Storage"; - network = list("Service") - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/office) "hjB" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -55646,6 +55652,19 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/equipment) +"hlO" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/brown/full{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "hlP" = ( /obj/effect/floor_decal/corner_wide/green{ dir = 9 @@ -55854,19 +55873,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/main/port) -"hmO" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/horizon/maintenance/deck_3/security/port) "hmT" = ( /obj/effect/floor_decal/industrial/outline/research, /obj/structure/machinery/atmospherics/pipe/simple/hidden/fuel{ @@ -56399,6 +56405,15 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) +"hpS" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/obj/item/taperecorder, +/obj/item/radio/intercom/interrogation/broadcasting/north, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/interrogation_1) "hpW" = ( /obj/structure/machinery/atmospherics/pipe/manifold/visible/black{ dir = 4 @@ -56409,6 +56424,13 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos/propulsion) +"hqe" = ( +/obj/effect/floor_decal/corner/blue/full{ + dir = 1 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/tiled/white, +/area/horizon/security/autopsy_laboratory) "hqf" = ( /obj/structure/cable{ icon_state = "4-8" @@ -56592,17 +56614,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/brig) -"hru" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/lobby) "hry" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -56715,6 +56726,15 @@ }, /turf/simulated/open, /area/horizon/service/custodial/disposals/deck_2) +"hrX" = ( +/obj/effect/landmark/start{ + name = "Chaplain" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) "hsd" = ( /obj/effect/floor_decal/corner/grey{ dir = 10 @@ -56787,6 +56807,23 @@ /obj/structure/machinery/alarm/west, /turf/simulated/floor/plating, /area/horizon/rnd/xenoarch/atrium) +"hsP" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) "hsQ" = ( /obj/structure/disposalpipe/junction{ dir = 1 @@ -56877,6 +56914,13 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/rnd/xenoarch/atrium) +"hto" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/structure/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "hts" = ( /obj/structure/machinery/door/airlock/hatch{ dir = 4; @@ -57088,12 +57132,6 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/hapt) -"hup" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/main) "huu" = ( /obj/effect/floor_decal/corner/grey{ dir = 6 @@ -57108,6 +57146,10 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor, /area/antag/jockey) +"hux" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/elevator) "huE" = ( /obj/structure/stairs/west, /turf/simulated/floor/plating, @@ -57225,6 +57267,22 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos/storage) +"hvb" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/security/investigations_hallway) "hvc" = ( /obj/structure/machinery/door/firedoor, /obj/structure/cable/green{ @@ -57373,30 +57431,6 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion) -"hvH" = ( -/obj/structure/table/rack, -/obj/item/stack/material/steel/full, -/obj/item/stack/material/steel/full, -/obj/item/stack/material/steel/full, -/obj/item/stack/material/steel/full, -/obj/item/stack/material/glass/full, -/obj/item/stack/material/glass/full, -/obj/item/stack/material/aluminium/full, -/obj/item/stack/material/aluminium/full, -/obj/item/paint_sprayer, -/obj/item/reagent_containers/weldpack, -/obj/item/stack/material/plasteel{ - amount = 20; - pixel_y = 4; - randpixel = 0 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/item/storage/toolbox/mechanical, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "hvJ" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/door/firedoor, @@ -57462,6 +57496,22 @@ icon_state = "desert" }, /area/centcom/shared_dream) +"hwi" = ( +/obj/effect/floor_decal/spline/plain, +/obj/structure/bed/stool/chair/sofa/pew/left{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) +"hwl" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) "hww" = ( /obj/structure/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1337; @@ -57573,6 +57623,23 @@ }, /turf/simulated/floor/tiled, /area/horizon/service/hydroponics/lower) +"hxa" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) +"hxb" = ( +/obj/structure/bed/stool/chair{ + name = "uncomfortable chair"; + dir = 8 + }, +/obj/effect/floor_decal/corner/red/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/interrogation_1) "hxd" = ( /obj/structure/cable/green{ icon_state = "1-4" @@ -57813,21 +57880,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/command/bridge/upperdeck) -"hyK" = ( -/obj/effect/floor_decal/corner/blue/full{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/item/roller{ - pixel_x = -1; - pixel_y = 14 - }, -/obj/item/healthanalyzer{ - pixel_x = -3; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/security/autopsy_laboratory) "hyL" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/machinery/atmospherics/unary/vent_pump/on{ @@ -57955,22 +58007,6 @@ }, /turf/unsimulated/floor/marble, /area/antag/wizard) -"hzF" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/structure/machinery/firealarm/east, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/evidence_storage) -"hzH" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/industrial/outline_straight/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "hzN" = ( /obj/effect/shuttle_landmark/supply/horizon/start{ dir = 1 @@ -58075,6 +58111,18 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_2/starboard) +"hAG" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/security/interrogation/monitoring) "hAH" = ( /obj/structure/table/reinforced/steel, /obj/structure/machinery/button/remote/blast_door{ @@ -58359,15 +58407,6 @@ }, /turf/simulated/floor/reinforced, /area/horizon/rnd/xenobiology) -"hCH" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/grass/no_edge, -/area/horizon/rnd/hallway) "hCI" = ( /obj/random/dirt_75, /obj/structure/table/rack, @@ -58440,20 +58479,6 @@ /obj/structure/machinery/smartfridge/secure/medbay/horizon, /turf/simulated/floor/tiled/dark/full, /area/horizon/medical/pharmacy) -"hCZ" = ( -/obj/effect/floor_decal/industrial/hatch_door/yellow{ - dir = 8 - }, -/obj/structure/machinery/door/firedoor{ - req_one_access = list(24,11,67,73) - }, -/obj/structure/machinery/door/airlock/security{ - dir = 1; - name = "Investigators' Office"; - req_access = list(4) - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/security/investigators_office) "hDb" = ( /obj/effect/landmark/entry_point/port{ name = "port, ballast middle" @@ -58668,18 +58693,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor, /area/horizon/maintenance/deck_2/wing/port/far) -"hEk" = ( -/obj/structure/machinery/camera/network/security{ - c_tag = "Security - Investigations Office"; - dir = 8 - }, -/obj/structure/machinery/disposal/small/west, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/newscaster/east{ - pixel_y = 10 - }, -/turf/simulated/floor/lino, -/area/horizon/security/investigators_office) "hEl" = ( /obj/structure/shuttle_part/scc_space_ship{ icon_state = "d3-4-f" @@ -58755,12 +58768,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/central) -"hEJ" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/filingcabinet/chestdrawer, -/obj/structure/machinery/alarm/west, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/security/evidence_storage) "hEK" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 4 @@ -58995,12 +59002,6 @@ /obj/effect/floor_decal/industrial/hatch/operations, /turf/simulated/floor/tiled/dark/full, /area/horizon/operations/loading) -"hGz" = ( -/obj/structure/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/evidence_storage) "hGA" = ( /obj/structure/platform{ dir = 4 @@ -59020,6 +59021,29 @@ /obj/structure/flora/ausbushes/sunnybush, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) +"hGV" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/random/pottedplant, +/turf/simulated/floor/carpet/red, +/area/horizon/service/chapel/office) +"hGY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/security/investigations_hallway) "hGZ" = ( /obj/effect/floor_decal/corner/teal/full{ dir = 4 @@ -59039,6 +59063,14 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/holding_cell_a) +"hHf" = ( +/obj/structure/machinery/door/blast/shutters/open{ + id = "mech_bay_shutter"; + name = "Mech Bay Shutters" + }, +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "hHg" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -59070,18 +59102,6 @@ /obj/structure/machinery/light/small/floor, /turf/simulated/floor/wood, /area/horizon/service/cafeteria) -"hHu" = ( -/obj/structure/machinery/light_switch/north{ - pixel_x = 23; - pixel_y = 0; - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 4 - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "hHv" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 @@ -59334,20 +59354,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor, /area/horizon/engineering/break_room) -"hJo" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/filingcabinet/filingcabinet{ - name = "filing cabinet A"; - pixel_x = 7; - pixel_y = 1 - }, -/obj/structure/filingcabinet/filingcabinet{ - name = "filing cabinet B"; - pixel_x = -6; - pixel_y = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/evidence_storage) "hJp" = ( /obj/structure/cable{ icon_state = "1-2" @@ -59479,6 +59485,12 @@ }, /turf/unsimulated/floor, /area/centcom/holding) +"hKc" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "hKh" = ( /obj/structure/window/reinforced{ dir = 1; @@ -59596,18 +59608,6 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"hKJ" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/security, -/obj/structure/cable/green, -/obj/structure/closet/secure_closet/evidence{ - name = "personal belongings storage" - }, -/obj/structure/machinery/power/apc/south, -/turf/simulated/floor/tiled/white, -/area/horizon/security/autopsy_laboratory) "hKK" = ( /obj/effect/landmark{ name = "CCIAAgent" @@ -59869,6 +59869,16 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_1/operations/starboard) +"hMe" = ( +/obj/effect/floor_decal/corner/blue/full{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/security, +/obj/structure/morgue{ + dir = 2 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/security/autopsy_laboratory) "hMf" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/disposalpipe/segment{ @@ -59881,6 +59891,14 @@ dir = 8 }, /area/horizon/holodeck/source_sauna) +"hMl" = ( +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/structure/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/security/investigations_hallway) "hMn" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/dark/full, @@ -59926,24 +59944,12 @@ icon_state = "white" }, /area/centcom/legion) -"hMO" = ( -/obj/structure/bed/stool/chair/sofa/pew/right{ +"hMM" = ( +/obj/structure/bed/stool/chair/sofa/pew/left{ dir = 4 }, /obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/structure/machinery/firealarm/west{ - dir = 1; - pixel_x = 0; - pixel_y = 26 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/camera{ - c_tag = "Service - Chapel 2"; - network = list("Service") + dir = 6 }, /turf/simulated/floor/wood, /area/horizon/service/chapel/main) @@ -60056,12 +60062,6 @@ /obj/effect/floor_decal/industrial/hatch_door/yellow, /turf/simulated/floor/tiled/full, /area/horizon/hallway/primary/deck_3/central) -"hNH" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/evidence_storage) "hNK" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -60203,14 +60203,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/atmos/propulsion/starboard) -"hOv" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/table/stone/marble, -/obj/item/flame/candle, -/turf/simulated/floor/wood, -/area/horizon/service/chapel/main) "hOw" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -60396,27 +60388,6 @@ /obj/item/gun/projectile/automatic/rifle/jingya/unloaded, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) -"hPv" = ( -/obj/structure/table/standard, -/obj/item/storage/toolbox/electrical{ - pixel_y = 14; - pixel_x = -8 - }, -/obj/item/stack/cable_coil{ - pixel_x = -6 - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/robotanalyzer{ - pixel_y = 11; - pixel_x = 7 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "hPw" = ( /turf/simulated/wall, /area/horizon/maintenance/deck_2/service/port) @@ -60446,16 +60417,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_2/wing/starboard/nacelle) -"hPF" = ( -/obj/effect/floor_decal/corner/beige, -/obj/structure/table/glass, -/obj/item/storage/slide_projector{ - pixel_x = 5; - pixel_y = 10 - }, -/obj/structure/machinery/light, -/turf/simulated/floor/tiled/white, -/area/horizon/security/forensic_laboratory) "hPH" = ( /obj/structure/machinery/door/blast/shutters/open{ dir = 4; @@ -60663,14 +60624,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"hQW" = ( -/obj/effect/floor_decal/corner/blue/diagonal, -/obj/structure/machinery/optable{ - name = "autopsy table" - }, -/obj/effect/floor_decal/industrial/outline/security, -/turf/simulated/floor/tiled/white, -/area/horizon/security/autopsy_laboratory) "hRc" = ( /obj/effect/floor_decal/corner/dark_green/diagonal, /obj/structure/bookcase{ @@ -60754,6 +60707,15 @@ name = "overgrowth" }, /area/horizon/holodeck/source_moghes) +"hRO" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/interrogation_1) "hRP" = ( /obj/structure/machinery/atmospherics/unary/vent_pump/high_volume, /obj/effect/map_effect/marker/airlock/docking{ @@ -60826,6 +60788,29 @@ /obj/structure/reagent_dispensers/water_cooler, /turf/simulated/floor/wood, /area/horizon/command/bridge/upperdeck) +"hSp" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/item/flag/biesel/l{ + pixel_y = 8 + }, +/obj/item/flag/biesel/l{ + pixel_y = 8 + }, +/obj/item/flag/biesel{ + pixel_y = 8 + }, +/obj/item/flag/biesel{ + pixel_y = 8 + }, +/obj/item/flag/biesel{ + pixel_y = 8 + }, +/obj/item/storage/box/tcaf_pamphlet, +/obj/item/material/twohanded/pike/flag, +/turf/unsimulated/floor, +/area/centcom/legion/hangar5) "hSq" = ( /obj/effect/floor_decal/corner/yellow/full{ dir = 8 @@ -61034,6 +61019,12 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/research) +"hUi" = ( +/obj/structure/platform_deco{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) "hUv" = ( /turf/simulated/wall/r_wall, /area/horizon/maintenance/deck_3/aft/port/far) @@ -61104,24 +61095,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/cryo) -"hVp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/central) "hVq" = ( /obj/structure/table/wood, /obj/item/flame/candle{ @@ -61322,38 +61295,6 @@ }, /turf/simulated/floor/wood, /area/horizon/service/mess_hall) -"hXb" = ( -/obj/structure/machinery/button/switch/windowtint{ - dir = 4; - id = "chapel"; - pixel_x = 24; - pixel_y = 3 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/junction, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/platform_deco{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/main) -"hXe" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/structure/machinery/light/floor{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/rnd/hallway) "hXf" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -61479,6 +61420,32 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/wing/port/far) +"hYe" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/folder/sec{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/item/pen/red, +/obj/item/pen{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/paper/stickynotes/pad/random{ + pixel_x = 10; + pixel_y = -3 + }, +/obj/effect/floor_decal/corner/beige/diagonal, +/obj/structure/machinery/camera/network/security{ + c_tag = "Security - Forensic Laboratory Port"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) "hYg" = ( /obj/structure/cable{ icon_state = "4-8" @@ -61500,13 +61467,6 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/supermatter/mainchamber) -"hYp" = ( -/obj/structure/engineer_maintenance/electric{ - dir = 8 - }, -/obj/structure/engineer_maintenance/pipe, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/security/evidence_storage) "hYr" = ( /obj/structure/machinery/computer/ship/navigation, /obj/structure/machinery/light{ @@ -61770,6 +61730,15 @@ }, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) +"iah" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "iai" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -61779,6 +61748,14 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/engineering/locker_room) +"iaj" = ( +/obj/structure/machinery/mass_driver{ + _wifi_id = "chapel_driver"; + id = "chapel_driver" + }, +/obj/effect/floor_decal/industrial/hatch/red, +/turf/simulated/floor/plating, +/area/horizon/crew/lounge) "iam" = ( /obj/effect/floor_decal/corner/brown{ dir = 10 @@ -62040,6 +62017,16 @@ }, /turf/simulated/floor/tiled, /area/horizon/hangar/airstation) +"ibT" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/structure/lattice/catwalk/indoor/grate/white, +/turf/simulated/floor/plating, +/area/horizon/operations/machinist) "ibU" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, @@ -62112,6 +62099,14 @@ /obj/effect/floor_decal/industrial/hatch_door/yellow, /turf/simulated/floor/tiled/dark/full, /area/horizon/rnd/xenobiology/xenoflora) +"ico" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/cable/green, +/obj/structure/machinery/power/apc/low/east, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/office) "ics" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 @@ -62403,6 +62398,22 @@ /obj/item/flashlight/lantern, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_sauna) +"idR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/storage_maintenance) "idT" = ( /obj/effect/floor_decal/industrial/outline/red, /obj/structure/table/rack, @@ -62572,19 +62583,6 @@ /obj/structure/platform_stairs/full/east_west_cap, /turf/simulated/floor/tiled/dark, /area/horizon/service/mess_hall) -"ieQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "ieR" = ( /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, @@ -62935,6 +62933,14 @@ }, /turf/simulated/floor/tiled, /area/horizon/command/bridge/upperdeck) +"ihJ" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/corner/beige/diagonal, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) "ihL" = ( /obj/effect/floor_decal/corner/brown{ dir = 5 @@ -62960,6 +62966,18 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos) +"ihZ" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "iib" = ( /obj/structure/cable/green{ icon_state = "2-8" @@ -63003,6 +63021,10 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/break_room) +"iio" = ( +/obj/structure/bed/stool/chair/wood, +/turf/simulated/floor/carpet/art, +/area/horizon/crew/lounge) "iiv" = ( /obj/structure/machinery/vending/snack{ name = "Free Chocolate Corp"; @@ -63038,19 +63060,19 @@ }, /turf/simulated/floor/tiled, /area/horizon/rnd/hallway) +"iiE" = ( +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/operations/machinist) "iiI" = ( /obj/effect/floor_decal/industrial/warning/cee{ dir = 4 }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior/no_shields) -"iiL" = ( -/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/horizon/security/firing_range) "iiN" = ( /obj/structure/shuttle_part/tcfl{ icon_state = "0,1" @@ -63135,35 +63157,17 @@ }, /turf/simulated/floor/plating, /area/horizon/hangar/intrepid) -"ijj" = ( -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -29; - pixel_x = 2 - }, -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/full, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "ijk" = ( /obj/effect/floor_decal/corner/mauve/diagonal, /turf/simulated/floor/tiled/dark, /area/horizon/storage/eva) "ijp" = ( -/obj/structure/machinery/door/blast/shutters{ - id = "shutters_deck2_workshopgarage"; - name = "Machinist Workshop Garage Shutter" +/obj/structure/closet/crate/coffin, +/obj/structure/closet/crate/coffin{ + pixel_y = 7 }, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) +/turf/simulated/floor/lino, +/area/horizon/service/chapel/office) "ijx" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -63260,23 +63264,6 @@ /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark/full, /area/horizon/stairwell/engineering/deck_2) -"ijY" = ( -/obj/structure/platform, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/machinery/disposal/small/north{ - dir = 2; - pixel_y = -1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/main) "ikc" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 @@ -63851,26 +63838,6 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) -"inJ" = ( -/obj/structure/sign/staff_only{ - pixel_x = -31 - }, -/obj/structure/machinery/door/airlock/service{ - dir = 1; - name = "Chapel Storage"; - req_access = list(22) - }, -/obj/structure/machinery/door/firedoor, -/obj/effect/map_effect/door_helper/unres{ - dir = 1 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/office) "inR" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -64149,23 +64116,6 @@ /obj/structure/table/reinforced/steel, /turf/simulated/floor/carpet/rubber, /area/horizon/command/bridge/controlroom) -"ipG" = ( -/obj/structure/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/horizon/security/firing_range) -"ipM" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/closet/secure_closet/evidence{ - name = "evidence storage locker B" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/evidence_storage) "ipQ" = ( /obj/random/dirt_75, /obj/random/maintenance_junk_or_loot, @@ -64485,6 +64435,17 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/storage/eva) +"iri" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/obj/structure/closet/secure_closet/evidence{ + name = "Illegal Substances" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/machinery/alarm/north, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "iro" = ( /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled, @@ -64497,17 +64458,6 @@ /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled, /area/horizon/operations/lobby) -"irD" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 8 - }, -/obj/structure/machinery/camera/network/security{ - c_tag = "Security - Interrogation"; - name = "interrogation"; - network = list("Interrogation") - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/interrogation) "irI" = ( /obj/structure/railing/mapped, /turf/simulated/open, @@ -64654,21 +64604,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/rnd/lab) -"isC" = ( -/obj/effect/landmark/start{ - name = "Chaplain" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/horizon/service/chapel/main) -"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) "isM" = ( /obj/structure/shuttle_part/scc/scout{ density = 0; @@ -64751,6 +64686,13 @@ /obj/effect/floor_decal/industrial/loading/yellow, /turf/unsimulated/floor, /area/centcom/spawning) +"itE" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) "itH" = ( /turf/simulated/open, /area/horizon/medical/hallway/upper) @@ -64828,19 +64770,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/shuttle/intrepid/main_compartment) -"iuc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "iue" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -65485,12 +65414,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/stairwell/port/deck_2) -"ixW" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ - id = "Interro" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/security/interrogation) "ixY" = ( /turf/unsimulated/floor{ icon_state = "wood" @@ -65855,6 +65778,22 @@ }, /turf/simulated/floor/plating, /area/merchant_station/warehouse) +"iAs" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) "iAy" = ( /obj/effect/decal/fake_object{ color = "#545c68"; @@ -65932,6 +65871,18 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/lobby) +"iBg" = ( +/obj/structure/table/steel, +/obj/item/hand_labeler{ + pixel_y = 10 + }, +/obj/item/storage/box/evidence, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/item/radio/intercom/east, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "iBh" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -66139,13 +66090,6 @@ icon_state = "dark_preview" }, /area/centcom/control) -"iCd" = ( -/obj/effect/floor_decal/corner/brown/diagonal, -/obj/effect/floor_decal/corner/brown{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "iCt" = ( /obj/structure/table/rack, /obj/item/clothing/mask/breath, @@ -66538,28 +66482,13 @@ }, /turf/simulated/floor/tiled, /area/horizon/command/bridge/controlroom) -"iFx" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/machinery/light_switch/east{ - pixel_y = 30 - }, -/obj/structure/machinery/light/floor{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/horizon/security/investigators_office) +"iFz" = ( +/obj/structure/table/rack, +/obj/item/rig/retro/equipped, +/obj/item/rig/retro/equipped, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor, +/area/centcom/legion/hangar5) "iFA" = ( /obj/structure/machinery/alarm/north, /obj/structure/cable/green{ @@ -66587,19 +66516,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/operations/starboard) -"iFL" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/structure/machinery/requests_console/north{ - department = "Chapel"; - departmentType = 1 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/wood, -/area/horizon/service/chapel/office) "iFM" = ( /obj/structure/table/fancy, /obj/item/storage/box/fancy/matches{ @@ -66754,14 +66670,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/drone_fabrication) -"iGV" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/firealarm/south, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/starboard) "iHc" = ( /obj/item/inflatable_duck, /obj/item/beach_ball, @@ -66830,13 +66738,6 @@ }, /turf/simulated/floor/wood, /area/horizon/service/mess_hall) -"iHr" = ( -/obj/structure/platform, -/obj/structure/table/standard, -/obj/item/storage/box/fancy/tray/machinist, -/obj/effect/floor_decal/corner_wide/brown, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) "iHu" = ( /obj/structure/closet/crate/freezer/rations, /obj/effect/floor_decal/industrial/outline/blue, @@ -66951,13 +66852,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor, /area/horizon/maintenance/deck_3/aft/port) -"iHV" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/security/forensic_laboratory) "iId" = ( /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/wood, @@ -67044,18 +66938,6 @@ /obj/structure/table/reinforced/glass, /turf/simulated/floor/wood, /area/horizon/rnd/xenoarch/presentation) -"iIU" = ( -/obj/structure/machinery/alarm/west{ - dir = 1; - pixel_x = 0; - pixel_y = 20 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/light, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "iIV" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /obj/structure/sign/staff_only{ @@ -67266,19 +67148,6 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"iKp" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform_stairs/full/east_west_cap, -/obj/structure/platform/cutout{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/main) "iKq" = ( /obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, /obj/structure/machinery/door/blast/regular/open{ @@ -67289,6 +67158,13 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/rnd/telesci) +"iKs" = ( +/obj/structure/bed/stool/chair/sofa/pew/left{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) "iKu" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 1 @@ -67348,13 +67224,6 @@ }, /turf/simulated/floor/marble, /area/horizon/holodeck/source_tribunal) -"iKT" = ( -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/white, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "iKW" = ( /obj/item/hullbeacon/red, /obj/structure/sign/securearea{ @@ -67464,6 +67333,15 @@ "iLL" = ( /turf/simulated/wall/r_wall, /area/horizon/repoffice/consular_one) +"iLM" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "iLR" = ( /turf/simulated/wall/r_wall, /area/horizon/engineering/atmos) @@ -67495,6 +67373,17 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/atmos/turbine) +"iMc" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/structure/machinery/ringer_button{ + id = "investigation_ringer"; + pixel_x = 8; + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/horizon/security/investigations_hallway) "iMi" = ( /obj/random/maintenance_junk_or_loot, /obj/effect/floor_decal/industrial/warning{ @@ -67519,6 +67408,10 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/medical/paramedic) +"iMo" = ( +/obj/structure/table/wood, +/turf/simulated/floor/carpet/red, +/area/horizon/service/chapel/office) "iMp" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -67683,6 +67576,15 @@ }, /turf/simulated/floor/tiled, /area/horizon/repoffice/representative_one) +"iNv" = ( +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/security/interrogation/monitoring) "iNy" = ( /obj/structure/bed/stool/chair{ dir = 1 @@ -67815,6 +67717,17 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/hydroponics/hazard) +"iOt" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) "iOv" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 6 @@ -67862,6 +67775,10 @@ icon_state = "desert" }, /area/centcom/shared_dream) +"iOK" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/operations/machinist) "iOL" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -68284,6 +68201,15 @@ }, /turf/simulated/floor/carpet, /area/horizon/command/heads/captain) +"iRi" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/obj/structure/closet/crate/secure/weapon{ + req_access = list(4) + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "iRm" = ( /obj/structure/railing/mapped{ dir = 1 @@ -68612,19 +68538,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/engineering/hallway/fore) -"iUg" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/service/starboard) "iUl" = ( /obj/structure/machinery/atmospherics/pipe/zpipe/up/supply{ dir = 1 @@ -68739,6 +68652,12 @@ }, /turf/template_noop, /area/template_noop) +"iUS" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) "iUY" = ( /obj/structure/machinery/atmospherics/pipe/manifold/visible/purple, /obj/effect/floor_decal/corner_wide/black{ @@ -68849,19 +68768,6 @@ /obj/structure/machinery/alarm/north, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/main/port) -"iVS" = ( -/obj/effect/floor_decal/corner/dark_blue/full, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/machinery/light, -/obj/structure/closet/secure_closet/evidence{ - name = "evidence storage locker E" - }, -/obj/structure/machinery/camera/network/security{ - c_tag = "Security - Evidence Storage"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/evidence_storage) "iVW" = ( /obj/effect/floor_decal/corner/purple/full, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -68984,6 +68890,13 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_2/fore) +"iWF" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) "iWI" = ( /obj/structure/machinery/meter, /obj/structure/machinery/atmospherics/pipe/manifold/visible/black{ @@ -69031,16 +68944,6 @@ name = "thruster mount" }, /area/horizon/engineering/atmos/propulsion/starboard) -"iWZ" = ( -/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/machinery/iv_drip, -/obj/effect/floor_decal/corner_wide/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) "iXc" = ( /obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, /obj/structure/cable/green, @@ -69308,26 +69211,6 @@ /obj/structure/machinery/alarm/south, /turf/simulated/floor/plating, /area/horizon/engineering/reactor/supermatter/airlock) -"iYH" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/sign/poster/pinup/bay_17{ - pixel_x = 32 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/service/starboard) "iYO" = ( /obj/structure/machinery/power/apc/low/east, /obj/structure/cable{ @@ -69335,16 +69218,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/operations/starboard) -"iYP" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/structure/machinery/power/apc/west, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/interrogation) "iYR" = ( /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled/dark/full, @@ -69405,6 +69278,15 @@ /obj/effect/floor_decal/industrial/hatch_door/yellow, /turf/simulated/floor/tiled/full, /area/horizon/rnd/xenobiology/xenoflora) +"iZg" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) "iZh" = ( /obj/structure/lattice, /obj/structure/platform/ledge/dark{ @@ -69806,6 +69688,13 @@ /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/hallway/interior) +"jbJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/office) "jbO" = ( /obj/effect/floor_decal/industrial/outline_straight/yellow{ dir = 4 @@ -70101,13 +69990,6 @@ }, /turf/simulated/floor/plating, /area/horizon/operations/mining_main/refinery) -"jeg" = ( -/obj/structure/bed/stool/chair/sofa/pew/left{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/wood, -/area/horizon/service/chapel/main) "jek" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/industrial/warning, @@ -70402,6 +70284,15 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/starboard) +"jgq" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/interrogation_2) "jgs" = ( /obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, /obj/structure/machinery/door/blast/regular{ @@ -70827,14 +70718,12 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/transport1) -"jju" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 +"jjs" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 9 }, -/obj/structure/cable/green, -/obj/structure/machinery/power/apc/low/east, -/turf/simulated/floor/wood, -/area/horizon/service/chapel/office) +/turf/simulated/floor/tiled/white, +/area/horizon/security/autopsy_laboratory) "jjv" = ( /obj/structure/machinery/door/firedoor{ req_one_access = list(24,11,67,73); @@ -70913,21 +70802,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/operations/starboard/amidships) -"jjK" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/engineering/atmos/storage_maintenance) "jjP" = ( /obj/structure/platform_stairs, /obj/structure/machinery/door/window/northleft, @@ -70983,6 +70857,15 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/hallway/primary/deck_1/central) +"jjZ" = ( +/obj/effect/floor_decal/corner/beige/diagonal, +/obj/structure/machinery/power/apc/west, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/closet, +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) "jkb" = ( /obj/effect/decal/warning_stripes, /obj/structure/machinery/acting/changer, @@ -71257,6 +71140,15 @@ /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/horizon/engineering/equipment) +"jlJ" = ( +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "jlN" = ( /obj/effect/floor_decal/corner/mauve/full{ dir = 1 @@ -71327,20 +71219,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard) -"jmg" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ - id = "investigator_office" - }, -/obj/structure/machinery/door/blast/regular{ - density = 0; - dir = 2; - icon_state = "pdoor0"; - id = "Security Lockdown"; - name = "Security Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/security/investigators_office) "jmk" = ( /obj/structure/machinery/bodyscanner{ dir = 8 @@ -71491,6 +71369,15 @@ /obj/effect/floor_decal/corner/dark_blue/diagonal, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/port/docks) +"jnb" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/security/interrogation/monitoring) "jnl" = ( /obj/structure/bed/stool, /turf/unsimulated/floor, @@ -71534,13 +71421,6 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_tribunal) -"jnz" = ( -/turf/simulated/wall, -/area/horizon/security/evidence_storage) -"jnA" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/horizon/security/interrogation/monitoring) "jnB" = ( /obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, /obj/structure/cable/green, @@ -71619,14 +71499,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/storage/eva) -"jnP" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/random/dirt_75, -/obj/item/material/shard, -/turf/simulated/floor/tiled/dark, -/area/horizon/maintenance/deck_3/security/port) "jnR" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -71646,6 +71518,15 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/operations/starboard/amidships) +"jnS" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/horizon/security/investigations_hallway) "jnW" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 10 @@ -71694,15 +71575,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/rnd/eva) -"jos" = ( -/obj/structure/railing/mapped, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/lattice/catwalk/indoor/grate/light, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "jou" = ( /obj/structure/railing/mapped{ dir = 4 @@ -72181,6 +72053,27 @@ icon_state = "beachcorner" }, /area/centcom/shared_dream) +"jsa" = ( +/obj/effect/floor_decal/industrial/hatch_door/engineering{ + dir = 1 + }, +/obj/structure/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/machinery/door/airlock/maintenance{ + name = "Atmospherics Storage Room"; + dir = 4; + req_one_access = list(12,29,47) + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_2/aft) "jsc" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/warning{ @@ -72300,24 +72193,21 @@ /obj/structure/machinery/alarm/west, /turf/simulated/floor/tiled, /area/horizon/operations/break_room) -"jsR" = ( -/obj/structure/machinery/light{ - dir = 4 - }, +"jsU" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2" }, -/obj/structure/machinery/light_switch/north{ - pixel_x = 23; - pixel_y = 0; - dir = 4 +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/floor_decal/corner_wide/brown{ - dir = 5 +/obj/structure/cable{ + icon_state = "1-4" }, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/storage_maintenance) "jsX" = ( /obj/effect/floor_decal/corner/mauve/diagonal, /obj/structure/sign/nosmoking_2{ @@ -72382,6 +72272,18 @@ "jtk" = ( /turf/simulated/wall/shuttle/scc, /area/horizon/shuttle/intrepid/buffet) +"jtm" = ( +/obj/structure/table/reinforced/steel, +/obj/structure/machinery/door/window/desk/northright{ + name = "Machinist Workshop Desk"; + req_access = list(29) + }, +/obj/structure/machinery/door/blast/shutters{ + id = "shutters_deck2_workshopdesk"; + name = "Machinist Workshop Desk Shutter" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "jtn" = ( /obj/structure/foamedmetal, /obj/structure/shuttle_part/scc_space_ship{ @@ -72389,12 +72291,6 @@ }, /turf/simulated/floor/plating, /area/horizon/security/brig) -"jtp" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/starboard) "jtq" = ( /obj/effect/floor_decal/corner/mauve{ dir = 10 @@ -72404,6 +72300,14 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/horizon/rnd/xenological) +"jtv" = ( +/obj/structure/engineer_maintenance/electric{ + dir = 8 + }, +/obj/structure/engineer_maintenance/pipe, +/obj/structure/machinery/alarm/west, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/evidence_storage) "jty" = ( /obj/random/loot, /obj/random/dirt_75, @@ -72540,18 +72444,6 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_2/main/starboard) -"juH" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/checkpoint2) "juN" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /obj/structure/machinery/door/blast/odin{ @@ -72656,6 +72548,27 @@ /obj/structure/machinery/alarm/east, /turf/simulated/floor/tiled, /area/horizon/hangar/intrepid/interstitial) +"jvp" = ( +/obj/structure/machinery/door/airlock/security{ + name = "Interrogation A"; + req_access = list(1); + dir = 4 + }, +/obj/structure/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/interrogation_1) "jvr" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -72959,21 +72872,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/skipjack) -"jxo" = ( -/obj/item/deployable_kit/legion_barrier, -/obj/item/deployable_kit/legion_barrier, -/obj/item/deployable_kit/legion_barrier, -/obj/item/deployable_kit/legion_barrier, -/obj/item/deployable_kit/legion_barrier, -/obj/item/deployable_kit/legion_barrier, -/obj/item/deployable_kit/legion_barrier, -/obj/item/deployable_kit/legion_barrier, -/obj/item/deployable_kit/legion_barrier, -/obj/item/deployable_kit/legion_barrier, -/obj/item/deployable_kit/legion_barrier, -/obj/item/deployable_kit/legion_barrier, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) "jxr" = ( /obj/structure/sink/kitchen{ dir = 8; @@ -73016,13 +72914,6 @@ /obj/structure/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/horizon/engineering/hallway/aft) -"jxC" = ( -/obj/structure/closet/crate/coffin, -/obj/structure/closet/crate/coffin{ - pixel_y = 7 - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/office) "jxG" = ( /obj/structure/machinery/door/blast/regular{ id = "iso_b_purge"; @@ -73039,6 +72930,14 @@ }, /turf/simulated/floor/reinforced, /area/horizon/rnd/xenoarch/isolation_b) +"jxH" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 4 + }, +/obj/structure/machinery/power/apc/south, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/interrogation_2) "jxL" = ( /obj/effect/decal/cleanable/dirt, /obj/random/maintenance_junk_or_loot, @@ -73098,13 +72997,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos) -"jyk" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 5 - }, -/obj/structure/table/glass, -/turf/simulated/floor/tiled/white, -/area/horizon/security/forensic_laboratory) "jyl" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/random/maintenance_junk_or_loot, @@ -73222,6 +73114,14 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/rnd/chemistry) +"jyY" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/horizon/operations/machinist) "jzd" = ( /obj/structure/shuttle/engine/propulsion{ icon_state = "propulsion_r"; @@ -73444,9 +73344,6 @@ /obj/structure/machinery/power/apc/low/north, /turf/simulated/floor/tiled/dark, /area/horizon/hangar/control) -"jAu" = ( -/turf/simulated/wall/r_wall, -/area/horizon/service/bar) "jAw" = ( /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/monotile, @@ -73594,6 +73491,15 @@ /obj/random/junk, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_1/auxatmos) +"jBE" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/structure/machinery/light/floor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "jBK" = ( /obj/effect/floor_decal/corner/blue{ dir = 4 @@ -73825,20 +73731,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/operations/starboard/far) -"jDe" = ( -/obj/structure/machinery/firealarm/west{ - dir = 4; - pixel_x = 21 - }, -/obj/structure/machinery/disposal/small/west, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "jDh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/warning, @@ -73907,17 +73799,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/service/custodial/disposals/deck_1) -"jDR" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/table/stone/marble, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/random/pottedplant_small, -/turf/simulated/floor/wood, -/area/horizon/service/chapel/main) "jDS" = ( /obj/effect/floor_decal/corner_wide/green{ dir = 5 @@ -74090,16 +73971,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/horizon/security/checkpoint) -"jEZ" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/horizon/security/investigations_hallway) "jFf" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 8 @@ -74126,16 +73997,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/hangar/auxiliary) -"jFq" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/main) "jFs" = ( /obj/structure/machinery/mineral/stacking_machine{ id = "horizon_stacking_3"; @@ -74399,6 +74260,13 @@ "jHa" = ( /turf/simulated/wall, /area/horizon/medical/psych) +"jHe" = ( +/obj/structure/table/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/rnd/hallway) "jHf" = ( /obj/structure/cable/green{ icon_state = "2-8" @@ -74439,6 +74307,16 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/central) +"jHP" = ( +/obj/effect/floor_decal/corner/beige/diagonal, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) "jHQ" = ( /obj/structure/machinery/newscaster{ dir = 4; @@ -74468,6 +74346,14 @@ /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/horizon/ai/upload_foyer) +"jHS" = ( +/obj/structure/closet/crate/freezer, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/obj/item/radio/intercom/south, +/turf/simulated/floor/tiled/white, +/area/horizon/security/autopsy_laboratory) "jHT" = ( /obj/effect/floor_decal/industrial/warning/corner, /obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ @@ -74514,6 +74400,15 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/unsimulated/floor, /area/centcom/legion/hangar5) +"jIo" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 + }, +/obj/structure/machinery/smartfridge/tradeshelf/evidence{ + name = "Evidence Shelf D" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "jIt" = ( /obj/structure/machinery/light/floor{ dir = 1 @@ -74699,6 +74594,20 @@ icon_state = "dark_preview" }, /area/centcom/holding) +"jJA" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/machinery/door/window{ + dir = 4 + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "jJP" = ( /obj/structure/grille, /obj/structure/window/shuttle/scc_space_ship/cardinal, @@ -74758,6 +74667,14 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/rnd/hallway) +"jKo" = ( +/obj/structure/machinery/light_switch/east, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/random/pottedplant, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) "jKp" = ( /obj/structure/cryofeed{ dir = 1 @@ -74785,6 +74702,20 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/rnd/lab) +"jKv" = ( +/obj/structure/machinery/disposal/small/north{ + dir = 4; + pixel_y = 0; + pixel_x = 18 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/office) "jKw" = ( /obj/random/junk, /obj/structure/lattice/catwalk/indoor/grate/dark, @@ -74928,23 +74859,6 @@ "jLH" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/command/heads/captain) -"jLK" = ( -/obj/structure/machinery/door/airlock/mining{ - dir = 4; - name = "Machinist Workshop"; - req_access = list(29) - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow{ - dir = 8 - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 8 - }, -/obj/structure/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "jLM" = ( /obj/effect/landmark/entry_point/aft{ name = "aft engines, starboard 1" @@ -74999,20 +74913,6 @@ }, /turf/simulated/floor, /area/horizon/repoffice/consular_two) -"jMb" = ( -/obj/structure/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/machinery/vending/wardrobe/robo_wardrobe, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/black/full{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "jMf" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -75061,10 +74961,6 @@ /obj/effect/floor_decal/spline/plain/corner/black, /turf/simulated/floor/lino, /area/horizon/service/cafeteria) -"jMx" = ( -/obj/structure/machinery/firealarm/east, -/turf/simulated/wall, -/area/horizon/security/forensic_laboratory) "jMA" = ( /obj/structure/machinery/door/blast/odin{ id = "hideout_access" @@ -75107,6 +75003,36 @@ }, /turf/simulated/wall, /area/horizon/engineering/drone_fabrication) +"jMT" = ( +/obj/structure/table/steel, +/obj/item/storage/box/gloves{ + pixel_x = 7; + pixel_y = 1 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -9; + pixel_y = 14 + }, +/obj/structure/machinery/camera/network/security{ + c_tag = "Security - Morgue"; + dir = 4 + }, +/obj/structure/machinery/ringer/south{ + department = "Security"; + id = "investigation_ringer"; + req_access = list(1) + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/evidence_storage) +"jMX" = ( +/obj/structure/table/rack, +/obj/item/rig/retro/equipped, +/obj/item/rig/retro/equipped, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/unsimulated/floor, +/area/centcom/legion/hangar5) "jNd" = ( /obj/structure/machinery/atmospherics/pipe/simple/visible/green{ dir = 9 @@ -75118,6 +75044,13 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/atmos/turbine) +"jNe" = ( +/obj/structure/machinery/door/blast/shutters{ + id = "shutters_deck2_workshopgarage"; + name = "Machinist Workshop Garage Shutter" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "jNf" = ( /obj/structure/tank_wall{ icon_state = "m-4" @@ -75182,10 +75115,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/operations/mail_room) -"jNw" = ( -/obj/structure/bed/stool/chair/wood, -/turf/simulated/floor/carpet/art, -/area/horizon/crew/lounge) "jNy" = ( /obj/structure/machinery/atmospherics/pipe/simple/visible{ dir = 5 @@ -75434,6 +75363,9 @@ }, /turf/space/transit/north, /area/template_noop) +"jOK" = ( +/turf/simulated/wall, +/area/horizon/security/interrogation_1) "jOM" = ( /turf/simulated/wall/r_wall, /area/horizon/maintenance/deck_1/wing/starboard/far) @@ -75527,18 +75459,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/command/bridge/upperdeck) -"jPA" = ( -/obj/structure/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/structure/machinery/door/airlock/maintenance{ - name = "Security Maintenance"; - req_access = list(1) - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/security/interrogation/monitoring) "jPB" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, @@ -75995,12 +75915,6 @@ /obj/structure/machinery/door/firedoor/noid, /turf/simulated/floor/tiled/dark/full, /area/shuttle/mercenary) -"jSi" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/horizon/security/custodial) "jSj" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, /obj/random/dirt_75, @@ -76313,6 +76227,13 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/engineering/hallway/fore) +"jUb" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/security/autopsy_laboratory) "jUc" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 8 @@ -76547,6 +76468,9 @@ }, /turf/simulated/floor/reinforced, /area/horizon/engineering/atmos/propulsion) +"jVK" = ( +/turf/simulated/wall/r_wall, +/area/horizon/maintenance/deck_2/elevator) "jVL" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -76566,6 +76490,13 @@ }, /turf/simulated/floor/wood, /area/horizon/crew/lounge) +"jVT" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/railing/mapped, +/turf/simulated/floor/grass/no_edge, +/area/horizon/rnd/hallway) "jVV" = ( /obj/effect/floor_decal/corner/mauve{ dir = 8 @@ -76615,22 +76546,6 @@ }, /turf/simulated/floor/wood, /area/merchant_station/warehouse) -"jWt" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/horizon/hallway/primary/deck_2/starboard) "jWv" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -76662,6 +76577,10 @@ icon_state = "wood" }, /area/centcom/control) +"jWB" = ( +/obj/structure/table/rack, +/turf/unsimulated/floor, +/area/centcom/legion/hangar5) "jWF" = ( /obj/structure/machinery/light{ dir = 4 @@ -76790,6 +76709,23 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, /area/horizon/operations/commissary) +"jXz" = ( +/obj/structure/machinery/door/blast/shutters/open{ + dir = 2; + id = "seconddeckdockext"; + name = "Security Checkpoint External Shutter" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/checkpoint2) "jXA" = ( /turf/simulated/wall, /area/horizon/service/hydroponics/garden) @@ -76840,36 +76776,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/starboard) -"jXR" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/machinery/disposal/small/north{ - dir = 2; - pixel_y = 19 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/horizon/service/chapel/office) -"jXS" = ( -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "jXT" = ( /obj/effect/floor_decal/corner_wide/green{ dir = 6 @@ -76899,6 +76805,16 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/marble, /area/horizon/holodeck/source_trinary) +"jYf" = ( +/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/machinery/iv_drip, +/obj/effect/floor_decal/corner_wide/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist) "jYg" = ( /obj/structure/machinery/atmospherics/pipe/manifold/visible/purple, /obj/structure/lattice/catwalk/indoor/grate/dark, @@ -77194,21 +77110,6 @@ }, /turf/simulated/open/airless, /area/horizon/exterior) -"kan" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/security/investigations_hallway) "kaw" = ( /obj/structure/table/reinforced/steel, /obj/structure/machinery/light/small, @@ -77368,18 +77269,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hangar/intrepid) -"kbs" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/security/interrogation) "kbt" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -77424,16 +77313,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/rnd/test_range) -"kbI" = ( -/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/structure/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/horizon/security/custodial) "kbL" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner_wide/paleblue/full, @@ -78656,23 +78535,6 @@ }, /turf/simulated/floor/plating, /area/horizon/service/bar) -"kjr" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/filingcabinet/filingcabinet{ - name = "filing cabinet C"; - pixel_x = 7; - pixel_y = 1 - }, -/obj/structure/filingcabinet/filingcabinet{ - name = "filing cabinet D"; - pixel_x = -6; - pixel_y = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/evidence_storage) "kjy" = ( /obj/effect/floor_decal/corner/grey, /turf/unsimulated/floor, @@ -78876,16 +78738,6 @@ }, /turf/space/transit/north, /area/template_noop) -"kkT" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/structure/bed/stool/chair{ - name = "uncomfortable chair"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/interrogation) "kkV" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -78972,13 +78824,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/main/port) -"klr" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/horizon/rnd/hallway) "klu" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 4 @@ -79029,6 +78874,19 @@ /obj/structure/window/reinforced, /turf/simulated/floor/wood, /area/horizon/command/bridge/upperdeck) +"klN" = ( +/obj/structure/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/horizon/security/checkpoint2) "klO" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/structure/machinery/light/small{ @@ -79099,6 +78957,18 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/research) +"kmi" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "kmj" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -79188,18 +79058,14 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/port/far) -"kmx" = ( -/obj/structure/machinery/atmospherics/unary/vent_pump/on{ +"kmA" = ( +/obj/effect/floor_decal/corner/red/full{ dir = 4 }, -/obj/effect/floor_decal/corner_wide/brown{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) +/obj/structure/machinery/power/apc/south, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/interrogation_1) "kmF" = ( /obj/structure/machinery/firealarm/west, /obj/structure/closet/secure_closet/engineering_electrical, @@ -79433,19 +79299,6 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/medical/gen_treatment) -"knL" = ( -/obj/effect/floor_decal/corner/blue/diagonal, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/horizon/security/autopsy_laboratory) "knV" = ( /obj/effect/floor_decal/corner/brown{ dir = 9 @@ -79552,14 +79405,6 @@ }, /turf/simulated/floor/carpet, /area/horizon/command/bridge/cciaroom) -"koF" = ( -/obj/structure/grille, -/obj/structure/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/turf/simulated/floor/plating, -/area/horizon/security/checkpoint2) "koJ" = ( /obj/effect/floor_decal/corner_wide/yellow/full{ dir = 8 @@ -79982,6 +79827,19 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) +"krP" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform_stairs/full/east_west_cap, +/obj/structure/platform/cutout{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) "krQ" = ( /obj/structure/lattice/catwalk, /obj/item/hullbeacon/red, @@ -80055,13 +79913,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/holding_cell_a) -"ksr" = ( -/obj/structure/machinery/conveyor{ - id = "Robocompo"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "kss" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 7 @@ -80381,6 +80232,16 @@ }, /turf/unsimulated/floor, /area/centcom/holding) +"kuq" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "kus" = ( /obj/effect/floor_decal/corner/yellow{ dir = 5 @@ -80522,6 +80383,16 @@ /obj/structure/machinery/power/outlet, /turf/simulated/floor/tiled/dark/full, /area/horizon/shuttle/intrepid/buffet) +"kvh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) "kvi" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -80723,13 +80594,6 @@ name = "overgrowth" }, /area/horizon/holodeck/source_moghes) -"kwv" = ( -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "kwx" = ( /obj/effect/floor_decal/corner_wide/paleblue/diagonal{ dir = 8 @@ -81294,21 +81158,6 @@ /obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/bluegrid, /area/horizon/ai/chamber) -"kzw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "kzy" = ( /obj/random/dirt_75, /obj/structure/closet/crate/medical, @@ -81555,6 +81404,21 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/reactor/supermatter/waste) +"kAW" = ( +/obj/structure/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/machinery/conveyor_switch/oneway{ + id = "sorting"; + pixel_x = -13; + pixel_y = 22 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/mail_room) "kAX" = ( /obj/effect/floor_decal/industrial/warning, /obj/effect/floor_decal/industrial/outline_straight/yellow{ @@ -81740,6 +81604,19 @@ /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/plating, /area/horizon/engineering/bluespace_drive) +"kBP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/brown/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "kBS" = ( /obj/effect/floor_decal/corner/mauve{ dir = 5 @@ -81823,17 +81700,6 @@ }, /turf/simulated/wall/shuttle/scc, /area/horizon/shuttle/intrepid/buffet) -"kCv" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/reagent_dispensers/water_cooler, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/interrogation/monitoring) "kCC" = ( /turf/simulated/wall/shuttle/unique/tcfl{ icon_state = "1,1" @@ -81896,6 +81762,12 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/shuttle/quark/cargo_hold) +"kCQ" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ + id = "chapel" + }, +/turf/simulated/floor/tiled, +/area/horizon/service/chapel/main) "kCU" = ( /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled, @@ -82298,32 +82170,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/shuttle/intrepid/flight_deck) -"kFv" = ( -/obj/structure/bed/stool/chair/wood, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/horizon/service/chapel/main) -"kFx" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/horizon/operations/lobby) "kFB" = ( /obj/structure/table/stone/marble, /obj/item/flame/candle, @@ -82575,22 +82421,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/hallway/primary/deck_3/central) -"kGE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/horizon/security/investigations_hallway) "kGI" = ( /obj/effect/floor_decal/industrial/outline/grey, /obj/structure/machinery/portable_atmospherics/canister/oxygen, @@ -82877,15 +82707,19 @@ /obj/effect/floor_decal/corner/yellow/full, /turf/simulated/floor/tiled, /area/horizon/stairwell/engineering/deck_1) -"kIz" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 9 +"kIy" = ( +/obj/structure/machinery/light, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/structure/table/steel, -/obj/item/reagent_containers/glass/rag, -/obj/item/reagent_containers/glass/rag, /turf/simulated/floor/tiled, -/area/horizon/security/custodial) +/area/horizon/hallway/primary/deck_2/starboard) "kIE" = ( /obj/effect/floor_decal/spline/plain, /obj/structure/railing/mapped{ @@ -83569,6 +83403,16 @@ /obj/structure/machinery/alarm/north, /turf/simulated/floor/tiled, /area/horizon/rnd/eva) +"kNk" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor, +/area/horizon/security/investigations_hallway) "kNn" = ( /obj/structure/holostool{ dir = 1 @@ -83633,6 +83477,22 @@ }, /turf/unsimulated/floor/dark, /area/antag/actor) +"kNH" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = 9; + pixel_y = 6 + }, +/obj/random/pottedplant_small{ + pixel_x = -6; + pixel_y = 4 + }, +/turf/simulated/floor/carpet/red, +/area/horizon/service/chapel/office) "kNI" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -83761,6 +83621,18 @@ /obj/structure/machinery/light/floor, /turf/simulated/floor/tiled, /area/horizon/engineering/lobby) +"kOT" = ( +/obj/structure/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/vending/wardrobe/chap_wardrobe, +/obj/structure/machinery/camera{ + c_tag = "Service - Chapel Storage"; + network = list("Service") + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/office) "kOX" = ( /obj/structure/bed/stool/chair/office/bridge, /turf/unsimulated/floor/rubber_carpet, @@ -83793,12 +83665,6 @@ }, /turf/simulated/floor/wood, /area/horizon/command/heads/xo) -"kPi" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ - id = "chapel" - }, -/turf/simulated/floor/tiled, -/area/horizon/service/chapel/main) "kPl" = ( /obj/structure/cable/green{ icon_state = "2-8" @@ -83934,6 +83800,11 @@ }, /turf/unsimulated/wall/darkshuttlewall, /area/centcom/control) +"kQC" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/evidence_storage) "kQJ" = ( /obj/structure/dueling_table/no_collide{ icon_state = "bottom_leftt" @@ -84081,19 +83952,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_2/research) -"kRH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "kRR" = ( /obj/structure/machinery/door/blast/shutters/open{ id = "exploratory_chem_shutters"; @@ -84213,18 +84071,6 @@ }, /turf/simulated/wall, /area/horizon/maintenance/substation/security) -"kSQ" = ( -/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/machinery/light/floor{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/main) "kST" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 6 @@ -84338,6 +84184,19 @@ }, /turf/simulated/floor/carpet, /area/shuttle/skipjack) +"kTv" = ( +/obj/structure/machinery/door/airlock/service{ + dir = 1; + name = "Chapel" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/chapel/main) "kTy" = ( /obj/structure/railing/mapped, /obj/structure/railing/mapped{ @@ -84388,12 +84247,6 @@ }, /turf/simulated/floor/carpet, /area/horizon/repoffice/consular_two) -"kTJ" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/horizon/service/chapel/main) "kTK" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/hologram/holopad, @@ -84544,22 +84397,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/medical/exam) -"kUI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor, -/obj/structure/machinery/door/airlock/glass_mining{ - dir = 1; - name = "Mail Sorting"; - req_one_access = list(26,31,67) - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/full, -/area/horizon/operations/mail_room) "kUJ" = ( /obj/item/storage/box/beakers{ pixel_x = 5; @@ -84609,16 +84446,13 @@ "kVd" = ( /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_chapel) -"kVk" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"kVi" = ( +/obj/structure/disposalpipe/segment{ + dir = 1 }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_3/security/port) +/obj/structure/lattice/catwalk/indoor/grate/white, +/turf/simulated/floor/plating, +/area/horizon/operations/machinist) "kVl" = ( /obj/structure/machinery/atmospherics/pipe/simple/visible/yellow, /turf/simulated/floor/plating, @@ -84724,22 +84558,6 @@ /obj/effect/floor_decal/sign/b, /turf/unsimulated/floor, /area/centcom/holding) -"kVR" = ( -/obj/item/storage/box/fancy/csi_markers{ - pixel_x = -9 - }, -/obj/item/storage/briefcase/crimekit{ - pixel_x = 5; - pixel_y = 9 - }, -/obj/structure/table/glass, -/obj/item/storage/briefcase/crimekit{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/effect/floor_decal/corner/beige/diagonal, -/turf/simulated/floor/tiled/white, -/area/horizon/security/forensic_laboratory) "kVS" = ( /obj/structure/table/rack{ dir = 8 @@ -84758,6 +84576,14 @@ /obj/item/clothing/shoes/magboots, /turf/simulated/floor/tiled/dark, /area/horizon/storage/eva) +"kWe" = ( +/obj/structure/closet/secure_closet/evidence{ + name = "evidence storage locker D" + }, +/obj/effect/floor_decal/corner/dark_blue/full, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "kWf" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -84886,6 +84712,16 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/surgery) +"kXj" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) "kXk" = ( /obj/structure/machinery/botany/editor, /obj/effect/floor_decal/corner/mauve/full, @@ -85203,6 +85039,10 @@ }, /turf/simulated/floor/wood, /area/horizon/command/heads/xo) +"kYJ" = ( +/obj/effect/floor_decal/industrial/outline_straight/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "kYP" = ( /obj/structure/table/standard, /obj/item/paper_scanner{ @@ -85314,22 +85154,6 @@ /obj/effect/floor_decal/corner/red, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_trinary) -"kZm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/platform_deco{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/horizon/operations/machinist) "kZw" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 1 @@ -85471,16 +85295,23 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/starboard) -"laD" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +"lat" = ( +/obj/structure/table/rack/retail_shelf{ + name = "storage shelf" }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/item/storage/box/bodybags{ + pixel_x = 8; + pixel_y = 8 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) +/obj/item/storage/box/syringes{ + pixel_x = 8; + pixel_y = -1 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/security/autopsy_laboratory) "laF" = ( /obj/structure/shuttle_part/tcfl{ icon_state = "3,6" @@ -85720,27 +85551,6 @@ /obj/structure/machinery/firealarm/south, /turf/simulated/floor/tiled/white, /area/horizon/crew/washroom/deck_2) -"lbS" = ( -/obj/effect/floor_decal/industrial/outline_straight/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) -"lbW" = ( -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/main) "lbX" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 6 @@ -85756,6 +85566,15 @@ }, /turf/simulated/floor/tiled, /area/horizon/engineering/hallway/aft) +"lcd" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/obj/structure/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "lcf" = ( /obj/structure/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -85888,6 +85707,19 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/wing/starboard) +"ldd" = ( +/obj/structure/platform_stairs/full, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/machinery/button/switch/windowtint{ + dir = 10; + id = "workshopsurgery"; + pixel_x = 13; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist) "lde" = ( /obj/structure/machinery/door/firedoor, /obj/structure/machinery/door/window/southright{ @@ -85925,6 +85757,14 @@ /obj/structure/machinery/light/floor, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/central) +"ldr" = ( +/obj/effect/floor_decal/corner/blue/full{ + dir = 4 + }, +/obj/structure/machinery/light, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/horizon/security/autopsy_laboratory) "lds" = ( /obj/item/paper/monitorkey{ pixel_x = -8 @@ -86022,6 +85862,12 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos) +"ldI" = ( +/obj/effect/floor_decal/corner/red/full, +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/machinery/alarm/west, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/interrogation_1) "ldJ" = ( /obj/structure/reagent_dispensers/watertank, /obj/effect/floor_decal/corner/mauve/full, @@ -86242,17 +86088,6 @@ /obj/structure/lattice, /turf/simulated/open, /area/horizon/maintenance/deck_2/service/port) -"leP" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/machinery/power/apc/super/critical/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/aft) "lfa" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -86469,10 +86304,6 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/engineering/reactor/indra/mainchamber) -"lgE" = ( -/obj/effect/floor_decal/corner/brown, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/starboard) "lgJ" = ( /obj/structure/bed/stool/chair/office/dark{ dir = 4 @@ -86599,6 +86430,12 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/surgery) +"lhz" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) "lhA" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -86704,11 +86541,6 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/storage/lower) -"liB" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/turf/simulated/floor/carpet/red, -/area/horizon/service/chapel/office) "liE" = ( /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, @@ -87570,6 +87402,13 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/hangar/auxiliary) +"lnX" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/machinery/portable_atmospherics/canister/nitrogen/prechilled, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/elevator) "lod" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/ladder/up{ @@ -87675,20 +87514,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/stairwell/starboard/deck_1) -"loQ" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/structure/machinery/light_switch{ - dir = 4; - pixel_x = 23; - pixel_y = -6 - }, -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/interrogation) "loS" = ( /obj/random/dirt_75, /obj/structure/machinery/firealarm/west, @@ -87797,6 +87622,17 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/port/nacelle) +"lpx" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/machinery/power/apc/super/critical/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) "lpy" = ( /obj/structure/machinery/camera/network/prison{ c_tag = "Security - Cell A"; @@ -87869,15 +87705,6 @@ /obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"lpO" = ( -/obj/structure/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/table/steel, -/obj/item/flashlight/lamp/off{ - pixel_x = -4; - pixel_y = 11 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/security/interrogation) "lpP" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 @@ -87885,15 +87712,6 @@ /obj/random/maintenance_junk_or_loot, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_1/teleporter) -"lpU" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/lobby) "lqb" = ( /obj/structure/flora/stump/log, /obj/effect/floor_decal/spline/plain{ @@ -87988,22 +87806,6 @@ /obj/structure/table/rack, /turf/simulated/floor, /area/horizon/maintenance/deck_2/wing/starboard/far) -"lqx" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/obj/structure/machinery/requests_console/north{ - department = "Morgue"; - departmentType = 5 - }, -/obj/structure/engineer_maintenance/electric{ - dir = 8 - }, -/obj/structure/engineer_maintenance/pipe{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/security/autopsy_laboratory) "lqA" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -88093,14 +87895,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_2/fore) -"lqT" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "lqW" = ( /obj/effect/floor_decal/corner_wide/green/full{ dir = 1 @@ -88345,16 +88139,6 @@ "lsa" = ( /turf/unsimulated/floor/wood, /area/antag/raider) -"lse" = ( -/obj/item/radio/intercom/west, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/security/investigations_hallway) "lsf" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -88703,6 +88487,18 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/hangar/starboard) +"luo" = ( +/obj/structure/railing/mapped, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/operations/machinist) "lup" = ( /obj/effect/floor_decal/corner/brown{ dir = 9 @@ -88845,6 +88641,12 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/break_room) +"lvH" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/security/investigations_hallway) "lvO" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -88973,6 +88775,24 @@ "lwL" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/repoffice/representative_two) +"lwO" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/machinery/button/remote/blast_door{ + dir = 1; + id = "shutters_deck2_workshopgarage"; + name = "Machinist Workshop Garage Shutters"; + pixel_x = 9; + pixel_y = 22 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/horizon/operations/machinist) "lwW" = ( /obj/structure/flora/bush/grove, /turf/simulated/floor/exoplanet/grass/grove, @@ -89006,13 +88826,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor, /area/horizon/hallway/primary/deck_3/port/docks) -"lxb" = ( -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/random/dirt_75, -/turf/simulated/floor, -/area/horizon/maintenance/deck_3/security/port) "lxr" = ( /obj/effect/floor_decal/corner_wide/yellow/full{ dir = 1 @@ -89051,39 +88864,12 @@ icon_state = "beach" }, /area/centcom/shared_dream) -"lxI" = ( -/obj/structure/closet/walllocker/medical/firstaid{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/horizon/security/checkpoint2) "lxM" = ( /obj/random/dirt_75, /obj/item/storage/box/lights/mixed, /obj/structure/table/steel, /turf/simulated/floor, /area/horizon/maintenance/deck_3/aft/starboard) -"lxU" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/table/standard, -/obj/item/storage/box/evidence{ - pixel_x = -4; - pixel_y = 18 - }, -/obj/item/pin_extractor, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/evidence_storage) "lxY" = ( /obj/structure/bed/stool/chair/office/dark, /obj/effect/landmark/start{ @@ -89155,15 +88941,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/rnd/hallway/secondary) -"lyq" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/interrogation) "lyr" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 5 @@ -89627,17 +89404,6 @@ "lAZ" = ( /turf/simulated/wall/r_wall, /area/horizon/maintenance/deck_1/atmos_crosser) -"lBk" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/operations, -/obj/structure/machinery/ringer_button{ - pixel_x = 21; - id = "Machinist" - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "lBr" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -89650,6 +89416,21 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/shields) +"lBu" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/obj/structure/machinery/ringer/west{ + id = "investigation_ringer"; + department = "Security"; + req_access = list(1) + }, +/obj/structure/engineer_maintenance/electric, +/obj/structure/engineer_maintenance/pipe{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/security/autopsy_laboratory) "lBy" = ( /obj/item/stamp/centcomm, /obj/structure/window/reinforced/crescent{ @@ -89760,6 +89541,12 @@ }, /turf/unsimulated/floor/rubber_carpet, /area/centcom/control) +"lCb" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ + id = "workshopsurgery" + }, +/turf/simulated/floor/plating, +/area/horizon/operations/machinist) "lCc" = ( /obj/random/dirt_75, /obj/effect/floor_decal/industrial/warning{ @@ -89812,10 +89599,6 @@ }, /turf/simulated/floor/carpet/rubber, /area/horizon/maintenance/deck_1/workshop) -"lCz" = ( -/obj/structure/table/wood, -/turf/simulated/floor/carpet/red, -/area/horizon/service/chapel/office) "lCB" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -90294,6 +90077,21 @@ }, /turf/simulated/floor/shuttle/dark_blue, /area/horizon/shuttle/escape_pod/pod2) +"lFt" = ( +/obj/item/deployable_kit/legion_barrier, +/obj/item/deployable_kit/legion_barrier, +/obj/item/deployable_kit/legion_barrier, +/obj/item/deployable_kit/legion_barrier, +/obj/item/deployable_kit/legion_barrier, +/obj/item/deployable_kit/legion_barrier, +/obj/item/deployable_kit/legion_barrier, +/obj/item/deployable_kit/legion_barrier, +/obj/item/deployable_kit/legion_barrier, +/obj/item/deployable_kit/legion_barrier, +/obj/item/deployable_kit/legion_barrier, +/obj/item/deployable_kit/legion_barrier, +/turf/unsimulated/floor, +/area/centcom/legion/hangar5) "lFx" = ( /obj/structure/cable/green{ icon_state = "0-8" @@ -90379,19 +90177,6 @@ }, /turf/simulated/open, /area/horizon/maintenance/deck_2/main/starboard) -"lGe" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/machinery/light/floor{ - dir = 1 - }, -/obj/structure/machinery/light/floor, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/main) "lGh" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 8 @@ -90614,16 +90399,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/ai/upload) -"lHA" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/horizon/rnd/hallway) "lHC" = ( /turf/simulated/floor/holofloor/beach/sand{ icon_state = "desert2" @@ -90933,6 +90708,20 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor/monotile, /area/antag/mercenary) +"lJy" = ( +/obj/structure/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id = "Security Lockdown"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ + id = "investigator_office" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/investigators_office) "lJz" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/industrial/warning{ @@ -91055,6 +90844,11 @@ }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_theatre) +"lKi" = ( +/obj/structure/bed/stool/chair/office/dark, +/obj/effect/floor_decal/corner/beige/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) "lKj" = ( /turf/simulated/floor/beach/sand{ icon_state = "desert" @@ -91190,6 +90984,16 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/main/interstitial) +"lKJ" = ( +/obj/structure/table/glass, +/obj/item/hand_labeler, +/obj/item/stack/packageWrap{ + pixel_y = 2 + }, +/obj/effect/floor_decal/corner/beige/diagonal, +/obj/structure/machinery/firealarm/south, +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) "lKK" = ( /obj/structure/machinery/atmospherics/binary/pump/high_power{ dir = 1; @@ -91208,6 +91012,17 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) +"lKQ" = ( +/obj/structure/platform_stairs/full, +/obj/structure/railing/mapped{ + dir = 4; + name = "adjusted railing" + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist) "lKR" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -91225,32 +91040,6 @@ dir = 8 }, /area/horizon/holodeck/source_trinary) -"lLd" = ( -/obj/effect/floor_decal/industrial/hatch_door/yellow{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/security{ - name = "Interrogation Monitoring"; - req_access = list(1); - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/security/interrogation/monitoring) "lLe" = ( /obj/effect/floor_decal/spline/plain/mauve, /obj/structure/window/reinforced, @@ -91271,6 +91060,10 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/rnd/xenoarch/atrium) +"lLo" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "lLt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/stool/chair, @@ -91286,12 +91079,6 @@ icon_state = "1,5" }, /area/shuttle/syndicate_elite) -"lLB" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "lLC" = ( /obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, /obj/structure/cable/green{ @@ -91319,15 +91106,6 @@ }, /turf/simulated/floor/carpet/rubber, /area/horizon/engineering/reactor/supermatter/airlock) -"lLN" = ( -/obj/structure/bed/stool/chair/sofa/pew/right{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/horizon/service/chapel/main) "lLO" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -91418,19 +91196,6 @@ /obj/effect/floor_decal/spline/fancy/wood/cee, /turf/simulated/floor/wood, /area/horizon/command/bridge/upperdeck) -"lMp" = ( -/obj/structure/machinery/door/airlock/service{ - dir = 1; - name = "Chapel" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/chapel/main) "lMr" = ( /turf/simulated/wall/shuttle/unique/mercenary/small{ icon_state = "6,10" @@ -91459,15 +91224,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos) -"lMx" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/main) "lMz" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/mapped{ @@ -91671,6 +91427,12 @@ /obj/structure/lattice/catwalk/indoor, /turf/unsimulated/floor, /area/centcom/checkpoint/fore) +"lOk" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/office) "lOp" = ( /obj/structure/table/rack, /obj/item/circuitboard/telecomms/processor, @@ -91705,16 +91467,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor, /area/horizon/service/cafeteria) -"lOy" = ( -/obj/structure/closet/walllocker/emerglocker/west, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/turf/simulated/floor/tiled, -/area/horizon/maintenance/deck_3/security/port) "lOz" = ( /obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 4 @@ -91947,6 +91699,15 @@ /obj/effect/decal/fake_object/light_source/invisible, /turf/simulated/floor, /area/tdome) +"lQS" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 + }, +/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "lQV" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -92035,16 +91796,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_2/fore) -"lSj" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/starboard) "lSl" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 @@ -92229,17 +91980,6 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior/no_shields) -"lTO" = ( -/obj/structure/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/maintenance{ - dir = 4; - req_one_access = list(2,3,4) - }, -/obj/effect/floor_decal/industrial/hatch_door/red, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/security/evidence_storage) "lTT" = ( /obj/structure/machinery/photocopier, /turf/simulated/floor/carpet, @@ -92578,13 +92318,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/substation/civ_d3) -"lWO" = ( -/obj/structure/bed/stool/chair, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/interrogation/monitoring) "lWU" = ( /obj/structure/machinery/light/small, /obj/structure/table/rack, @@ -92677,14 +92410,6 @@ "lXv" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/maintenance/deck_2/wing/port/far) -"lXB" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/machinery/photocopier, -/turf/simulated/floor/tiled, -/area/horizon/security/investigations_hallway) "lXD" = ( /obj/structure/machinery/door/firedoor, /obj/structure/machinery/door/airlock/glass{ @@ -92847,17 +92572,6 @@ }, /turf/simulated/floor/wood, /area/horizon/command/heads/xo) -"lYH" = ( -/obj/structure/platform_stairs/full, -/obj/structure/railing/mapped{ - dir = 4; - name = "adjusted railing" - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) "lYJ" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 5 @@ -92893,6 +92607,9 @@ "lYY" = ( /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos/propulsion/starboard) +"lZa" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/operations/machinist) "lZd" = ( /obj/structure/platform_deco{ icon_state = "ledge_deco" @@ -93066,6 +92783,29 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/rnd/xenoarch/storage) +"lZT" = ( +/obj/structure/bed/stool/chair{ + name = "uncomfortable chair"; + dir = 4 + }, +/obj/effect/floor_decal/corner/red/full{ + dir = 8 + }, +/obj/structure/machinery/button/switch/windowtint{ + id = "Interro_B"; + pixel_x = -19; + dir = 8; + pixel_y = -1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/interrogation_2) +"lZV" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/random/pottedplant, +/turf/simulated/floor/tiled, +/area/horizon/security/investigations_hallway) "lZX" = ( /obj/effect/floor_decal/corner/red/full{ dir = 8 @@ -93189,6 +92929,31 @@ /obj/effect/floor_decal/spline/plain/black, /turf/simulated/floor/carpet/rubber, /area/horizon/tcommsat/entrance) +"maE" = ( +/obj/structure/table/reinforced, +/obj/structure/machinery/door/window/desk/northleft{ + name = "Evidence Drop-Off"; + req_access = list(4) + }, +/obj/structure/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/evidence_storage) +"maF" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_2/starboard) "maQ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/fake_object{ @@ -93478,20 +93243,6 @@ }, /turf/unsimulated/floor/dark_monotile, /area/antag/actor) -"mcW" = ( -/obj/effect/floor_decal/corner/beige/full{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/radio/intercom/west, -/obj/item/flashlight/lamp{ - on = 0 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/security/forensic_laboratory) "mcZ" = ( /turf/unsimulated/floor, /area/centcom/spawning) @@ -93551,6 +93302,10 @@ }, /turf/simulated/floor/carpet/rubber, /area/horizon/engineering/reactor/indra/mainchamber) +"mdC" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) "mdD" = ( /obj/effect/floor_decal/spline/plain/cee{ dir = 8 @@ -94030,6 +93785,15 @@ /obj/effect/decal/fake_object/light_source/invisible, /turf/simulated/floor/reinforced/n20, /area/horizon/engineering/atmos/air) +"mgu" = ( +/obj/structure/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) "mgC" = ( /obj/structure/platform, /obj/structure/table/standard, @@ -94378,6 +94142,23 @@ /obj/random/canister/restricted, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"mil" = ( +/obj/structure/table/rack/retail_shelf{ + name = "storage shelf" + }, +/obj/item/storage/box/fancy/vials{ + pixel_x = 10 + }, +/obj/item/storage/box/slides{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/storage/box/fancy/csi_markers{ + pixel_x = -9 + }, +/obj/effect/floor_decal/corner/beige/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) "mir" = ( /obj/structure/machinery/computer/ship/helm/terminal{ dir = 1; @@ -94520,6 +94301,17 @@ "miY" = ( /turf/simulated/wall/r_wall, /area/horizon/maintenance/deck_2/main/starboard) +"miZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/item/material/shard, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_3/security/port) "mja" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -94748,12 +94540,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/shields) -"mkt" = ( -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/office) "mkw" = ( /obj/structure/machinery/atmospherics/pipe/simple/visible/black, /obj/effect/floor_decal/corner/yellow, @@ -94862,6 +94648,10 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard/far) +"mlu" = ( +/obj/structure/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/horizon/security/interrogation/monitoring) "mlB" = ( /turf/simulated/wall, /area/horizon/hallway/primary/deck_2/central) @@ -94962,9 +94752,6 @@ /obj/structure/machinery/suit_cycler/engineering/prepared/atmos, /turf/simulated/floor/carpet/rubber, /area/horizon/engineering/atmos/storage) -"mmo" = ( -/turf/simulated/wall/r_wall, -/area/horizon/maintenance/deck_2/service/starboard) "mmq" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -95145,22 +94932,6 @@ /obj/structure/machinery/newscaster/north, /turf/simulated/floor/lino, /area/merchant_station) -"mni" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/horizon/hallway/primary/deck_2/starboard) "mnl" = ( /obj/structure/disposalpipe/junction{ dir = 1; @@ -95192,6 +94963,16 @@ }, /turf/simulated/floor/carpet/rubber, /area/horizon/tcommsat/chamber) +"mnr" = ( +/obj/structure/closet/secure_closet/evidence{ + name = "evidence storage locker A" + }, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "mnx" = ( /obj/effect/floor_decal/corner/beige{ dir = 10 @@ -95233,6 +95014,26 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor, /area/horizon/maintenance/deck_3/aft/port) +"mnI" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/table/stone/marble, +/obj/item/flame/candle, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) +"mnN" = ( +/obj/effect/floor_decal/corner/beige/diagonal, +/obj/structure/machinery/camera/network/security{ + c_tag = "Security - Forensic Laboratory Starboard"; + dir = 4 + }, +/obj/structure/machinery/disposal/small/east, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) "mnW" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -95316,15 +95117,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_1/main/interstitial) -"moQ" = ( -/obj/structure/table/rack, -/obj/random/loot, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/dark, -/area/horizon/maintenance/deck_3/security/port) "moS" = ( /obj/structure/table/stone/marble, /obj/structure/machinery/door/firedoor, @@ -95373,6 +95165,20 @@ dir = 4 }, /area/centcom/holding) +"mps" = ( +/obj/structure/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/machinery/camera{ + c_tag = "Service - Chapel Office"; + network = list("Service") + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/office) "mpu" = ( /obj/structure/window/reinforced/holowindow{ dir = 8 @@ -95388,13 +95194,6 @@ /obj/structure/lattice/catwalk/indoor, /turf/space, /area/horizon/exterior) -"mpx" = ( -/obj/structure/grille/broken, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/elevator) "mpz" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -95576,6 +95375,19 @@ /obj/structure/grille, /turf/space, /area/horizon/exterior) +"mqN" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/security/investigations_hallway) "mqP" = ( /obj/structure/machinery/light, /turf/unsimulated/floor, @@ -95868,16 +95680,6 @@ /obj/effect/floor_decal/industrial/hatch_door/yellow, /turf/simulated/floor/tiled/dark/full, /area/horizon/holodeck_control/beta) -"msq" = ( -/obj/effect/floor_decal/corner/blue/full{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/item/flashlight/lamp{ - on = 0 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/security/autopsy_laboratory) "msw" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 @@ -95894,6 +95696,26 @@ }, /turf/simulated/floor/reinforced, /area/horizon/rnd/xenoarch/isolation_a) +"msA" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/sign/poster/pinup/bay_17{ + pixel_x = 32 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/starboard) "msC" = ( /turf/simulated/open, /area/horizon/maintenance/deck_2/wing/starboard) @@ -96033,25 +95855,6 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/engineering/atmos/propulsion/starboard) -"mtT" = ( -/obj/structure/railing/mapped, -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/item/integrated_electronics/debugger{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/integrated_electronics/wirer{ - pixel_x = -9; - pixel_y = 8 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "mtU" = ( /obj/structure/table/reinforced/steel, /obj/random/contraband, @@ -96145,6 +95948,10 @@ /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/tiled, /area/merchant_station) +"mut" = ( +/obj/structure/table/wood, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) "muu" = ( /obj/item/holomenu/holodeck, /turf/simulated/wall, @@ -96158,20 +95965,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_2/central) -"muz" = ( -/obj/effect/floor_decal/corner/purple/full{ - dir = 1 - }, -/obj/structure/sink{ - dir = 1; - pixel_x = 8; - pixel_y = 26 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/security/custodial) "muC" = ( /obj/structure/machinery/atmospherics/binary/pump/high_power{ dir = 4; @@ -96384,13 +96177,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/office) -"mvT" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/dark, -/area/horizon/maintenance/deck_3/security/port) "mvW" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -96663,16 +96449,6 @@ /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_wildlife) -"mxT" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Machinist" - }, -/obj/effect/floor_decal/spline/plain/brown, -/turf/simulated/floor/tiled/full, -/area/horizon/operations/machinist) "mxY" = ( /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/port/nacelle) @@ -96824,6 +96600,19 @@ icon_state = "dark_preview" }, /area/centcom/holding) +"myY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/horizon/operations/machinist) "mzf" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/structure/grille, @@ -97050,20 +96839,15 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/mining_main/refinery) -"mAX" = ( -/obj/structure/extinguisher_cabinet/south, -/obj/effect/floor_decal/corner/brown{ - dir = 10 +"mAZ" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/structure/machinery/door/blast/shutters/open{ + id = "mech_bay_shutter"; + name = "Mech Bay Shutters"; + dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/starboard) +/turf/simulated/floor/plating, +/area/horizon/operations/machinist) "mBa" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 9 @@ -97097,13 +96881,6 @@ }, /turf/unsimulated/floor/marble, /area/antag/wizard) -"mBo" = ( -/obj/structure/table/rack, -/obj/item/rig/retro/equipped, -/obj/item/rig/retro/equipped, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) "mBq" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -97133,6 +96910,29 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) +"mBO" = ( +/obj/structure/table/wood, +/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/art, +/area/horizon/crew/lounge) +"mBP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor, +/obj/structure/machinery/door/airlock/maintenance{ + dir = 1; + name = "Machinist Workshop Maintenance"; + req_access = list(29) + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/chapel/main) "mBQ" = ( /obj/structure/machinery/firealarm/east, /obj/structure/bed/stool/chair/shuttle{ @@ -97586,16 +97386,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hangar/operations) -"mFa" = ( -/obj/effect/floor_decal/industrial/hatch_door/yellow, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/full, -/area/horizon/rnd/hallway) "mFb" = ( /obj/structure/machinery/power/breakerbox/activated{ RCon_tag = "Hangar Substation" @@ -97782,11 +97572,6 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"mFT" = ( -/obj/effect/floor_decal/corner/brown/full, -/obj/effect/floor_decal/industrial/outline/operations, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "mFY" = ( /turf/simulated/wall, /area/horizon/maintenance/deck_2/research) @@ -98321,20 +98106,18 @@ /turf/simulated/floor/tiled/white, /area/horizon/service/kitchen) "mJA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/platform/cutout{ +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, -/obj/structure/platform_stairs/full/east_west_cap, -/turf/simulated/floor/tiled/dark/full, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, /area/horizon/operations/machinist) "mJE" = ( /obj/structure/cable{ @@ -98376,6 +98159,27 @@ }, /turf/simulated/floor/reinforced/n20, /area/horizon/engineering/atmos/air) +"mJX" = ( +/obj/effect/floor_decal/corner/beige/diagonal, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) +"mJY" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/machinery/power/apc/west, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "mKb" = ( /obj/effect/floor_decal/corner/mauve/diagonal, /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, @@ -98421,15 +98225,6 @@ /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, /area/horizon/medical/paramedic) -"mKl" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline_straight/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "mKn" = ( /obj/effect/floor_decal/corner_wide/green{ dir = 9 @@ -98443,6 +98238,21 @@ /obj/structure/machinery/light_switch/west, /turf/simulated/floor/tiled/white, /area/horizon/medical/gen_treatment) +"mKo" = ( +/obj/structure/table/standard, +/obj/item/robot_parts/r_arm{ + pixel_y = 5; + pixel_x = 8 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/item/portable_whiteboard{ + pixel_y = 6; + pixel_x = -7 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "mKp" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -98520,6 +98330,18 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/office) +"mKP" = ( +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) "mKW" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/effect/floor_decal/spline/plain/corner{ @@ -98601,22 +98423,6 @@ /obj/effect/decal/fake_object/light_source/invisible, /turf/simulated/floor/holofloor/tiled/dark, /area/tdome/tdome1) -"mLw" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/horizon/hallway/primary/deck_2/starboard) "mLF" = ( /obj/structure/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -98689,14 +98495,19 @@ /obj/effect/floor_decal/spline/fancy/wood/cee, /turf/simulated/floor/wood/mahogany, /area/horizon/service/bar) -"mLV" = ( -/obj/structure/machinery/door/blast/shutters/open{ - id = "mech_bay_shutter"; - name = "Mech Bay Shutters" +"mLS" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) "mLY" = ( /obj/structure/cable{ icon_state = "1-2" @@ -98930,16 +98741,6 @@ }, /turf/simulated/floor/tiled/freezer, /area/horizon/crew/fitness/showers) -"mMX" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/structure/platform_stairs/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "mMZ" = ( /obj/structure/machinery/button/remote/airlock{ dir = 8; @@ -99265,6 +99066,18 @@ }, /turf/simulated/floor, /area/horizon/maintenance/deck_3/aft/port) +"mPY" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 4 + }, +/obj/structure/machinery/ringer/south{ + department = "Security"; + id = "investigation_ringer"; + req_access = list(1) + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "mQb" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 10 @@ -99555,6 +99368,41 @@ /obj/structure/window/reinforced, /turf/simulated/floor/tiled/white, /area/horizon/crew/fitness/changing) +"mSi" = ( +/obj/structure/machinery/door/airlock/glass_security{ + dir = 1; + name = "Evidence Storage"; + req_access = list(4) + }, +/obj/structure/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/evidence_storage) +"mSj" = ( +/obj/structure/railing/mapped, +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/item/integrated_electronics/debugger{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/integrated_electronics/wirer{ + pixel_x = -9; + pixel_y = 8 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "mSl" = ( /obj/structure/machinery/atmospherics/portables_connector{ dir = 1 @@ -99634,16 +99482,6 @@ /obj/structure/sign/double/barsign/marketsign/mirrored, /turf/simulated/wall, /area/horizon/operations/commissary) -"mSN" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "mSR" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 10 @@ -99762,6 +99600,15 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor, /area/horizon/service/cafeteria) +"mTT" = ( +/obj/structure/bed/stool/chair/sofa/pew/left{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) "mTX" = ( /obj/effect/decal/battlemonsters_logo{ dir = 1; @@ -99805,6 +99652,20 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/starboard) +"mUm" = ( +/obj/structure/closet/walllocker/medical{ + desc = "It's a wall-mounted locker full of SBS and a little blood for augmented crewmembers."; + name = "SBS closet"; + pixel_x = -32 + }, +/obj/item/reagent_containers/blood/sbs, +/obj/item/reagent_containers/blood/sbs, +/obj/item/reagent_containers/blood/OMinus, +/obj/effect/floor_decal/corner_wide/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist) "mUn" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/ai/upload_foyer) @@ -99837,18 +99698,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/main/starboard) -"mUw" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/evidence_storage) "mUx" = ( /obj/structure/window/reinforced/crescent{ dir = 4 @@ -99881,6 +99730,27 @@ }, /turf/simulated/floor/plating, /area/shuttle/skipjack) +"mUW" = ( +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/office) +"mUX" = ( +/obj/structure/machinery/disposal/small/west, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/horizon/security/investigators_office) "mVa" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -99926,13 +99796,6 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/atmos/turbine) -"mVw" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 5 - }, -/obj/item/modular_computer/console/preset/security/investigations, -/turf/simulated/floor/tiled/white, -/area/horizon/security/forensic_laboratory) "mVz" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/effect/landmark{ @@ -100000,16 +99863,6 @@ }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_battlemonsters) -"mVU" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/horizon/service/chapel/main) "mVV" = ( /obj/structure/curtain/open/bed, /obj/effect/floor_decal/industrial/arrow/yellow, @@ -100022,10 +99875,6 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/auxatmos) -"mVY" = ( -/obj/structure/bed/stool/padded/blue, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/evidence_storage) "mVZ" = ( /obj/structure/machinery/atmospherics/pipe/manifold/visible/black{ dir = 8 @@ -100171,19 +100020,6 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"mXE" = ( -/obj/structure/machinery/light, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/starboard) "mXF" = ( /obj/structure/machinery/door/blast/regular/open{ id = "r_ust_core_blast"; @@ -100585,18 +100421,6 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/hallway/primary/deck_3/starboard/docks) -"mZw" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/horizon/security/checkpoint2) "mZz" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, @@ -100673,6 +100497,24 @@ }, /turf/simulated/floor/wood, /area/horizon/command/bridge/minibar) +"nah" = ( +/obj/item/storage/box/fancy/vials{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/box/unique/sharps{ + pixel_x = -5 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/structure/machinery/requests_console/north{ + department = "Morgue"; + departmentType = 5 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/horizon/security/autopsy_laboratory) "naj" = ( /obj/structure/lattice, /obj/structure/platform/ledge{ @@ -100856,6 +100698,24 @@ /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/horizon/medical/hallway/upper) +"nbi" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/security/investigations_hallway) "nbn" = ( /obj/structure/railing/mapped, /turf/simulated/floor/tiled/dark, @@ -100911,6 +100771,18 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) +"nbI" = ( +/obj/structure/machinery/door/firedoor, +/obj/structure/machinery/door/airlock/maintenance{ + name = "Atmospherics Maintenance"; + req_access = list(24); + welded = 1 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_2/elevator) "nbO" = ( /obj/structure/bed/stool/chair/office/dark, /turf/simulated/floor/tiled/white, @@ -101051,6 +100923,18 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_2/main/starboard) +"ncK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/stool/chair/sofa/pew/right{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) "ncM" = ( /obj/structure/machinery/mech_recharger, /obj/structure/sign/directions/all{ @@ -101230,18 +101114,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/engineering/bluespace_drive) -"ndz" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/machinery/light_switch/east{ - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/horizon/service/chapel/office) "ndA" = ( /obj/item/storage/secure/safe{ pixel_y = 36 @@ -101597,16 +101469,6 @@ }, /turf/simulated/open, /area/horizon/hallway/primary/deck_2/central) -"nft" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/obj/structure/machinery/camera/network/security{ - c_tag = "Security - Forensic Laboratory Autopsy"; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/security/autopsy_laboratory) "nfv" = ( /obj/structure/cable/green{ icon_state = "0-2" @@ -101910,6 +101772,16 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) +"nhS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/security/investigations_hallway) "nhU" = ( /obj/effect/shuttle_landmark/horizon/exterior/deck_1/fore, /turf/template_noop, @@ -102121,6 +101993,15 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/wing/starboard/far) +"njG" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/meeting_room) "njK" = ( /obj/structure/foamedmetal, /turf/simulated/floor/plating, @@ -102148,24 +102029,31 @@ /obj/structure/railing/mapped, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_2/central) -"njX" = ( -/obj/structure/bed/stool/chair/sofa/pew/right{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/horizon/service/chapel/main) "nkf" = ( /obj/structure/platform/ledge/dark{ dir = 8 }, /turf/simulated/open, /area/horizon/maintenance/deck_2/cryo) +"nkl" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/horizon/operations/lobby) "nku" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/door/blast/shutters{ @@ -102213,6 +102101,31 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/gravity_gen) +"nkD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/structure/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/maintenance{ + dir = 4; + name = "Machinist Workshop Maintenance"; + req_access = list(29) + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_2/service/starboard) "nkF" = ( /obj/structure/cable{ icon_state = "4-8" @@ -102298,9 +102211,6 @@ /obj/structure/ship_weapon_dummy, /turf/template_noop, /area/horizon/weapons/grauwolf) -"nlb" = ( -/turf/simulated/wall, -/area/horizon/security/custodial) "nle" = ( /obj/structure/window/reinforced/crescent{ dir = 4 @@ -102481,14 +102391,6 @@ icon_state = "wood" }, /area/centcom/distress_prep) -"nmi" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "nmm" = ( /obj/effect/floor_decal/corner/brown{ dir = 5 @@ -102752,18 +102654,6 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"noI" = ( -/obj/structure/railing/mapped, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "noK" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/effect/floor_decal/spline/fancy{ @@ -102804,6 +102694,24 @@ }, /turf/unsimulated/floor/wood, /area/centcom/bar) +"npc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) "npe" = ( /obj/structure/machinery/door/firedoor, /obj/structure/cable/green{ @@ -102902,19 +102810,6 @@ }, /turf/template_noop, /area/template_noop) -"npN" = ( -/obj/item/reagent_containers/glass/beaker/large, -/obj/structure/reagent_dispensers/acid{ - pixel_x = -32 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/platform, -/obj/structure/machinery/r_n_d/circuit_imprinter, -/obj/effect/floor_decal/corner_wide/black{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) "npR" = ( /obj/effect/floor_decal/corner/dark_blue/diagonal, /obj/structure/disposalpipe/segment{ @@ -102928,13 +102823,6 @@ /obj/structure/machinery/recharger, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/supermatter/monitoring) -"npX" = ( -/obj/structure/machinery/fabricator/autolathe, -/obj/structure/machinery/light, -/obj/effect/floor_decal/corner_wide/black/full, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) "npZ" = ( /obj/effect/overlay/palmtree_l, /turf/simulated/floor/beach/sand{ @@ -102944,20 +102832,6 @@ "nqd" = ( /turf/simulated/wall/r_wall, /area/horizon/operations/office_aux) -"nqe" = ( -/obj/structure/table/steel, -/obj/structure/machinery/button/switch/windowtint{ - id = "Interro"; - pixel_x = 8; - dir = 9; - pixel_y = 9 - }, -/obj/item/taperecorder{ - pixel_x = -6; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/security/interrogation) "nqf" = ( /obj/structure/platform/ledge, /obj/structure/platform_deco/ledge{ @@ -102997,11 +102871,6 @@ }, /turf/simulated/floor, /area/horizon/maintenance/deck_2/wing/port/far) -"nqp" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/machinery/vending/games, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/rnd/hallway) "nqw" = ( /obj/structure/table/rack{ pixel_y = -3 @@ -103041,6 +102910,9 @@ /obj/structure/table/reinforced/steel, /turf/simulated/floor/carpet/rubber, /area/horizon/engineering/break_room) +"nqF" = ( +/turf/simulated/wall/r_wall, +/area/horizon/operations/machinist) "nqH" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 @@ -103057,6 +102929,13 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/meeting_room) +"nqJ" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor, +/area/horizon/security/meeting_room) "nqK" = ( /obj/structure/table/wood, /obj/random/plushie, @@ -103114,24 +102993,6 @@ /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /turf/unsimulated/floor/plating, /area/tdome/tdomeadmin) -"nrv" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/central) "nrA" = ( /obj/structure/machinery/door/airlock/glass_security{ dir = 4; @@ -103172,14 +103033,6 @@ "nrH" = ( /turf/simulated/wall, /area/horizon/security/checkpoint) -"nrI" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "nrM" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/machinery/light/small{ @@ -103233,16 +103086,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/shuttle/intrepid/main_compartment) -"nsk" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/random/pottedplant, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/lobby) "nsm" = ( /obj/structure/machinery/atmospherics/pipe/manifold/visible{ dir = 8 @@ -103339,6 +103182,22 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/storage/lower) +"nsU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor, +/obj/structure/machinery/door/airlock/glass_mining{ + dir = 1; + name = "Mail Sorting"; + req_one_access = list(26,31,67) + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/mail_room) "nta" = ( /obj/effect/decal/fake_object{ dir = 4; @@ -103367,10 +103226,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_2/wing/port/far) -"ntf" = ( -/obj/effect/floor_decal/corner/dark_blue, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/interrogation/monitoring) "nti" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/lattice/catwalk/indoor/grate/dark, @@ -103485,6 +103340,12 @@ }, /turf/simulated/floor, /area/horizon/maintenance/deck_3/aft/port/far) +"ntJ" = ( +/obj/structure/machinery/mech_recharger, +/mob/living/heavy_vehicle/premade/random/boring, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "ntL" = ( /obj/structure/table/standard, /obj/item/firing_pin/test_range, @@ -103628,10 +103489,6 @@ /obj/item/material/folding_table, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_2/wing/port/nacelle) -"nuy" = ( -/obj/random/dirt_75, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/elevator) "nuK" = ( /obj/effect/floor_decal/corner/dark_green/full{ dir = 4 @@ -103833,6 +103690,20 @@ /obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/reinforced, /area/shuttle/hapt) +"nwL" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/structure/sink/kitchen{ + name = "autopsy sink"; + pixel_y = 17 + }, +/obj/structure/machinery/light{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/security/autopsy_laboratory) "nwM" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark/full, @@ -103979,13 +103850,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/shuttle/intrepid/main_compartment) -"nxN" = ( -/obj/structure/bed/stool/chair/wood, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/carpet/art, -/area/horizon/crew/lounge) "nxP" = ( /obj/effect/shuttle_landmark/horizon/exterior/deck_3/starboardfore, /turf/template_noop, @@ -104003,15 +103867,14 @@ /turf/simulated/wall/shuttle/hapt/blue, /area/shuttle/hapt) "nxY" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 }, -/obj/structure/lattice/catwalk/indoor/grate/white, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) "nxZ" = ( /obj/structure/railing/mapped, /obj/structure/machinery/alarm/north, @@ -104378,16 +104241,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/storage_hard/upper) -"nAq" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/horizon/service/chapel/main) -"nAv" = ( -/obj/structure/table/rack, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) "nAw" = ( /obj/structure/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 5 @@ -104399,18 +104252,6 @@ icon_state = "5,0" }, /area/shuttle/legion) -"nAI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/main) "nAJ" = ( /turf/simulated/floor/tiled, /area/horizon/security/equipment) @@ -104471,6 +104312,15 @@ /obj/structure/machinery/bluespace_beacon, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/break_room) +"nBa" = ( +/obj/effect/landmark/start{ + name = "Machinist" + }, +/obj/structure/bed/stool/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "nBc" = ( /obj/effect/floor_decal/corner_wide/lime/diagonal, /obj/effect/floor_decal/industrial/warning{ @@ -104517,6 +104367,9 @@ /obj/structure/flora/pottedplant/fortune_flower, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/bar) +"nBr" = ( +/turf/simulated/wall/r_wall, +/area/horizon/security/interrogation_1) "nBv" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -104586,24 +104439,15 @@ /turf/simulated/floor, /area/horizon/command/bridge/cciaroom) "nBF" = ( -/obj/structure/table/wood, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 +/obj/effect/floor_decal/corner/beige/diagonal, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/turf/simulated/floor/wood, -/area/horizon/rnd/hallway) -"nBK" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor, -/obj/structure/machinery/door/airlock/maintenance{ - dir = 1; - req_one_access = list(12,29) +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, -/obj/effect/floor_decal/industrial/hatch_door/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/maintenance/deck_2/elevator) +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) "nBM" = ( /turf/simulated/wall, /area/horizon/service/hydroponics) @@ -104785,6 +104629,27 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/operations/secure_ammunition_storage) +"nCT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/security/investigations_hallway) +"nCW" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ + id = "chapeloffice" + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) "nDc" = ( /obj/structure/machinery/light{ dir = 1 @@ -104953,6 +104818,18 @@ name = "shallow water" }, /area/horizon/holodeck/source_konyang) +"nDE" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/dark_green{ + dir = 1 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/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 @@ -104986,6 +104863,28 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard) +"nDY" = ( +/obj/structure/bed/stool/chair, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/structure/machinery/computer/security/telescreen{ + name = "Interrogation Monitor"; + console_networks = list("Interrogation"); + desc = "A camera monitor that connects to the interrogation room."; + pixel_y = -30 + }, +/turf/simulated/floor/tiled, +/area/horizon/security/interrogation/monitoring) +"nEd" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/office) "nEe" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 5 @@ -105003,12 +104902,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/storage/eva) -"nEx" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ - id = "chapeloffice" - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/main) "nED" = ( /obj/random/maintenance_junk_or_loot, /obj/structure/machinery/light/small{ @@ -105319,6 +105212,13 @@ }, /turf/simulated/floor/reinforced/airmix, /area/horizon/engineering/atmos/air) +"nGq" = ( +/obj/structure/platform/cutout{ + dir = 8 + }, +/obj/structure/platform_stairs/full/east_west_cap, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) "nGs" = ( /obj/structure/machinery/suit_cycler/engineering/prepared, /obj/effect/floor_decal/industrial/outline/operations, @@ -105506,6 +105406,20 @@ }, /turf/simulated/floor/plating, /area/horizon/shuttle/canary) +"nHu" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/security/investigations_hallway) "nHx" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, /obj/structure/machinery/alarm/north, @@ -106210,16 +106124,6 @@ icon_state = "8,0" }, /area/shuttle/transport1) -"nMy" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/security/forensic_laboratory) "nMz" = ( /turf/simulated/wall/r_wall, /area/horizon/rnd/xenoarch/presentation) @@ -106327,15 +106231,6 @@ /obj/structure/machinery/alarm/north, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/port/nacelle) -"nMY" = ( -/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/central) "nNd" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -106372,18 +106267,6 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/bluespace_drive) -"nNl" = ( -/obj/structure/railing/mapped, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/button/remote/blast_door{ - dir = 4; - pixel_y = 7; - id = "machinistspaceshutters"; - pixel_x = 23 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "nNm" = ( /obj/effect/landmark/entry_point/fore{ name = "fore, kitchen freezer" @@ -106531,14 +106414,6 @@ /obj/item/storage/bag/inflatable/emergency, /turf/simulated/floor/tiled/dark/full, /area/horizon/shuttle/intrepid/main_compartment) -"nOr" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/aft) "nOA" = ( /obj/effect/floor_decal/corner_wide/black{ dir = 10 @@ -106779,9 +106654,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/central) -"nQv" = ( -/turf/simulated/wall/r_wall, -/area/horizon/service/chapel/main) "nQw" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -106860,21 +106732,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/meeting_room) -"nQK" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/horizon/security/autopsy_laboratory) "nQO" = ( /obj/structure/bed/stool/chair/office/dark{ dir = 4 @@ -106987,22 +106844,19 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior/no_shields) +"nRv" = ( +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "nRx" = ( /obj/structure/shuttle_part/mercenary/small{ icon_state = "2,0" }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) -"nRy" = ( -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/structure/machinery/door/blast/shutters{ - id = "shutters_deck2_workshopgarage"; - name = "Machinist Workshop Garage Shutter" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "nRz" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -107056,15 +106910,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/rnd/chemistry) -"nRW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/horizon/service/chapel/main) "nRY" = ( /obj/structure/bed/stool/chair/office/dark{ dir = 8 @@ -107147,13 +106992,6 @@ "nSJ" = ( /turf/simulated/floor/plating, /area/horizon/engineering/atmos/air) -"nSK" = ( -/obj/structure/machinery/door/blast/shutters{ - id = "shutters_deck2_workshopgarage"; - name = "Machinist Workshop Garage Shutter" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "nSV" = ( /obj/structure/machinery/atmospherics/pipe/simple/visible/red{ dir = 8 @@ -107167,12 +107005,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos/propulsion/starboard) -"nSY" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/office) "nTb" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -107249,6 +107081,15 @@ "nTu" = ( /turf/simulated/wall/r_wall, /area/horizon/service/kitchen/freezer) +"nTv" = ( +/obj/structure/machinery/door/blast/shutters/open{ + id = "mech_bay_shutter"; + name = "Mech Bay Shutters"; + dir = 4 + }, +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "nTE" = ( /obj/effect/floor_decal/industrial/warning/corner, /obj/effect/floor_decal/industrial/warning, @@ -107534,22 +107375,6 @@ /obj/structure/machinery/alarm/south, /turf/simulated/floor/tiled/white, /area/horizon/rnd/xenobiology) -"nVy" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/machinery/power/apc/north, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/horizon/security/custodial) "nVH" = ( /obj/effect/map_effect/window_spawner/full/shuttle{ color = "#BDB6AE"; @@ -107573,6 +107398,32 @@ }, /turf/simulated/floor/tiled, /area/horizon/engineering/hallway/fore) +"nVV" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/structure/machinery/door/airlock/security{ + dir = 4; + name = "Investigators' Office"; + req_access = list(4); + id_tag = "investoffice" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/security/investigators_office) "nVX" = ( /obj/item/modular_computer/console/preset/command{ dir = 8 @@ -107615,6 +107466,18 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/unsimulated/floor, /area/centcom/evac) +"nWg" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/structure/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) "nWj" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -107639,6 +107502,14 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard/auxatmos) +"nWH" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/structure/machinery/recharge_station, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/wood, +/area/horizon/hallway/primary/deck_2/starboard) "nWM" = ( /obj/effect/floor_decal/corner/dark_blue/diagonal, /obj/structure/cable{ @@ -107731,18 +107602,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/operations/starboard) -"nXf" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/evidence_storage) -"nXg" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/main) "nXi" = ( /obj/structure/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, @@ -108217,22 +108076,6 @@ /obj/structure/machinery/light, /turf/unsimulated/floor/wood, /area/centcom/bar) -"obd" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/item/pen{ - pixel_x = 9; - pixel_y = 6 - }, -/obj/random/pottedplant_small{ - pixel_x = -6; - pixel_y = 4 - }, -/turf/simulated/floor/carpet/red, -/area/horizon/service/chapel/office) "obe" = ( /obj/structure/closet/crate, /obj/random/loot, @@ -108653,6 +108496,14 @@ /obj/structure/machinery/firealarm/north, /turf/simulated/floor/tiled, /area/horizon/rnd/eva) +"odO" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/structure/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/crew/lounge) "odQ" = ( /obj/structure/table/reinforced/steel, /obj/structure/machinery/door/blast/shutters{ @@ -108675,6 +108526,25 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/custodial) +"odR" = ( +/obj/structure/machinery/light/floor{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) "odS" = ( /obj/structure/stairs_lower/stairs_upper, /turf/simulated/wall/r_wall, @@ -109282,22 +109152,6 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"ohg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/horizon/security/investigations_hallway) "ohh" = ( /obj/effect/floor_decal/corner_wide/green{ dir = 5 @@ -109307,16 +109161,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/hallway) -"ohl" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "ohs" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden{ dir = 8 @@ -109350,6 +109194,22 @@ "ohz" = ( /turf/simulated/wall/r_wall, /area/horizon/rnd/xenobiology/dissection) +"ohA" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) "ohD" = ( /obj/effect/floor_decal/corner/mauve{ dir = 6 @@ -109435,6 +109295,14 @@ /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/horizon/engineering/reactor/supermatter/mainchamber) +"oiw" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "oix" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -109637,6 +109505,16 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) +"ojm" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/operations/machinist) "ojo" = ( /obj/structure/cable/orange{ icon_state = "4-8" @@ -109735,22 +109613,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/hangar/auxiliary) -"okb" = ( -/obj/item/flag/biesel{ - pixel_y = 8 - }, -/obj/item/flag/biesel/l{ - pixel_y = 8 - }, -/obj/item/flag/biesel/l{ - pixel_y = 8 - }, -/obj/item/storage/box/tcaf_pamphlet, -/obj/item/material/twohanded/pike/flag, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/legion/hangar5) "okm" = ( /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /obj/structure/machinery/door/blast/shutters/open{ @@ -109760,19 +109622,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/checkpoint) -"oku" = ( -/obj/item/modular_computer/console/preset/supply/machinist{ - dir = 4 - }, -/obj/structure/machinery/camera{ - c_tag = "Operations - Machinist Workshop 2"; - network = list("Operations") - }, -/obj/effect/floor_decal/spline/plain/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/operations/machinist) "okw" = ( /turf/simulated/wall, /area/horizon/maintenance/substation/wing_port) @@ -109981,6 +109830,14 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_2/fore) +"oma" = ( +/obj/effect/floor_decal/industrial/outline/security, +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/structure/machinery/optable{ + name = "autopsy table" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/security/autopsy_laboratory) "omb" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/machinery/atmospherics/unary/vent_scrubber/on, @@ -109999,15 +109856,6 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"omg" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/structure/closet/crate/plastic, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/machinery/light_switch/east, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/evidence_storage) "omi" = ( /obj/structure/bed/roller, /obj/effect/floor_decal/corner/lime/diagonal, @@ -110087,6 +109935,20 @@ /obj/structure/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos) +"omS" = ( +/obj/structure/machinery/firealarm/west{ + dir = 4; + pixel_x = 21 + }, +/obj/structure/machinery/disposal/small/west, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/full{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "omU" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/machinery/light/small{ @@ -110095,6 +109957,13 @@ /obj/structure/machinery/recharge_station, /turf/simulated/floor/tiled/dark/full, /area/horizon/shuttle/intrepid/port_storage) +"omV" = ( +/obj/structure/grille/broken, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/elevator) "omW" = ( /turf/simulated/wall, /area/horizon/service/bar/backroom) @@ -110278,6 +110147,28 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) +"oog" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/engineering, +/obj/structure/machinery/door/airlock/atmos{ + dir = 4; + name = "Deck 3 Port Auxiliary Atmospherics"; + req_one_access = list(11,24) + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_3/security/port) "oom" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -110498,15 +110389,6 @@ icon_state = "white" }, /area/tdome/tdomeadmin) -"opG" = ( -/obj/structure/bed/stool/chair/padded/black{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Chaplain" - }, -/turf/simulated/floor/carpet/red, -/area/horizon/service/chapel/office) "opH" = ( /obj/effect/floor_decal/corner/red{ dir = 8 @@ -111001,6 +110883,22 @@ /obj/effect/floor_decal/spline/fancy/wood, /turf/unsimulated/floor/carpet, /area/centcom/bar) +"osj" = ( +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen/red, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/item/pen{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/horizon/security/autopsy_laboratory) "osu" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -111324,6 +111222,19 @@ }, /turf/simulated/floor/tiled, /area/horizon/hangar/intrepid) +"oux" = ( +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/central) "ouG" = ( /turf/simulated/wall/shuttle/unique/ert{ icon_state = "8,4" @@ -111432,18 +111343,6 @@ }, /turf/simulated/floor/plating, /area/horizon/hallway/primary/deck_2/central) -"ovr" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/horizon/security/forensic_laboratory) "ovt" = ( /obj/structure/railing/mapped{ dir = 8 @@ -111674,6 +111573,14 @@ /obj/structure/machinery/alarm/north, /turf/simulated/floor/carpet, /area/horizon/command/heads/captain) +"owZ" = ( +/obj/structure/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/spline/fancy{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/operations/machinist) "oxc" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, @@ -111712,6 +111619,15 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_1/wing/starboard/far) +"oxp" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/security/investigations_hallway) "oxq" = ( /obj/structure/bed/stool/chair/shuttle, /obj/structure/window/reinforced{ @@ -111770,6 +111686,12 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/hangar/starboard) +"oxL" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) "oxM" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/alarm/north, @@ -112101,26 +112023,6 @@ }, /turf/simulated/floor/wood, /area/horizon/command/heads/rd) -"oAa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow, -/turf/simulated/floor/tiled/full, -/area/horizon/security/investigations_hallway) "oAd" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden, /obj/structure/machinery/meter, @@ -112133,17 +112035,6 @@ /obj/structure/machinery/hologram/holopad/long_range, /turf/simulated/floor/carpet, /area/horizon/command/heads/captain) -"oAf" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/random/dirt_75, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_3/security/port) "oAj" = ( /obj/item/aicard{ pixel_y = 4 @@ -112157,6 +112048,13 @@ /obj/structure/table/wood, /turf/unsimulated/floor/wood, /area/centcom/specops) +"oAl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/alarm/west, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) "oAm" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, @@ -112865,26 +112763,18 @@ /turf/simulated/floor/tiled, /area/horizon/command/bridge/upperdeck) "oFw" = ( -/obj/structure/closet/crate, -/obj/item/stack/material/lead{ - amount = 10 +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 }, -/obj/item/stack/material/phoron{ - amount = 20 +/obj/structure/closet/secure_closet/evidence{ + name = "Electronics and Devices" }, -/obj/item/stack/material/uranium{ - amount = 10 +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/machinery/camera{ - c_tag = "Operations - Machinist Workshop 1"; - network = list("Operations") - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "oFy" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/dark_green/full{ @@ -112914,30 +112804,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/checkpoint) -"oFR" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/structure/machinery/button/mass_driver{ - _wifi_id = "chapel_driver"; - id = "chapel_driver"; - pixel_y = -30; - req_access = list(22) - }, -/obj/structure/machinery/button/remote/blast_door{ - pixel_y = -20; - pixel_x = 7; - id = "interiormassdriver"; - req_access = list(22) - }, -/obj/structure/machinery/button/remote/blast_door{ - pixel_y = -20; - pixel_x = -7; - id = "exteriormassdriver"; - req_access = list(22) - }, -/turf/simulated/floor/wood, -/area/horizon/crew/lounge) "oFU" = ( /obj/structure/table/rack{ dir = 8 @@ -113403,6 +113269,15 @@ }, /turf/simulated/floor/exoplanet/barren/raskara, /area/centcom/shared_dream) +"oIQ" = ( +/obj/structure/platform, +/obj/structure/machinery/optable/robotics, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner_wide/brown{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist) "oIU" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -113427,25 +113302,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/hallway) -"oIW" = ( -/obj/item/storage/belt/security/tactical, -/obj/item/storage/belt/security/tactical, -/obj/item/storage/belt/security/tactical, -/obj/item/storage/belt/security/tactical, -/obj/item/clothing/mask/gas/half, -/obj/item/clothing/mask/gas/half, -/obj/item/clothing/mask/gas/half, -/obj/item/clothing/mask/gas/half, -/obj/item/clothing/mask/gas/tactical, -/obj/item/clothing/mask/gas/tactical, -/obj/item/clothing/mask/gas/tactical, -/obj/item/clothing/mask/gas/tactical, -/obj/item/melee/energy/sword/knife, -/obj/item/melee/energy/sword/knife, -/obj/item/melee/energy/sword/knife, -/obj/item/melee/energy/sword/knife, -/turf/unsimulated/floor, -/area/centcom/legion) "oIY" = ( /turf/simulated/wall/shuttle/scc, /area/horizon/shuttle/escape_pod/pod4) @@ -113651,20 +113507,6 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/hallway/primary/deck_3/starboard/docks) -"oKb" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/service/starboard) "oKh" = ( /obj/structure/railing/mapped, /obj/structure/machinery/light{ @@ -113758,6 +113600,11 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/hapt) +"oKN" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/elevator) "oKQ" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -113878,6 +113725,13 @@ icon_state = "beach" }, /area/horizon/holodeck/source_beach) +"oLo" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/structure/bed/stool/chair/office/dark, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "oLv" = ( /obj/structure/machinery/atmospherics/pipe/simple/visible/yellow, /obj/structure/cable/yellow{ @@ -114098,10 +113952,6 @@ }, /turf/simulated/floor/tiled/dark, /area/centcom/bar) -"oML" = ( -/obj/structure/machinery/alarm/west, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/main) "oMM" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -114416,6 +114266,9 @@ /obj/item/pen, /turf/simulated/floor/carpet/rubber, /area/horizon/engineering/break_room) +"oOJ" = ( +/turf/simulated/wall/r_wall, +/area/horizon/security/checkpoint2) "oOK" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, @@ -114480,6 +114333,20 @@ icon_state = "white" }, /area/centcom/legion) +"oPm" = ( +/obj/structure/grille, +/obj/structure/machinery/door/firedoor, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/obj/structure/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "Security Lockdown"; + name = "Security Blast Door"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/horizon/security/forensic_laboratory) "oPo" = ( /obj/effect/floor_decal/corner/teal{ dir = 1 @@ -114608,14 +114475,45 @@ /obj/structure/machinery/light, /turf/unsimulated/floor/plating, /area/centcom/holding) -"oQg" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" +"oQc" = ( +/obj/structure/table/standard, +/obj/structure/machinery/requests_console/west{ + department = "Machinist Workshop"; + departmentType = 2; + name = "Machinist Requests Console"; + dir = 4; + pixel_x = 18 + }, +/obj/structure/machinery/button/remote/blast_door{ + dir = 5; + id = "mech_bay_shutter"; + name = "Machinist Bay Shutters"; + pixel_y = 3 + }, +/obj/structure/machinery/button/remote/blast_door{ + dir = 5; + id = "shutters_deck2_workshopdesk"; + name = "Machinist Workshop Desk Shutters"; + pixel_x = -9; + pixel_y = 3 + }, +/obj/item/paper_bin{ + pixel_x = 9; + pixel_y = 8 + }, +/obj/item/pen/black{ + pixel_x = 10; + pixel_y = 9 + }, +/obj/item/paper/stickynotes/pad/random{ + pixel_x = -10; + pixel_y = -3 + }, +/obj/effect/floor_decal/spline/plain/brown{ + dir = 6 }, /turf/simulated/floor/tiled/full, -/area/horizon/security/custodial) +/area/horizon/operations/machinist) "oQo" = ( /obj/structure/bed/stool/bar/padded/teal{ dir = 4 @@ -114630,34 +114528,6 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_3/aft/starboard/far) -"oQu" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 9 - }, -/obj/structure/machinery/power/apc/west, -/obj/structure/machinery/light_switch{ - pixel_x = 8; - pixel_y = -19 - }, -/obj/structure/machinery/light, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/structure/closet/secure_closet/evidence{ - name = "closet" - }, -/obj/item/camera{ - pixel_x = 5 - }, -/obj/item/camera_film{ - pixel_x = 6 - }, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -5; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/security/forensic_laboratory) "oQv" = ( /obj/structure/grille, /obj/structure/machinery/door/firedoor, @@ -114767,6 +114637,15 @@ "oRv" = ( /turf/simulated/wall, /area/horizon/security/investigators_office) +"oRy" = ( +/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/office) "oRz" = ( /obj/structure/machinery/atmospherics/pipe/manifold/visible{ dir = 1 @@ -115056,12 +114935,6 @@ }, /turf/simulated/floor/tiled/gunmetal/full, /area/horizon/operations/ship_supply_warehouse) -"oSQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "oSR" = ( /obj/effect/floor_decal/spline/plain/cee{ dir = 1 @@ -115366,15 +115239,6 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"oUP" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/structure/bed/stool/chair/sofa/right/beige{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/horizon/rnd/hallway) "oUQ" = ( /obj/structure/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/industrial/warning, @@ -115595,10 +115459,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_1/central) -"oWG" = ( -/obj/effect/floor_decal/industrial/outline_straight/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "oWH" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -115748,6 +115608,18 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/shuttle/intrepid/starboard_compartment) +"oXj" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/arrow/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/machinist) "oXk" = ( /obj/structure/weightlifter, /obj/random/dirt_75, @@ -116014,6 +115886,13 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_2/starboard) +"oYQ" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/structure/machinery/firealarm/north, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "oYV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/ladder/up{ @@ -116175,13 +116054,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/crew/fitness/changing) -"pam" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/effect/landmark/entry_point/fore{ - name = "fore, commissary" - }, -/turf/simulated/floor/reinforced/airless, -/area/horizon/exterior) "pan" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -116191,17 +116063,6 @@ /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard/near) -"pas" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 8; - name = "Machinist Workshop"; - sortType = "Machinist Workshop" - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/primary/deck_2/starboard) "pat" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -116221,13 +116082,20 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/hallway/upper) -"paw" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +"pax" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/horizon/rnd/hallway) +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint2) "paz" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -116364,6 +116232,19 @@ /obj/structure/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/starboard) +"pbD" = ( +/obj/structure/table/glass, +/obj/item/storage/slide_projector{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/effect/floor_decal/corner/beige/diagonal, +/obj/item/paper_scanner{ + pixel_x = -7 + }, +/obj/item/radio/intercom/east, +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) "pbE" = ( /obj/structure/machinery/firealarm/south, /obj/structure/table/standard, @@ -116408,6 +116289,14 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard/near) +"pbR" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/firefighting_closet, +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled, +/area/horizon/security/investigations_hallway) "pbX" = ( /obj/structure/bed/stool/chair/padded/red{ dir = 8 @@ -116437,6 +116326,15 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/storage/eva) +"pch" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/structure/bed/stool/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/security/investigations_hallway) "pcj" = ( /obj/effect/decal/cleanable/dirt, /mob/living/heavy_vehicle/premade/combatripley, @@ -116451,18 +116349,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/service/custodial) -"pcq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/stool/chair/sofa/pew/right{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/horizon/service/chapel/main) "pct" = ( /obj/structure/cable{ icon_state = "4-8" @@ -116542,14 +116428,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/central) -"pdd" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 5 - }, -/obj/structure/table/glass, -/obj/structure/machinery/microscope, -/turf/simulated/floor/tiled/white, -/area/horizon/security/forensic_laboratory) "pdf" = ( /obj/structure/cable{ icon_state = "1-2" @@ -117909,6 +117787,18 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/wood, /area/antag/burglar) +"pmo" = ( +/obj/structure/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/brown{ + dir = 1 + }, +/obj/effect/floor_decal/corner_wide/brown{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist) "pmp" = ( /obj/effect/floor_decal/corner/brown{ dir = 6 @@ -118032,15 +117922,6 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/reactor/supermatter/mainchamber) -"pmV" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/closet/secure_closet/machinist, -/obj/effect/floor_decal/corner_wide/black{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) "pnb" = ( /turf/simulated/wall/shuttle/unique/scc/mining{ icon_state = "3,1" @@ -118244,33 +118125,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/command/bridge/upperdeck) -"pop" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/beige{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/security/forensic_laboratory) -"por" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/obj/structure/table/steel, -/obj/item/paper_scanner{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/paper_scanner{ - pixel_x = 5; - pixel_y = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/security/investigations_hallway) "pov" = ( /turf/simulated/floor/beach/sand{ dir = 1; @@ -118440,13 +118294,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/investigations_hallway) -"ppO" = ( -/obj/item/radio/intercom/west, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/horizon/security/investigations_hallway) "ppY" = ( /obj/effect/floor_decal/corner/yellow{ dir = 10 @@ -118485,14 +118332,6 @@ }, /turf/simulated/floor/plating, /area/horizon/command/heads/captain) -"pql" = ( -/obj/structure/machinery/firealarm/north, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/decal/cleanable/cobweb2, -/obj/structure/machinery/portable_atmospherics/powered/pump/filled, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/turf/simulated/floor/tiled, -/area/horizon/maintenance/deck_3/security/port) "pqm" = ( /obj/structure/sign/flag/scc{ pixel_x = 32 @@ -118547,16 +118386,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/storage/eva) -"prc" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/item/radio/intercom/east, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/evidence_storage) "prd" = ( /obj/structure/railing/mapped{ dir = 8 @@ -118606,22 +118435,6 @@ /obj/effect/floor_decal/spline/plain/cee, /turf/simulated/floor/carpet/rubber, /area/horizon/rnd/chemistry) -"prC" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/horizon/maintenance/deck_3/security/port) "prG" = ( /obj/random/loot, /obj/structure/closet/crate, @@ -119017,6 +118830,13 @@ icon_state = "dark_preview" }, /area/centcom/control) +"pum" = ( +/obj/structure/machinery/conveyor{ + id = "Robocompo"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "puo" = ( /obj/structure/bed/stool/chair/shuttle, /obj/structure/extinguisher_cabinet/west{ @@ -119327,14 +119147,6 @@ /obj/structure/machinery/portable_atmospherics/canister/air/warm, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_1/wing/starboard/far) -"pwC" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/closet/crate/secure/weapon{ - icon_state = "drop_crate"; - req_access = list(4) - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/evidence_storage) "pwE" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -119413,6 +119225,22 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/horizon/maintenance/substation/operations) +"pxs" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "pxv" = ( /obj/item/beach_ball, /turf/simulated/floor/beach/sand{ @@ -119557,6 +119385,19 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) +"pyk" = ( +/obj/effect/floor_decal/corner/beige/diagonal, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) "pym" = ( /obj/structure/shuttle/engine/propulsion/burst, /turf/unsimulated/floor/plating, @@ -119588,15 +119429,6 @@ /obj/effect/floor_decal/spline/fancy/wood/corner, /turf/simulated/floor/wood, /area/horizon/service/mess_hall) -"pyu" = ( -/obj/structure/platform, -/obj/structure/machinery/optable/robotics, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_wide/brown{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) "pyx" = ( /obj/structure/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/corner/brown/full{ @@ -119634,6 +119466,13 @@ /obj/random/dirt_75, /turf/simulated/floor/tiled/full, /area/horizon/maintenance/deck_2/wing/port/nacelle) +"pyG" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "pyI" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/service/bar) @@ -119864,6 +119703,33 @@ /obj/effect/map_effect/marker_helper/airlock/interior, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_2/wing/port/far) +"pAu" = ( +/obj/structure/machinery/door/airlock/service{ + dir = 4; + id_tag = "chapdoor"; + name = "Chaplain's Office"; + req_access = list(22) + }, +/obj/structure/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/map_effect/door_helper/unres{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/office) "pAA" = ( /obj/structure/machinery/access_button{ pixel_x = -7; @@ -120517,13 +120383,6 @@ /obj/effect/shuttle_landmark/horizon/exterior/deck_2/fore, /turf/template_noop, /area/template_noop) -"pEB" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/structure/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/security/forensic_laboratory) "pED" = ( /obj/structure/machinery/button/switch/crematorium{ _wifi_id = "xenobio_crema"; @@ -120544,22 +120403,6 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"pEH" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/horizon/security/checkpoint2) "pEM" = ( /obj/structure/table/wood, /turf/simulated/floor/holofloor/beach/sand{ @@ -120640,33 +120483,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/hallway/primary/deck_3/central) -"pFA" = ( -/obj/structure/machinery/light, -/obj/structure/table/wood, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/item/toy/comic/inspector{ - pixel_x = -3 - }, -/obj/item/toy/comic/outlandish_tales{ - pixel_x = 2 - }, -/obj/item/toy/comic/magazine{ - pixel_x = 7 - }, -/obj/structure/machinery/ringer/north{ - dir = 2; - pixel_y = -24; - id = "Machinist"; - department = "Operations"; - req_access = list(29) - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "pFF" = ( /obj/structure/machinery/atmospherics/pipe/manifold/visible/red{ dir = 1 @@ -120705,6 +120521,12 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/indra/mainchamber) +"pGg" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) "pGi" = ( /obj/structure/railing/mapped{ dir = 8 @@ -120874,17 +120696,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos/propulsion/starboard) -"pHi" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/checkpoint2) "pHk" = ( /obj/item/flashlight/lamp/green{ pixel_x = 5; @@ -120945,10 +120756,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/hangar/intrepid) -"pHv" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/wood, -/area/horizon/crew/lounge) "pHx" = ( /obj/effect/floor_decal/corner/red{ dir = 6 @@ -121033,6 +120840,10 @@ }, /turf/simulated/floor/wood, /area/horizon/repoffice/consular_one) +"pIl" = ( +/obj/effect/floor_decal/corner/dark_blue/full, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "pIp" = ( /obj/effect/floor_decal/spline/plain{ dir = 9 @@ -121075,6 +120886,9 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/bluespace_drive) +"pIF" = ( +/turf/simulated/wall, +/area/horizon/service/chapel/main) "pIG" = ( /obj/structure/bed, /obj/item/bedsheet/black, @@ -121117,6 +120931,13 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/engineering/hallway/fore) +"pIV" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/closet/secure_closet/evidence{ + name = "Personal Belongings" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/evidence_storage) "pIW" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 @@ -121397,16 +121218,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_3/security/port) -"pKE" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/aft) "pKI" = ( /obj/effect/floor_decal/spline/plain/black{ dir = 8 @@ -121469,27 +121280,6 @@ /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/horizon/service/bar) -"pLu" = ( -/obj/effect/floor_decal/industrial/hatch_door/yellow, -/obj/structure/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/security{ - name = "Interrogation"; - req_access = list(1); - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/security/interrogation) "pLy" = ( /obj/structure/machinery/atmospherics/pipe/manifold/hidden{ dir = 1 @@ -121536,6 +121326,18 @@ temperature = 278.15 }, /area/horizon/medical/morgue) +"pLS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor, +/obj/structure/machinery/door/airlock/maintenance{ + dir = 1; + req_one_access = list(12,29) + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_2/elevator) "pLV" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -121715,6 +121517,19 @@ }, /turf/unsimulated/floor/wood, /area/centcom/bar) +"pNm" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/security/port) "pNo" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, @@ -121725,9 +121540,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/shuttle/intrepid/starboard_compartment) -"pNq" = ( -/turf/simulated/wall/r_wall, -/area/horizon/maintenance/deck_2/elevator) "pNw" = ( /obj/structure/cable{ icon_state = "1-2" @@ -122175,25 +121987,16 @@ /obj/structure/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/tiled/full, /area/horizon/hangar/intrepid) -"pQA" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 +"pQB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light/floor{ + dir = 1 }, -/obj/structure/filingcabinet/chestdrawer{ - pixel_y = 10; - pixel_x = 8 +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/random/pottedplant_small{ - pixel_x = 10; - pixel_y = 20 - }, -/obj/structure/filingcabinet/filingcabinet{ - name = "filing cabinet D"; - pixel_x = -6; - pixel_y = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/interrogation/monitoring) +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) "pQM" = ( /obj/effect/floor_decal/spline/plain, /turf/unsimulated/floor, @@ -122230,6 +122033,10 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/storage_hard/lower) +"pQS" = ( +/obj/structure/machinery/light_switch/east, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/evidence_storage) "pQU" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 9 @@ -122840,16 +122647,6 @@ icon_state = "dark_preview" }, /area/centcom/control) -"pVx" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "pVy" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -123133,6 +122930,13 @@ /obj/structure/machinery/porta_turret, /turf/simulated/floor/tiled/dark/full, /area/horizon/storage/secure/tech_vault) +"pXg" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/structure/machinery/alarm/north, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "pXh" = ( /obj/structure/machinery/power/terminal{ dir = 8 @@ -123313,20 +123117,6 @@ /obj/structure/machinery/power/apc/low/south, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_3/aft/port) -"pYq" = ( -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/office) "pYr" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -123381,6 +123171,12 @@ /obj/effect/map_effect/marker_helper/airlock/interior, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_2/wing/starboard/near) +"pYU" = ( +/obj/effect/floor_decal/corner/red/full, +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/machinery/alarm/west, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/interrogation_2) "pYV" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 5 @@ -123463,17 +123259,6 @@ /obj/effect/floor_decal/industrial/hatch_door/yellow, /turf/simulated/floor/tiled/dark/full, /area/shuttle/mercenary) -"pZm" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/structure/table/standard, -/obj/item/storage/bag/circuits/basic{ - pixel_y = 5; - pixel_x = -2 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "pZn" = ( /obj/structure/disposalpipe/segment{ icon_state = "pipe-c" @@ -123596,33 +123381,6 @@ /obj/structure/machinery/power/tesla_coil, /turf/simulated/floor/plating, /area/horizon/engineering/bluespace_drive) -"qau" = ( -/obj/structure/machinery/door/airlock/service{ - dir = 4; - id_tag = "chapdoor"; - name = "Chaplain's Office"; - req_access = list(22) - }, -/obj/structure/machinery/door/firedoor{ - dir = 4 - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/office) "qay" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -123689,12 +123447,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/hangar/port) -"qbd" = ( -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/obj/structure/grille, -/obj/structure/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/horizon/security/checkpoint2) "qbh" = ( /obj/random/maintenance_junk_or_loot, /obj/effect/floor_decal/industrial/warning{ @@ -123842,19 +123594,6 @@ "qch" = ( /turf/simulated/wall, /area/horizon/service/custodial/auxiliary) -"qcl" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/machinery/alarm/west, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/office) "qcn" = ( /obj/effect/floor_decal/spline/plain/black{ dir = 8 @@ -124011,6 +123750,16 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/equipment) +"qdt" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) "qdw" = ( /obj/effect/floor_decal/corner/brown/diagonal, /obj/structure/table/wood, @@ -124063,6 +123812,12 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/port/far) +"qdF" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "qdL" = ( /obj/effect/floor_decal/corner/red{ dir = 10 @@ -124160,18 +123915,6 @@ /obj/effect/map_effect/marker_helper/airlock/exterior, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_1/auxatmos) -"qek" = ( -/obj/structure/table/reinforced/steel, -/obj/structure/machinery/door/window/desk/northright{ - name = "Machinist Workshop Desk"; - req_access = list(29) - }, -/obj/structure/machinery/door/blast/shutters{ - id = "shutters_deck2_workshopdesk"; - name = "Machinist Workshop Desk Shutter" - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "qem" = ( /obj/structure/machinery/door/firedoor, /obj/structure/machinery/door/airlock/maintenance_hatch{ @@ -124332,6 +124075,23 @@ /obj/structure/window/reinforced/holowindow, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_gym) +"qfz" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/random/dirt_75, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/security/port) "qfB" = ( /obj/structure/machinery/light/colored/red, /turf/simulated/floor/shuttle/dark_red, @@ -124416,17 +124176,6 @@ }, /turf/simulated/open/airless, /area/horizon/exterior) -"qfT" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/door/airlock/mining{ - name = "Machinist Workshop"; - req_access = list(29) - }, -/obj/structure/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "qfV" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 @@ -124579,26 +124328,6 @@ }, /turf/simulated/floor/reinforced/airmix, /area/horizon/engineering/atmos/air) -"qgO" = ( -/obj/effect/floor_decal/corner/blue/full{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/storage/box/bodybags{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/storage/box/syringes{ - pixel_x = 8; - pixel_y = -1 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/structure/machinery/light, -/turf/simulated/floor/tiled/white, -/area/horizon/security/autopsy_laboratory) "qgS" = ( /obj/structure/machinery/door/blast/shutters{ density = 0; @@ -124641,10 +124370,6 @@ /obj/structure/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/horizon/hangar/intrepid) -"qhe" = ( -/obj/structure/table/wood, -/turf/simulated/floor/wood, -/area/horizon/rnd/hallway) "qhn" = ( /obj/structure/window/shuttle/unique/scc/scout{ icon_state = "3,2" @@ -124751,18 +124476,6 @@ }, /turf/simulated/floor/carpet, /area/horizon/command/bridge/meeting_room) -"qiw" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/wood, -/area/horizon/rnd/hallway) "qix" = ( /obj/structure/platform_deco{ dir = 1 @@ -124849,6 +124562,15 @@ /obj/structure/machinery/light, /turf/simulated/floor/tiled, /area/horizon/security/hallway) +"qjv" = ( +/obj/structure/closet/secure_closet/evidence{ + name = "personal belongings storage" + }, +/obj/effect/floor_decal/corner/blue/full, +/obj/structure/machinery/light, +/obj/structure/machinery/alarm/west, +/turf/simulated/floor/tiled/white, +/area/horizon/security/autopsy_laboratory) "qjE" = ( /obj/effect/floor_decal/spline/fancy{ dir = 8 @@ -125473,22 +125195,6 @@ icon_state = "wood" }, /area/centcom/control) -"qna" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/obj/structure/table/glass, -/obj/structure/machinery/ringer/south{ - department = "Security"; - id = "investigation_ringer"; - req_access = list(1) - }, -/obj/item/stack/packageWrap{ - pixel_y = 2 - }, -/obj/item/hand_labeler, -/turf/simulated/floor/tiled/white, -/area/horizon/security/forensic_laboratory) "qne" = ( /obj/structure/bed/stool/chair/office/light{ dir = 8 @@ -125656,6 +125362,21 @@ }, /turf/simulated/wall, /area/horizon/maintenance/substation/wing_starboard) +"qob" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/interrogation_1) "qod" = ( /obj/structure/machinery/papershredder, /obj/structure/machinery/newscaster/west, @@ -125921,18 +125642,6 @@ /obj/structure/machinery/computer/slot_machine, /turf/simulated/floor/tiled/dark/full, /area/antag/raider) -"qqg" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/structure/machinery/power/apc/south, -/obj/structure/cable/green, -/obj/structure/engineer_maintenance/pipe{ - dir = 4 - }, -/obj/structure/engineer_maintenance/pipe, -/turf/simulated/floor/tiled, -/area/horizon/security/investigations_hallway) "qqm" = ( /obj/item/material/shard{ icon_state = "medium" @@ -126152,10 +125861,6 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/horizon/maintenance/substation/civ_d2) -"qrL" = ( -/obj/structure/table/wood, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/main) "qrM" = ( /obj/effect/decal/cleanable/dirt, /obj/random/junk, @@ -126207,6 +125912,21 @@ }, /turf/simulated/floor/tiled/white, /area/merchant_station) +"qrS" = ( +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/structure/machinery/computer/security/telescreen{ + name = "Interrogation Monitor"; + console_networks = list("Interrogation"); + desc = "A camera monitor that connects to the interrogation room."; + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/horizon/security/interrogation/monitoring) "qsb" = ( /obj/structure/lattice/catwalk/indoor, /turf/space, @@ -126266,6 +125986,11 @@ }, /turf/unsimulated/floor/monotile, /area/antag/raider) +"qsB" = ( +/obj/effect/floor_decal/corner/brown/full, +/obj/effect/floor_decal/industrial/outline/operations, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "qsG" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 @@ -126322,6 +126047,9 @@ icon_state = "dark_preview" }, /area/centcom/specops) +"qth" = ( +/turf/simulated/wall/r_wall, +/area/horizon/security/interrogation_2) "qtl" = ( /obj/effect/floor_decal/corner/mauve{ dir = 10 @@ -126584,15 +126312,6 @@ }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_biesel) -"quY" = ( -/obj/effect/landmark/start{ - name = "Machinist" - }, -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "qva" = ( /obj/effect/floor_decal/corner_wide/green{ dir = 5 @@ -126707,19 +126426,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_2/wing/starboard) -"qvB" = ( -/obj/structure/platform, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/main) "qvD" = ( /obj/structure/machinery/light{ dir = 4 @@ -126960,15 +126666,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/office) -"qxs" = ( -/obj/structure/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/horizon/security/investigations_hallway) "qxA" = ( /obj/structure/grille, /obj/structure/machinery/door/blast/shutters/open{ @@ -127162,6 +126859,15 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/bluespace_drive) +"qza" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/evidence_storage) "qzh" = ( /obj/effect/floor_decal/corner/red{ dir = 9 @@ -127701,16 +127407,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/stairwell/engineering/deck_1) -"qDj" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/industrial/outline_straight/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "qDs" = ( /obj/effect/floor_decal/corner/brown{ dir = 10 @@ -127768,6 +127464,15 @@ }, /turf/simulated/floor/plating, /area/horizon/stairwell/bridge/deck_2) +"qDL" = ( +/obj/structure/machinery/mecha_part_fabricator{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist) "qDM" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -127862,14 +127567,6 @@ /obj/effect/landmark/actor_spawn, /turf/unsimulated/floor/wood, /area/antag/actor) -"qEm" = ( -/obj/structure/bed/stool/chair, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/obj/structure/machinery/light_switch/east, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/interrogation/monitoring) "qEo" = ( /obj/structure/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -128676,9 +128373,6 @@ /obj/effect/decal/cleanable/cobweb2, /turf/simulated/floor, /area/horizon/maintenance/deck_3/aft/holodeck) -"qJz" = ( -/turf/simulated/wall, -/area/horizon/service/chapel/office) "qJE" = ( /obj/effect/floor_decal/corner/lime/diagonal{ dir = 8 @@ -129193,6 +128887,30 @@ icon_state = "dark_preview" }, /area/centcom/specops) +"qMq" = ( +/obj/structure/table/rack/retail_shelf{ + name = "storage shelf" + }, +/obj/item/storage/box/evidence{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/item/storage/box/swabs{ + pixel_x = -9; + pixel_y = 8 + }, +/obj/item/storage/box/unique/sharps{ + pixel_x = -6 + }, +/obj/effect/floor_decal/corner/beige/diagonal, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/storage/box/folders/blue{ + pixel_x = 6 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) "qMu" = ( /obj/structure/railing/mapped{ name = "adjusted railing" @@ -129203,16 +128921,6 @@ }, /turf/unsimulated/floor/wood, /area/centcom/evac) -"qMv" = ( -/obj/structure/machinery/light/small{ - must_start_working = 1 - }, -/obj/effect/floor_decal/corner/purple/full, -/obj/structure/table/steel, -/obj/item/storage/box/lights/mixed, -/obj/item/storage/box/lights/mixed, -/turf/simulated/floor/tiled, -/area/horizon/security/custodial) "qMw" = ( /obj/structure/table/wood, /obj/item/wrench{ @@ -129362,6 +129070,12 @@ }, /turf/unsimulated/floor/rubber_carpet, /area/centcom/specops) +"qNi" = ( +/obj/effect/floor_decal/corner_wide/black{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist) "qNk" = ( /obj/structure/grille, /obj/structure/machinery/door/blast/regular{ @@ -129452,11 +129166,6 @@ }, /turf/simulated/floor/wood/yew, /area/centcom/shared_dream) -"qNT" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/main) "qNV" = ( /obj/structure/cable{ icon_state = "4-8" @@ -129570,6 +129279,14 @@ }, /turf/simulated/floor/carpet, /area/horizon/crew/journalistoffice) +"qOR" = ( +/obj/structure/machinery/vending/robotics, +/obj/effect/floor_decal/corner/brown/full{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "qOS" = ( /obj/effect/floor_decal/corner/red{ dir = 9 @@ -129620,6 +129337,13 @@ /obj/item/radio/intercom/south, /turf/simulated/floor/tiled/white, /area/horizon/medical/ward/isolation) +"qPl" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/platform, +/obj/structure/machinery/optable, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist) "qPn" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -129848,12 +129572,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/supermatter/mainchamber) -"qQI" = ( -/obj/effect/floor_decal/corner_wide/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) "qQP" = ( /obj/effect/floor_decal/corner/lime/full{ dir = 8 @@ -130034,6 +129752,22 @@ icon_state = "dark_preview" }, /area/antag/mercenary) +"qRU" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_2/starboard) "qRZ" = ( /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/holofloor/beach/sand{ @@ -130066,6 +129800,13 @@ /obj/structure/machinery/fabricator/autolathe/hacked, /turf/unsimulated/floor, /area/centcom/legion/hangar5) +"qSm" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/item/radio/intercom/west, +/turf/simulated/floor/tiled, +/area/horizon/security/investigations_hallway) "qSq" = ( /obj/structure/cable{ icon_state = "1-2" @@ -130116,6 +129857,12 @@ /obj/structure/railing/mapped, /turf/simulated/floor/tiled/dark, /area/horizon/weapons/grauwolf) +"qSO" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) "qSP" = ( /obj/structure/bed/stool/chair/sofa/red, /obj/effect/floor_decal/corner/brown/diagonal, @@ -130285,6 +130032,12 @@ }, /turf/simulated/floor/tiled, /area/horizon/command/bridge/controlroom) +"qUq" = ( +/obj/effect/floor_decal/corner/beige/diagonal, +/obj/random/pottedplant, +/obj/structure/machinery/alarm/west, +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) "qUt" = ( /obj/effect/floor_decal/corner/dark_blue/full, /obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ @@ -130298,17 +130051,6 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/atmos/air) -"qUx" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/office) "qUy" = ( /obj/effect/floor_decal/spline/plain/corner, /turf/simulated/floor/beach/sand{ @@ -131010,6 +130752,15 @@ }, /turf/unsimulated/floor, /area/centcom/holding) +"qYm" = ( +/obj/structure/table/reinforced, +/obj/structure/machinery/door/window/desk/northright{ + name = "Evidence Drop-off"; + req_access = list(4) + }, +/obj/structure/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/evidence_storage) "qYn" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -131414,19 +131165,6 @@ /obj/structure/machinery/atmospherics/pipe/simple/visible/aux, /turf/simulated/floor/plating, /area/horizon/engineering/atmos/air) -"rbu" = ( -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/primary/deck_2/central) "rbB" = ( /obj/structure/sink{ dir = 8; @@ -131665,6 +131403,14 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior/no_shields) +"rdn" = ( +/obj/structure/morgue{ + dir = 2; + name = "investigations morgue C" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/evidence_storage) "rdq" = ( /obj/structure/grille, /obj/structure/window/shuttle/scc_space_ship/cardinal, @@ -131771,14 +131517,6 @@ /obj/structure/table/wood, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_courtroom) -"rea" = ( -/obj/structure/table/steel, -/obj/item/storage/box/cups{ - pixel_y = -2; - pixel_x = -5 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/security/interrogation) "ree" = ( /obj/random/tool, /turf/unsimulated/floor/plating, @@ -131955,17 +131693,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor, /area/horizon/maintenance/deck_3/aft/starboard/far) -"rfe" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 5 - }, -/obj/structure/table/glass, -/obj/structure/machinery/dnaforensics{ - pixel_x = -1; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/security/forensic_laboratory) "rfh" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -132050,6 +131777,20 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/horizon/maintenance/deck_3/cafe) +"rfX" = ( +/obj/structure/machinery/door/airlock/security{ + dir = 1; + name = "Evidence Storage"; + req_access = list(4) + }, +/obj/structure/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/evidence_storage) "rgd" = ( /obj/effect/floor_decal/corner/dark_green/diagonal, /obj/structure/disposalpipe/segment{ @@ -133011,6 +132752,16 @@ "rmb" = ( /turf/simulated/mineral/planet, /area/centcom/shared_dream) +"rmc" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist) "rmd" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -133335,10 +133086,6 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_trinary) -"rok" = ( -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/elevator) "ron" = ( /obj/structure/cable{ icon_state = "4-8" @@ -133589,19 +133336,14 @@ }, /turf/simulated/floor/tiled/white, /area/centcom/shared_dream) -"rpQ" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" +"rpP" = ( +/obj/structure/morgue{ + dir = 2; + name = "investigations morgue A" }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/horizon/security/forensic_laboratory) +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/evidence_storage) "rpT" = ( /obj/effect/floor_decal/corner_wide/paleblue{ dir = 9 @@ -133793,22 +133535,6 @@ }, /turf/unsimulated/floor/rubber_carpet, /area/centcom/specops) -"rqS" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/machinery/alarm/west, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/office) "rqX" = ( /obj/random/dirt_75, /obj/structure/machinery/door/firedoor{ @@ -133819,13 +133545,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_2/wing/starboard) -"rra" = ( -/obj/structure/table/rack, -/obj/item/rig/retro/equipped, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/legion/hangar5) "rre" = ( /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, @@ -134076,12 +133795,6 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_tribunal) -"rsH" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/evidence_storage) "rsJ" = ( /obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -134237,23 +133950,6 @@ }, /turf/space, /area/horizon/exterior) -"rtQ" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/horizon/security/investigations_hallway) "rtS" = ( /obj/structure/cable{ icon_state = "4-8" @@ -134432,6 +134128,15 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_1/operations/starboard) +"rvk" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/effect/landmark/entry_point/fore{ + name = "fore, civilian lounges, port" + }, +/obj/structure/grille, +/obj/structure/machinery/door/firedoor, +/turf/simulated/floor/reinforced/airless, +/area/horizon/crew/lounge) "rvl" = ( /obj/structure/railing/mapped{ dir = 1 @@ -134477,12 +134182,6 @@ }, /turf/simulated/open, /area/horizon/service/hydroponics) -"rvA" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/security/checkpoint2) "rvC" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -134889,6 +134588,26 @@ }, /turf/simulated/floor/shuttle/black, /area/shuttle/hapt) +"ryw" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/door/firedoor/multi_tile, +/obj/structure/machinery/door/airlock/multi_tile/glass{ + name = "Deck 2 Starboard Docks" + }, +/obj/structure/machinery/door/blast/shutters/open{ + dir = 2; + id = "seconddeckdockint"; + name = "Security Checkpoint Internal Shutter" + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/checkpoint2) "ryz" = ( /obj/structure/machinery/light/floor{ dir = 4 @@ -135013,6 +134732,28 @@ }, /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/maintenance/deck_2/wing/starboard) +"rzs" = ( +/obj/structure/machinery/alarm/west{ + dir = 2; + pixel_x = 0; + pixel_y = -10 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/item/radio/intercom/north{ + pixel_y = 0; + dir = 2 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/operations/machinist) "rzx" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -135265,16 +135006,6 @@ "rAV" = ( /turf/simulated/wall/r_wall, /area/horizon/rnd/xenoarch/isolation_c) -"rAX" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/machinery/door/blast/regular{ - dir = 4; - id = "exteriormassdriver"; - name = "Exterior Mass Driver Blast Door" - }, -/obj/structure/plasticflaps/airtight, -/turf/simulated/floor/plating, -/area/horizon/crew/lounge) "rAY" = ( /obj/structure/machinery/camera/network/engineering{ c_tag = "Engineering - Atmospherics Control 1"; @@ -135299,6 +135030,16 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos/propulsion/starboard) +"rBj" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/arrow/yellow, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "rBm" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 10 @@ -135358,6 +135099,21 @@ "rBJ" = ( /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/indra/smes) +"rBN" = ( +/obj/structure/table/standard, +/obj/item/storage/firstaid/empty{ + pixel_x = 6 + }, +/obj/item/storage/firstaid/empty{ + pixel_x = -9 + }, +/obj/effect/floor_decal/corner/brown/full, +/obj/item/reagent_containers/glass/bucket, +/obj/item/reagent_containers/glass/bucket{ + pixel_x = -9 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "rBO" = ( /obj/effect/floor_decal/industrial/warning, /obj/random/maintenance_junk_or_loot, @@ -136414,6 +136170,52 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/rnd/xenoarch/storage) +"rJH" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/item/healthanalyzer, +/obj/item/mmi{ + pixel_y = 11 + }, +/obj/item/mmi{ + pixel_y = 11; + pixel_x = -8 + }, +/obj/item/flash/synthetic{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/flash/synthetic{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/flash/synthetic{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/flash/synthetic{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/flash/synthetic{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/flash/synthetic{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "rJL" = ( /obj/effect/decal/fake_object{ color = "#545c68"; @@ -136452,22 +136254,6 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_3/security/port) -"rJR" = ( -/obj/structure/machinery/firealarm/south, -/obj/effect/floor_decal/corner/purple/full{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - must_start_working = 1 - }, -/obj/structure/closet, -/obj/effect/floor_decal/industrial/outline/custodial, -/obj/item/mop, -/obj/item/mop, -/obj/item/reagent_containers/glass/bucket, -/obj/item/reagent_containers/glass/bucket, -/turf/simulated/floor/tiled, -/area/horizon/security/custodial) "rJW" = ( /obj/structure/machinery/atmospherics/pipe/tank/carbon_dioxide/scc_shuttle, /turf/simulated/floor/plating, @@ -136600,6 +136386,19 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) +"rKW" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) "rKY" = ( /obj/item/bodybag/cryobag{ pixel_y = -3 @@ -136642,6 +136441,22 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/shuttle/intrepid/medical) +"rLa" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_2/starboard) "rLi" = ( /obj/effect/floor_decal/spline/fancy, /obj/structure/railing/mapped, @@ -136668,16 +136483,12 @@ /obj/structure/machinery/firealarm/north, /turf/simulated/floor/wood, /area/horizon/command/bridge/meeting_room) -"rLw" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 +"rLs" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 8 }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/structure/machinery/light, -/turf/simulated/floor/tiled, -/area/horizon/security/checkpoint2) +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist) "rLx" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -137223,12 +137034,6 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/crew/journalistoffice) -"rOD" = ( -/obj/random/dirt_75, -/obj/random/dirt_75, -/obj/structure/machinery/alarm/west, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/elevator) "rOF" = ( /obj/structure/machinery/door/airlock/glass_security{ dir = 1; @@ -137363,6 +137168,16 @@ }, /turf/simulated/wall, /area/horizon/maintenance/deck_2/wing/starboard/far) +"rPk" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "rPm" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/machinery/shieldgen, @@ -137529,15 +137344,6 @@ }, /turf/simulated/floor/plating, /area/horizon/shuttle/canary) -"rQp" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/interrogation) "rQr" = ( /obj/random/pottedplant, /turf/simulated/floor/holofloor/wood, @@ -137930,21 +137736,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_2/wing/port/nacelle) -"rSS" = ( -/obj/structure/table/standard, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/pen{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/hand_labeler{ - pixel_y = 2 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/evidence_storage) "rSV" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 @@ -138106,16 +137897,6 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/atmos/air) -"rTT" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 8 - }, -/obj/structure/machinery/camera{ - c_tag = "Service - Chapel 1"; - network = list("Service") - }, -/turf/simulated/floor/wood, -/area/horizon/service/chapel/main) "rTW" = ( /obj/structure/platform/ledge, /obj/structure/platform/ledge{ @@ -138709,6 +138490,15 @@ /obj/structure/platform_stairs/south_north_solo, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/main/starboard) +"rXP" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/firing_range) "rXT" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -138796,12 +138586,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos/propulsion/starboard) -"rYy" = ( -/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/evidence_storage) "rYE" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -138819,21 +138603,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/shuttle/mercenary) -"rYM" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 6 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/horizon/security/forensic_laboratory) "rYO" = ( /obj/effect/floor_decal/corner/dark_blue/diagonal, /obj/effect/floor_decal/industrial/warning{ @@ -139038,6 +138807,15 @@ /obj/effect/floor_decal/industrial/hatch_door/yellow, /turf/simulated/floor/tiled/full, /area/horizon/hangar/airstation) +"rZA" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/grass/no_edge, +/area/horizon/rnd/hallway) "rZE" = ( /obj/effect/floor_decal/corner/teal/full{ dir = 1 @@ -139049,22 +138827,6 @@ /obj/structure/machinery/porta_turret, /turf/simulated/floor/tiled/dark/full, /area/horizon/storage/secure/tech_vault) -"rZK" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "rZN" = ( /obj/effect/floor_decal/corner/dark_green, /turf/simulated/floor/tiled, @@ -139315,6 +139077,29 @@ /obj/effect/floor_decal/industrial/hatch_door/red, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_2/wing/port/near) +"sbO" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 + }, +/obj/structure/table/steel, +/obj/structure/machinery/button/switch/windowtint{ + id = "Interro_B"; + pixel_x = 8; + dir = 9; + pixel_y = 9 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_x = -4 + }, +/turf/simulated/floor/tiled, +/area/horizon/security/interrogation/monitoring) "sbS" = ( /turf/simulated/wall, /area/horizon/hangar/airstation) @@ -139595,6 +139380,13 @@ /obj/effect/floor_decal/spline/plain/black, /turf/simulated/floor/tiled/dark, /area/horizon/service/bar) +"sdL" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "sdN" = ( /obj/effect/floor_decal/corner_wide/paleblue{ dir = 9 @@ -139604,13 +139396,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/command/heads/cmo) -"sdO" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/main) "sdR" = ( /obj/effect/decal/cleanable/cobweb2, /turf/simulated/floor/tiled/dark, @@ -139625,12 +139410,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/storage_hard/upper) -"sdV" = ( -/obj/effect/floor_decal/industrial/outline_straight/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "sea" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -139646,12 +139425,6 @@ icon_state = "wood" }, /area/antag/raider) -"sey" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ - id = "chapel" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/chapel/main) "sez" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -139825,6 +139598,20 @@ /obj/structure/machinery/door/firedoor, /turf/simulated/floor/plating, /area/horizon/security/hallway) +"sfz" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light/floor, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/mail_room) "sfG" = ( /obj/structure/machinery/door/airlock/centcom{ name = "Washroom" @@ -140549,6 +140336,16 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/exam) +"sjj" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/machinery/door/blast/regular{ + dir = 4; + id = "exteriormassdriver"; + name = "Exterior Mass Driver Blast Door" + }, +/obj/structure/plasticflaps/airtight, +/turf/simulated/floor/plating, +/area/horizon/crew/lounge) "sjl" = ( /obj/structure/table/reinforced/wood, /obj/structure/machinery/chemical_dispenser/coffeemaster/full{ @@ -141335,6 +141132,13 @@ roof_type = null }, /area/horizon/service/custodial/disposals/deck_1) +"soc" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "sog" = ( /obj/structure/railing/mapped{ dir = 4 @@ -141541,6 +141345,19 @@ /obj/structure/sign/greencross/small, /turf/simulated/floor/plating, /area/horizon/medical/reception) +"sqD" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/security/autopsy_laboratory) "sqM" = ( /obj/random/dirt_75, /obj/effect/floor_decal/industrial/warning{ @@ -141696,6 +141513,19 @@ /obj/structure/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/plating, /area/horizon/engineering/bluespace_drive) +"srG" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "srH" = ( /obj/effect/floor_decal/corner/green/full{ dir = 1 @@ -141895,6 +141725,16 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/command/bridge/meeting_room) +"ssI" = ( +/obj/effect/floor_decal/corner/beige/diagonal, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) "ssK" = ( /obj/structure/cable{ icon_state = "2-4" @@ -141908,12 +141748,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/port/nacelle) -"ssL" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/evidence_storage) "ssN" = ( /obj/effect/floor_decal/corner_wide/blue, /obj/effect/floor_decal/spline/plain/corner, @@ -142071,15 +141905,6 @@ icon_state = "dark_preview" }, /area/centcom/control) -"sus" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/corner/dark_green/diagonal, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/horizon/security/checkpoint2) "suD" = ( /turf/simulated/floor/airless/lava{ density = 1 @@ -142120,25 +141945,6 @@ }, /turf/simulated/floor/tiled/gunmetal, /area/horizon/operations/warehouse) -"suU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/horizon/security/investigations_hallway) "suX" = ( /obj/structure/bed/stool/chair/office/dark, /obj/structure/lattice/catwalk/indoor/grate/dark, @@ -142206,6 +142012,12 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/horizon/engineering/atmos/air) +"svy" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "svI" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 6 @@ -142469,23 +142281,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor, /area/horizon/maintenance/deck_2/wing/port/far) -"swO" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/horizon/security/checkpoint2) "swT" = ( /turf/simulated/wall/shuttle/unique/mercenary/small{ icon_state = "7,3" @@ -142647,16 +142442,6 @@ /obj/effect/floor_decal/industrial/warning/full, /turf/unsimulated/floor, /area/centcom/control) -"sxP" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "sxQ" = ( /obj/random/dirt_75, /obj/effect/floor_decal/industrial/warning{ @@ -142780,34 +142565,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/rnd/xenobiology/foyer) -"syl" = ( -/obj/structure/closet/secure_closet/cabinet{ - anchored = 1; - name = "legate's closet"; - req_access = list(108,111) - }, -/obj/structure/sign/flag/biesel{ - pixel_y = 32 - }, -/obj/item/melee/energy/sword/knife, -/obj/item/melee/telebaton, -/obj/item/megaphone/sec, -/obj/item/storage/box/fancy/cigarettes/cigar, -/obj/item/flame/lighter/zippo, -/obj/item/reagent_containers/food/drinks/bottle/victorygin, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, -/obj/item/storage/box/drinkingglasses, -/obj/item/storage/backpack/satchel/leather, -/obj/item/clothing/shoes/jackboots/toeless, -/obj/item/clothing/glasses/sunglasses/aviator, -/obj/item/flag/biesel/l{ - pixel_y = 8 - }, -/obj/item/flag/biesel, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/legion/hangar5) "syt" = ( /obj/structure/grille, /obj/structure/machinery/door/firedoor, @@ -142827,6 +142584,13 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_3/cafe) +"syD" = ( +/obj/structure/platform_stairs, +/obj/structure/platform{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) "syK" = ( /obj/effect/landmark/entry_point/starboard{ name = "starboard, atmospherics" @@ -142938,6 +142702,13 @@ }, /turf/template_noop, /area/template_noop) +"szf" = ( +/obj/structure/bed/stool/chair, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/security/interrogation/monitoring) "szj" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -143322,6 +143093,20 @@ /obj/structure/sign/staff_only, /turf/unsimulated/wall/darkshuttlewall, /area/centcom/bar) +"sBt" = ( +/obj/structure/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/machinery/vending/wardrobe/robo_wardrobe, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/black/full{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "sBx" = ( /obj/structure/machinery/door/airlock/command{ id_tag = "rep_office_b"; @@ -143537,11 +143322,30 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) +"sCA" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/random/pottedplant, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/machinery/power/apc/low/east, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) "sCC" = ( /obj/structure/machinery/power/emitter, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/carpet/rubber, /area/horizon/engineering/storage_hard/lower) +"sCF" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/operations/machinist) "sCH" = ( /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 @@ -143553,20 +143357,6 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"sCJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/horizon/maintenance/deck_3/security/port) "sCL" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -143578,20 +143368,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/meeting_room) -"sCP" = ( -/obj/structure/machinery/disposal/small/west{ - dir = 1; - pixel_x = 0; - pixel_y = -14 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/black{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) "sCQ" = ( /obj/structure/machinery/chem_master/condimaster{ pixel_y = 1 @@ -143935,12 +143711,12 @@ /turf/simulated/floor/carpet/rubber, /area/horizon/tcommsat/entrance) "sEy" = ( -/obj/structure/machinery/atmospherics/pipe/manifold/hidden, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +/obj/random/dirt_75, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/simulated/floor/tiled, -/area/horizon/security/checkpoint2) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/elevator) "sEA" = ( /turf/unsimulated/wall/steel, /area/antag/burglar) @@ -144105,9 +143881,6 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"sFU" = ( -/turf/simulated/wall, -/area/horizon/service/chapel/main) "sFW" = ( /obj/structure/cable/green{ icon_state = "2-4" @@ -144238,6 +144011,28 @@ }, /turf/unsimulated/floor/plating, /area/centcom/ferry) +"sGP" = ( +/obj/structure/machinery/conveyor_switch/oneway{ + desc = "A conveyor control switch. It appears to only go in one direction. Controls the components conveyor belt."; + id = "Robocompo"; + pixel_y = 20; + pixel_x = -10 + }, +/obj/structure/engineer_maintenance/electric{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/machinery/power/apc/north, +/obj/effect/landmark/start{ + name = "Machinist" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist) "sGT" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 4 @@ -144807,6 +144602,12 @@ }, /turf/unsimulated/floor, /area/centcom/bar) +"sLg" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/machinery/alarm/west, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/elevator) "sLh" = ( /obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -144894,12 +144695,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/hangar/starboard) -"sLH" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/meeting_room) "sLO" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -145055,6 +144850,18 @@ }, /turf/simulated/floor/tiled, /area/merchant_station/warehouse) +"sNa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/stool/chair/sofa/pew/right{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) "sNe" = ( /obj/structure/closet/secure_closet/chemical{ req_access = list(7) @@ -145238,6 +145045,17 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos/turbine) +"sNV" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/corner/beige/diagonal, +/obj/structure/machinery/light, +/obj/structure/machinery/requests_console/east{ + department = "Forensics Lab"; + departmentType = 5; + pixel_y = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) "sOa" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -145950,19 +145768,6 @@ /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, /area/horizon/medical/paramedic) -"sSE" = ( -/obj/structure/closet/crate/medical, -/obj/item/tank/anesthetic, -/obj/item/tank/anesthetic, -/obj/item/tank/oxygen, -/obj/effect/floor_decal/corner_wide/brown{ - dir = 10 - }, -/obj/effect/floor_decal/corner_wide/brown{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) "sSF" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, @@ -146048,20 +145853,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/rnd/xenoarch/isolation_a) -"sTp" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light/floor, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/mail_room) "sTv" = ( /turf/simulated/wall/shuttle/unique/mercenary/small{ icon_state = "5,2" @@ -146086,6 +145877,12 @@ /obj/structure/flora/ausbushes/sunnybush, /turf/simulated/floor/grass/no_edge, /area/horizon/crew/lounge) +"sTH" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/machinery/vending/overloaders, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/wood, +/area/horizon/hallway/primary/deck_2/starboard) "sTI" = ( /obj/structure/table/wood, /turf/simulated/floor/holofloor/carpet, @@ -146352,17 +146149,6 @@ /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor, /area/horizon/maintenance/deck_3/auxatmos) -"sWt" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/random/pottedplant, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/machinery/power/apc/low/east, -/turf/simulated/floor/wood, -/area/horizon/service/chapel/main) "sWx" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -146423,6 +146209,21 @@ }, /turf/simulated/floor/plating, /area/horizon/command/bridge/meeting_room) +"sWI" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/railing/mapped, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/lattice/catwalk/indoor/grate/light, +/turf/simulated/floor/plating, +/area/horizon/operations/machinist) "sWJ" = ( /obj/structure/stairs_railing{ dir = 8 @@ -146438,6 +146239,10 @@ }, /turf/simulated/floor/carpet, /area/horizon/security/investigators_office) +"sWL" = ( +/obj/structure/machinery/alarm/west, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) "sWR" = ( /turf/simulated/wall, /area/horizon/hangar/operations) @@ -146592,6 +146397,21 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/firing_range) +"sXv" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/interrogation_2) "sXx" = ( /obj/effect/floor_decal/corner/paleblue, /obj/effect/decal/fake_object{ @@ -146624,6 +146444,26 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_2/fore) +"sXE" = ( +/obj/structure/sign/staff_only{ + pixel_x = -31 + }, +/obj/structure/machinery/door/airlock/service{ + dir = 1; + name = "Chapel Storage"; + req_access = list(22) + }, +/obj/structure/machinery/door/firedoor, +/obj/effect/map_effect/door_helper/unres{ + dir = 1 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/office) "sXF" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/effect/floor_decal/industrial/outline/yellow, @@ -146791,18 +146631,23 @@ /obj/structure/platform, /turf/simulated/floor/carpet/rubber, /area/horizon/command/bridge/controlroom) +"sYY" = ( +/obj/structure/closet/secure_closet/evidence{ + name = "personal belongings storage" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/obj/structure/machinery/power/apc/south, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/white, +/area/horizon/security/autopsy_laboratory) "sZb" = ( /obj/structure/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/horizon/security/office) -"sZc" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "sZe" = ( /obj/structure/bed/stool/chair/office/bridge/pilot{ dir = 8 @@ -146838,6 +146683,24 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/hallway/primary/deck_3/starboard/docks) +"sZj" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) "sZm" = ( /obj/structure/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1337; @@ -146868,19 +146731,6 @@ /obj/random/contraband, /turf/simulated/floor/tiled, /area/horizon/maintenance/deck_2/wing/starboard/nacelle) -"sZw" = ( -/obj/structure/platform_stairs/full, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/button/switch/windowtint{ - dir = 10; - id = "workshopsurgery"; - pixel_x = 13; - pixel_y = 6 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) "sZy" = ( /obj/effect/decal/cleanable/spiderling_remains, /turf/simulated/floor/carpet/rubber, @@ -146911,12 +146761,56 @@ }, /turf/simulated/floor/tiled, /area/horizon/service/hydroponics/garden) +"sZF" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/office) "sZM" = ( /obj/structure/bed/stool/chair/holochair{ dir = 4 }, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_courtroom) +"sZN" = ( +/obj/structure/table/rack, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/glass/full, +/obj/item/stack/material/glass/full, +/obj/item/stack/material/aluminium/full, +/obj/item/stack/material/aluminium/full, +/obj/item/paint_sprayer, +/obj/item/reagent_containers/weldpack, +/obj/item/stack/material/plasteel{ + amount = 20; + pixel_y = 4; + randpixel = 0 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/item/storage/toolbox/mechanical, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) +"sZS" = ( +/obj/structure/coatrack{ + pixel_x = -9; + pixel_y = 1 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = 8 + }, +/obj/effect/floor_decal/corner/beige/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) "tad" = ( /obj/structure/machinery/access_button{ command = "cycle_interior"; @@ -147078,14 +146972,6 @@ "taW" = ( /turf/simulated/wall, /area/horizon/maintenance/deck_1/wing/starboard/far) -"taZ" = ( -/obj/structure/machinery/mech_recharger, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "tbc" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, /obj/structure/machinery/light/small{ @@ -147596,14 +147482,6 @@ /obj/structure/machinery/meter, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/atmos/turbine) -"teV" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/elevator) "teW" = ( /obj/structure/closet/crate/trashcart, /obj/item/broken_bottle, @@ -147750,15 +147628,6 @@ /obj/structure/machinery/disposal/small/north, /turf/simulated/floor/tiled/white, /area/horizon/medical/exam) -"tfP" = ( -/obj/structure/table/rack, -/obj/item/rig/retro/equipped, -/obj/item/rig/retro/equipped, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) "tfQ" = ( /obj/structure/machinery/power/apc/east, /obj/structure/cable/green{ @@ -147858,6 +147727,12 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/office) +"tgt" = ( +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/obj/structure/grille, +/obj/structure/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) "tgw" = ( /obj/structure/machinery/drone_fabricator, /turf/simulated/floor/greengrid/nitrogen, @@ -147907,6 +147782,13 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) +"tgN" = ( +/obj/structure/machinery/photocopier, +/obj/effect/floor_decal/corner/beige/diagonal, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/machinery/light, +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) "tgO" = ( /obj/structure/machinery/atmospherics/pipe/simple/visible/black, /obj/structure/cable/green{ @@ -147933,6 +147815,22 @@ }, /turf/unsimulated/floor, /area/antag/ninja) +"tgR" = ( +/obj/structure/bed/stool/chair{ + name = "uncomfortable chair"; + dir = 4 + }, +/obj/effect/floor_decal/corner/red/full{ + dir = 8 + }, +/obj/structure/machinery/button/switch/windowtint{ + id = "Interro_A"; + pixel_x = -19; + dir = 8; + pixel_y = -1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/interrogation_1) "tgS" = ( /obj/item/gun/energy/gun/nuclear{ pixel_y = -15 @@ -148123,10 +148021,32 @@ }, /turf/simulated/floor/tiled, /area/horizon/command/bridge/upperdeck) +"thO" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/structure/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/firing_range) "thS" = ( /obj/structure/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/dark/full, /area/horizon/storage/secure/ops_vault) +"thZ" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/machinery/alarm/west, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/office) "tib" = ( /obj/structure/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ dir = 8; @@ -149185,22 +149105,6 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor, /area/antag/burglar) -"toY" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/horizon/engineering/atmos/storage_maintenance) "tpe" = ( /obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -149280,13 +149184,6 @@ /obj/effect/floor_decal/industrial/hatch_door/yellow, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_2/wing/starboard/far) -"tpX" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/interrogation/monitoring) "tqa" = ( /obj/structure/shuttle_part/scc/scout{ icon_state = "1,2" @@ -149329,6 +149226,12 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/mercenary) +"tqe" = ( +/obj/effect/floor_decal/corner_wide/brown{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist) "tqg" = ( /obj/structure/table/reinforced/steel, /obj/item/paper_bin{ @@ -149454,12 +149357,6 @@ /obj/structure/table/reinforced/wood, /turf/unsimulated/floor, /area/antag/raider) -"tqu" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/starboard) "tqw" = ( /obj/structure/machinery/camera/network/reactor{ c_tag = "Engineering - INDRA Monitoring Room"; @@ -149779,6 +149676,25 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) +"tso" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/obj/structure/machinery/camera/network/security{ + c_tag = "Security - Forensic Laboratory Autopsy"; + dir = 1 + }, +/obj/item/storage/box/gloves{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/item/storage/box/masks{ + pixel_x = -7; + pixel_y = 8 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/horizon/security/autopsy_laboratory) "tsq" = ( /obj/structure/machinery/atmospherics/pipe/simple/visible/black{ dir = 4 @@ -149977,14 +149893,6 @@ /obj/structure/machinery/light_switch/north, /turf/simulated/floor/carpet/rubber, /area/horizon/engineering/atmos/storage) -"ttV" = ( -/obj/structure/morgue{ - dir = 2; - name = "investigations morgue C" - }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/evidence_storage) "ttX" = ( /obj/structure/machinery/door/airlock/silver{ name = "Washroom"; @@ -150066,12 +149974,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/engineering/hallway/interior) -"tuM" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/firing_range) "tuP" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 5 @@ -150110,6 +150012,12 @@ "tuY" = ( /turf/simulated/wall/r_wall, /area/horizon/rnd/hallway) +"tvb" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) "tvc" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/machinery/atmospherics/binary/pump/supply/on{ @@ -150573,13 +150481,6 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/legion) -"txT" = ( -/obj/structure/engineer_maintenance/pipe{ - dir = 8 - }, -/obj/structure/engineer_maintenance/electric, -/turf/simulated/floor/lino, -/area/horizon/security/investigators_office) "txU" = ( /obj/effect/floor_decal/corner_wide/green/full{ dir = 8 @@ -150990,6 +150891,21 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion) +"tAm" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/security/interrogation/monitoring) "tAo" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 @@ -151436,25 +151352,6 @@ }, /turf/simulated/floor/plating, /area/horizon/service/custodial/disposals/deck_1) -"tDx" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet/north, -/turf/simulated/floor/tiled, -/area/horizon/security/investigations_hallway) -"tDB" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'WARNING: FIRING RANGE'."; - name = "\improper WARNING: FIRING RANGE sign"; - pixel_y = 32 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/firing_range) "tDE" = ( /obj/structure/lattice/catwalk, /turf/space, @@ -151606,6 +151503,23 @@ "tEx" = ( /turf/unsimulated/floor/plating, /area/centcom/holding) +"tEA" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/obj/structure/machinery/button/switch/windowtint{ + dir = 8; + id = "sec_autopsy"; + pixel_x = -24; + pixel_y = -2 + }, +/obj/structure/machinery/light_switch{ + dir = 8; + pixel_x = -24; + pixel_y = 7 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/security/autopsy_laboratory) "tEG" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -151644,6 +151558,19 @@ /obj/structure/machinery/door/firedoor, /turf/simulated/floor/tiled/dark/full, /area/horizon/rnd/lab) +"tES" = ( +/obj/effect/floor_decal/corner/beige/diagonal, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) "tEX" = ( /obj/random/maintenance_junk_or_loot, /obj/effect/floor_decal/industrial/warning{ @@ -151990,24 +151917,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/hangar/control) -"tGI" = ( -/obj/effect/floor_decal/corner/beige/full{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/storage/box/slides{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/storage/box/fancy/vials{ - pixel_x = -7; - pixel_y = -1 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/security/forensic_laboratory) "tGK" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -152142,12 +152051,6 @@ /obj/structure/table/reinforced/steel, /turf/unsimulated/floor/plating, /area/centcom/specops) -"tHx" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ - id = "workshopsurgery" - }, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "tHL" = ( /obj/structure/machinery/mass_driver{ _wifi_id = "waste"; @@ -152179,6 +152082,15 @@ }, /turf/simulated/floor/holofloor/tiled/dark, /area/tdome/tdome2) +"tHS" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/structure/bed/stool/chair/sofa/left/beige{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/rnd/hallway) "tIl" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -152197,13 +152109,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/icu) -"tIp" = ( -/obj/structure/bed/stool/chair/office/dark, -/obj/effect/landmark/start{ - name = "Machinist" - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "tIt" = ( /obj/structure/machinery/body_scanconsole{ dir = 8 @@ -152221,27 +152126,6 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/hapt) -"tIv" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/structure/engineer_maintenance/pipe, -/obj/structure/engineer_maintenance/electric{ - dir = 8 - }, -/obj/structure/machinery/light_switch/west{ - pixel_y = -3 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/mail_room) "tIA" = ( /obj/effect/floor_decal/spline/fancy/wood/cee{ dir = 1 @@ -152366,10 +152250,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/surgery) -"tJC" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/wood, -/area/horizon/crew/lounge) "tJE" = ( /obj/structure/machinery/atmospherics/binary/passive_gate{ dir = 1; @@ -152790,25 +152670,30 @@ dir = 4 }, /area/horizon/maintenance/deck_1/main/starboard) -"tLR" = ( -/obj/structure/machinery/door/firedoor{ - dir = 4 +"tLU" = ( +/obj/structure/machinery/door/blast/shutters{ + id = "shutters_deck2_workshopgarage"; + name = "Machinist Workshop Garage Shutter" }, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 1 }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow, -/obj/structure/machinery/door/airlock/maintenance_hatch{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "1-2" }, /turf/simulated/floor/tiled/dark/full, -/area/horizon/maintenance/deck_3/security/port) +/area/horizon/operations/machinist) +"tMo" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint2) "tMs" = ( /obj/structure/closet/secure_closet/medical3, /obj/effect/floor_decal/corner_wide/green{ @@ -152816,22 +152701,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/equipment) -"tMv" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/horizon/security/interrogation/monitoring) "tMx" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -152839,19 +152708,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/supply/dock) -"tME" = ( -/obj/effect/landmark/start{ - name = "Machinist" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_wide/brown{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) "tMG" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -152907,26 +152763,13 @@ /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"tNc" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/obj/structure/machinery/bodyscanner{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/security, -/turf/simulated/floor/tiled/white, -/area/horizon/security/autopsy_laboratory) -"tNf" = ( +"tNg" = ( /obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/machinery/newscaster/north, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 8 + dir = 10 }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, -/area/horizon/service/chapel/main) +/area/horizon/rnd/hallway) "tNq" = ( /obj/structure/cable/green{ icon_state = "1-8" @@ -153011,16 +152854,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/ai/upload) -"tOj" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/machinery/power/apc/west, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/evidence_storage) "tOp" = ( /obj/structure/railing/mapped{ dir = 4 @@ -153170,6 +153003,20 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/atmos) +"tPq" = ( +/obj/structure/machinery/disposal/small/west{ + dir = 1; + pixel_x = 0; + pixel_y = -14 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/floor_decal/corner_wide/black{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist) "tPu" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -153183,16 +153030,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/central) -"tPv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light/floor{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/lobby) "tPB" = ( /obj/structure/bed/stool/chair{ dir = 8 @@ -153288,6 +153125,13 @@ /obj/item/trash/cigbutt, /turf/unsimulated/floor, /area/centcom/legion) +"tQp" = ( +/obj/structure/bed/stool/chair/wood, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/art, +/area/horizon/crew/lounge) "tQt" = ( /obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, /obj/structure/machinery/door/blast/shutters/open{ @@ -153325,6 +153169,9 @@ }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_battlemonsters) +"tQJ" = ( +/turf/simulated/wall/r_wall, +/area/horizon/stairwell/starboard/deck_2) "tQL" = ( /obj/structure/cable/green{ icon_state = "1-4" @@ -153476,17 +153323,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/operations/starboard/amidships) -"tRB" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = -32 - }, -/obj/structure/machinery/papershredder, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/white, -/area/horizon/security/forensic_laboratory) "tRD" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -153666,25 +153502,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_3/aft/port) -"tTl" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - name = "Chapel Office"; - sortType = "Chapel Office" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/main) "tTn" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -154014,6 +153831,29 @@ /obj/structure/railing/mapped, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/port/far) +"tVQ" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/landmark/entry_point/fore{ + name = "fore, commissary" + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/exterior) +"tVT" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/machinery/alarm/west, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/office) "tVV" = ( /obj/structure/machinery/portable_atmospherics/canister/hydrogen, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -154224,12 +154064,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) -"tXr" = ( -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/interrogation) "tXt" = ( /obj/structure/cable{ icon_state = "4-8" @@ -154289,6 +154123,9 @@ }, /turf/simulated/floor/carpet/art, /area/horizon/crew/lounge) +"tXL" = ( +/turf/simulated/wall/r_wall, +/area/horizon/service/chapel/office) "tXN" = ( /obj/structure/lattice, /obj/structure/sign/fire{ @@ -154368,6 +154205,15 @@ }, /turf/simulated/floor/plating, /area/merchant_station/warehouse) +"tYi" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/structure/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/meeting_room) "tYr" = ( /obj/structure/closet/crate/drop, /obj/item/pickaxe/diamonddrill{ @@ -154622,6 +154468,13 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/hallway/primary/deck_2/central) +"uao" = ( +/obj/effect/floor_decal/corner/brown/diagonal, +/obj/effect/floor_decal/corner/brown{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "uaB" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 @@ -154658,6 +154511,22 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/engineering/hallway/fore) +"uaL" = ( +/obj/effect/floor_decal/corner/beige/diagonal, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) "uaN" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/dark, @@ -154678,16 +154547,6 @@ /obj/effect/landmark/latejoin, /turf/simulated/floor/tiled, /area/horizon/crew/resdeck/living_quarters_lift) -"uaY" = ( -/obj/effect/floor_decal/corner/blue/full, -/obj/structure/machinery/firealarm/south, -/obj/effect/floor_decal/industrial/outline/security, -/obj/structure/machinery/light, -/obj/structure/closet/secure_closet/evidence{ - name = "personal belongings storage" - }, -/turf/simulated/floor/tiled/white, -/area/horizon/security/autopsy_laboratory) "ubm" = ( /obj/structure/machinery/air_sensor{ frequency = 1442; @@ -154853,6 +154712,18 @@ /obj/structure/machinery/portable_atmospherics/canister/nitrogen/prechilled, /turf/simulated/floor/plating, /area/horizon/engineering/reactor/supermatter/mainchamber) +"uca" = ( +/obj/structure/machinery/light_switch/north{ + pixel_x = 23; + pixel_y = 0; + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/full{ + dir = 4 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "uce" = ( /obj/structure/machinery/door/firedoor, /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -154885,31 +154756,9 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/central) -"ucm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/office) "ucq" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/engineering/atmos/air) -"ucy" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/empty{ - pixel_x = 6 - }, -/obj/item/storage/firstaid/empty{ - pixel_x = -9 - }, -/obj/effect/floor_decal/corner/brown/full, -/obj/item/reagent_containers/glass/bucket, -/obj/item/reagent_containers/glass/bucket{ - pixel_x = -9 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "ucz" = ( /obj/random/loot, /obj/effect/floor_decal/industrial/warning{ @@ -154996,6 +154845,15 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) +"ucS" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "ucU" = ( /obj/structure/platform/cutout{ dir = 8 @@ -155047,12 +154905,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_1/main/port) -"udc" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/horizon/service/chapel/main) "udq" = ( /obj/structure/cable/green{ icon_state = "1-4" @@ -155600,14 +155452,6 @@ /obj/structure/grille, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/medical/cryo) -"uhz" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "uhK" = ( /obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -156304,6 +156148,14 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/horizon/maintenance/substation/research) +"ume" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/firealarm/south, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "umh" = ( /obj/structure/machinery/light{ dir = 1 @@ -156662,19 +156514,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_2/main/starboard) -"uoP" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/horizon/security/forensic_laboratory) "uoQ" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 9 @@ -156936,6 +156775,44 @@ }, /turf/unsimulated/floor, /area/centcom/holding) +"uqm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) +"uqq" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) +"uqv" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/machinery/disposal/small/north{ + dir = 2; + pixel_y = 19 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/office) "uqw" = ( /obj/effect/floor_decal/corner/dark_blue/full, /obj/random/pottedplant, @@ -156981,6 +156858,15 @@ /obj/structure/flora/grass/both, /turf/simulated/floor/holofloor/snow, /area/horizon/holodeck/source_snowfield) +"uqJ" = ( +/obj/structure/bed/stool/chair/sofa/pew/right{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) "uqL" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -157067,6 +156953,13 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/rnd/conference) +"urd" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "urh" = ( /obj/structure/bed/stool/chair/holochair{ dir = 1 @@ -157169,15 +157062,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/crew/emergency_closet/deck_2/starboard) -"urJ" = ( -/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/office) "urL" = ( /obj/structure/machinery/light{ dir = 1 @@ -157858,6 +157742,16 @@ /obj/effect/floor_decal/industrial/outline/firefighting_closet, /turf/simulated/floor/carpet/rubber, /area/horizon/tcommsat/chamber) +"uwv" = ( +/obj/effect/floor_decal/corner/beige/diagonal, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) "uwx" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -157890,15 +157784,6 @@ /obj/structure/extinguisher_cabinet/north, /turf/simulated/floor/tiled, /area/horizon/operations/lobby) -"uwD" = ( -/obj/structure/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/main) "uwE" = ( /obj/structure/sign/staff_only{ pixel_y = 32; @@ -157933,6 +157818,15 @@ }, /turf/unsimulated/floor/marble, /area/antag/wizard) +"uwN" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/bed/stool/chair/sofa/left/beige{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/rnd/hallway) "uwU" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -157969,6 +157863,11 @@ "uwY" = ( /turf/simulated/wall/r_wall, /area/horizon/rnd/xenobiology) +"uxb" = ( +/obj/item/hullbeacon/red, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced/airless, +/area/horizon/exterior) "uxc" = ( /obj/structure/cable{ icon_state = "1-2" @@ -158848,6 +158747,17 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/hallway/primary/deck_2/central) +"uDr" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) "uDx" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/fake_object{ @@ -159003,6 +158913,34 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) +"uEj" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/random/pottedplant, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"uEk" = ( +/obj/effect/floor_decal/corner/beige/diagonal, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) "uEl" = ( /obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 @@ -159432,15 +159370,6 @@ /obj/structure/railing/mapped, /turf/simulated/open, /area/horizon/operations/office) -"uGT" = ( -/obj/structure/bed/stool/chair/sofa/pew/left{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/horizon/service/chapel/main) "uGV" = ( /obj/structure/machinery/atmospherics/pipe/simple/visible/black, /turf/simulated/floor/plating, @@ -159454,6 +159383,18 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/hallway/aft) +"uGX" = ( +/obj/structure/railing/mapped, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/button/remote/blast_door{ + dir = 4; + pixel_y = 7; + id = "machinistspaceshutters"; + pixel_x = 23 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "uHc" = ( /obj/structure/machinery/atmospherics/pipe/simple/visible/red{ dir = 8 @@ -159556,18 +159497,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/storage/eva) -"uHD" = ( -/obj/structure/machinery/door/airlock/glass_security{ - dir = 1; - name = "Evidence Storage"; - req_access = list(4) - }, -/obj/structure/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch_door/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/security/evidence_storage) "uHE" = ( /obj/structure/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 4 @@ -159645,6 +159574,12 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/storage/eva) +"uIn" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "uIo" = ( /obj/structure/railing/mapped{ dir = 4 @@ -159747,6 +159682,10 @@ }, /turf/simulated/floor/marble, /area/horizon/holodeck/source_trinary) +"uIS" = ( +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/elevator) "uIU" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -159876,6 +159815,13 @@ /obj/structure/cable, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_1/main/port) +"uJr" = ( +/obj/structure/platform, +/obj/structure/table/standard, +/obj/item/storage/box/fancy/tray/machinist, +/obj/effect/floor_decal/corner_wide/brown, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist) "uJw" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -160275,6 +160221,20 @@ }, /turf/unsimulated/floor, /area/centcom/distress_prep) +"uMj" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor, +/area/horizon/security/investigations_hallway) "uMo" = ( /obj/structure/window/reinforced{ dir = 8 @@ -160694,19 +160654,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/port/nacelle) -"uPH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/mail_room) "uPK" = ( /obj/structure/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -160919,6 +160866,12 @@ /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /turf/unsimulated/floor/plating, /area/centcom/specops) +"uRh" = ( +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/office) "uRi" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -160962,28 +160915,6 @@ }, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"uRs" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/obj/structure/machinery/light_switch{ - dir = 8; - pixel_x = -24; - pixel_y = 7 - }, -/obj/structure/machinery/button/switch/windowtint{ - dir = 8; - id = "sec_autopsy"; - pixel_x = -24; - pixel_y = -2 - }, -/obj/structure/sink/kitchen{ - dir = 4; - name = "autopsy sink"; - pixel_x = -20 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/security/autopsy_laboratory) "uRE" = ( /obj/structure/cable{ icon_state = "4-8" @@ -161026,15 +160957,16 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/shuttle/intrepid/buffet) -"uRM" = ( -/obj/structure/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 +"uRN" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/obj/effect/floor_decal/corner/purple{ - dir = 5 +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, -/turf/simulated/floor/tiled, -/area/horizon/security/custodial) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/operations/machinist) "uRY" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -161247,18 +161179,6 @@ /obj/structure/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/white, /area/horizon/medical/hallway/upper) -"uTh" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/horizon/maintenance/deck_3/aft/port/far) "uTo" = ( /obj/structure/platform, /obj/random/dirt_75, @@ -161383,16 +161303,6 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard/far) -"uUe" = ( -/obj/structure/machinery/mecha_part_fabricator{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/carpet/rubber, -/area/horizon/operations/machinist) "uUg" = ( /obj/structure/table/standard, /obj/item/storage/box/fancy/tray{ @@ -162014,6 +161924,15 @@ density = 1 }, /area/antag/ninja) +"uXM" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/closet/secure_closet/machinist, +/obj/effect/floor_decal/corner_wide/black{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist) "uXQ" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/industrial/warning/corner, @@ -162169,6 +162088,12 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) +"uZE" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) "uZF" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -162182,6 +162107,17 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) +"uZG" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/structure/machinery/light_switch/south, +/obj/structure/machinery/disposal/small/north, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "uZI" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 10 @@ -162237,15 +162173,6 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/horizon/maintenance/substation/engineering/lower) -"uZV" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/obj/structure/machinery/newscaster/south, -/obj/structure/machinery/photocopier, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/white, -/area/horizon/security/forensic_laboratory) "vaa" = ( /obj/structure/machinery/door/blast/shutters/open{ dir = 2; @@ -162534,6 +162461,34 @@ temperature = 278.15 }, /area/horizon/medical/morgue) +"vce" = ( +/obj/structure/closet/secure_closet/cabinet{ + anchored = 1; + name = "legate's closet"; + req_access = list(108,111) + }, +/obj/structure/sign/flag/biesel{ + pixel_y = 32 + }, +/obj/item/melee/energy/sword/knife, +/obj/item/melee/telebaton, +/obj/item/megaphone/sec, +/obj/item/storage/box/fancy/cigarettes/cigar, +/obj/item/flame/lighter/zippo, +/obj/item/reagent_containers/food/drinks/bottle/victorygin, +/obj/item/reagent_containers/food/drinks/bottle/whiskey, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/backpack/satchel/leather, +/obj/item/clothing/shoes/jackboots/toeless, +/obj/item/clothing/glasses/sunglasses/aviator, +/obj/item/flag/biesel/l{ + pixel_y = 8 + }, +/obj/item/flag/biesel, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/legion/hangar5) "vcf" = ( /obj/structure/bed/stool/chair/padded/brown{ can_buckle = 0; @@ -162634,17 +162589,6 @@ /obj/random/dirt_75, /turf/simulated/floor/tiled/gunmetal, /area/horizon/operations/ship_supply_warehouse) -"vcG" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/structure/machinery/door/firedoor, -/obj/structure/machinery/door/blast/shutters/open{ - dir = 2; - id = "machinistspaceshutters"; - name = "Machinist Lab Shutters" - }, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "vcJ" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 8 @@ -162764,6 +162708,18 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/horizon/engineering/reactor/indra/mainchamber) +"vdu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) "vdy" = ( /obj/structure/table/rack, /obj/structure/machinery/light{ @@ -163134,6 +163090,26 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/hallway/primary/deck_2/central) +"vgj" = ( +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/machinery/camera{ + c_tag = "Operations - Machinist Surgical Theatre"; + network = list("Operations") + }, +/obj/structure/railing/mapped, +/obj/structure/machinery/firealarm/west{ + dir = 1; + pixel_x = 0; + pixel_y = 26 + }, +/obj/structure/lattice/catwalk/indoor/grate/light, +/turf/simulated/floor/plating, +/area/horizon/operations/machinist) "vgm" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/effect/floor_decal/corner/dark_blue{ @@ -163195,6 +163171,17 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor, /area/horizon/maintenance/deck_3/crewlounge) +"vgT" = ( +/obj/structure/grille, +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/machinery/door/blast/shutters/open{ + dir = 2; + id = "machinistspaceshutters"; + name = "Machinist Lab Shutters" + }, +/obj/structure/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/operations/machinist) "vgU" = ( /obj/structure/bed/stool/chair/padded/red{ dir = 4 @@ -163258,6 +163245,22 @@ /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/starboard) +"vhB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/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/full, +/area/horizon/security/investigations_hallway) "vhH" = ( /obj/structure/cable/green{ icon_state = "0-2" @@ -163300,6 +163303,20 @@ /obj/effect/floor_decal/carpet, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_dininghall) +"vhY" = ( +/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/machinery/r_n_d/protolathe, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner_wide/black{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist) "vib" = ( /obj/effect/floor_decal/corner/dark_blue/diagonal, /obj/structure/machinery/atmospherics/unary/vent_pump/on{ @@ -163390,21 +163407,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/command/bridge/aibunker) -"viO" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/structure/table/steel, -/obj/item/paper_bin{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/interrogation/monitoring) "viQ" = ( /obj/effect/floor_decal/corner/yellow/diagonal{ dir = 4 @@ -163512,6 +163514,10 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/atmos) +"vjF" = ( +/obj/structure/table/wood, +/turf/simulated/floor/wood, +/area/horizon/rnd/hallway) "vjO" = ( /obj/effect/floor_decal/industrial/warning{ dir = 9 @@ -163618,6 +163624,22 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/substation/research) +"vkm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/platform/cutout{ + dir = 8 + }, +/obj/structure/platform_stairs/full/east_west_cap, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "vkn" = ( /obj/structure/machinery/light/small, /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -163854,6 +163876,20 @@ icon_state = "carpet" }, /area/centcom/specops) +"vlW" = ( +/obj/structure/table/rack/retail_shelf{ + name = "storage shelf" + }, +/obj/item/camera{ + pixel_x = 5 + }, +/obj/item/camera_film{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/effect/floor_decal/corner/beige/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) "vma" = ( /obj/structure/table/steel, /turf/simulated/floor/tiled, @@ -164000,6 +164036,18 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/monotile, /area/antag/jockey) +"vnm" = ( +/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/machinery/light/floor{ + dir = 4 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) "vnu" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 1 @@ -164233,6 +164281,17 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/weapons/longbow) +"vou" = ( +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = 8 + }, +/obj/structure/coatrack{ + pixel_x = -9; + pixel_y = 1 + }, +/obj/effect/floor_decal/corner/beige/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) "vov" = ( /obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, @@ -164301,6 +164360,16 @@ /obj/structure/machinery/light/floor, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_2/central) +"vpe" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Machinist" + }, +/obj/effect/floor_decal/spline/plain/brown, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/machinist) "vpk" = ( /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, @@ -164471,19 +164540,6 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/rnd/hallway) -"vqE" = ( -/obj/structure/machinery/door/firedoor, -/obj/structure/machinery/door/airlock{ - dir = 1; - name = "Emergency Supplies Closet" - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow{ - dir = 8 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/maintenance/deck_3/security/port) "vqF" = ( /obj/effect/floor_decal/corner_wide/black{ dir = 10 @@ -164552,6 +164608,23 @@ icon_state = "beach" }, /area/centcom/shared_dream) +"vrd" = ( +/obj/structure/machinery/disposal/small/west{ + dir = 1; + pixel_x = 0; + pixel_y = -14 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/floor_decal/corner_wide/brown{ + dir = 10 + }, +/obj/effect/floor_decal/corner_wide/brown{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist) "vre" = ( /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/exoplanet/grass/grove, @@ -164716,6 +164789,22 @@ /obj/structure/holostool, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_theatre) +"vsF" = ( +/obj/item/flag/biesel{ + pixel_y = 8 + }, +/obj/item/flag/biesel/l{ + pixel_y = 8 + }, +/obj/item/flag/biesel/l{ + pixel_y = 8 + }, +/obj/item/storage/box/tcaf_pamphlet, +/obj/item/material/twohanded/pike/flag, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/legion/hangar5) "vsI" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 @@ -165008,6 +165097,21 @@ }, /turf/simulated/floor/tiled, /area/horizon/crew/vacantoffice) +"vvB" = ( +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "vvE" = ( /turf/simulated/wall/r_wall, /area/horizon/weapons/grauwolf) @@ -165087,20 +165191,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/command/bridge/cciaroom/lounge) -"vwj" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/checkpoint2) "vwk" = ( /obj/structure/machinery/computer/slot_machine, /obj/effect/floor_decal/spline/fancy/wood/corner, @@ -165162,6 +165252,17 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/kitchen/freezer) +"vwF" = ( +/obj/structure/engineer_maintenance/pipe{ + dir = 8 + }, +/obj/structure/engineer_maintenance/electric, +/obj/structure/machinery/camera/network/security{ + c_tag = "Security - Investigations Office"; + dir = 4 + }, +/turf/simulated/floor/lino, +/area/horizon/security/investigators_office) "vwG" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 @@ -165299,22 +165400,6 @@ }, /turf/simulated/floor/wood, /area/horizon/crew/journalistoffice) -"vxL" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen/red, -/obj/item/pen{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/security/autopsy_laboratory) "vxM" = ( /obj/structure/reagent_dispensers/lube, /turf/simulated/floor/tiled, @@ -165400,6 +165485,13 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) +"vyz" = ( +/obj/structure/machinery/fabricator/autolathe, +/obj/structure/machinery/light, +/obj/effect/floor_decal/corner_wide/black/full, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist) "vyC" = ( /obj/structure/machinery/floodlight, /obj/effect/floor_decal/industrial/outline/operations, @@ -165520,6 +165612,13 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/stairwell/starboard/deck_2) +"vzn" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/horizon/rnd/hallway) "vzo" = ( /obj/structure/sign/staff_only{ pixel_x = -32 @@ -165655,6 +165754,9 @@ /obj/effect/map_effect/window_spawner/full/borosilicate/reinforced, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/indra/mainchamber) +"vAn" = ( +/turf/simulated/wall, +/area/horizon/service/chapel/office) "vAq" = ( /obj/structure/tank_wall/air{ density = 0; @@ -166136,6 +166238,21 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/horizon/maintenance/substation/xenoarchaeology) +"vDi" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/structure/table/steel, +/obj/item/paper_scanner{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/paper_scanner{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/security/investigations_hallway) "vDj" = ( /obj/structure/table/rack{ dir = 8 @@ -166284,6 +166401,10 @@ icon_state = "white" }, /area/centcom/legion) +"vDV" = ( +/obj/structure/foamedmetal, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_3/auxatmos) "vDX" = ( /turf/simulated/wall, /area/horizon/stairwell/starboard/deck_1) @@ -166360,13 +166481,6 @@ }, /turf/simulated/floor/plating, /area/horizon/medical/gen_treatment) -"vEy" = ( -/obj/structure/bed/stool/chair/padded/black{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/office) "vEE" = ( /obj/structure/machinery/atmospherics/binary/pump{ dir = 1; @@ -166432,6 +166546,20 @@ }, /turf/simulated/floor/wood, /area/horizon/repoffice/representative_one) +"vER" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/random/dirt_75, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/security/port) "vEZ" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -166547,20 +166675,6 @@ }, /turf/simulated/floor/carpet/cyan, /area/shuttle/merchant) -"vFP" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/stack/material/bronze/full, -/obj/item/stack/material/steel/full, -/obj/item/stack/material/wood/full, -/obj/item/stack/material/glass/full, -/obj/item/hand_labeler, -/obj/structure/closet/crate{ - name = "Urn Materials Crate" - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/office) "vFQ" = ( /obj/structure/machinery/shower{ pixel_y = 20 @@ -166620,6 +166734,11 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_emptycourt) +"vGl" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) "vGo" = ( /turf/simulated/wall/shuttle/unique/ccia{ icon_state = "10,0" @@ -166809,19 +166928,6 @@ /obj/effect/floor_decal/industrial/hatch_door/red, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_2/service/port) -"vIb" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/structure/machinery/camera/network/second_deck{ - c_tag = "Second Deck - Operations Hallway"; - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/lobby) "vId" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -166899,17 +167005,6 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"vIz" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/obj/structure/table/glass, -/obj/structure/machinery/alarm/south, -/obj/structure/machinery/reagentgrinder{ - pixel_y = 7 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/security/autopsy_laboratory) "vIR" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -166964,16 +167059,9 @@ /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_2/fore) -"vJx" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, +"vJw" = ( /turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) +/area/horizon/security/autopsy_laboratory) "vJB" = ( /obj/effect/floor_decal/corner/lime{ dir = 5 @@ -167335,6 +167423,27 @@ }, /turf/simulated/floor/wood, /area/horizon/command/heads/captain) +"vLJ" = ( +/obj/structure/table/steel, +/obj/item/pin_extractor{ + pixel_y = -5 + }, +/obj/item/pen{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "vLK" = ( /obj/structure/table/holotable, /obj/structure/machinery/readybutton, @@ -167459,12 +167568,6 @@ /obj/structure/engineer_maintenance/pipe/wall, /turf/simulated/floor/tiled/white, /area/horizon/security/brig) -"vNp" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/horizon/service/chapel/main) "vNs" = ( /obj/structure/flora/ausbushes/palebush, /turf/simulated/floor/grass/no_edge, @@ -167549,6 +167652,16 @@ /obj/structure/machinery/alarm/south, /turf/simulated/floor/tiled/white, /area/horizon/crew/fitness/showers) +"vOg" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/horizon/rnd/hallway) "vOi" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 6 @@ -167609,20 +167722,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor, /area/horizon/maintenance/deck_2/wing/port/far) -"vOO" = ( -/obj/structure/machinery/computer/rdconsole/robotics{ - dir = 4 - }, -/obj/structure/machinery/camera{ - c_tag = "Operations - Machinist RnD Lab"; - network = list("Operations"); - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/black{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) "vOR" = ( /obj/structure/lattice, /obj/structure/machinery/atmospherics/pipe/simple/visible/red{ @@ -167809,14 +167908,6 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_gym) -"vQo" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/machinery/alarm/north, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/horizon/maintenance/deck_3/security/port) "vQr" = ( /obj/effect/floor_decal/corner/lime{ dir = 5 @@ -167849,25 +167940,10 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/wing/starboard/far) -"vQB" = ( -/obj/structure/machinery/door/blast/shutters/open{ - id = "mech_bay_shutter"; - name = "Mech Bay Shutters"; - dir = 4 - }, -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "vQC" = ( /obj/structure/table/rack, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck/source_pool) -"vQD" = ( -/obj/structure/machinery/conveyor{ - id = "Robocompo" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/machinist) "vQG" = ( /obj/structure/toilet{ dir = 4; @@ -167875,6 +167951,30 @@ }, /turf/unsimulated/floor, /area/centcom/specops) +"vQK" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/structure/machinery/button/mass_driver{ + _wifi_id = "chapel_driver"; + id = "chapel_driver"; + pixel_y = -30; + req_access = list(22) + }, +/obj/structure/machinery/button/remote/blast_door{ + pixel_y = -20; + pixel_x = 7; + id = "interiormassdriver"; + req_access = list(22) + }, +/obj/structure/machinery/button/remote/blast_door{ + pixel_y = -20; + pixel_x = -7; + id = "exteriormassdriver"; + req_access = list(22) + }, +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) "vQN" = ( /obj/structure/railing/mapped, /obj/effect/floor_decal/corner/grey{ @@ -168034,6 +168134,12 @@ /obj/structure/table/reinforced/steel, /turf/simulated/floor/carpet/rubber, /area/horizon/command/bridge/controlroom) +"vRV" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) "vRZ" = ( /obj/effect/decal/cleanable/dirt, /obj/item/material/ashtray/plastic{ @@ -168080,14 +168186,6 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/command/bridge/cciaroom) -"vSI" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/structure/machinery/recharge_station, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/wood, -/area/horizon/hallway/primary/deck_2/starboard) "vSM" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -168236,13 +168334,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor, /area/horizon/maintenance/deck_3/aft/port) -"vTC" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/structure/closet/crate/trashcart, -/turf/simulated/floor/tiled, -/area/horizon/security/custodial) "vTD" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -168524,28 +168615,6 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/carpet, /area/shuttle/skipjack) -"vVk" = ( -/obj/structure/machinery/conveyor_switch/oneway{ - desc = "A conveyor control switch. It appears to only go in one direction. Controls the components conveyor belt."; - id = "Robocompo"; - pixel_y = 20; - pixel_x = -10 - }, -/obj/structure/engineer_maintenance/electric{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/machinery/power/apc/north, -/obj/effect/landmark/start{ - name = "Machinist" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/simulated/floor/carpet/rubber, -/area/horizon/operations/machinist) "vVl" = ( /obj/structure/closet/hazmat/general, /obj/effect/floor_decal/industrial/outline/yellow, @@ -168696,18 +168765,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/rnd/xenobiology/xenoflora) -"vVK" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/structure/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/horizon/security/checkpoint2) "vVL" = ( /obj/structure/machinery/door/firedoor, /obj/effect/floor_decal/industrial/hatch_door/yellow{ @@ -169227,23 +169284,6 @@ "vYZ" = ( /turf/simulated/wall/r_wall, /area/horizon/storage/eva) -"vZa" = ( -/obj/structure/machinery/disposal/small/west{ - dir = 1; - pixel_x = 0; - pixel_y = -14 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/brown{ - dir = 10 - }, -/obj/effect/floor_decal/corner_wide/brown{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) "vZb" = ( /obj/structure/table/rack, /obj/effect/floor_decal/corner/lime/full, @@ -169392,13 +169432,6 @@ /obj/effect/floor_decal/spline/fancy/wood, /turf/unsimulated/floor/carpet, /area/centcom/bar) -"vZT" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/random/pottedplant, -/turf/simulated/floor/carpet/red, -/area/horizon/service/chapel/office) "vZU" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -169512,14 +169545,6 @@ /obj/structure/machinery/light/small, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"waJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/security/interrogation/monitoring) "waL" = ( /obj/effect/floor_decal/corner/lime/diagonal{ dir = 8 @@ -169631,12 +169656,6 @@ /obj/item/rig/ert/engineer, /turf/unsimulated/floor/plating, /area/centcom/specops) -"wbK" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/main) "wbP" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/machinery/space_heater, @@ -169953,18 +169972,6 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/command/bridge/upperdeck) -"wdB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/stool/chair/sofa/pew/right{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/horizon/service/chapel/main) "wdE" = ( /obj/structure/table/glass{ table_reinf = "glass" @@ -169972,19 +169979,6 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/horizon/command/heads/cmo) -"wdF" = ( -/obj/effect/landmark/entry_point/fore{ - name = "fore, chapel" - }, -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/structure/machinery/door/blast/shutters/open{ - dir = 2; - id = "machinistspaceshutters"; - name = "Machinist Lab Shutters" - }, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "wdG" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/effect/floor_decal/industrial/warning{ @@ -170006,6 +170000,26 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_emptycourt) +"wdS" = ( +/obj/structure/machinery/button/switch/windowtint{ + dir = 4; + id = "chapel"; + pixel_x = 24; + pixel_y = 3 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/junction, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/platform_deco{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) "wdW" = ( /obj/structure/table/reinforced/steel, /obj/item/spacecash/c1000{ @@ -170159,6 +170173,27 @@ }, /turf/simulated/floor/carpet/rubber, /area/horizon/engineering/atmos/storage_maintenance) +"wek" = ( +/obj/structure/closet{ + icon_door = "blue"; + name = "Spare Uniforms" + }, +/obj/item/clothing/shoes/combat, +/obj/item/clothing/shoes/combat, +/obj/item/clothing/shoes/combat, +/obj/item/clothing/shoes/combat, +/obj/item/clothing/shoes/jackboots/toeless, +/obj/item/clothing/shoes/jackboots/toeless, +/obj/item/towel, +/obj/item/towel, +/obj/item/rig/light/offworlder, +/obj/item/clothing/accessory/offworlder/bracer, +/obj/item/storage/pill_bottle/rmt, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/centcom/legion/hangar5) "weq" = ( /obj/effect/floor_decal/industrial/hatch_door/red, /obj/structure/disposalpipe/segment{ @@ -170272,52 +170307,6 @@ /mob/living/simple_animal/chicken, /turf/simulated/floor/grass/no_edge, /area/horizon/service/hydroponics/lower) -"weS" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/healthanalyzer, -/obj/item/mmi{ - pixel_y = 11 - }, -/obj/item/mmi{ - pixel_y = 11; - pixel_x = -8 - }, -/obj/item/flash/synthetic{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/item/flash/synthetic{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/item/flash/synthetic{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/item/flash/synthetic{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/item/flash/synthetic{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/item/flash/synthetic{ - pixel_x = -5; - pixel_y = 2 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "weU" = ( /obj/effect/floor_decal/spline/plain{ dir = 10 @@ -170428,6 +170417,33 @@ /obj/structure/machinery/portable_atmospherics/canister/carbon_dioxide, /turf/simulated/floor/carpet/rubber, /area/horizon/engineering/storage_hard/upper) +"wfB" = ( +/obj/structure/machinery/light, +/obj/structure/table/wood, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/toy/comic/inspector{ + pixel_x = -3 + }, +/obj/item/toy/comic/outlandish_tales{ + pixel_x = 2 + }, +/obj/item/toy/comic/magazine{ + pixel_x = 7 + }, +/obj/structure/machinery/ringer/north{ + dir = 2; + pixel_y = -24; + id = "Machinist"; + department = "Operations"; + req_access = list(29) + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "wfS" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/effect/floor_decal/spline/plain{ @@ -170780,24 +170796,6 @@ density = 1 }, /area/antag/ninja) -"whN" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/interrogation/monitoring) "whQ" = ( /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, @@ -170817,22 +170815,6 @@ }, /turf/unsimulated/floor/plating, /area/antag/mercenary) -"whZ" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/horizon/security/checkpoint2) "wii" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -170955,6 +170937,20 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck/source_biesel) +"wiR" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/corner/beige/diagonal, +/obj/item/folder/sec{ + pixel_x = -8; + pixel_y = 1 + }, +/obj/structure/machinery/ringer/east{ + id = "investigation_ringer"; + department = "Security"; + req_access = list(1) + }, +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) "wiS" = ( /obj/effect/floor_decal/industrial/hatch_door/yellow, /obj/structure/machinery/door/firedoor{ @@ -171489,15 +171485,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/aft) -"wmz" = ( -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/light/floor, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "wmD" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -171603,20 +171590,6 @@ /obj/structure/shuttle/engine/propulsion/burst/left, /turf/unsimulated/floor/plating, /area/shuttle/distress) -"wmZ" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/checkpoint2) "wnb" = ( /obj/structure/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -171807,14 +171780,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/main/starboard) -"wom" = ( -/obj/structure/machinery/mass_driver{ - _wifi_id = "chapel_driver"; - id = "chapel_driver" - }, -/obj/effect/floor_decal/industrial/hatch/red, -/turf/simulated/floor/plating, -/area/horizon/crew/lounge) "won" = ( /obj/structure/table/standard, /obj/structure/disposalpipe/segment{ @@ -171846,6 +171811,23 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/hangar/operations) +"wor" = ( +/obj/structure/machinery/door/airlock/mining{ + dir = 4; + name = "Machinist Workshop"; + req_access = list(29) + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/obj/effect/map_effect/door_helper/unres{ + dir = 8 + }, +/obj/structure/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "wov" = ( /obj/structure/disposalpipe/segment{ icon_state = "pipe-c" @@ -171856,6 +171838,15 @@ /obj/structure/machinery/firealarm/north, /turf/simulated/floor/tiled/white, /area/horizon/medical/hallway/upper) +"wow" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) "woB" = ( /obj/structure/window/reinforced/crescent{ dir = 4 @@ -172054,31 +172045,12 @@ /obj/item/camera_assembly, /turf/simulated/floor/carpet/rubber, /area/horizon/engineering/storage_hard/aft) -"wpN" = ( -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" +"wpU" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/glass_security{ - dir = 1; - name = "Forensic Laboratory"; - req_access = list(4) - }, -/obj/structure/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch_door/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/security/forensic_laboratory) -"wpW" = ( -/obj/random/dirt_75, -/obj/random/dirt_75, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/machinery/portable_atmospherics/canister/nitrogen/prechilled, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/elevator) +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) "wpZ" = ( /obj/effect/decal/cleanable/cobweb, /obj/effect/floor_decal/corner/grey{ @@ -172536,6 +172508,25 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/hangar/auxiliary) +"wsf" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/glass_security{ + dir = 1; + name = "Forensic Laboratory"; + req_access = list(4) + }, +/obj/structure/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/full, +/area/horizon/security/forensic_laboratory) "wsl" = ( /obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/tiled/dark/full, @@ -172927,6 +172918,16 @@ }, /turf/simulated/floor/lino, /area/horizon/service/bar) +"wug" = ( +/obj/structure/bookcase/libraryspawn/religion, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) "wul" = ( /obj/structure/disposalpipe/sortjunction/flipped{ dir = 8; @@ -173040,14 +173041,19 @@ "wuX" = ( /turf/simulated/wall, /area/horizon/engineering/atmos/storage_maintenance) -"wve" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/structure/machinery/door/firedoor{ +"wvm" = ( +/obj/structure/closet/crate/medical, +/obj/item/tank/anesthetic, +/obj/item/tank/anesthetic, +/obj/item/tank/oxygen, +/obj/effect/floor_decal/corner_wide/brown{ + dir = 10 + }, +/obj/effect/floor_decal/corner_wide/brown{ dir = 4 }, -/turf/simulated/floor/reinforced/airless, -/area/horizon/crew/lounge) +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist) "wvs" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/structure/grille/diagonal{ @@ -173109,43 +173115,12 @@ }, /turf/simulated/floor/plating, /area/horizon/command/bridge/meeting_room) -"wvx" = ( -/turf/simulated/floor/tiled/full, -/area/horizon/security/custodial) "wvF" = ( /obj/structure/machinery/atmospherics/pipe/simple/visible/black{ dir = 10 }, /turf/simulated/floor/reinforced/airless, /area/horizon/engineering/atmos/air) -"wvX" = ( -/obj/structure/closet/wardrobe{ - name = "Chaplain Wardrobe" - }, -/obj/item/clothing/head/chaplain_hood, -/obj/item/clothing/suit/chaplain_hoodie, -/obj/item/clothing/under/rank/chaplain, -/obj/item/clothing/head/nun_hood, -/obj/item/clothing/suit/nun, -/obj/item/reagent_containers/spray/aspergillum, -/obj/item/nullrod/obsidianshards, -/obj/item/storage/box/fancy/crayons, -/obj/item/storage/box/fancy/candle_box, -/obj/item/storage/box/fancy/candle_box, -/obj/item/mesmetron, -/obj/item/storage/box/fancy/candle_box, -/obj/item/storage/box/fancy/candle_box, -/obj/item/radio/headset/headset_service, -/obj/item/radio/headset/wrist/clip/service, -/obj/item/radio/headset/wrist/service, -/obj/item/spirit_board, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/toy/plushie/therapy, -/obj/item/deck/tarot, -/obj/item/reagent_containers/food/drinks/bottle/holywater, -/obj/item/stack/packageWrap, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/office) "wwg" = ( /obj/structure/flora/rock/pile, /obj/item/clothing/mask/skrell/skull, @@ -173317,6 +173292,13 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_1/operations/starboard) +"wwO" = ( +/obj/structure/table/rack, +/obj/item/rig/retro/equipped, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/legion/hangar5) "wwP" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/machinery/light{ @@ -173563,20 +173545,6 @@ "wyq" = ( /turf/simulated/floor/tiled/dark/full, /area/horizon/stairwell/engineering/deck_1) -"wys" = ( -/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/machinery/r_n_d/protolathe, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/black{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) "wyu" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/rnd/xenobiology/xenoflora) @@ -173641,19 +173609,6 @@ }, /turf/simulated/floor/plating, /area/horizon/shuttle/quark/cargo_hold) -"wyN" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/security/forensic_laboratory) "wyV" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -173759,6 +173714,17 @@ icon_state = "wood" }, /area/centcom/distress_prep) +"wzG" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 4 + }, +/obj/structure/closet/secure_closet/evidence{ + name = "Unsorted Evidence" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/radio/intercom/south, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "wzI" = ( /obj/structure/cable/green{ icon_state = "1-8" @@ -173896,23 +173862,6 @@ "wAr" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/stairwell/engineering/deck_1) -"wAB" = ( -/obj/structure/machinery/door/blast/shutters/open{ - dir = 2; - id = "seconddeckdockext"; - name = "Security Checkpoint External Shutter" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch_door/yellow{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/security/checkpoint2) "wAC" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -174034,6 +173983,12 @@ /obj/random/dirt_75, /turf/simulated/floor/tiled/gunmetal, /area/horizon/operations/ship_supply_warehouse) +"wBD" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ + id = "Interro_A" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/interrogation_1) "wBI" = ( /obj/structure/machinery/holosign/service{ id = 4 @@ -174311,6 +174266,16 @@ }, /turf/simulated/floor/wood, /area/horizon/service/library) +"wEb" = ( +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/handcuffs, +/obj/item/flash, +/obj/item/flash, +/obj/item/flash, +/obj/item/flash, +/obj/item/storage/box/tactical/teargas, +/turf/unsimulated/floor, +/area/centcom/legion) "wEf" = ( /obj/structure/machinery/chemical_dispenser/ert{ dir = 4 @@ -174469,15 +174434,21 @@ }, /turf/simulated/floor/plating, /area/horizon/shuttle/intrepid/port_compartment) -"wFi" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/obj/structure/machinery/door/blast/shutters/open{ - id = "mech_bay_shutter"; - name = "Mech Bay Shutters"; +"wFf" = ( +/obj/structure/sign/directions/prop{ + dir = 4; + pixel_x = 32; + pixel_y = 24 + }, +/obj/structure/sign/directions/prop{ + dir = 4; + pixel_y = 24 + }, +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/storage_maintenance) "wFj" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/effect/floor_decal/spline/fancy/wood/corner{ @@ -174493,6 +174464,21 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) +"wFo" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/security/autopsy_laboratory) "wFx" = ( /obj/structure/lattice/catwalk, /obj/structure/disposalpipe/segment, @@ -175184,27 +175170,6 @@ /obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/tiled/dark/full, /area/horizon/weapons/longbow) -"wKa" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/brown/full, -/obj/structure/machinery/firealarm/south, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/mail_room) "wKe" = ( /obj/structure/sink/kitchen{ name = "water fountain"; @@ -175248,6 +175213,16 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_1/hangar/starboard) +"wKn" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "wKo" = ( /obj/effect/floor_decal/corner/brown{ dir = 10 @@ -175366,6 +175341,12 @@ temperature = 253.15 }, /area/horizon/service/kitchen/freezer) +"wLB" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/structure/machinery/door/firedoor, +/turf/simulated/floor/reinforced/airless, +/area/horizon/crew/lounge) "wLC" = ( /obj/structure/machinery/light{ dir = 1 @@ -175402,18 +175383,6 @@ /obj/structure/machinery/shieldwallgen, /turf/simulated/floor/carpet/rubber, /area/horizon/engineering/storage_hard/upper) -"wLV" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/evidence_storage) "wLX" = ( /obj/effect/decal/fake_object{ desc = "An automated gun turret."; @@ -175438,6 +175407,19 @@ /obj/effect/large_stock_marker, /turf/simulated/floor/tiled, /area/merchant_station/warehouse) +"wMg" = ( +/obj/effect/landmark/start{ + name = "Machinist" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner_wide/brown{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/brown{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist) "wMj" = ( /obj/effect/decal{ anchored = 1; @@ -175709,6 +175691,23 @@ "wNT" = ( /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/wing/port/far) +"wNU" = ( +/obj/effect/floor_decal/corner/beige/diagonal, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/storage/box/fancy/donut{ + pixel_y = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) "wOe" = ( /obj/structure/table/standard, /obj/item/clothing/glasses/hud/health, @@ -175772,13 +175771,6 @@ /obj/random/pottedplant, /turf/simulated/floor/wood, /area/merchant_station) -"wOs" = ( -/obj/structure/machinery/alarm/north, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/interrogation/monitoring) "wOu" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -175953,6 +175945,19 @@ /obj/random/maintenance_junk_or_loot, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_2/research) +"wPm" = ( +/obj/item/reagent_containers/glass/beaker/large, +/obj/structure/reagent_dispensers/acid{ + pixel_x = -32 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/platform, +/obj/structure/machinery/r_n_d/circuit_imprinter, +/obj/effect/floor_decal/corner_wide/black{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist) "wPr" = ( /obj/effect/floor_decal/corner/brown{ dir = 5 @@ -175991,6 +175996,17 @@ }, /turf/simulated/floor/tiled, /area/horizon/stairwell/bridge/deck_3) +"wPC" = ( +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/structure/machinery/door/airlock/maintenance{ + dir = 4; + req_one_access = list(4) + }, +/obj/structure/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/evidence_storage) "wPF" = ( /obj/structure/mirror{ pixel_y = 36 @@ -176109,16 +176125,6 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/auxatmos) -"wPY" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/closet/secure_closet/evidence{ - name = "evidence storage locker D" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/evidence_storage) "wQb" = ( /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/holofloor/grass, @@ -176274,13 +176280,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/hapt) -"wRg" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/aft) "wRi" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/structure/grille, @@ -176376,12 +176375,6 @@ }, /turf/simulated/floor/carpet, /area/horizon/command/heads/chief) -"wRT" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/horizon/service/chapel/main) "wRV" = ( /obj/structure/bed/stool/chair/shuttle, /obj/structure/machinery/vending/wallmed1{ @@ -176457,13 +176450,6 @@ }, /turf/space, /area/horizon/exterior) -"wSj" = ( -/obj/structure/platform/cutout{ - dir = 8 - }, -/obj/structure/platform_stairs/full/east_west_cap, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/main) "wSp" = ( /obj/structure/tank_wall{ density = 0; @@ -176486,20 +176472,6 @@ }, /turf/simulated/wall/shuttle/scc, /area/horizon/shuttle/quark/cargo_hold) -"wSv" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/horizon/security/interrogation/monitoring) "wSz" = ( /obj/effect/floor_decal/industrial/warning{ dir = 9 @@ -177170,15 +177142,6 @@ "wVZ" = ( /turf/simulated/wall/r_wall, /area/horizon/engineering/hallway/fore) -"wWc" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/rnd/hallway) "wWg" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -177849,6 +177812,27 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/hangar/intrepid) +"xap" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/security/investigations_hallway) "xav" = ( /obj/effect/floor_decal/corner/brown/diagonal, /obj/structure/machinery/light_switch{ @@ -177920,6 +177904,18 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/indra/smes) +"xaF" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/machinery/light_switch/east{ + pixel_y = 0 + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/office) "xaN" = ( /obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -178070,6 +178066,20 @@ icon_state = "carpet" }, /area/centcom/legion/hangar5) +"xbK" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint2) "xbR" = ( /obj/structure/railing/mapped{ dir = 4 @@ -178214,6 +178224,12 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/checkpoint2) +"xcR" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "xcV" = ( /obj/structure/shuttle_part/scc/scout{ icon_state = "5,11" @@ -178449,19 +178465,6 @@ /obj/structure/sign/electricshock, /turf/unsimulated/wall/darkshuttlewall, /area/centcom/bar) -"xee" = ( -/obj/effect/floor_decal/corner/dark_green, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/starboard) "xef" = ( /obj/structure/bed, /obj/structure/machinery/light{ @@ -178526,13 +178529,6 @@ icon_state = "desert" }, /area/centcom/shared_dream) -"xeD" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/random/pottedplant, -/turf/simulated/floor/tiled, -/area/horizon/security/investigations_hallway) "xeI" = ( /obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -178582,6 +178578,12 @@ }, /turf/simulated/floor/shuttle/tan, /area/centcom/bar) +"xeX" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/structure/table/reinforced, +/obj/item/storage/box/fancy/tray/autopsy, +/turf/simulated/floor/tiled/white, +/area/horizon/security/autopsy_laboratory) "xeY" = ( /obj/effect/floor_decal/industrial/hatch_door/engineering{ dir = 1 @@ -178889,6 +178891,21 @@ /obj/structure/grille, /turf/simulated/floor/tiled/dark/full/airless, /area/horizon/command/bridge/controlroom) +"xgO" = ( +/obj/structure/machinery/atmospherics/binary/pump/on{ + dir = 8; + name = "Distro to Starboard Docks"; + target_pressure = 200 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/horizon/security/checkpoint2) "xgW" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/structure/grille, @@ -179067,27 +179084,6 @@ /obj/effect/floor_decal/industrial/hatch_door/engineering, /turf/simulated/floor/tiled/dark/full, /area/horizon/stairwell/engineering/deck_1) -"xij" = ( -/obj/structure/machinery/firealarm/west, -/obj/structure/platform_deco{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/main) -"xio" = ( -/obj/structure/machinery/disposal/small/north{ - dir = 4; - pixel_y = 0; - pixel_x = 18 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/lino, -/area/horizon/service/chapel/office) "xiv" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 @@ -179105,10 +179101,6 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"xiA" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/operations/machinist) "xiB" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/machinery/firealarm/west, @@ -179484,6 +179476,13 @@ icon_state = "wood" }, /area/centcom/specops) +"xlH" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/obj/structure/machinery/firealarm/south, +/turf/simulated/floor/tiled/white, +/area/horizon/security/autopsy_laboratory) "xlM" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 4 @@ -179800,6 +179799,16 @@ }, /turf/simulated/floor/plating, /area/horizon/medical/gen_treatment) +"xoh" = ( +/obj/structure/table/rack, +/obj/random/loot, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/item/radio/intercom/west, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_3/security/port) "xok" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/railing/mapped{ @@ -179842,6 +179851,20 @@ }, /turf/unsimulated/floor/wood, /area/centcom/bar) +"xoJ" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/structure/closet/secure_closet/evidence{ + name = "Clothing and Accessories" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/machinery/camera/network/security{ + c_tag = "Security - Evidence Storage"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "xoK" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/medical/equipment) @@ -179916,6 +179939,10 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/plating, /area/horizon/maintenance/substation/wing_starboard) +"xpx" = ( +/obj/structure/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/horizon/security/interrogation/monitoring) "xpz" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/effect/floor_decal/spline/plain{ @@ -179985,19 +180012,6 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/atmos/air) -"xpV" = ( -/obj/structure/table/standard, -/obj/item/folder/sec, -/obj/item/folder/sec, -/obj/item/storage/box/evidence{ - pixel_x = -4; - pixel_y = 18 - }, -/obj/item/hand_labeler{ - pixel_y = 2 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/evidence_storage) "xqb" = ( /obj/structure/bed/stool/chair/office/dark, /obj/structure/machinery/button/remote/airlock{ @@ -180089,6 +180103,13 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard) +"xqv" = ( +/obj/structure/machinery/atmospherics/pipe/manifold/hidden, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) "xqy" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -180226,6 +180247,19 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/hangar/operations) +"xrG" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/north, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) "xrI" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 1 @@ -180294,15 +180328,6 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/dark, /area/horizon/rnd/test_range) -"xrY" = ( -/obj/structure/platform, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner_wide/black{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist) "xsa" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -180400,6 +180425,15 @@ /obj/structure/machinery/portable_atmospherics/canister/heliumfuel, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/indra/mainchamber) +"xsy" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/interrogation_2) "xsA" = ( /obj/structure/machinery/portable_atmospherics/canister/oxygen, /turf/unsimulated/floor, @@ -180565,6 +180599,18 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos/storage) +"xtw" = ( +/obj/structure/bed/stool/chair/sofa/pew/right{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) "xtz" = ( /obj/structure/table/reinforced/wood, /obj/item/clipboard, @@ -180609,6 +180655,17 @@ icon_state = "desert4" }, /area/horizon/holodeck/source_beach) +"xtM" = ( +/obj/effect/floor_decal/corner/beige/diagonal, +/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) "xtU" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -180958,6 +181015,12 @@ }, /turf/unsimulated/floor, /area/centcom/legion) +"xvD" = ( +/obj/structure/table/glass, +/obj/structure/machinery/microscope, +/obj/effect/floor_decal/corner/beige/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) "xvQ" = ( /obj/item/material/shard, /turf/simulated/floor/tiled/dark/full, @@ -181026,6 +181089,30 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) +"xwG" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/structure/table/standard, +/obj/item/storage/bag/circuits/basic{ + pixel_y = 5; + pixel_x = -2 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) +"xwJ" = ( +/obj/effect/floor_decal/corner/dark_green, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "xwN" = ( /obj/structure/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -181058,6 +181145,17 @@ /obj/effect/floor_decal/industrial/hatch_door/yellow, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_2/research) +"xwX" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1; + pixel_y = 14 + }, +/obj/structure/crate_shelf, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "xxb" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, @@ -181305,24 +181403,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/rnd/xenobiology) -"xyo" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 5 - }, -/obj/structure/table/glass, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/storage/box/evidence{ - pixel_x = 7; - pixel_y = 8 - }, -/obj/item/storage/box/swabs{ - pixel_x = -9; - pixel_y = 8 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/security/forensic_laboratory) "xys" = ( /obj/effect/floor_decal/corner/mauve/diagonal, /obj/structure/machinery/atmospherics/pipe/simple/visible/yellow, @@ -181388,6 +181468,11 @@ icon_state = "dark_preview" }, /area/centcom/holding) +"xyQ" = ( +/obj/effect/floor_decal/corner/beige/diagonal, +/obj/structure/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) "xyU" = ( /obj/structure/machinery/door/firedoor, /obj/effect/floor_decal/industrial/hatch_door/yellow{ @@ -181706,6 +181791,16 @@ /obj/effect/floor_decal/industrial/outline/emergency_closet, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_2/research) +"xAN" = ( +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/rnd/hallway) "xAR" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -182058,6 +182153,16 @@ }, /turf/simulated/wall/shuttle/scc, /area/horizon/shuttle/intrepid/port_storage) +"xDw" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/corner/beige/diagonal, +/obj/structure/machinery/light_switch{ + dir = 8; + pixel_x = -23; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) "xDC" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -182215,11 +182320,6 @@ }, /turf/simulated/floor/wood, /area/horizon/medical/psych) -"xEn" = ( -/obj/structure/closet/secure_closet/evidence, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/security/evidence_storage) "xEr" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -182413,6 +182513,14 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/white, /area/horizon/rnd/xenobiology) +"xFS" = ( +/obj/structure/table/steel, +/obj/item/storage/box/bodybags{ + pixel_y = -1 + }, +/obj/structure/machinery/light, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/evidence_storage) "xFT" = ( /obj/structure/bed/stool/chair/office/bridge{ dir = 8 @@ -182463,18 +182571,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/atmos) -"xGk" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/lobby) "xGr" = ( /obj/structure/machinery/door/airlock/centcom{ name = "Port Checkpoint Door"; @@ -182727,6 +182823,13 @@ }, /turf/simulated/floor/wood, /area/horizon/command/heads/xo) +"xIg" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/grille/broken, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/elevator) "xIi" = ( /obj/effect/floor_decal/corner_wide/pink/diagonal{ dir = 4 @@ -182772,6 +182875,15 @@ name = "overgrowth" }, /area/horizon/holodeck/source_moghes) +"xIx" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/structure/machinery/photocopier, +/obj/structure/machinery/light, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/horizon/security/investigations_hallway) "xIz" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -182931,15 +183043,6 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/atmos/air) -"xJc" = ( -/obj/structure/machinery/mecha_part_fabricator{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/carpet/rubber, -/area/horizon/operations/machinist) "xJm" = ( /obj/structure/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -183168,12 +183271,6 @@ icon_state = "dark_preview" }, /area/centcom/control) -"xKY" = ( -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/horizon/operations/machinist) "xLf" = ( /obj/structure/table/standard{ no_cargo = 1 @@ -183397,6 +183494,15 @@ "xMt" = ( /turf/simulated/wall, /area/horizon/medical/washroom) +"xMx" = ( +/obj/structure/table/glass, +/obj/structure/machinery/dnaforensics{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/floor_decal/corner/beige/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/security/forensic_laboratory) "xMz" = ( /obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -183487,28 +183593,6 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"xNf" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/structure/machinery/door/airlock/security{ - dir = 4; - name = "Evidence Storage"; - req_one_access = list(2,3,4) - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/security/evidence_storage) "xNh" = ( /obj/effect/floor_decal/industrial/outline/service, /obj/structure/machinery/light{ @@ -183721,21 +183805,6 @@ /obj/effect/floor_decal/corner/dark_blue/full, /turf/simulated/floor/tiled, /area/horizon/security/office) -"xOH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/horizon/security/investigations_hallway) "xOJ" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -183810,18 +183879,6 @@ /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{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/pen{ - pixel_x = -4; - pixel_y = 3 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/evidence_storage) "xPh" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -183894,21 +183951,6 @@ /obj/effect/floor_decal/corner_wide/dark_green/diagonal, /turf/simulated/floor/tiled/dark, /area/shuttle/skipjack) -"xPE" = ( -/obj/structure/sign/directions/prop{ - dir = 4; - pixel_x = 32; - pixel_y = 24 - }, -/obj/structure/sign/directions/prop{ - dir = 4; - pixel_y = 24 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/engineering/atmos/storage_maintenance) "xPH" = ( /turf/simulated/floor/holofloor/beach/sand{ dir = 6; @@ -183989,25 +184031,6 @@ /obj/effect/decal/cleanable/flour, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_3/aft/starboard/far) -"xQx" = ( -/obj/structure/machinery/light/floor{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/central) "xQC" = ( /obj/structure/machinery/door/firedoor, /obj/structure/machinery/atmospherics/pipe/simple/hidden/supply, @@ -184091,25 +184114,15 @@ }, /turf/simulated/floor/plating, /area/horizon/shuttle/canary) -"xQX" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/brown{ - dir = 9 +"xQV" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 }, -/obj/structure/machinery/cell_charger{ - pixel_y = 3; - pixel_x = 5 +/obj/structure/machinery/smartfridge/tradeshelf/evidence{ + name = "Evidence Shelf F" }, -/obj/structure/machinery/cell_charger{ - pixel_y = 12; - pixel_x = 5 - }, -/obj/structure/machinery/power/outlet{ - pixel_y = 10; - pixel_x = -9 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) "xQY" = ( /obj/structure/shuttle_part/ert{ icon_state = "10,1"; @@ -184281,13 +184294,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/medical/morgue) -"xSF" = ( -/obj/random/dirt_75, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/elevator) "xSN" = ( /obj/structure/machinery/atmospherics/pipe/simple/visible/black, /obj/effect/floor_decal/industrial/warning{ @@ -184364,9 +184370,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/port/far) -"xTj" = ( -/turf/simulated/wall/r_wall, -/area/horizon/security/interrogation) "xTm" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -184504,14 +184507,6 @@ "xTW" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/engineering/storage_hard/upper) -"xUa" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/obj/structure/closet/crate/freezer, -/obj/effect/floor_decal/industrial/outline/security, -/turf/simulated/floor/tiled/white, -/area/horizon/security/autopsy_laboratory) "xUb" = ( /obj/structure/cable/green{ icon_state = "1-8" @@ -184690,15 +184685,6 @@ }, /turf/simulated/floor/carpet/rubber, /area/horizon/shuttle/canary) -"xVc" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/horizon/service/chapel/main) "xVg" = ( /obj/effect/floor_decal/corner/brown/diagonal, /obj/structure/cable/green{ @@ -184853,6 +184839,12 @@ }, /turf/simulated/floor/plating, /area/horizon/hangar/intrepid) +"xWA" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/simulated/wall, +/area/horizon/maintenance/deck_3/auxatmos) "xWF" = ( /obj/structure/disposalpipe/trunk{ dir = 8 @@ -184893,12 +184885,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/wing/starboard/far) -"xXg" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/structure/machinery/door/firedoor, -/turf/simulated/floor/reinforced/airless, -/area/horizon/crew/lounge) "xXl" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/steel, @@ -185060,6 +185046,13 @@ }, /turf/simulated/floor/plating, /area/horizon/command/bridge/meeting_room) +"xXQ" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/structure/machinery/alarm/east, +/turf/simulated/floor/tiled, +/area/horizon/security/interrogation/monitoring) "xXY" = ( /obj/structure/machinery/firealarm/east, /obj/effect/floor_decal/corner/dark_green{ @@ -185091,6 +185084,12 @@ "xYj" = ( /turf/simulated/floor/tiled/dark/full, /area/horizon/storage/eva) +"xYA" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/security/investigations_hallway) "xYC" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/mapped, @@ -185424,6 +185423,13 @@ /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) +"yaM" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor, +/area/horizon/security/firing_range) "yaQ" = ( /obj/structure/railing/mapped{ name = "adjusted railing" @@ -185673,6 +185679,20 @@ }, /turf/simulated/floor/plating, /area/horizon/shuttle/intrepid/starboard_compartment) +"ycS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_3/security/port) "ycW" = ( /obj/structure/machinery/atmospherics/pipe/simple/visible/universal, /obj/structure/lattice/catwalk/indoor/grate/damaged{ @@ -185712,16 +185732,6 @@ /obj/structure/machinery/alarm/north, /turf/simulated/floor/tiled, /area/horizon/maintenance/deck_3/aft/holodeck) -"ydr" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/closet/secure_closet/evidence{ - name = "evidence storage locker C" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/evidence_storage) "yds" = ( /obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ id = "consularA" @@ -186459,6 +186469,19 @@ }, /turf/simulated/floor/tiled, /area/horizon/engineering/lobby) +"yhx" = ( +/obj/structure/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/starboard) "yhD" = ( /obj/structure/machinery/alarm/north, /turf/simulated/floor/plating, @@ -186583,6 +186606,20 @@ icon_state = "wood" }, /area/centcom/legion) +"yis" = ( +/obj/structure/extinguisher_cabinet/south, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "yix" = ( /obj/structure/platform/ledge{ dir = 4 @@ -186820,11 +186857,6 @@ /obj/structure/machinery/door/firedoor, /turf/simulated/floor/plating, /area/horizon/medical/equipment) -"ykd" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/elevator) "ykf" = ( /obj/structure/cable/green{ icon_state = "2-8" @@ -186916,15 +186948,6 @@ /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood, /area/horizon/medical/psych) -"ykt" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/structure/machinery/light/floor{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/machinist) "ykx" = ( /obj/structure/platform{ dir = 4 @@ -186937,6 +186960,18 @@ }, /turf/simulated/floor/tiled, /area/horizon/command/bridge/upperdeck) +"ykz" = ( +/obj/structure/bed/stool/chair/sofa/pew/right{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) "ykA" = ( /obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ id = "bar_backroom" @@ -275370,7 +275405,7 @@ jfM jtE kwf xJO -sus +dRa sil bSS rdq @@ -275627,7 +275662,7 @@ xWf iBt kYD xJO -gZM +xrG pLy eSu trS @@ -275884,10 +275919,10 @@ xJO xJO xJO xJO -lxI +exv lqA bSS -koF +dwQ bSS eSV eSV @@ -276141,10 +276176,10 @@ rHg har jhT nFp -vVK +nWg lwX bSS -cKz +uxb eSV eSV eSV @@ -276398,9 +276433,9 @@ lJu pka bVE nFp -dqG -rLw -qbd +mLS +dlH +tgt uYQ eSV eSV @@ -276655,9 +276690,9 @@ cSD rqd kKu nFp -pEH -sEy -qbd +ohA +xqv +tgt uYQ eSV eSV @@ -276895,8 +276930,8 @@ bjA aFf qAo snf -tIv -wKa +dNC +hgj qAo tcL xgl @@ -276904,18 +276939,18 @@ wws xgl xgl fUl -kFx -vIb +nkl +gaz xJO fzD fzD xcP fzD nFp -whZ -cyE -qbd -pam +iAs +xgO +tgt +tVQ eSV eSV eSV @@ -277152,7 +277187,7 @@ yjA xRf qAo jNv -hfP +kAW jfk qAo nds @@ -277162,16 +277197,16 @@ dLH kvK oUX cZg -hru -gvk -pHi -vwj -juH -wmZ -wAB -swO -eye -qbd +iOt +ryw +tMo +pax +aAz +xbK +jXz +hsP +klN +tgt uYQ eSV eSV @@ -277409,13 +277444,13 @@ vmb qvO qAo rhx -uPH -sTp -kUI -tPv +eQR +sfz +nsU +pQB rOB -xGk -dcK +bTs +gIg roH tHj ipt @@ -277427,8 +277462,8 @@ naU naU xsH jPX -mZw -qbd +esl +tgt uYQ eSV eSV @@ -277672,20 +277707,20 @@ qAo jTF exT ojQ -lpU +iZg lhd lfo -nsk +uEj gVa -euV -euV -euV -euV -euV -euV +nqF +nqF +nqF +nqF +nqF +nqF eIu -rLw -qbd +dlH +tgt uYQ eSV eSV @@ -277929,21 +277964,21 @@ qAo ngp ngp oJw -bGr -euV -wFi -wFi -euV -euV -euV -hPv -xQX -ucy -euV -ejC +fbC +nqF +mAZ +mAZ +nqF +nqF +nqF +eWQ +dVT +rBN +nqF +lhz nWP bSS -cKz +uxb eSV eSV eSV @@ -278186,18 +278221,18 @@ qAo oCl xIq gRc -xee -euV -vQD -vQD -ksr -cEq -agx -iCd -tIp -gmS -euV -ejC +xwJ +nqF +dKx +dKx +pum +xwX +jJA +uao +aGE +mKo +nqF +lhz lqA bSS rdq @@ -278442,19 +278477,19 @@ uHI jwo aEz cYV -pas -mAX -euV -uUe -xJc -xKY -kRH -ohl -sZc -fXX -crG -euV -rvA +aCF +yis +nqF +aWi +qDL +eHy +kBP +kuq +svy +bum +qOR +nqF +tvb tad lDl uVj @@ -278699,20 +278734,20 @@ poB tlU poB mjk -fWf -mXE -euV -vVk -bJd -kZm -ieQ -lLB -quY -pZm -euV -euV -eyb -eyb +qRU +kIy +nqF +sGP +bGv +bQQ +hlO +hKc +nBa +xwG +nqF +nqF +oOJ +oOJ bSS rdq bSS @@ -278956,21 +278991,21 @@ quh jwo quh gIy -jWt -aJq -mLV -oFw -hvH -mJA -mMX -weS -frs -mtT -npN -wys -vOO -npX -bHq +maF +kmi +hHf +eCc +sZN +vkm +ezv +rJH +uqq +mSj +wPm +vhY +cGO +vyz +lZa uYQ eWI eSV @@ -279213,21 +279248,21 @@ pUc pUc olD gEF -mni -aJq -mLV -bTq -lqT -iuc -xiA -sxP +fYV +kmi +hHf +lwO +jyY +myY +iOK +ojm ade -noI -cDh -vJx -egF -dGN -vcG +luo +fKP +rmc +rLs +qNi +deD uYQ eSV eSV @@ -279470,21 +279505,21 @@ xMo etV geu gEF -mni -dVP -ijp -cBh -taZ -qDj -sdV -mSN -oSQ -eJk -lYH -nxY -iKT -sCP -vcG +fYV +fpr +tLU +vvB +bwx +deA +gPP +hhj +cTs +hxa +lKQ +ibT +kVi +tPq +deD uYQ eSV eSV @@ -279727,21 +279762,21 @@ sKL etV hDr gEF -mLw -lSj -nRy -gkG -kwv -nmi -oWG -blb -laD -nNl -xrY -cwi -pmV -jMb -wdF +rLa +rPk +gvg +dDO +iiE +aYT +kYJ +uqm +uRN +uGX +bSH +cGC +uXM +sBt +bdK uYQ eSV eSV @@ -279985,20 +280020,20 @@ iqJ oWS rHW lAv -ckZ -nSK -lbS -cec -hzH -mKl -pVx -pFA -euV -tHx -tHx -tHx -euV -bHq +aeh +jNe +jlJ +ntJ +iah +iLM +wKn +wfB +nqF +lCb +lCb +lCb +nqF +lZa uYQ eSV eSV @@ -280239,23 +280274,23 @@ dnG hfm hfi hMH -vSI +nWH tvJ hre -jtp -mLV -afG -deE -uhz -nrI -jXS -cCL -euV -iIU -sZw -qQI -fTG -cUP +xcR +hHf +owZ +aGV +sCF +dRY +mJA +rzs +nqF +aAc +ldd +tqe +mUm +vgT uYQ eSV eSV @@ -280496,23 +280531,23 @@ dYk knC sst etV -bnr +sTH gEF uUv -jtp -euV -vQB -jLK -euV -oku -kzw -ijj -euV -jos -pyu -tME -vZa -cUP +xcR +nqF +nTv +wor +nqF +bvR +gxw +dox +nqF +apP +oIQ +wMg +vrd +vgT iGg gGw eSV @@ -280756,20 +280791,20 @@ rft rft lYJ uUv -tqu -fPn -ykt -mFT -qek -mxT -rZK -wmz -qfT -ajM -iHr -kmx -sSE -cUP +uIn +oXj +jBE +qsB +jtm +vpe +pxs +bMe +eol +sWI +uJr +pmo +wvm +vgT uYQ tDE eSV @@ -281013,20 +281048,20 @@ ftx rrr gEF rcF -lgE -gfe -gIN -lBk -qek -eLU -jDe -hHu -euV -aOB -gvc -jsR -iWZ -bHq +ahg +rBj +aGB +cNo +jtm +oQc +omS +uca +nqF +vgj +qPl +cPR +jYf +lZa sDq dbd dbd @@ -281270,19 +281305,19 @@ uVe rrr gEF joj -iGV -gKG -gKG -gKG -gKG -gKG -gKG -mmo -mmo -dEp -mmo -mmo -jAu +ume +tQJ +tQJ +tQJ +tQJ +tQJ +tQJ +dlQ +dlQ +nkD +dlQ +dlQ +bdB pyI kjq muP @@ -281536,7 +281571,7 @@ lzp bhL nXt xli -fxw +cOc jvL uSI ezA @@ -281793,7 +281828,7 @@ nyl gRp dAr dAr -iUg +fNa tUO hHp ezA @@ -282050,7 +282085,7 @@ fji bhL gao nfy -oKb +aZg tDo aqc ezA @@ -282307,7 +282342,7 @@ vcO nku msU qVW -edO +yhx qVW kYT fhz @@ -282559,12 +282594,12 @@ orE gZC inx xTo -gYx +nDE kkD vzl wgp mCs -iYH +msA iEY sfl nuf @@ -287405,19 +287440,19 @@ hHN qqw uVH yiT -pNq -pNq -pNq -nQv -nQv -nQv -nQv -nQv -sFU -sey -sey -sey -sFU +jVK +jVK +jVK +gZT +gZT +gZT +gZT +gZT +pIF +bUl +bUl +bUl +pIF dvo glp jrj @@ -287662,19 +287697,19 @@ uVH uVH uVH iiU -pNq -rOD -wpW -sFU -rTT -dsz -xij -uwD -oML -qrL -qrL -bRR -sFU +jVK +sLg +lnX +pIF +cLp +syD +gXl +mgu +sWL +mut +mut +iWF +pIF dvo glp jrj @@ -287919,20 +287954,20 @@ tAP xYG nPD iiU -pNq -xSF -wpW -sFU -tNf -vNp -ijY -lbW -sdO -atA -nAI -lMx -lMp -xQx +jVK +sEy +lnX +pIF +ccf +bys +gSc +mKP +itE +qdt +vdu +bMk +kTv +odR glp gst dFW @@ -288176,20 +288211,20 @@ axu xYG gzh iiU -bFB -nuy -eBm -sFU -aYA +nbI +uIS +xIg +pIF +emP kss -qvB -dpq -uGT -wbK -wdB -uGT -sey -hVp +btG +xtw +mTT +oxL +ncK +mTT +bUl +npc ovn jrj cXG @@ -288433,20 +288468,20 @@ sNz xYG xYG iiU -pNq -pNq -pNq -sFU -cgf +jVK +jVK +jVK +pIF +wug kss -qvB -xVc -fYy -lGe -nRW -fYy -sey -hVp +btG +cio +dFq +caM +nxY +dFq +bUl +npc glp jrj aJs @@ -288680,8 +288715,8 @@ grg vkw vkw vkw -xPE -aID +wFf +ftR geR qqC wuX @@ -288690,20 +288725,20 @@ sNz auK wiC iiU -pNq -mpx -rok -sFU -kFv +jVK +omV +hux +pIF +fdS svI -qvB -njX -jeg -wbK -pcq -jeg -sey -hVp +btG +ykz +iKs +oxL +sNa +iKs +bUl +npc hjc jrj mlB @@ -288937,8 +288972,8 @@ tAb ezx oAm xeY -jjK -toY +jsU +idR fnS nKr pNw @@ -288947,20 +288982,20 @@ rQE iNU enb uWn -nBK -teV -ykd -bAW -jFq -tTl -hXb -dYL -nAq -qNT -mVU -fYy -sey -aow +pLS +fiv +oKN +mBP +kvh +goZ +wdS +uDr +uZE +gOR +kXj +dFq +bUl +sZj oix upa eaw @@ -289194,7 +289229,7 @@ pvo jyO yko vkw -eJN +jsa wuX qnm uEa @@ -289202,23 +289237,23 @@ wuX wuX wuX wuX -qJz -qJz -qJz -qJz -qJz -qJz -qJz -qau -sFU -hMO -abK -wbK -lLN -bCi -sey -nrv -rbu +vAn +vAn +vAn +vAn +vAn +vAn +vAn +pAu +pIF +fJw +hMM +oxL +uqJ +hwi +bUl +crV +oux xzE jAG idD @@ -289451,7 +289486,7 @@ aOj rBJ llm vkw -pKE +aMu wuX ccH dxX @@ -289459,22 +289494,22 @@ oXN ltf urU vpO -qJz -jxC -qcl -inJ -rqS -qUx -aem -pYq -nEx -hup -nXg -kSQ -nXg -bfD -sey -nMY +vAn +ijp +thZ +sXE +tVT +guU +aYM +mUW +nCW +hwl +qSO +vnm +qSO +hUi +bUl +gMM qSR lEW cQk @@ -289708,7 +289743,7 @@ tKZ msd hmK vkw -dbf +rKW wuX dHB aTV @@ -289716,22 +289751,22 @@ ycp ycp ycp hzs -qJz -hju -bSw -qJz -bIF -mkt -vEy -aVt -nEx -iKp -kTJ -isC -vNp -wSj -sFU -mFa +vAn +kOT +aml +vAn +mps +uRh +hgV +nEd +nCW +krP +vRV +hrX +bys +nGq +pIF +xAN aCw ovv ydD @@ -289965,7 +290000,7 @@ ovm ovm vkw vkw -leP +lpx wuX jDp xtW @@ -289973,22 +290008,22 @@ tBy weh hPg eJb -qJz -wvX -urJ -qJz -cxC -liB -lCz -eKX -nEx -gck -udc +vAn +bHu +oRy +vAn +eCR +gAL +iMo +eGO +nCW +wow +pGg hgz -wRT -vNp -sey -wWc +iUS +bys +bUl +fBL qtl ovv cRz @@ -290222,7 +290257,7 @@ oRL ovm mRc uOD -cFa +ciu wuX kmp wuX @@ -290230,22 +290265,22 @@ wuX wuX wuX wuX -qJz -vFP -nSY -qJz -jXR -obd -opG -vZT -nEx -sWt -hOv -jDR -hOv -gYq -sey -wWc +vAn +fMQ +lOk +vAn +uqv +kNH +fqt +hGV +nCW +sCA +mnI +gBE +mnI +jKo +bUl +fBL ovK qmq rYO @@ -290479,30 +290514,30 @@ hoq ovm epn uOD -wRg -edQ -eaG -ejR -eaG -nOr -eta -eaG -cxH -ucm -xio -qJz -iFL -jju -cpl -ndz -sFU -sFU -kPi -kPi -kPi -sFU -sFU -hXe +fGP +eqG +vGl +oAl +vGl +bwM +eQb +vGl +ajd +jbJ +jKv +vAn +dyh +ico +sZF +xaF +pIF +pIF +kCQ +kCQ +kCQ +pIF +pIF +bBr qgE qmq ufu @@ -290744,22 +290779,22 @@ dYY dYY dYY dYY -fqX -fqX -fqX -fqX -fqX -fqX -fqX -fqX +tXL +tXL +tXL +tXL +tXL +tXL +tXL +tXL tuY -hCH -cov -gCJ +rZA +tHS +gJS pAT -nqp +hcV nLK -wWc +fBL ovK qmq qTq @@ -291010,13 +291045,13 @@ cEO tWt jIx xsT -bPm -nBF -qhe -feY -paw -klr -lHA +jVT +jHe +vjF +vOg +vzn +tNg +gfn ovK ovv goa @@ -291268,9 +291303,9 @@ vby aFb xsT aSH -oUP -dxr -qiw +baY +uwN +fIf gAT ati fnk @@ -344762,8 +344797,8 @@ tnl iQK qDU qDU -wve -wve +odO +odO wWR eSV eSV @@ -345017,10 +345052,10 @@ tnl nDc pYe mea -cFI -nxN -hfz -xXg +wpU +tQp +aBv +wLB wWR eSV eSV @@ -345274,10 +345309,10 @@ tnl azr ckQ tjy -pHv -jNw -bOY -dIS +bUa +iio +mBO +rvk wWR eSV eSV @@ -345531,7 +345566,7 @@ tnl vol bOw kSG -pHv +bUa qDU qDU qDU @@ -345788,10 +345823,10 @@ tnl qMX mQh snC -tJC -btJ -wom -rAX +mdC +ddq +iaj +sjj wWR eSV eSV @@ -346045,7 +346080,7 @@ tnl ixf oRO vZc -oFR +vQK qDU qDU qDU @@ -356289,7 +356324,7 @@ xvQ qpd dlo xVC -moQ +xoh tOS lKz sph @@ -356797,13 +356832,13 @@ iQL ntF iQL iQL -uTh -dPu -dqh -hmO -mvT -jnP -sCJ +bec +ycS +ckn +dlo +cRK +miZ +gwU eSN eSN nHm @@ -356820,10 +356855,10 @@ xMK xMK xMK xMK -jmg -jmg -jmg -jmg +xMK +lJy +lJy +lJy xMK bTU xmE @@ -357053,21 +357088,21 @@ pHG pHG pHG djJ -jCj -jCj -jCj -jCj -fYx -jCj -jCj -tLR +djJ +djJ +oog +sph +sph +fjQ +sph +eAd +eAd +eAd +qth bAO bAO bAO bAO -bAO -bAO -xlu xlu xlu xlu @@ -357077,7 +357112,7 @@ rSg sWK gfs vzb -txT +vwF eSW eez duG @@ -357306,10 +357341,8 @@ vfC vfC vfC vfC -wzz -vfC -pHG -qpS +phj +vDV jCj jmB jdR @@ -357318,17 +357351,19 @@ eyI kuG jCj tXB -bAO -bQF -aux -kCv -dcM -aEG -axw -nqe -rea -xTj -xTj +pmE +qth +qth +qth +qth +sbO +eMQ +aLF +eWt +nBr +nBr +nBr +nBr xMK uNM xqb @@ -357561,9 +357596,7 @@ vfC wzz vfC vfC -vfC -vfC -vfC +wzz vfC phj jCj @@ -357574,19 +357607,21 @@ mGA avK xZA jCj -prC -jPA -tpX -dWp -waJ -wSv -lWO -ixW -irD -kkT -iYP -dFg -oRv +aEo +pmE +lZT +xsy +pYU +dWN +iNv +xpx +jnb +szf +wBD +tgR +fDe +ldI +xMK bpl kdj bCA @@ -357820,8 +357855,6 @@ vfC vfC vfC vfC -vfC -vfC phj gIo fpL @@ -357831,19 +357864,21 @@ fLP jcR jpk xNS -lxb -bAO -pQA -jnA -cjW -tMv -aIM -ixW -aLB -lpO -kbs -tXr -hCZ +gVf +pmE +fkX +jgq +eQJ +dWN +qrS +mlu +hAG +nDY +wBD +hpS +hRO +bhy +xMK ykf qPs qPs @@ -358077,8 +358112,6 @@ vfC vfC vfC vfC -vfC -vfC phj sBi tnn @@ -358088,25 +358121,27 @@ rpq iqR qVz jCj -kVk -bAO -wOs -ntf -dyv -whN -qEm -ixW -rQp -loQ -aoj -lyq -oRv +pNm +pmE +bkx +sXv +jxH +dWN +fvB +xXQ +tAm +eVf +wBD +hxb +qob +kmA +xMK cAV iNo -cYo -hEk -iFx -xGM +aql +bpg +btF +mUX wzm uPN xMK @@ -358334,8 +358369,6 @@ vfC vfC vfC vfC -vfC -vfC phj gIo wed @@ -358345,24 +358378,26 @@ bdz sWq usQ jCj -oAf -bAO -viO -fXc -bAO -lLd +vER +pmE +dWN +hfD +dWN +eAd xiW -axw -ixW -ixW -pLu -axw +xiW +acG +xiW +jOK +wBD +jvp +wBD +xMK +jUk +jUk oRv oRv -oRv -oRv -oRv -aey +nVV jUk oRv oRv @@ -358591,8 +358626,6 @@ vfC vfC vfC vfC -vfC -vfC phj ajx fHH @@ -358602,21 +358635,23 @@ jMM eXX sJX jCj -fnG +gvP pmE -pmE -pmE -hCQ -dmR -wxy -jZr +lvH +fGU buW +wxy +wzs +buW +fGU +jZr +qSm buW rpv -ppO +buW cjv buW -buW +dKY buW buW qPz @@ -358848,8 +358883,6 @@ vfC vfC vfC vfC -vfC -vfC phj dnd cLM @@ -358859,21 +358892,23 @@ uqO izG sDI jCj -bkN -vqE -lOy -gsm -eJc -aKN -jEZ -jEZ +qfz +eSF +jnS +gJa +nhS +nhS +nhS +nhS +vhB +syW jCb fBC wqy -fFC -rtQ wGW -fFC +hvb +mqN +nHu wGW wGW nHU @@ -359105,8 +359140,6 @@ vfC vfC vfC vfC -vfC -vfC phj jCj jCj @@ -359114,23 +359147,25 @@ jCj jCj jCj jCj -jCj +xWA jCj dlo -sph -vQo -azQ -hCQ -tDx -hlW -hlW -kan +pmE +pbR +ill +ill +bbD +pch +pch +lZV +aug +nCT aSv dZr hzo rZR -ill -ill +aOw +oxp ill ill aam @@ -359362,27 +359397,27 @@ vfC vfC vfC vfC -vfC -vfC +uez uez dlo uiw -dlo tBs tBs tBs kvw dlo tBs -sph -pql -akz +pmE hCQ -cRo -cqw -por -suU -qqg +hCQ +hCQ +hCQ +hCQ +hCQ +hCQ +hMl +gmD +hMl nIF nIF qRp @@ -359621,8 +359656,9 @@ vfC vfC vfC vRE -vRE -lTO +lJw +lJw +wPC lJw lJw lJw @@ -359630,15 +359666,14 @@ lJw lJw lJw lJw -byx +jIo +ucS +agb +mJY +ayj lJw -lJw -axZ -axZ -nlb -nlb -eid -kGE +xYA +nCT hUw nIF ewF @@ -359878,25 +359913,25 @@ vfC vfC vfC vRE -hYp +jtv +fqC nEU -xEn -hEJ +jMT lJw +mnr +gfp +dzh +kWe lJw -lJw -kjr -tOj -aAs -iVS -jnz -fal -kIz -qMv -nlb -lXB -kan -hUw +aXq +lLo +dOT +pyG +srG +mSi +frO +nbi +aKe nIF bvA wRt @@ -360135,25 +360170,25 @@ vfC vfC vfC sGC -ffb -ssL -nXf -nXf -gSe -lxU -emv -hJo +rpP +lQS +pIl +xFS +lJw +pXg mmW -rsH -wPY -jnz -kbI -wvx -axj -nlb -xeD -ohg -qxs +mmW +gas +lJw +xQV +lLo +dRd +lLo +uZG +lJw +xYA +hGY +xIx nIF oHa hoY @@ -360392,25 +360427,25 @@ vfC vfC vfC sGC -ffb -czP -mmW -mmW -mVY -rSS -emv -xPg -rYy -eZZ -ydr -jnz -nVy -oQg -bME -cNt -bep -xOH -hUw +aOb +ihZ +frK +kQC +dcU +bnb +nRv +urd +hho +rfX +bnb +qdF +oiw +sdL +oLo +maE +xYA +hGY +vDi jiH jiH jiH @@ -360649,24 +360684,24 @@ vfC vfC vfC sGC -ttV -czP -mmW -hGz -rYy -pwC -emv -xpV -hNH -wLV -ipM -jnz -uRM -wvx -vTC -nlb -gdw -dqW +rdn +lcd +dPh +dbK +lJw +oYQ +bdq +cLE +gQn +lJw +oYQ +lLo +soc +hto +gpI +qYm +iMc +hGY hUw nao vfC @@ -360907,23 +360942,23 @@ vfC vfC vRE uUA -bas -omg -mUw -prc -hzF -uHD -bqT -fPS -dGJ -adT -jnz -muz -jSi -rJR -nlb -qfV -kan +pQS +qza +pIV +lJw +iRi +iBg +vLJ +mPY +lJw +iri +xoJ +oFw +bJd +wzG +lJw +xYA +hGY hUw nao vfC @@ -361163,25 +361198,25 @@ vfC vfC vfC vRE -vRE -jnz -jnz -cYt -jnz -jnz -jnz -jnz -jnz -xNf -jnz -jnz -nlb -nlb -nlb -nlb -bAm -oAa -bAm +lJw +lJw +eci +lJw +lJw +lJw +lJw +lJw +lJw +lJw +lJw +lJw +lJw +lJw +lJw +lJw +qfV +nCT +hUw evf wzz vfC @@ -361419,25 +361454,25 @@ vfC vfC vfC vfC -vfC rNO -mcW -aUV -pop -dzm -bra -oQu +ihJ +xDw +jHP +mnN +qUq +cKU +jjZ qDy iaB -eQz +hlW fYr tpo -lse +dKY +buW wzs -dvV buW nmE -kan +xap hUw nao vfC @@ -361676,20 +361711,20 @@ lpj ryE vfC vfC -vfC -dZW -jyk +oPm +xMx hSe -nMy -wyN -ovr -rpQ -wpN +nBF +uaL +ssI +uwv +tES +wsf mMP -wqy +kNk crz mDM -dlb +uMj wGW syW iBV @@ -361933,15 +361968,15 @@ wWR jXG ryE vfC -vfC dZW -mVw +xvD rka hSe -uoP +pyk +qlQ hSe -hPF -jMx +acz +qDy omB ill wdX @@ -362190,14 +362225,14 @@ wWR wWR tAV vfC -vfC rNO -jyk -kVR +wiR +aQy hSe -ayh -pEB -fJv +uEk +bcn +hSe +tgN qDy lVJ cus @@ -362447,14 +362482,14 @@ wWR wWR tAV vfC -vfC rNO rNO -xyo -grx -uoP -qlQ -uZV +sZS +hSe +wNU +hSe +hSe +lKJ qDy hfd gjr @@ -362465,7 +362500,7 @@ cet gVJ rUi sCL -sLH +njG ljy was vfC @@ -362702,27 +362737,27 @@ eSV eSV wWR wWR -jXG -eTg -vfC +xVO +ryE vfC dZW -rfe +mil +erk +xtM hSe -aHw -iHV -tRB +hSe +hYe qDy ixH -iiL -ipG +yaM +dxr kKz lVJ alx kem nqH uhp -bnM +nqJ jzl was vfC @@ -362962,17 +362997,17 @@ wWR wWR tAV vfC -vfC dZW -pdd -ekw -uoP +vlW +xyQ +mJX hSe -qna +lKi +eeL qDy vnu -tuM -tuM +rXP +thO twO lVJ yaE @@ -363219,13 +363254,13 @@ wWR wWR tAV vfC -vfC rNO -tGI -dtE -rYM -azO -aiI +qMq +hSe +pyk +vou +pbD +sNV qDy cUd sXu @@ -363476,7 +363511,6 @@ wWR wWR tAV vfC -vfC gZB skv skv @@ -363484,6 +363518,7 @@ pfW lRV lRV lRV +lRV pWw cpS cpS @@ -363733,13 +363768,13 @@ wWR wWR tAV vfC -vfC kIT -msq -xUa -nQK -uRs -uaY +ftg +jjs +wFo +tEA +lBu +qjv lRV tLB vPd @@ -363750,7 +363785,7 @@ ghk tOO nXV xgr -dSc +eFk qGa was vfC @@ -363990,13 +364025,13 @@ wWR wWR bcN vfC -vfC kIT -vxL +osj aTc -knL +sqD piR -hKJ +jUb +sYY lRV eSt vPd @@ -364007,7 +364042,7 @@ jBs bNE itb bhI -bhI +tYi rIj was vfC @@ -364247,13 +364282,13 @@ wWR wWR tAV vfC -vfC gZB -dPN +nah frv -isH frv -vIz +xeX +frv +jHS lRV tJH mvP @@ -364504,13 +364539,13 @@ wWR wWR tAV vfC -vfC gZB -lqx +nwL frv -hQW +vJw +oma frv -dRy +lat lRV vZq vPd @@ -364761,13 +364796,13 @@ wWR wWR tAV vfC -vfC kIT -eUB +hMe jBK frv +vJw frv -fVy +xlH lRV pCZ vPd @@ -365018,15 +365053,15 @@ wWR wWR tAV vfC -vfC kIT kIT -dOH +hqe jBK +frv dZH -nft +tso lRV -tDB +ges ctH ctH ghD @@ -365276,12 +365311,12 @@ wWR tAV vfC vfC -vfC kIT kIT -hyK -tNc -qgO +gOH +fJT +dZX +ldr lRV bRs bRs @@ -365534,8 +365569,8 @@ tAV vfC vfC wzz -vfC kIT +ruu rqy ruu gZB @@ -438636,7 +438671,7 @@ vZj nPg mUf vdG -aiK +wEb iLe xdU mWG @@ -439150,7 +439185,7 @@ vZj nPg cWp vdG -oIW +cWQ iLe ncQ ktR @@ -439660,7 +439695,7 @@ eSV eSV vZj unn -syl +vce ixY ixY lvs @@ -440199,10 +440234,10 @@ aJL inE ixY ixY -aPK +gcM xQs -rra -okb +wwO +vsF ozQ eSV eSV @@ -440710,7 +440745,7 @@ lFQ yfV qZS unn -tfP +jMX fEH tSz rKI @@ -442772,7 +442807,7 @@ pBv pBv pBv pBv -nAv +jWB ozQ eSV eSV @@ -443262,11 +443297,11 @@ vDO fLH cpL oqS -mBo +iFz dve oHD unn -jxo +lFt abs lFQ hEb @@ -445590,7 +445625,7 @@ lFQ lFQ lFQ lFQ -cOL +hSp qoA unn dhT @@ -445850,7 +445885,7 @@ whu unn unn unn -beV +wek xKC wwH lCm