From aa7e23f7589647df1540ba3060ba2bd7759d8dd8 Mon Sep 17 00:00:00 2001 From: 4000daniel1 <95170823+4000daniel1@users.noreply.github.com> Date: Sat, 17 Jan 2026 11:57:11 +0100 Subject: [PATCH] Holodeck Combat Training Arena Fix and Tweaks (#21603) This PR maps in the combat training arena AREA into the map, allowing for it to be actually spawned. Also changed its layout and added in in two self recharging xenofauna guns for people to shoot the carp with. --- code/modules/holodeck/HolodeckObjects.dm | 24 + code/modules/projectiles/projectile/beams.dm | 10 + html/changelogs/4000daniel1_combat_arena.yml | 59 + maps/sccv_horizon/sccv_horizon.dmm | 3776 +++++++++--------- 4 files changed, 1957 insertions(+), 1912 deletions(-) create mode 100644 html/changelogs/4000daniel1_combat_arena.yml diff --git a/code/modules/holodeck/HolodeckObjects.dm b/code/modules/holodeck/HolodeckObjects.dm index 07fa8e31bab..b519cdef6a7 100644 --- a/code/modules/holodeck/HolodeckObjects.dm +++ b/code/modules/holodeck/HolodeckObjects.dm @@ -482,6 +482,19 @@ meat_type = null light_range = 2 smart_melee = TRUE + blood_overlay_icon = null + blood_type = null + +/mob/living/simple_animal/hostile/carp/holodeck/Initialize() + . = ..() + atom_flags |= ATOM_FLAG_NO_BLOOD + +/mob/living/simple_animal/hostile/carp/holodeck/handle_bleeding_timer(var/damage_inflicted) + return +/mob/living/simple_animal/hostile/carp/holodeck/handle_blood(var/force_reset = FALSE) + return +/mob/living/simple_animal/hostile/carp/holodeck/bullet_impact_visuals(obj/projectile/impacting_projectile, def_zone, damage, blocked) + return /mob/living/simple_animal/hostile/carp/holodeck/proc/set_safety(var/safe) if (safe) @@ -587,3 +600,14 @@ /mob/living/simple_animal/cat/kitten/holodeck/death() ..() derez() + +//Holo xenofauna gun + +/obj/item/gun/energy/mousegun/xenofauna/holo + projectile_type = /obj/projectile/beam/mousegun/xenofauna_holo + name = "holo xenofauna gun" + desc = "The NT \"Arodentia\" Pesti-Shock is a highly sophisticated and probably safe beamgun designed for rapid pest-control. This one is holographic and harmless to actual lifeforms." + max_shots = 100 + recharge_time = 1 + self_recharge = TRUE + recharge_multiplier = 5 diff --git a/code/modules/projectiles/projectile/beams.dm b/code/modules/projectiles/projectile/beams.dm index 5a04964690f..deba27634bb 100644 --- a/code/modules/projectiles/projectile/beams.dm +++ b/code/modules/projectiles/projectile/beams.dm @@ -358,6 +358,16 @@ SA.take_organ_damage(0, 20) return TRUE +/obj/projectile/beam/mousegun/xenofauna_holo + damage = 0 + +/obj/projectile/beam/mousegun/xenofauna_holo/on_hit(atom/target, blocked, def_zone) + . = ..() + if(istype(target, /mob/living/simple_animal/hostile/carp/holodeck)) + var/mob/living/simple_animal/hostile/carp/holodeck/C = target + C.take_organ_damage(15) + return TRUE + /obj/projectile/beam/shotgun name = "diffuse laser" icon_state = "laser" diff --git a/html/changelogs/4000daniel1_combat_arena.yml b/html/changelogs/4000daniel1_combat_arena.yml new file mode 100644 index 00000000000..b2ce1b0c92b --- /dev/null +++ b/html/changelogs/4000daniel1_combat_arena.yml @@ -0,0 +1,59 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# - (fixes bugs) +# wip +# - (work in progress) +# qol +# - (quality of life) +# soundadd +# - (adds a sound) +# sounddel +# - (removes a sound) +# rscadd +# - (adds a feature) +# rscdel +# - (removes a feature) +# imageadd +# - (adds an image or sprite) +# imagedel +# - (removes an image or sprite) +# spellcheck +# - (fixes spelling or grammar) +# experiment +# - (experimental change) +# balance +# - (balance changes) +# code_imp +# - (misc internal code change) +# refactor +# - (refactors code) +# config +# - (makes a change to the config files) +# admin +# - (makes changes to administrator tools) +# server +# - (miscellaneous changes to server) +################################# + +# Your name. +author: 4000daniel1 + +# 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: + - bugfix: "Fixed the holodeck combat arena not loading in when you try to load it in the holodeck." + - rscadd: "Also changed the arena's mapping and added xenofauna blasters to it." diff --git a/maps/sccv_horizon/sccv_horizon.dmm b/maps/sccv_horizon/sccv_horizon.dmm index 414577eeb58..5133ac91230 100644 --- a/maps/sccv_horizon/sccv_horizon.dmm +++ b/maps/sccv_horizon/sccv_horizon.dmm @@ -743,29 +743,6 @@ /obj/structure/grille, /turf/simulated/floor/tiled/dark/full/airless, /area/horizon/command/bridge/controlroom) -"aeo" = ( -/obj/structure/table/wood, -/obj/random/pottedplant_small{ - pixel_x = -3; - pixel_y = 12 - }, -/obj/machinery/button/switch/windowtint{ - id = "library"; - pixel_x = 7; - pixel_y = -1; - dir = 10 - }, -/obj/item/material/ashtray/bronze{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/machinery/light_switch{ - dir = 10; - pixel_y = -1; - pixel_x = -2 - }, -/turf/simulated/floor/carpet/red, -/area/horizon/service/library) "aes" = ( /obj/item/tank/oxygen, /obj/item/clothing/shoes/magboots, @@ -1721,12 +1698,6 @@ "ajh" = ( /turf/simulated/wall/r_wall, /area/horizon/service/custodial) -"ajm" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled, -/area/template_noop) "ajw" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -2472,21 +2443,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/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/interrogation) "aok" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2559,6 +2515,15 @@ /obj/random/loot, /turf/simulated/floor, /area/horizon/maintenance/deck_3/aft/holodeck) +"aoD" = ( +/obj/machinery/fabricator/autolathe/hacked, +/obj/machinery/light/small{ + dir = 4; + name = "old light fixture"; + pixel_y = -8 + }, +/turf/simulated/floor/tiled, +/area/merchant_station/warehouse) "aoE" = ( /turf/simulated/wall/r_wall, /area/horizon/command/heads/hos) @@ -3713,6 +3678,30 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_3/auxatmos) +"avO" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green, +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id = "shutters_deck3_bridgesafety"; + name = "Safety Shutter" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/command/bridge/meeting_room) "avV" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -3762,29 +3751,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/storage/eva) -"awl" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/main/starboard) "awq" = ( /obj/structure/railing/mapped{ dir = 8 @@ -3896,18 +3862,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/custodial) -"axm" = ( -/obj/structure/sign/emergency/evacuation{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hangar/operations) "axn" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -5067,16 +5021,6 @@ }, /turf/unsimulated/floor/wood, /area/centcom/evac) -"aGr" = ( -/obj/effect/floor_decal/corner/black{ - dir = 10 - }, -/obj/structure/platform_stairs, -/obj/structure/platform{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/hangar/operations) "aGs" = ( /obj/structure/sign/christmas/snowman/hat, /turf/simulated/floor/exoplanet/snow, @@ -6123,6 +6067,18 @@ /obj/effect/shuttle_landmark/ccia/start, /turf/simulated/floor/shuttle/dark_blue, /area/shuttle/transport1) +"aMA" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/interior) "aMB" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -7351,12 +7307,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) -"aUW" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/exoplanet/plating, -/area/horizon/maintenance/deck_2/wing/starboard/near) "aUX" = ( /obj/structure/railing/mapped, /obj/effect/floor_decal/corner_wide/yellow{ @@ -7744,6 +7694,26 @@ /obj/effect/floor_decal/industrial/hatch_door/yellow, /turf/simulated/floor/tiled/dark/full, /area/horizon/storage/eva) +"aXF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/fake_object{ + density = 1; + desc = "A particularly scuffed cargo trolley."; + icon = 'icons/obj/vehicles.dmi'; + icon_state = "cargo_trailer"; + name = "cargo trailer"; + pixel_x = 1 + }, +/obj/effect/decal/fake_object{ + desc = "This one looks particularly heavy."; + icon = 'icons/obj/containers/crate.dmi'; + icon_state = "tcfl_crate_preview"; + name = "legion supply crate"; + pixel_x = 1; + pixel_y = 3 + }, +/turf/unsimulated/floor/plating, +/area/centcom/legion) "aXL" = ( /obj/structure/table/wood, /obj/item/clothing/accessory/holster/armpit, @@ -8837,16 +8807,6 @@ /obj/machinery/recharge_station, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/break_room) -"bfB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/horizon/hangar/operations) "bfC" = ( /turf/simulated/open, /area/horizon/stairwell/starboard/deck_3) @@ -9464,12 +9424,6 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"biR" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled, -/area/template_noop) "biU" = ( /obj/effect/floor_decal/corner_wide/black/full{ dir = 1 @@ -9568,6 +9522,35 @@ }, /turf/simulated/floor/tiled, /area/horizon/rnd/hallway) +"bjm" = ( +/obj/structure/grille, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/window/shuttle/scc_space_ship, +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id = "shutters_deck3_bridgesafety"; + name = "Safety Shutter" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor, +/area/horizon/command/bridge/meeting_room) "bjs" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -10071,13 +10054,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hangar/auxiliary) -"bmW" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/platform_deco{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/horizon/hangar/operations) "bmX" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 6 @@ -11687,10 +11663,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_2/fore) -"bxZ" = ( -/obj/effect/floor_decal/corner, -/turf/simulated/floor/holofloor/tiled, -/area/template_noop) "bya" = ( /obj/structure/stairs_railing{ dir = 4; @@ -12476,16 +12448,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/lobby) -"bDF" = ( -/obj/effect/floor_decal/industrial/hatch/operations, -/obj/structure/railing/retractable, -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad"; - color = "#CCCCCC" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hangar/operations) "bDI" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 1 @@ -13335,6 +13297,26 @@ /obj/effect/floor_decal/corner/green/full, /turf/unsimulated/floor, /area/centcom/bar) +"bKF" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) "bKH" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -15236,6 +15218,13 @@ }, /turf/space, /area/horizon/exterior) +"bYz" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "bYE" = ( /obj/effect/shuttle_landmark/escape_pod/transit/pod2, /turf/space/transit/east, @@ -15903,12 +15892,6 @@ "cdt" = ( /turf/simulated/floor/holofloor/reinforced, /area/horizon/holodeck/source_biesel) -"cdx" = ( -/obj/effect/floor_decal/corner{ - dir = 8 - }, -/turf/simulated/floor/holofloor/tiled, -/area/template_noop) "cdA" = ( /obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 4 @@ -16021,6 +16004,12 @@ }, /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/weapons/grauwolf) +"cep" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/exoplanet/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) "cet" = ( /obj/machinery/power/apc/north, /obj/structure/cable/green{ @@ -17292,6 +17281,13 @@ /obj/effect/floor_decal/spline/plain/black, /turf/simulated/floor/carpet/rubber, /area/horizon/tcommsat/chamber) +"cnP" = ( +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_2/aft) "cod" = ( /obj/structure/cable{ icon_state = "4-8" @@ -17681,12 +17677,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/open, /area/horizon/maintenance/deck_2/wing/starboard) -"cqF" = ( -/obj/structure/sign/radiation{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/aft) "cqO" = ( /obj/effect/floor_decal/corner/yellow/full{ dir = 1 @@ -18818,6 +18808,31 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/hydroponics) +"cxD" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "shutters_deck3_bridgesafety"; + name = "Safety Shutter" + }, +/turf/simulated/floor/plating, +/area/horizon/command/bridge/meeting_room) "cxF" = ( /obj/machinery/computer/general_air_control/large_tank_control/terminal{ input_tag = "fusion_injector_air"; @@ -19139,23 +19154,6 @@ /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/dark, /area/horizon/hallway/primary/deck_3/central) -"czk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/fake_object{ - density = 1; - desc = "A wooden crate containing spare parts."; - icon = 'icons/obj/containers/crate.dmi'; - icon_state = "densecrate"; - name = "mechanical supply crate"; - pixel_x = 1 - }, -/obj/structure/sign/emergency/exit/ladder{ - dir = 1; - pixel_x = -9; - pixel_y = 30 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion) "czl" = ( /obj/machinery/door/airlock/external{ dir = 4; @@ -19284,6 +19282,10 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/command/heads/cmo) +"cAf" = ( +/obj/effect/landmark/holodeck/holocarp_spawn_pain, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "cAg" = ( /turf/simulated/wall/shuttle/unique/ert{ icon_state = "0,3" @@ -20181,16 +20183,6 @@ /obj/random/dirt_75, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_3/aft/starboard) -"cHm" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/horizon/hangar/operations) "cHu" = ( /obj/effect/floor_decal/corner/green{ dir = 10 @@ -20282,6 +20274,23 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/aft) +"cHO" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/machinery/light_switch{ + dir = 5; + pixel_x = -26 + }, +/obj/machinery/button/remote/blast_door{ + dir = 9; + id = "shutters_deck3_bridgesafety"; + name = "Bridge Safety Shutters"; + pixel_x = -26; + pixel_y = 8 + }, +/turf/simulated/floor/carpet, +/area/horizon/command/bridge/meeting_room) "cHX" = ( /obj/structure/cable{ icon_state = "1-2" @@ -20334,6 +20343,21 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/hallway/upper) +"cIj" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/structure/railing/retractable{ + dir = 4 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/machinery/light/floor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hangar/operations) "cIn" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 @@ -20797,21 +20821,6 @@ }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_battlemonsters) -"cLL" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/computer/general_air_control/large_tank_control/wall{ - input_tag = "n2o_in"; - name = "Nitrous Oxide Supply Monitor"; - output_tag = "n2o_out"; - pixel_x = 32; - sensors = list("n2o_sensor"="Tank") - }, -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/horizon/engineering/atmos/air) "cLM" = ( /obj/random/dirt_75, /turf/simulated/floor/tiled/dark, @@ -20965,15 +20974,15 @@ icon_state = "dark_preview" }, /area/centcom/control) -"cNc" = ( -/obj/effect/floor_decal/industrial/hatch/operations, -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad"; - color = "#CCCCCC" +"cNe" = ( +/obj/structure/table/wood, +/obj/machinery/power/outlet, +/obj/random/pottedplant_small{ + pixel_x = 7; + pixel_y = 9 }, -/turf/simulated/floor/tiled/dark/full, -/area/supply/dock) +/turf/simulated/floor/wood, +/area/horizon/service/library) "cNg" = ( /obj/effect/floor_decal/corner/green{ dir = 9 @@ -22427,17 +22436,6 @@ }, /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/maintenance/deck_2/wing/port/nacelle) -"cWC" = ( -/obj/effect/decal/fake_object{ - density = 1; - desc = "A wooden crate containing spare parts."; - icon = 'icons/obj/containers/crate.dmi'; - icon_state = "densecrate"; - name = "mechanical supply crate"; - pixel_x = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) "cWD" = ( /obj/structure/sink{ dir = 8; @@ -22567,12 +22565,6 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"cXD" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/turf/simulated/floor/holofloor/tiled, -/area/template_noop) "cXF" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, @@ -23074,6 +23066,9 @@ /obj/machinery/vending/generic_clothing, /turf/unsimulated/floor/monotile, /area/antag/loner) +"dat" = ( +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "daB" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -25325,6 +25320,16 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/legion) +"doX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/engineering/hallway/fore) "dpa" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/visible/red, @@ -26569,12 +26574,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/mail_room) -"dwE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/horizon/engineering/hallway/fore) "dwG" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1380; @@ -27010,14 +27009,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/engineering/hallway/interior) -"dzJ" = ( -/obj/machinery/fabricator/autolathe/hacked, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/shuttle/merchant) "dzN" = ( /obj/effect/floor_decal/corner_wide/black{ dir = 9 @@ -27312,10 +27303,6 @@ }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_battlemonsters) -"dBq" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/exoplanet/plating, -/area/horizon/maintenance/deck_2/wing/starboard/near) "dBs" = ( /obj/effect/floor_decal/spline/plain{ dir = 9 @@ -28569,23 +28556,6 @@ }, /turf/simulated/floor/wood, /area/horizon/command/heads/om) -"dJy" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = -20 - }, -/obj/machinery/button/remote/blast_door{ - dir = 9; - id = "shutters_deck3_bridgesafety"; - name = "Bridge Safety Shutters"; - pixel_x = -29 - }, -/turf/simulated/floor/wood, -/area/horizon/command/bridge/minibar) "dJC" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -28897,17 +28867,6 @@ }, /turf/simulated/floor/wood, /area/merchant_station) -"dMF" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/structure/sign/waste_station{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/engineering/hallway/aft) "dMG" = ( /obj/effect/floor_decal/corner/mauve/full, /turf/simulated/floor/tiled, @@ -29682,35 +29641,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/indra/mainchamber) -"dSj" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/conveyor_switch/oneway{ - id = "QMLoad"; - pixel_x = 7; - pixel_y = 21 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/loading) "dSk" = ( /obj/structure/cable/green{ icon_state = "1-8" @@ -30487,6 +30417,13 @@ /obj/item/device/radio/intercom/east, /turf/simulated/floor/tiled/white, /area/horizon/medical/ward) +"dYl" = ( +/obj/effect/floor_decal/corner/red, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "dYm" = ( /obj/machinery/conveyor{ id = "cargo_1" @@ -30528,6 +30465,26 @@ }, /turf/simulated/floor/reinforced, /area/horizon/engineering/gravity_gen) +"dYT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/east, +/turf/simulated/floor/wood, +/area/horizon/service/library) "dYV" = ( /obj/structure/table/steel, /obj/item/paper_bin{ @@ -30885,19 +30842,6 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_gym) -"ebm" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/wing/starboard/near) "ebn" = ( /obj/structure/railing/mapped{ dir = 8 @@ -31082,26 +31026,6 @@ icon_state = "dark_preview" }, /area/centcom/control) -"ecn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/fake_object{ - density = 1; - desc = "A particularly scuffed cargo trolley."; - icon = 'icons/obj/vehicles.dmi'; - icon_state = "cargo_trailer"; - name = "cargo trailer"; - pixel_x = 1 - }, -/obj/effect/decal/fake_object{ - desc = "This one looks particularly heavy."; - icon = 'icons/obj/containers/crate.dmi'; - icon_state = "tcfl_crate_preview"; - name = "legion supply crate"; - pixel_x = 1; - pixel_y = 3 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion) "ecr" = ( /obj/effect/floor_decal/spline/plain/cee, /turf/simulated/floor/carpet/rubber, @@ -31500,13 +31424,6 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"eeI" = ( -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 8 - }, -/obj/machinery/newscaster/west, -/turf/simulated/floor/tiled, -/area/horizon/engineering/hallway/fore) "eeO" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 @@ -33837,26 +33754,6 @@ /obj/structure/sign/nosmoking_1, /turf/simulated/wall, /area/horizon/rnd/eva) -"euQ" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_1/main/starboard) "euR" = ( /obj/item/holomenu/holodeck, /turf/simulated/wall, @@ -33958,14 +33855,6 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/bluespace_drive) -"ewo" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/service, -/obj/machinery/vending/games, -/turf/simulated/floor/lino/diamond, -/area/horizon/service/library) "ewq" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 8 @@ -34248,6 +34137,35 @@ }, /turf/simulated/floor/airless, /area/horizon/hangar/operations) +"eyb" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/conveyor_switch/oneway{ + id = "QMLoad"; + pixel_x = 7; + pixel_y = 21 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) "eyc" = ( /obj/machinery/door/airlock/external, /obj/machinery/access_button{ @@ -34995,18 +34913,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/indra/mainchamber) -"eDW" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 8 - }, -/obj/structure/railing/retractable{ - dir = 4 - }, -/obj/structure/platform_deco{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hangar/operations) "eEa" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 9 @@ -35883,6 +35789,18 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/carpet/rubber, /area/horizon/engineering/atmos/turbine) +"eJf" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad" + }, +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/structure/plasticflaps, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hangar/operations) "eJh" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -35942,35 +35860,6 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"eJJ" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/wing/starboard/near) -"eJM" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/engineering/hallway/interior) "eKq" = ( /obj/effect/floor_decal/corner/lime{ dir = 8 @@ -36069,13 +35958,6 @@ }, /turf/simulated/floor/plating, /area/horizon/service/hydroponics) -"eKW" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/turf/simulated/floor/holofloor/tiled, -/area/template_noop) "eLa" = ( /obj/structure/bed/stool/chair/sofa/right/brown{ dir = 8 @@ -37619,6 +37501,15 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/brig) +"eVZ" = ( +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "eWc" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -37815,6 +37706,15 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/command/heads/xo) +"eXx" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "eXB" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5 @@ -39341,6 +39241,12 @@ /obj/machinery/light/floor, /turf/simulated/floor/tiled/full, /area/supply/dock) +"fif" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "fij" = ( /obj/structure/tank_wall{ icon_state = "m-3" @@ -40149,13 +40055,6 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/plating, /area/horizon/engineering/reactor/supermatter/airlock) -"foE" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/platform_deco{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/horizon/hangar/operations) "foJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -40194,6 +40093,18 @@ }, /turf/simulated/floor/tiled, /area/horizon/service/hydroponics) +"foM" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) "foN" = ( /obj/effect/floor_decal/corner/yellow{ dir = 10 @@ -40463,18 +40374,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/port/near) -"fqH" = ( -/obj/structure/sign/emergency/evacuation/pods{ - pixel_x = -32 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/hangar/operations) "fqO" = ( /obj/structure/railing/mapped, /obj/effect/floor_decal/corner/black{ @@ -40579,11 +40478,6 @@ }, /turf/simulated/open, /area/horizon/maintenance/deck_2/operations) -"frl" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/platform, -/turf/simulated/floor/plating, -/area/horizon/hangar/operations) "frm" = ( /obj/structure/table/reinforced/steel, /obj/item/paper_bin{ @@ -40820,6 +40714,17 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/supply/dock) +"ftI" = ( +/obj/effect/decal/fake_object{ + density = 1; + desc = "A wooden crate containing spare parts."; + icon = 'icons/obj/containers/crate.dmi'; + icon_state = "densecrate"; + name = "mechanical supply crate"; + pixel_x = 1 + }, +/turf/unsimulated/floor/plating, +/area/centcom/legion) "ftU" = ( /obj/structure/table/standard, /obj/item/autopsy_scanner{ @@ -41488,17 +41393,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/hallway) -"fzv" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad"; - color = "#CCCCCC" - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/railing/mapped, -/obj/effect/floor_decal/industrial/hatch/operations, -/turf/simulated/floor/tiled/dark/full, -/area/supply/dock) "fzw" = ( /obj/effect/decal/fake_object{ color = "#ff0000"; @@ -42095,17 +41989,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/lobby) -"fEj" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/operations, -/obj/machinery/conveyor{ - id = "cargo_1"; - color = "#CCCCCC" - }, -/turf/simulated/floor/tiled/dark/full, -/area/supply/dock) "fEm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -42567,18 +42450,6 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/atmos/air) -"fHF" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/undies_wardrobe{ - anchored = 1; - icon = 'icons/obj/containers/crate.dmi'; - icon_state = "drop_crate-grey"; - name = "underwear crate" - }, -/turf/unsimulated/floor, -/area/antag/ninja) "fHO" = ( /obj/structure/disposalpipe/sortjunction{ dir = 4; @@ -42687,6 +42558,16 @@ /obj/machinery/light_switch/east, /turf/simulated/floor/tiled, /area/horizon/engineering/lobby) +"fIG" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) "fIH" = ( /obj/random/dirt_75, /obj/random/dirt_75, @@ -42755,15 +42636,6 @@ }, /turf/unsimulated/floor, /area/centcom/distress_prep) -"fJq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hangar/operations) "fJr" = ( /obj/structure/table/reinforced/steel, /obj/random/toolbox, @@ -43439,6 +43311,33 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/gen_treatment) +"fNG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/fake_object{ + density = 1; + desc = "A secure supply crate, It carries the insignia of the Tau Ceti Foreign Legion. It appears quite scuffed."; + icon = 'icons/obj/containers/crate.dmi'; + icon_state = "tcfl_crate_preview"; + name = "foreign legion supply crate"; + pixel_x = 3; + pixel_y = 8 + }, +/obj/effect/decal/fake_object{ + desc = "A secure supply crate, It carries the insignia of the Tau Ceti Foreign Legion. It appears quite scuffed."; + icon = 'icons/obj/containers/crate.dmi'; + icon_state = "tcfl_crate_preview"; + name = "foreign legion supply crate" + }, +/obj/effect/decal/fake_object{ + desc = "A secure supply crate, It carries the insignia of the Tau Ceti Foreign Legion. It appears quite scuffed."; + icon = 'icons/obj/containers/crate.dmi'; + icon_state = "tcfl_crate_preview"; + name = "foreign legion supply crate"; + pixel_x = 2; + pixel_y = 19 + }, +/turf/unsimulated/floor, +/area/centcom/legion/hangar5) "fNI" = ( /obj/effect/floor_decal/corner/dark_green/full{ dir = 4 @@ -44487,6 +44386,15 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/lobby) +"fUm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hangar/operations) "fUq" = ( /obj/machinery/door/firedoor{ req_one_access = list(24,11,67,73); @@ -45975,17 +45883,6 @@ /obj/machinery/portable_atmospherics/canister/nitrogen/prechilled, /turf/simulated/floor/plating, /area/horizon/engineering/reactor/supermatter/mainchamber) -"gfj" = ( -/obj/effect/decal/fake_object{ - density = 1; - desc = "A wooden crate containing spare parts."; - icon = 'icons/obj/containers/crate.dmi'; - icon_state = "densecrate"; - name = "mechanical supply crate"; - pixel_x = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion) "gfk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -47992,6 +47889,16 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/rnd/xenoarch/atrium) +"gtk" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos) "gtl" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 1 @@ -48094,12 +48001,6 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, /area/horizon/hallway/primary/deck_2/central) -"gun" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/exoplanet/plating, -/area/horizon/maintenance/deck_2/wing/starboard/near) "gur" = ( /obj/structure/table/reinforced/steel, /obj/machinery/door/blast/regular{ @@ -48288,39 +48189,6 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"gvE" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/fake_object{ - name = "service ladder"; - pixel_y = 24 - }, -/obj/effect/decal/fake_object{ - density = 1; - desc = "What jerk stacked these here?"; - icon = 'icons/obj/containers/crate.dmi'; - icon_state = "tcfl_crate_preview"; - name = "inconveniently placed crate"; - pixel_x = 3; - pixel_y = 8 - }, -/obj/effect/decal/fake_object{ - desc = "What jerk stacked these here?"; - icon = 'icons/obj/containers/crate.dmi'; - icon_state = "tcfl_crate_preview"; - name = "inconveniently placed crate"; - pixel_x = 2; - pixel_y = 19 - }, -/obj/effect/decal/fake_object{ - desc = "What jerk stacked these here?"; - icon = 'icons/obj/containers/crate.dmi'; - icon_state = "tcfl_crate_preview"; - name = "inconveniently placed crate"; - pixel_x = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion) "gvG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -48479,35 +48347,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/exoplanet/plating, /area/horizon/maintenance/deck_2/wing/starboard) -"gwC" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "engineering_storage_d2"; - name = "Engineering Hard Storage"; - req_one_access = list(11,24); - pixel_x = -21; - pixel_y = 34 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/engineering/hallway/interior) "gwI" = ( /obj/random/dirt_75, /turf/simulated/floor/plating, @@ -49096,6 +48935,26 @@ }, /turf/unsimulated/floor/plating, /area/centcom/specops) +"gAA" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/operations, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/loading) "gAB" = ( /obj/effect/floor_decal/corner/brown{ dir = 9 @@ -49242,19 +49101,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/stairwell/starboard/deck_1) -"gBD" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/horizon/engineering/hallway/fore) "gBF" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -49772,13 +49618,6 @@ }, /turf/simulated/floor/tiled, /area/merchant_station) -"gFr" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/fabricator/autolathe, -/turf/simulated/floor/carpet/rubber, -/area/horizon/operations/machinist) "gFv" = ( /obj/machinery/light, /obj/effect/floor_decal/corner/dark_green{ @@ -49806,6 +49645,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/horizon/rnd/xenoarch/presentation) +"gFD" = ( +/obj/effect/floor_decal/corner/black{ + dir = 10 + }, +/obj/structure/platform_stairs, +/obj/structure/platform{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/operations) "gFJ" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 1 @@ -50636,6 +50485,21 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/security/investigations_hallway) +"gKP" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/computer/general_air_control/large_tank_control/wall{ + input_tag = "n2o_in"; + name = "Nitrous Oxide Supply Monitor"; + output_tag = "n2o_out"; + pixel_x = 32; + sensors = list("n2o_sensor"="Tank") + }, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "gKS" = ( /obj/effect/landmark/entry_point/starboard{ name = "starboard, medical head" @@ -50677,6 +50541,15 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/transport1) +"gLs" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "gLw" = ( /obj/effect/floor_decal/industrial/warning, /turf/unsimulated/floor/plating, @@ -51253,6 +51126,14 @@ }, /turf/simulated/floor/plating, /area/horizon/shuttle/canary) +"gPC" = ( +/obj/machinery/conveyor{ + id = "cargo_1"; + color = "#CCCCCC" + }, +/obj/effect/floor_decal/industrial/hatch/operations, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hangar/operations) "gPD" = ( /obj/structure/railing/mapped, /obj/effect/floor_decal/corner/dark_blue{ @@ -51830,6 +51711,15 @@ }, /turf/simulated/floor/tiled, /area/horizon/engineering/hallway/fore) +"gTW" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/sign/air_station{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/hallway/aft) "gTY" = ( /obj/effect/shuttle_landmark/research/interim, /turf/space/transit/north, @@ -53859,17 +53749,6 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/operations/mining_main/refinery) -"hhC" = ( -/obj/machinery/conveyor{ - id = "cargo_1" - }, -/obj/effect/floor_decal/industrial/hatch/operations, -/obj/structure/plasticflaps, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hangar/operations) "hhH" = ( /obj/effect/ghostspawpoint{ identifier = "NTERTSpawn"; @@ -54150,9 +54029,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/cafeteria) -"hjX" = ( -/turf/simulated/floor/holofloor/tiled, -/area/template_noop) "hka" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -54760,10 +54636,6 @@ icon_state = "dark_preview" }, /area/centcom/ferry) -"hns" = ( -/obj/machinery/fabricator/autolathe/hacked, -/turf/unsimulated/floor/plating, -/area/centcom/specops) "hnu" = ( /obj/machinery/camera/network/medbay{ c_tag = "Medical - Secondary Storage" @@ -55182,15 +55054,6 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled/full, /area/horizon/engineering/hallway/interior) -"hqj" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/mining_main/refinery) "hql" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -56146,6 +56009,15 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/hallway/primary/deck_3/central) +"hvY" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/engineering{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/hallway/fore) "hwa" = ( /obj/machinery/light{ dir = 1 @@ -56698,10 +56570,6 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled/dark, /area/horizon/security/evidence_storage) -"hzH" = ( -/obj/effect/landmark/holodeck/holocarp_spawn_pain, -/turf/simulated/floor/holofloor/tiled, -/area/template_noop) "hzN" = ( /obj/effect/shuttle_landmark/supply/horizon/start{ dir = 1 @@ -57569,12 +57437,6 @@ "hFo" = ( /turf/simulated/wall/r_wall, /area/horizon/command/heads/cmo) -"hFr" = ( -/obj/effect/floor_decal/corner{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled, -/area/template_noop) "hFu" = ( /obj/effect/floor_decal/corner/dark_blue/diagonal, /obj/structure/cable/green{ @@ -57645,6 +57507,10 @@ /obj/effect/floor_decal/industrial/warning, /turf/unsimulated/floor, /area/centcom/spawning) +"hFQ" = ( +/obj/machinery/fabricator/autolathe, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/lab) "hFU" = ( /obj/machinery/newscaster/east, /obj/effect/floor_decal/corner/dark_green{ @@ -57735,26 +57601,6 @@ "hGt" = ( /turf/simulated/wall, /area/horizon/maintenance/deck_1/medical/cryo) -"hGv" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/operations, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/loading) "hGz" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -58204,6 +58050,39 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) +"hJR" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/fake_object{ + name = "service ladder"; + pixel_y = 24 + }, +/obj/effect/decal/fake_object{ + density = 1; + desc = "What jerk stacked these here?"; + icon = 'icons/obj/containers/crate.dmi'; + icon_state = "tcfl_crate_preview"; + name = "inconveniently placed crate"; + pixel_x = 3; + pixel_y = 8 + }, +/obj/effect/decal/fake_object{ + desc = "What jerk stacked these here?"; + icon = 'icons/obj/containers/crate.dmi'; + icon_state = "tcfl_crate_preview"; + name = "inconveniently placed crate"; + pixel_x = 2; + pixel_y = 19 + }, +/obj/effect/decal/fake_object{ + desc = "What jerk stacked these here?"; + icon = 'icons/obj/containers/crate.dmi'; + icon_state = "tcfl_crate_preview"; + name = "inconveniently placed crate"; + pixel_x = 1 + }, +/turf/unsimulated/floor/plating, +/area/centcom/legion) "hJU" = ( /obj/structure/table/rack, /obj/item/device/suit_cooling_unit, @@ -58483,6 +58362,13 @@ }, /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/engineering/bluespace_drive) +"hLy" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/sign/drop{ + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/horizon/hangar/operations) "hLz" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/machinery/door/firedoor, @@ -59095,6 +58981,23 @@ }, /turf/simulated/open, /area/horizon/operations/office) +"hPs" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = -20 + }, +/obj/machinery/button/remote/blast_door{ + dir = 9; + id = "shutters_deck3_bridgesafety"; + name = "Bridge Safety Shutters"; + pixel_x = -29 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/minibar) "hPu" = ( /obj/effect/floor_decal/corner_wide/paleblue{ dir = 10 @@ -59447,6 +59350,21 @@ icon_state = "dark_preview" }, /area/centcom/control) +"hRv" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/structure/railing/retractable{ + dir = 4 + }, +/obj/machinery/light/floor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hangar/operations) "hRD" = ( /obj/machinery/conveyor_switch/oneway{ id = "warehousetomail"; @@ -59685,11 +59603,6 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/wood, /area/horizon/service/chapel/main) -"hTv" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light, -/turf/simulated/floor/plating, -/area/horizon/hangar/operations) "hTw" = ( /turf/space, /area/antag/raider) @@ -59704,14 +59617,6 @@ /obj/random/contraband, /turf/simulated/floor, /area/horizon/maintenance/deck_3/security/port) -"hTG" = ( -/obj/effect/floor_decal/corner_wide/yellow/full, -/obj/structure/extinguisher_cabinet/south, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/engineering/hallway/interior) "hTK" = ( /obj/structure/cable/green{ icon_state = "1-8" @@ -59989,6 +59894,10 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/surgery) +"hWx" = ( +/obj/machinery/fabricator/autolathe/hacked, +/turf/unsimulated/floor/plating, +/area/centcom/specops) "hWA" = ( /obj/machinery/light{ dir = 8 @@ -60322,14 +60231,6 @@ /obj/machinery/light, /turf/simulated/floor/tiled/white, /area/horizon/medical/surgery) -"hZi" = ( -/obj/effect/floor_decal/industrial/hatch/operations, -/obj/machinery/conveyor{ - id = "cargo_1"; - color = "#CCCCCC" - }, -/turf/simulated/floor/tiled/dark/full, -/area/supply/dock) "hZk" = ( /obj/machinery/light/small/emergency{ dir = 1 @@ -60995,6 +60896,15 @@ /obj/random/dirt_75, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_2/wing/port/nacelle) +"idA" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) "idB" = ( /obj/structure/cable/green{ icon_state = "2-4" @@ -61264,6 +61174,13 @@ name = "shallow water" }, /area/horizon/holodeck/source_konyang) +"ifc" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 5 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "ifh" = ( /obj/structure/cable{ icon_state = "4-8" @@ -61971,12 +61888,6 @@ }, /turf/simulated/floor/carpet, /area/horizon/repoffice/representative_one) -"ikp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/primary/deck_2/central) "ikq" = ( /obj/machinery/power/terminal{ dir = 1 @@ -63126,18 +63037,6 @@ /obj/structure/railing/mapped, /turf/simulated/floor/tiled/white, /area/horizon/medical/hallway/upper) -"isf" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad" - }, -/obj/effect/floor_decal/industrial/hatch/operations, -/obj/structure/plasticflaps, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hangar/operations) "ish" = ( /obj/effect/floor_decal/corner/red{ dir = 6 @@ -63463,6 +63362,18 @@ }, /turf/simulated/floor/carpet, /area/horizon/repoffice/consular_one) +"ius" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hangar/operations) "iuG" = ( /obj/structure/cable{ icon_state = "4-8" @@ -63629,6 +63540,12 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/wood, /area/antag/burglar) +"ivQ" = ( +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) "ivT" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -64434,6 +64351,29 @@ dir = 4 }, /area/antag/raider) +"iAA" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/main/starboard) "iAH" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/full, @@ -65170,15 +65110,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/storage/secure/ops_vault) -"iGc" = ( -/obj/machinery/fabricator/autolathe/hacked, -/obj/machinery/light/small{ - dir = 4; - name = "old light fixture"; - pixel_y = -8 - }, -/turf/simulated/floor/tiled, -/area/merchant_station/warehouse) "iGf" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 10 @@ -67272,6 +67203,16 @@ }, /turf/simulated/floor/wood, /area/horizon/service/cafeteria) +"iVC" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/item/gun/energy/mousegun/xenofauna/holo{ + pixel_x = 16 + }, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "iVF" = ( /obj/effect/floor_decal/corner_wide/grey/diagonal, /obj/machinery/vending/snack, @@ -67333,6 +67274,18 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) +"iVQ" = ( +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) "iVS" = ( /obj/effect/floor_decal/corner/dark_blue/full, /obj/effect/floor_decal/industrial/outline/grey, @@ -68513,26 +68466,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"jet" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/east, -/turf/simulated/floor/wood, -/area/horizon/service/library) "jeu" = ( /turf/unsimulated/floor/plating, /area/centcom/distress_prep) @@ -68566,6 +68499,15 @@ }, /turf/unsimulated/floor, /area/centcom/holding) +"jeP" = ( +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad"; + color = "#CCCCCC" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hangar/operations) "jeR" = ( /obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ id = "XO" @@ -69516,6 +69458,11 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/break_room) +"jkV" = ( +/obj/random/junk, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/exoplanet/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) "jkX" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/structure/bed/stool/chair, @@ -71271,21 +71218,6 @@ }, /turf/simulated/floor/reinforced, /area/horizon/rnd/xenoarch/isolation_b) -"jxU" = ( -/obj/machinery/computer/general_air_control/large_tank_control/wall{ - input_tag = "o2_in"; - name = "Oxygen Supply Monitor"; - output_tag = "o2_out"; - pixel_x = -32; - sensors = list("o2_sensor"="Tank") - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/horizon/engineering/atmos/air) "jya" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/fake_object{ @@ -71489,6 +71421,15 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/horizon/operations/office) +"jzk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hangar/operations) "jzl" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -71800,6 +71741,15 @@ }, /turf/simulated/floor/wood, /area/horizon/security/meeting_room) +"jBt" = ( +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/structure/railing/retractable, +/obj/machinery/conveyor{ + id = "cargo_1"; + color = "#CCCCCC" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hangar/operations) "jBu" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -73490,6 +73440,12 @@ }, /turf/simulated/floor/wood, /area/horizon/command/heads/rd) +"jNV" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "jOb" = ( /obj/structure/cable{ icon_state = "1-2" @@ -75748,6 +75704,11 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/wing/starboard/far) +"kcu" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light, +/turf/simulated/floor/plating, +/area/horizon/hangar/operations) "kcv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -76713,19 +76674,6 @@ /obj/effect/floor_decal/industrial/outline/emergency_closet, /turf/simulated/floor/tiled/dark, /area/horizon/hallway/primary/deck_3/central) -"kiq" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/wing/starboard/near) "kiI" = ( /obj/structure/cable{ icon_state = "4-8" @@ -77089,16 +77037,6 @@ /obj/effect/floor_decal/sign/w, /turf/simulated/floor/tiled/white, /area/horizon/medical/hallway) -"kkZ" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/structure/window/reinforced/holowindow{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled, -/area/template_noop) "kle" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -77203,12 +77141,6 @@ /obj/structure/window/reinforced, /turf/simulated/floor/wood, /area/horizon/command/bridge/upperdeck) -"klL" = ( -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/holofloor/tiled, -/area/template_noop) "klO" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/machinery/light/small{ @@ -77549,18 +77481,6 @@ }, /turf/simulated/floor/shuttle/dark_blue, /area/horizon/shuttle/escape_pod/pod1) -"knx" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/hangar/operations) "knA" = ( /obj/machinery/alarm/south, /obj/structure/lattice/catwalk/indoor/grate/dark, @@ -78071,22 +77991,6 @@ /obj/item/device/radio/intercom/east, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_2/central) -"krp" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/wing/starboard/near) "krr" = ( /obj/effect/map_effect/window_spawner/full/borosilicate/reinforced, /turf/simulated/floor/tiled/dark/full, @@ -79156,6 +79060,13 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion/hangar5) +"kxW" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/optable/robotics, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist/surgicalbay) "kxX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -79394,6 +79305,17 @@ }, /turf/simulated/floor/plating, /area/horizon/service/hydroponics) +"kzi" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/machinery/conveyor{ + id = "cargo_1"; + color = "#CCCCCC" + }, +/turf/simulated/floor/tiled/dark/full, +/area/supply/dock) "kzo" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "Heavy Asset Protection"; @@ -82764,6 +82686,12 @@ /obj/item/clothing/shoes/magboots, /turf/simulated/floor/tiled/dark, /area/horizon/storage/eva) +"kVW" = ( +/obj/structure/sign/radiation{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) "kWf" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -82793,18 +82721,6 @@ /obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, /turf/simulated/floor/plating, /area/horizon/engineering/bluespace_drive/monitoring) -"kWm" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/door/window/holowindoor{ - base_state = "right"; - icon_state = "right"; - name = "Safety Box" - }, -/turf/simulated/floor/holofloor/tiled, -/area/template_noop) "kWv" = ( /obj/machinery/firealarm/north, /obj/structure/bed/handrail, @@ -82873,6 +82789,18 @@ }, /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"kWP" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/structure/bed/stool/chair/folding{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) "kWS" = ( /obj/structure/bed/stool/padded/brown{ dir = 1 @@ -84234,14 +84162,6 @@ /obj/structure/lattice, /turf/simulated/open, /area/horizon/maintenance/deck_2/service/port) -"leY" = ( -/obj/structure/table/wood, -/obj/machinery/recharger{ - pixel_x = -3; - pixel_y = 2 - }, -/turf/simulated/floor/wood, -/area/horizon/service/library) "lfa" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -86674,6 +86594,16 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) +"lvy" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/railing/mapped, +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/machinery/conveyor{ + id = "cargo_1"; + color = "#CCCCCC" + }, +/turf/simulated/floor/tiled/dark/full, +/area/supply/dock) "lvz" = ( /obj/effect/floor_decal/industrial/outline/grey, /obj/random/dirt_75, @@ -86780,6 +86710,18 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/supermatter/mainchamber) +"lwn" = ( +/obj/machinery/conveyor{ + dir = 9; + id = "QMLoad"; + reversed = 1 + }, +/obj/machinery/status_display/supply_display{ + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/hatch/operations, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/loading) "lwq" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -87251,13 +87193,6 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/atmos/air) -"lzO" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/horizon/service/library) "lzP" = ( /obj/machinery/light{ dir = 8 @@ -87531,25 +87466,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/office) -"lBJ" = ( -/obj/structure/table/reinforced, -/obj/item/storage/pill_bottle/dice{ - pixel_y = -4; - pixel_x = 7 - }, -/obj/item/deck/cards{ - pixel_y = -1; - pixel_x = -7 - }, -/obj/item/book/manual/wiki/security_space_law{ - pixel_y = -18; - pixel_x = -4 - }, -/obj/machinery/power/outlet{ - pixel_y = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/security/brig) "lBL" = ( /obj/machinery/porta_turret, /obj/effect/floor_decal/industrial/warning/full, @@ -87592,12 +87508,6 @@ }, /turf/unsimulated/floor/rubber_carpet, /area/centcom/control) -"lCd" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/exoplanet/plating, -/area/horizon/maintenance/deck_2/wing/starboard/near) "lCj" = ( /obj/structure/railing/mapped{ dir = 4 @@ -88233,11 +88143,6 @@ /obj/effect/floor_decal/industrial/hatch_door/yellow, /turf/simulated/floor/tiled/full, /area/horizon/crew/resdeck/living_quarters_lift) -"lGs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/full, -/area/horizon/engineering/hallway/fore) "lGt" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -88712,6 +88617,15 @@ /obj/structure/platform_stairs, /turf/simulated/floor, /area/horizon/maintenance/deck_2/wing/port/far) +"lJs" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) "lJu" = ( /obj/effect/floor_decal/corner/dark_blue/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -90742,6 +90656,20 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_2/starboard) +"lZj" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/fabricator/autolathe, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/light_switch/north{ + pixel_x = -6 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) "lZk" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -90830,6 +90758,18 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/rnd/xenoarch/storage) +"lZR" = ( +/obj/structure/sign/emergency/evacuation/pods{ + pixel_x = -32 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) "lZY" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -91126,13 +91066,6 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/engineering/hallway/fore) -"mbX" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/sign/drop{ - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/horizon/hangar/operations) "mbY" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -91905,21 +91838,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/auxatmos) -"mhc" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hangar/operations) "mhg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -93118,16 +93036,6 @@ /obj/structure/bed/stool/chair/padded/beige, /turf/simulated/floor/wood, /area/horizon/command/bridge/minibar) -"mpL" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/railing/mapped, -/obj/effect/floor_decal/industrial/hatch/operations, -/obj/machinery/conveyor{ - id = "cargo_1"; - color = "#CCCCCC" - }, -/turf/simulated/floor/tiled/dark/full, -/area/supply/dock) "mpM" = ( /obj/effect/floor_decal/spline/plain/corner, /obj/effect/floor_decal/corner/red/diagonal, @@ -94304,6 +94212,16 @@ /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_wildlife) +"mxX" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/hallway/fore) "mxY" = ( /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/port/nacelle) @@ -94400,6 +94318,13 @@ icon_state = "dark_preview" }, /area/centcom/holding) +"myP" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "myR" = ( /obj/structure/table/standard, /obj/structure/closet/crate/plastic{ @@ -95466,26 +95391,6 @@ }, /turf/simulated/wall/r_wall, /area/horizon/rnd/xenobiology/xenoflora) -"mGH" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/main/starboard) "mGV" = ( /obj/effect/landmark/entry_point/port{ name = "port, rear" @@ -95761,11 +95666,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/shuttle/intrepid/port_compartment) -"mIH" = ( -/obj/random/junk, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/exoplanet/plating, -/area/horizon/maintenance/deck_2/wing/starboard/near) "mIQ" = ( /obj/effect/floor_decal/corner/dark_blue/full, /obj/machinery/firealarm/south, @@ -97862,18 +97762,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_2/central) -"mYI" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/machinery/light/floor{ - dir = 1 - }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/rnd/conference) "mYJ" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -97958,6 +97846,16 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_1/medical/cryo) +"mZd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hangar/operations) "mZg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -98794,6 +98692,14 @@ }, /turf/simulated/floor/reinforced, /area/horizon/command/bridge/controlroom) +"nek" = ( +/obj/effect/floor_decal/corner_wide/yellow/full, +/obj/structure/extinguisher_cabinet/south, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/interior) "nem" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -99146,10 +99052,6 @@ "ngB" = ( /turf/simulated/wall/r_wall, /area/horizon/ai/upload_foyer) -"ngK" = ( -/obj/effect/floor_decal/corner/red/full, -/turf/simulated/floor/holofloor/tiled, -/area/template_noop) "ngL" = ( /obj/structure/cable{ icon_state = "1-4" @@ -99884,15 +99786,6 @@ /obj/effect/map_effect/marker_helper/airlock/exterior, /turf/simulated/floor/plating, /area/horizon/engineering/atmos/propulsion) -"nmz" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/effect/floor_decal/industrial/outline/red, -/obj/structure/sign/air_station{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/engineering/hallway/aft) "nmC" = ( /obj/structure/platform/ledge, /obj/structure/platform/ledge{ @@ -100320,15 +100213,6 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/atmos/air) -"nqi" = ( -/obj/structure/window/reinforced/holowindow{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/holofloor/tiled, -/area/template_noop) "nqj" = ( /obj/effect/floor_decal/corner/mauve{ dir = 5 @@ -100457,6 +100341,16 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/engineering/hallway/interior) +"nrp" = ( +/obj/effect/floor_decal/corner/black{ + dir = 10 + }, +/obj/structure/platform_stairs, +/obj/structure/platform{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/operations) "nrt" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /turf/unsimulated/floor/plating, @@ -100964,6 +100858,23 @@ /obj/item/material/folding_table, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_2/wing/port/nacelle) +"nuD" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) "nuK" = ( /obj/effect/floor_decal/corner/dark_green/full{ dir = 4 @@ -101531,21 +101442,24 @@ }, /turf/simulated/floor/tiled, /area/horizon/crew/fitness/changing) +"nzd" = ( +/obj/effect/floor_decal/corner_wide/yellow/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/interior) "nzg" = ( /obj/structure/cable/green{ icon_state = "2-4" }, /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/command/bridge/controlroom) -"nzh" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/exoplanet/plating, -/area/horizon/maintenance/deck_2/wing/starboard/near) "nzj" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -101632,18 +101546,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/hallway/fore) -"nzT" = ( -/obj/machinery/conveyor{ - dir = 9; - id = "QMLoad"; - reversed = 1 - }, -/obj/machinery/status_display/supply_display{ - pixel_y = 32 - }, -/obj/effect/floor_decal/industrial/hatch/operations, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/loading) "nzV" = ( /obj/structure/railing/mapped{ dir = 1 @@ -102322,14 +102224,6 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard) -"nDX" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/structure/window/reinforced/holowindow, -/turf/simulated/floor/holofloor/tiled, -/area/template_noop) "nEe" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 5 @@ -103158,15 +103052,6 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"nJA" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/engineering/hallway/fore) "nJK" = ( /obj/structure/table/rack, /obj/item/clothing/shoes/magboots, @@ -103464,10 +103349,6 @@ /obj/structure/foamedmetal, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/auxatmos) -"nLp" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/primary/deck_2/central) "nLs" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -103763,6 +103644,24 @@ }, /turf/simulated/floor/plating, /area/horizon/hangar/intrepid) +"nNj" = ( +/obj/machinery/conveyor{ + id = "cargo_1" + }, +/obj/machinery/door/firedoor, +/obj/structure/plasticflaps, +/obj/machinery/door/airlock/external{ + dir = 1; + frequency = 1380; + icon_state = "door_locked"; + id_tag = "cargo_shuttle_dock_airlock"; + locked = 1; + name = "Cargo Shuttle"; + req_access = list(13,31) + }, +/obj/effect/floor_decal/industrial/hatch/operations, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/loading) "nNk" = ( /obj/machinery/power/terminal, /obj/machinery/power/sensor{ @@ -104178,30 +104077,6 @@ }, /turf/simulated/floor/plating, /area/horizon/service/bar) -"nQH" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "shutters_deck3_bridgesafety"; - name = "Safety Shutter" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/horizon/command/bridge/meeting_room) "nQJ" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -104570,6 +104445,21 @@ "nTu" = ( /turf/simulated/wall/r_wall, /area/horizon/service/kitchen/freezer) +"nTD" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) "nTE" = ( /obj/effect/floor_decal/industrial/warning/corner, /obj/effect/floor_decal/industrial/warning, @@ -104948,16 +104838,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/checkpoint2) -"nWr" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/obj/structure/window/reinforced/holowindow{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled, -/area/template_noop) "nWM" = ( /obj/effect/floor_decal/corner/dark_blue/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -105727,15 +105607,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/shuttle/intrepid/medical) -"ocj" = ( -/obj/effect/floor_decal/industrial/hatch/operations, -/obj/structure/railing/retractable, -/obj/machinery/conveyor{ - id = "cargo_1"; - color = "#CCCCCC" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hangar/operations) "ocl" = ( /obj/effect/floor_decal/industrial/outline/service, /obj/machinery/vending/hydronutrients/hydroponics, @@ -105849,6 +105720,10 @@ /obj/machinery/power/apc/shuttle/east, /turf/simulated/floor/tiled/dark/full, /area/horizon/shuttle/intrepid/starboard_compartment) +"odq" = ( +/obj/effect/decal/fake_object/light_source/invisible, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "odx" = ( /obj/machinery/door/blast/shutters{ dir = 2; @@ -106069,6 +105944,21 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) +"oex" = ( +/obj/machinery/computer/general_air_control/large_tank_control/wall{ + input_tag = "o2_in"; + name = "Oxygen Supply Monitor"; + output_tag = "o2_out"; + pixel_x = -32; + sensors = list("o2_sensor"="Tank") + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "oey" = ( /obj/machinery/light/small/emergency, /obj/structure/table/rack, @@ -106272,12 +106162,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/command/bridge/controlroom) -"ofM" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/holofloor/tiled, -/area/template_noop) "ofO" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/light{ @@ -106546,6 +106430,18 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/hallway) +"ohn" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/undies_wardrobe{ + anchored = 1; + icon = 'icons/obj/containers/crate.dmi'; + icon_state = "drop_crate-grey"; + name = "underwear crate" + }, +/turf/unsimulated/floor, +/area/antag/ninja) "ohs" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 @@ -106731,15 +106627,6 @@ }, /turf/unsimulated/floor/plating, /area/centcom/specops) -"oiJ" = ( -/obj/structure/table/wood, -/obj/machinery/power/outlet, -/obj/random/pottedplant_small{ - pixel_x = 7; - pixel_y = 9 - }, -/turf/simulated/floor/wood, -/area/horizon/service/library) "oiO" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -106987,6 +106874,17 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/checkpoint) +"oks" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad"; + color = "#CCCCCC" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/railing/mapped, +/obj/effect/floor_decal/industrial/hatch/operations, +/turf/simulated/floor/tiled/dark/full, +/area/supply/dock) "okw" = ( /turf/simulated/wall, /area/horizon/maintenance/substation/wing_port) @@ -107141,6 +107039,10 @@ icon_state = "wood" }, /area/centcom/bar) +"olH" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/central) "olJ" = ( /obj/item/reagent_containers/food/condiment/flour{ pixel_x = -4; @@ -107175,6 +107077,18 @@ icon_state = "carpet" }, /area/centcom/specops) +"olP" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/structure/railing/retractable{ + dir = 4 + }, +/obj/structure/platform_deco{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hangar/operations) "olR" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -107363,6 +107277,25 @@ }, /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/hallway/primary/deck_3/port/docks) +"onr" = ( +/obj/structure/table/reinforced, +/obj/item/storage/pill_bottle/dice{ + pixel_y = -4; + pixel_x = 7 + }, +/obj/item/deck/cards{ + pixel_y = -1; + pixel_x = -7 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_y = -18; + pixel_x = -4 + }, +/obj/machinery/power/outlet{ + pixel_y = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/security/brig) "onB" = ( /obj/effect/decal/fake_object{ color = "#545c68"; @@ -107825,6 +107758,15 @@ density = 1 }, /area/antag/ninja) +"oqp" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/interior) "oqq" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor{ @@ -108145,6 +108087,16 @@ /obj/structure/table/rack/retail_shelf, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/hydroponics) +"orZ" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) "osc" = ( /obj/structure/cable{ icon_state = "4-8" @@ -108783,12 +108735,6 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) -"own" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/holofloor/tiled, -/area/template_noop) "owr" = ( /obj/machinery/light{ dir = 8 @@ -108930,18 +108876,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/port/docks) -"oxy" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/light/floor{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/loading) "oxB" = ( /obj/machinery/cryopod{ dir = 1 @@ -108954,10 +108888,6 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"oxD" = ( -/obj/machinery/fabricator/autolathe, -/turf/simulated/floor/carpet/rubber, -/area/horizon/rnd/lab) "oxI" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 7 @@ -109447,6 +109377,12 @@ dir = 8 }, /area/antag/burglar) +"oAH" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/exoplanet/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) "oAJ" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/engineering/bluespace_drive) @@ -109562,6 +109498,12 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/atmos/storage) +"oCa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/central) "oCb" = ( /obj/effect/map_effect/perma_light/starlight, /turf/space, @@ -111435,22 +111377,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/meeting_room) -"oOk" = ( -/obj/effect/floor_decal/corner/yellow, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - name = "Connectors to BSD Storage" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/sign/nosmoking_1{ - pixel_y = -32 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/horizon/engineering/atmos) "oOn" = ( /obj/machinery/firealarm/west, /obj/effect/floor_decal/spline/fancy/wood{ @@ -111972,18 +111898,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hangar/intrepid) -"oRW" = ( -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/engineering/hallway/interior) "oSd" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -112223,6 +112137,12 @@ }, /turf/simulated/floor/plating, /area/horizon/shuttle/intrepid/buffet) +"oTj" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "oTk" = ( /obj/structure/table/standard{ no_cargo = 1 @@ -114304,15 +114224,6 @@ /obj/effect/spider/stickyweb, /turf/simulated/floor/exoplanet/barren/raskara, /area/centcom/shared_dream) -"pik" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hangar/operations) "pin" = ( /obj/item/banhammer, /obj/structure/table/rack, @@ -115075,6 +114986,15 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard) +"pnB" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "pnD" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -115335,6 +115255,29 @@ /obj/effect/step_trigger/thrower/shuttle/southeast, /turf/template_noop, /area/template_noop) +"ppn" = ( +/obj/structure/table/wood, +/obj/random/pottedplant_small{ + pixel_x = -3; + pixel_y = 12 + }, +/obj/machinery/button/switch/windowtint{ + id = "library"; + pixel_x = 7; + pixel_y = -1; + dir = 10 + }, +/obj/item/material/ashtray/bronze{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/machinery/light_switch{ + dir = 10; + pixel_y = -1; + pixel_x = -2 + }, +/turf/simulated/floor/carpet/red, +/area/horizon/service/library) "ppx" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -115720,18 +115663,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/indra/mainchamber) -"psv" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hangar/operations) "psx" = ( /obj/structure/lattice/catwalk/indoor, /obj/machinery/light{ @@ -118267,21 +118198,6 @@ /obj/random/dirt_75, /turf/simulated/floor, /area/horizon/maintenance/deck_3/security/port) -"pKI" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 8 - }, -/obj/structure/railing/retractable{ - dir = 4 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/machinery/light/floor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hangar/operations) "pKO" = ( /obj/effect/floor_decal/corner_wide/green{ dir = 6 @@ -120001,15 +119917,6 @@ }, /turf/simulated/floor/plating, /area/horizon/shuttle/quark/cargo_hold) -"pXi" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/engineering/hallway/fore) "pXm" = ( /obj/structure/closet/gimmick{ name = "emergency response team wardrobe" @@ -120145,6 +120052,19 @@ /obj/random/dirt_75, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/port/nacelle) +"pXS" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) "pYd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/steel, @@ -120511,15 +120431,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/hangar/port) -"qbi" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 8 - }, -/obj/structure/window/reinforced/holowindow{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled, -/area/template_noop) "qbj" = ( /obj/effect/floor_decal/industrial/warning/full, /obj/machinery/door/blast/regular/open{ @@ -121117,6 +121028,12 @@ /obj/structure/window/reinforced/holowindow, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_gym) +"qfz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/exoplanet/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) "qfB" = ( /obj/machinery/light/colored/red, /turf/simulated/floor/shuttle/dark_red, @@ -121524,23 +121441,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/command/bridge/controlroom) -"qiq" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/machinery/light_switch{ - dir = 5; - pixel_x = -26 - }, -/obj/machinery/button/remote/blast_door{ - dir = 9; - id = "shutters_deck3_bridgesafety"; - name = "Bridge Safety Shutters"; - pixel_x = -26; - pixel_y = 8 - }, -/turf/simulated/floor/carpet, -/area/horizon/command/bridge/meeting_room) "qix" = ( /obj/structure/platform_deco{ dir = 1 @@ -121771,6 +121671,16 @@ }, /turf/unsimulated/floor, /area/centcom/bar) +"qkP" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hangar/operations) "qkQ" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -122029,6 +121939,16 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/transport1) +"qlY" = ( +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/structure/railing/retractable, +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad"; + color = "#CCCCCC" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hangar/operations) "qmb" = ( /obj/structure/bed/stool/chair/office/dark{ dir = 4 @@ -122183,6 +122103,13 @@ /obj/effect/floor_decal/industrial/outline/service, /turf/simulated/floor/lino, /area/horizon/service/bar) +"qmO" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/fabricator/autolathe, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist) "qmR" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -122500,6 +122427,19 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/ai/upload_foyer) +"qoO" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) "qoS" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 @@ -122603,13 +122543,6 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/service/kitchen) -"qpL" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 5 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/horizon/engineering/atmos/air) "qpS" = ( /obj/structure/foamedmetal, /turf/simulated/floor/plating, @@ -123148,6 +123081,21 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/hallway/primary/deck_3/central) +"qub" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/interrogation) "qud" = ( /obj/structure/cable{ icon_state = "4-8" @@ -123161,6 +123109,18 @@ }, /turf/unsimulated/floor, /area/antag/loner) +"qug" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/structure/railing/retractable{ + dir = 8 + }, +/obj/machinery/light/floor{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hangar/operations) "quj" = ( /obj/machinery/door/blast/regular{ id = "thunderdomegen"; @@ -124687,6 +124647,14 @@ }, /turf/simulated/floor/carpet/rubber, /area/horizon/tcommsat/chamber) +"qFE" = ( +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/machinery/conveyor{ + id = "cargo_1"; + color = "#CCCCCC" + }, +/turf/simulated/floor/tiled/dark/full, +/area/supply/dock) "qFG" = ( /obj/effect/floor_decal/corner/brown{ dir = 10 @@ -124925,6 +124893,12 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) +"qGR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/engineering/hallway/fore) "qGX" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -125357,19 +125331,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/rnd/test_range) -"qJQ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/horizon/engineering/hallway/fore) "qJU" = ( /obj/effect/floor_decal/industrial/outline/service, /turf/simulated/floor/tiled/gunmetal/full, @@ -126632,10 +126593,6 @@ "qSj" = ( /turf/simulated/floor/plating, /area/horizon/engineering/bluespace_drive) -"qSk" = ( -/obj/machinery/fabricator/autolathe/hacked, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) "qSq" = ( /obj/structure/cable{ icon_state = "1-2" @@ -127242,6 +127199,22 @@ }, /turf/simulated/floor/tiled, /area/horizon/service/custodial/auxiliary) +"qWU" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) "qWX" = ( /obj/effect/floor_decal/corner/red{ dir = 5 @@ -127371,18 +127344,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/rnd/hallway) -"qXG" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/structure/bed/stool/chair/folding{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/hangar/operations) "qXH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -128171,6 +128132,13 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/supermatter/mainchamber) +"rde" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "rdf" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/plating, @@ -128570,6 +128538,22 @@ "rfC" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/maintenance/deck_1/wing/starboard/far) +"rfM" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) "rgd" = ( /obj/effect/floor_decal/corner/dark_green/diagonal, /obj/structure/disposalpipe/segment{ @@ -129232,6 +129216,22 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/gravity_gen) +"rkp" = ( +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Connectors to BSD Storage" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/sign/nosmoking_1{ + pixel_y = -32 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) "rks" = ( /obj/structure/table/standard, /obj/item/device/binoculars, @@ -129270,6 +129270,12 @@ "rkE" = ( /turf/simulated/wall, /area/horizon/maintenance/deck_3/aft/holodeck) +"rkG" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "rkL" = ( /obj/effect/floor_decal/corner/white{ dir = 5 @@ -131042,24 +131048,6 @@ /obj/machinery/power/apc/north, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/starboard/docks) -"rvZ" = ( -/obj/machinery/conveyor{ - id = "cargo_1" - }, -/obj/machinery/door/firedoor, -/obj/structure/plasticflaps, -/obj/machinery/door/airlock/external{ - dir = 1; - frequency = 1380; - icon_state = "door_locked"; - id_tag = "cargo_shuttle_dock_airlock"; - locked = 1; - name = "Cargo Shuttle"; - req_access = list(13,31) - }, -/obj/effect/floor_decal/industrial/hatch/operations, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/loading) "rwi" = ( /obj/structure/cable{ icon_state = "1-2" @@ -131353,6 +131341,15 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/horizon/engineering/reactor/indra/mainchamber) +"rya" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) "ryc" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -131647,22 +131644,6 @@ /obj/machinery/meter, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/hydroponics) -"rzM" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch_door/yellow{ - dir = 8 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/wing/starboard/near) "rzO" = ( /obj/random/junk, /obj/effect/floor_decal/industrial/outline/grey, @@ -132111,22 +132092,6 @@ /obj/item/storage/slide_projector, /turf/simulated/floor/carpet, /area/horizon/command/heads/captain) -"rDG" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/wing/starboard/near) "rDL" = ( /obj/effect/floor_decal/spline/plain/corner, /turf/simulated/floor/exoplanet/barren/raskara, @@ -133137,35 +133102,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/horizon/medical/hallway) -"rKQ" = ( -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/structure/window/shuttle/scc_space_ship, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "shutters_deck3_bridgesafety"; - name = "Safety Shutter" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor, -/area/horizon/command/bridge/meeting_room) "rKR" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -134530,11 +134466,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/evidence_storage) -"rST" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/alarm/west, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/aft) "rSV" = ( /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard/far) @@ -134949,16 +134880,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/central) -"rVr" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow, -/turf/simulated/floor/tiled/dark, -/area/horizon/engineering/atmos) "rVy" = ( /obj/structure/stairs_railing{ dir = 8 @@ -135981,6 +135902,10 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/full, /area/horizon/maintenance/deck_2/wing/starboard/near) +"sdq" = ( +/obj/machinery/fabricator/autolathe/hacked, +/turf/unsimulated/floor, +/area/centcom/legion/hangar5) "sdr" = ( /obj/machinery/door/firedoor{ req_one_access = list(24,11,67,73) @@ -136404,6 +136329,13 @@ /obj/structure/lattice, /turf/space, /area/horizon/exterior) +"sgv" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "sgw" = ( /obj/structure/table/standard, /obj/machinery/firealarm/east, @@ -138452,21 +138384,6 @@ /obj/effect/floor_decal/spline/plain, /turf/unsimulated/floor/plating, /area/centcom/bar) -"sug" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/machinery/computer/general_air_control/large_tank_control/wall{ - input_tag = "mixed_2_in"; - name = "Exhaust Gas Tank Monitor"; - output_tag = "mixed_2_out"; - sensors = list("mixed_2_sensor"="Tank"); - pixel_x = 32 - }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/horizon/engineering/atmos/air) "suh" = ( /obj/structure/cart/storage/janitorialcart{ dir = 4 @@ -138547,6 +138464,30 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) +"suW" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id = "shutters_deck3_bridgesafety"; + name = "Safety Shutter" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/horizon/command/bridge/meeting_room) "suX" = ( /obj/structure/bed/stool/chair/office/dark, /turf/simulated/floor/tiled/gunmetal, @@ -139629,16 +139570,6 @@ /obj/structure/girder, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/port/far) -"sBh" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/engineering/atmos) "sBi" = ( /obj/machinery/atmospherics/pipe/tank/air, /obj/effect/floor_decal/industrial/outline/yellow, @@ -139792,6 +139723,13 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard) +"sBW" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/horizon/service/library) "sBZ" = ( /obj/machinery/stargazer, /obj/effect/floor_decal/spline/plain/corner{ @@ -141878,6 +141816,14 @@ }, /turf/simulated/floor/carpet/rubber, /area/horizon/engineering/reactor/indra/monitoring) +"sPP" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/service, +/obj/machinery/vending/games, +/turf/simulated/floor/lino/diamond, +/area/horizon/service/library) "sQb" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/service/chapel/office) @@ -142604,6 +142550,18 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) +"sVD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad"; + color = "#CCCCCC" + }, +/turf/simulated/floor/tiled/dark/full, +/area/supply/dock) "sVE" = ( /obj/structure/table/reinforced/steel, /obj/item/gun/custom_ka/frame01/illegal{ @@ -142754,31 +142712,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/horizon/rnd/xenobiology/xenoflora) -"sWE" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "shutters_deck3_bridgesafety"; - name = "Safety Shutter" - }, -/turf/simulated/floor/plating, -/area/horizon/command/bridge/meeting_room) "sWJ" = ( /obj/structure/stairs_railing{ dir = 8 @@ -144215,35 +144148,6 @@ /obj/structure/table/wood, /turf/unsimulated/floor/wood, /area/centcom/specops) -"tgX" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - id = "hangarlockdown"; - name = "Hangar Lockdown" - }, -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_one_access = list(12,63) - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow, -/obj/machinery/door/blast/regular/open{ - id = "hangarlockdown"; - name = "Hangar Lockdown" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/maintenance/deck_1/wing/port/far) "tgZ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -144814,6 +144718,17 @@ /obj/machinery/power/apc/low/east, /turf/simulated/floor/carpet/rubber, /area/horizon/rnd/xenoarch/spectrometry) +"tlr" = ( +/obj/effect/decal/fake_object{ + density = 1; + desc = "A wooden crate containing spare parts."; + icon = 'icons/obj/containers/crate.dmi'; + icon_state = "densecrate"; + name = "mechanical supply crate"; + pixel_x = 1 + }, +/turf/unsimulated/floor/plating, +/area/centcom/legion/hangar5) "tly" = ( /obj/structure/cable{ icon_state = "1-2" @@ -145437,6 +145352,19 @@ /obj/structure/table/wood, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_meetinghall) +"tpF" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/engineering/hallway/fore) "tpK" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -145877,6 +145805,21 @@ /obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/research) +"trP" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/computer/general_air_control/large_tank_control/wall{ + input_tag = "mixed_2_in"; + name = "Exhaust Gas Tank Monitor"; + output_tag = "mixed_2_out"; + sensors = list("mixed_2_sensor"="Tank"); + pixel_x = 32 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "trQ" = ( /obj/machinery/light/small{ dir = 8 @@ -146941,6 +146884,12 @@ /obj/structure/disposalpipe/junction/yjunction, /turf/simulated/floor/tiled, /area/horizon/service/hydroponics) +"tyN" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "tyQ" = ( /obj/structure/bed/stool/chair/sofa/red{ dir = 4 @@ -149021,20 +148970,6 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"tNC" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/fabricator/autolathe, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/light_switch/north{ - pixel_x = -6 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/office) "tNI" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -149171,6 +149106,13 @@ /obj/structure/sign/flag/scc, /turf/simulated/floor/wood, /area/horizon/security/meeting_room) +"tOR" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/platform_deco{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/hangar/operations) "tOS" = ( /obj/structure/trash_pile, /obj/effect/floor_decal/industrial/warning{ @@ -149431,6 +149373,14 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/stairwell/engineering/deck_2) +"tRg" = ( +/obj/structure/table/wood, +/obj/machinery/recharger{ + pixel_x = -3; + pixel_y = 2 + }, +/turf/simulated/floor/wood, +/area/horizon/service/library) "tRj" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ dir = 4 @@ -149765,6 +149715,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/full, /area/horizon/hallway/primary/deck_2/central) +"tTx" = ( +/obj/effect/floor_decal/corner_wide/yellow/full{ + dir = 8 + }, +/obj/machinery/newscaster/west, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) "tTE" = ( /obj/structure/table/reinforced/steel, /obj/item/toy/desk/fan{ @@ -150880,12 +150837,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_2/wing/port/nacelle) -"ubX" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/aft) "ubZ" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/camera/network/reactor{ @@ -151152,6 +151103,15 @@ }, /turf/simulated/floor/tiled, /area/horizon/service/custodial/auxiliary) +"udO" = ( +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad"; + color = "#CCCCCC" + }, +/turf/simulated/floor/tiled/dark/full, +/area/supply/dock) "udQ" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/closet, @@ -151177,6 +151137,18 @@ }, /turf/simulated/floor/tiled, /area/horizon/rnd/hallway/secondary) +"udW" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/light/floor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) "uee" = ( /obj/effect/decal/fake_object/light_source/invisible{ light_color = "#64C864"; @@ -151211,12 +151183,6 @@ }, /turf/unsimulated/floor, /area/centcom/evac) -"uen" = ( -/obj/effect/floor_decal/corner{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled, -/area/template_noop) "uez" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/maintenance/deck_3/security/port) @@ -151250,13 +151216,17 @@ }, /turf/simulated/floor, /area/horizon/maintenance/deck_3/aft/holodeck) -"ufj" = ( -/obj/machinery/conveyor{ - id = "cargo_1"; - color = "#CCCCCC" +"ufb" = ( +/obj/structure/sign/emergency/evacuation{ + dir = 8 }, -/obj/effect/floor_decal/industrial/hatch/operations, -/turf/simulated/floor/tiled/dark/full, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, /area/horizon/hangar/operations) "ufk" = ( /obj/structure/sign/directions/civ{ @@ -151296,13 +151266,6 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/shuttle/merchant) -"ufs" = ( -/obj/effect/floor_decal/industrial/hatch_door/yellow{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/maintenance/deck_2/aft) "ufu" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/cable/green{ @@ -151950,15 +151913,6 @@ /obj/structure/window/shuttle/scc_space_ship/cardinal, /turf/simulated/floor/plating, /area/shuttle/merchant) -"ujA" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch_door/engineering{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/engineering/hallway/fore) "ujB" = ( /obj/structure/bed/stool/chair/office/light{ dir = 4 @@ -151999,15 +151953,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos/turbine) -"ujM" = ( -/obj/effect/floor_decal/industrial/hatch/operations, -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad"; - color = "#CCCCCC" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hangar/operations) "ujO" = ( /turf/simulated/wall, /area/horizon/engineering/atmos/storage) @@ -152260,25 +152205,6 @@ "ulv" = ( /turf/simulated/floor/tiled, /area/horizon/engineering/hallway/interior) -"ulB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad" - }, -/obj/structure/plasticflaps, -/obj/machinery/door/airlock/external{ - dir = 1; - frequency = 1380; - icon_state = "door_locked"; - id_tag = "cargo_shuttle_dock_airlock"; - locked = 1; - name = "Cargo Shuttle"; - req_access = list(13,31) - }, -/obj/effect/floor_decal/industrial/hatch/operations, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/loading) "ulC" = ( /obj/structure/lattice/catwalk/indoor, /obj/structure/cable/green{ @@ -152785,18 +152711,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/cargo_compartment) -"upF" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/operations, -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad"; - color = "#CCCCCC" - }, -/turf/simulated/floor/tiled/dark/full, -/area/supply/dock) "upG" = ( /obj/machinery/chemical_dispenser/full{ req_access = list(7) @@ -152847,16 +152761,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/central) -"upO" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/horizon/engineering/hallway/fore) "upV" = ( /obj/effect/floor_decal/spline/plain, /turf/unsimulated/floor/monotile, @@ -154189,6 +154093,22 @@ }, /turf/unsimulated/floor, /area/centcom/distress_prep) +"uzg" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) "uzl" = ( /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor{ @@ -154927,6 +154847,17 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/horizon/medical/pharmacy) +"uDR" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/structure/sign/waste_station{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/hallway/aft) "uDT" = ( /turf/simulated/floor/plating, /area/horizon/engineering/drone_fabrication) @@ -154966,12 +154897,6 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) -"uEf" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/holofloor/tiled, -/area/template_noop) "uEl" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 @@ -155257,6 +155182,13 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/horizon/engineering/atmos/air) +"uFR" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/platform_deco{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/hangar/operations) "uFT" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -155471,33 +155403,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/command/bridge/supply) -"uHr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/fake_object{ - density = 1; - desc = "A secure supply crate, It carries the insignia of the Tau Ceti Foreign Legion. It appears quite scuffed."; - icon = 'icons/obj/containers/crate.dmi'; - icon_state = "tcfl_crate_preview"; - name = "foreign legion supply crate"; - pixel_x = 3; - pixel_y = 8 - }, -/obj/effect/decal/fake_object{ - desc = "A secure supply crate, It carries the insignia of the Tau Ceti Foreign Legion. It appears quite scuffed."; - icon = 'icons/obj/containers/crate.dmi'; - icon_state = "tcfl_crate_preview"; - name = "foreign legion supply crate" - }, -/obj/effect/decal/fake_object{ - desc = "A secure supply crate, It carries the insignia of the Tau Ceti Foreign Legion. It appears quite scuffed."; - icon = 'icons/obj/containers/crate.dmi'; - icon_state = "tcfl_crate_preview"; - name = "foreign legion supply crate"; - pixel_x = 2; - pixel_y = 19 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) "uHu" = ( /obj/effect/floor_decal/corner/black{ dir = 8 @@ -156248,6 +156153,35 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_lasertag) +"uMw" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "engineering_storage_d2"; + name = "Engineering Hard Storage"; + req_one_access = list(11,24); + pixel_x = -21; + pixel_y = 34 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/interior) "uMz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -157803,6 +157737,26 @@ }, /turf/simulated/floor/plating, /area/horizon/shuttle/quark/cockpit) +"uXh" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/main/starboard) "uXi" = ( /obj/machinery/door/airlock/multi_tile/glass{ name = "Server Hall"; @@ -158284,6 +158238,15 @@ dir = 8 }, /area/horizon/maintenance/deck_2/wing/starboard/near) +"vaT" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/mining_main/refinery) "vaU" = ( /obj/structure/cable{ icon_state = "4-8" @@ -158489,6 +158452,11 @@ }, /turf/unsimulated/floor/wood, /area/antag/raider) +"vcg" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/platform, +/turf/simulated/floor/plating, +/area/horizon/hangar/operations) "vcj" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 1 @@ -159350,6 +159318,30 @@ /obj/structure/railing/mapped, /turf/simulated/open, /area/horizon/service/custodial/disposals/deck_2) +"viA" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id = "shutters_deck3_bridgesafety"; + name = "Safety Shutter" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/horizon/command/bridge/meeting_room) "viI" = ( /obj/machinery/light_switch/east{ pixel_y = -4 @@ -159701,6 +159693,12 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/horizon/operations/mail_room) +"vkV" = ( +/obj/machinery/light/floor{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hangar/operations) "vkY" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/crate{ @@ -160346,17 +160344,11 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/hallway/primary/deck_2/central) -"vpD" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/machinery/door/window/holowindoor{ - dir = 1; - name = "Safety Box" - }, -/turf/simulated/floor/holofloor/tiled, -/area/template_noop) +"vpK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/alarm/west, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) "vpT" = ( /obj/effect/floor_decal/spline/plain/corner/black{ dir = 4 @@ -160679,6 +160671,17 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/unsimulated/floor, /area/antag/mercenary) +"vsm" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) "vsr" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/structure/grille, @@ -161528,12 +161531,6 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/atmos/air) -"vzx" = ( -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/turf/simulated/floor/holofloor/tiled, -/area/template_noop) "vzz" = ( /obj/effect/floor_decal/corner/purple{ dir = 5 @@ -162103,13 +162100,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/pharmacy) -"vDb" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch_door/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/maintenance/deck_2/aft) "vDc" = ( /obj/structure/flora/grass/jungle{ density = 1 @@ -163067,16 +163057,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_3/aft/starboard/far) -"vKz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/horizon/engineering/hallway/fore) "vKA" = ( /obj/item/storage/photo_album, /obj/item/device/camera_film, @@ -164965,6 +164945,18 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) +"vXK" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/machinery/light/floor{ + dir = 1 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/conference) "vXM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/platform_stairs/full{ @@ -165210,6 +165202,15 @@ }, /turf/unsimulated/floor, /area/antag/ninja) +"vZN" = ( +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/exoplanet/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) "vZQ" = ( /obj/machinery/door/blast/odin/open{ _wifi_id = "merc_droppod_2"; @@ -165364,12 +165365,6 @@ /obj/effect/floor_decal/industrial/loading/yellow, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard/far) -"waY" = ( -/obj/machinery/light/floor{ - dir = 1 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hangar/operations) "wba" = ( /obj/effect/floor_decal/corner/white{ dir = 5 @@ -166406,6 +166401,14 @@ }, /turf/unsimulated/floor/plating, /area/antag/mercenary) +"wgU" = ( +/obj/machinery/fabricator/autolathe/hacked, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/shuttle/merchant) "wgZ" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 6 @@ -166741,6 +166744,25 @@ /obj/effect/floor_decal/industrial/outline/security, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_lasertag) +"wjp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad" + }, +/obj/structure/plasticflaps, +/obj/machinery/door/airlock/external{ + dir = 1; + frequency = 1380; + icon_state = "door_locked"; + id_tag = "cargo_shuttle_dock_airlock"; + locked = 1; + name = "Cargo Shuttle"; + req_access = list(13,31) + }, +/obj/effect/floor_decal/industrial/hatch/operations, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/loading) "wju" = ( /obj/effect/floor_decal/corner/yellow{ dir = 9 @@ -166922,6 +166944,17 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/hallway/primary/deck_3/central) +"wky" = ( +/obj/machinery/conveyor{ + id = "cargo_1" + }, +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/structure/plasticflaps, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hangar/operations) "wkz" = ( /turf/unsimulated/floor, /area/centcom/holding) @@ -166967,6 +167000,12 @@ }, /turf/unsimulated/floor/wood, /area/centcom/bar) +"wkT" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "wkW" = ( /turf/simulated/wall/r_wall, /area/horizon/service/hydroponics) @@ -167552,21 +167591,6 @@ /obj/item/screwdriver, /turf/simulated/floor/tiled/white, /area/horizon/medical/pharmacy) -"woq" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 8 - }, -/obj/structure/railing/retractable{ - dir = 4 - }, -/obj/machinery/light/floor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hangar/operations) "wov" = ( /obj/structure/disposalpipe/segment{ icon_state = "pipe-c" @@ -168064,6 +168088,19 @@ /obj/structure/table/wood, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_dininghall) +"wqR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/engineering/hallway/fore) "wqS" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 8 @@ -168787,30 +168824,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/supermatter/mainchamber) -"wvw" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "shutters_deck3_bridgesafety"; - name = "Safety Shutter" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/green, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/horizon/command/bridge/meeting_room) "wvx" = ( /turf/simulated/floor/tiled, /area/horizon/security/custodial) @@ -168820,15 +168833,6 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/engineering/atmos/air) -"wvJ" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/structure/window/reinforced/holowindow{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled, -/area/template_noop) "wwg" = ( /obj/structure/flora/rock/pile, /obj/item/clothing/mask/skrell/skull, @@ -168849,13 +168853,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/main/starboard) -"wwl" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/optable/robotics, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist/surgicalbay) "wwm" = ( /obj/machinery/door/airlock/glass_command{ dir = 4; @@ -171186,6 +171183,15 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, /area/horizon/rnd/xenoarch/atrium) +"wMR" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "wMW" = ( /obj/machinery/light{ dir = 4 @@ -171568,15 +171574,6 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/operations/office) -"wPd" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/engineering/hallway/interior) "wPe" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -171598,15 +171595,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/research) -"wPr" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/hangar/operations) "wPw" = ( /turf/simulated/wall, /area/horizon/crew/fitness/showers) @@ -172152,6 +172140,10 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/port/far) +"wSG" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/exoplanet/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) "wSI" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -172407,13 +172399,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/engineering/hallway/aft) -"wUe" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/turf/simulated/floor/holofloor/tiled, -/area/template_noop) "wUh" = ( /obj/item/modular_computer/console/preset/security{ dir = 1 @@ -173622,6 +173607,11 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control) +"xbf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/hallway/fore) "xbj" = ( /obj/effect/floor_decal/corner/mauve/diagonal, /obj/structure/disposalpipe/segment, @@ -174594,18 +174584,6 @@ /obj/machinery/disposal/small/north, /turf/simulated/floor/tiled, /area/horizon/medical/paramedic) -"xhN" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 4 - }, -/obj/structure/railing/retractable{ - dir = 8 - }, -/obj/machinery/light/floor{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hangar/operations) "xhS" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 4 @@ -175102,6 +175080,23 @@ }, /turf/simulated/floor/wood, /area/horizon/service/chapel/office) +"xmf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/fake_object{ + density = 1; + desc = "A wooden crate containing spare parts."; + icon = 'icons/obj/containers/crate.dmi'; + icon_state = "densecrate"; + name = "mechanical supply crate"; + pixel_x = 1 + }, +/obj/structure/sign/emergency/exit/ladder{ + dir = 1; + pixel_x = -9; + pixel_y = 30 + }, +/turf/unsimulated/floor/plating, +/area/centcom/legion) "xmj" = ( /obj/machinery/r_n_d/circuit_imprinter, /obj/item/reagent_containers/glass/beaker{ @@ -175303,22 +175298,40 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/horizon/operations/mining_main/refinery) +"xnx" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + id = "hangarlockdown"; + name = "Hangar Lockdown" + }, +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_one_access = list(12,63) + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/machinery/door/blast/regular/open{ + id = "hangarlockdown"; + name = "Hangar Lockdown" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_1/wing/port/far) "xnE" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/operations/starboard) -"xnI" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/tiled, -/area/horizon/hangar/operations) "xnL" = ( /obj/machinery/light/small/emergency{ dir = 8 @@ -175797,16 +175810,6 @@ "xrw" = ( /turf/simulated/wall, /area/horizon/maintenance/substation/civ_d3) -"xrE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/horizon/hangar/operations) "xrI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 1 @@ -179533,6 +179536,13 @@ }, /turf/simulated/floor/plating, /area/horizon/shuttle/quark/cockpit) +"xQF" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "xQI" = ( /turf/simulated/wall/shuttle/space_ship, /area/shuttle/distress) @@ -180256,18 +180266,6 @@ /obj/effect/floor_decal/industrial/hatch_door/yellow, /turf/simulated/floor/tiled/full, /area/horizon/stairwell/port/deck_2) -"xWc" = ( -/obj/effect/floor_decal/corner/yellow, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled/dark, -/area/horizon/engineering/atmos) "xWf" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -180470,30 +180468,6 @@ }, /turf/simulated/floor/shuttle/dark_red, /area/shuttle/hapt) -"xXP" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "shutters_deck3_bridgesafety"; - name = "Safety Shutter" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/horizon/command/bridge/meeting_room) "xXY" = ( /obj/machinery/firealarm/east, /obj/effect/floor_decal/corner/dark_green{ @@ -180873,6 +180847,13 @@ /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) +"yaL" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_2/aft) "yaQ" = ( /obj/structure/railing/mapped{ name = "adjusted railing" @@ -180970,16 +180951,6 @@ /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/tiled/white, /area/horizon/service/kitchen) -"ybF" = ( -/obj/effect/floor_decal/corner/black{ - dir = 10 - }, -/obj/structure/platform_stairs, -/obj/structure/platform{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/hangar/operations) "ybI" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -181580,15 +181551,6 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/carpet/rubber, /area/horizon/rnd/lab) -"yfm" = ( -/obj/structure/window/reinforced/holowindow{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/holofloor/tiled, -/area/template_noop) "yfn" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -182188,16 +182150,6 @@ }, /turf/simulated/floor/carpet/rubber, /area/horizon/engineering/reactor/supermatter/monitoring) -"yjB" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/obj/structure/window/reinforced/holowindow{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled, -/area/template_noop) "yjC" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -205587,13 +205539,13 @@ jvu lUt bdU qtD -fqH +lZR lup pOq lUt mEZ dFe -qXG +kWP uXC bgo hCu @@ -205839,7 +205791,7 @@ kYn ner qqd jgx -wPr +lJs snq jIw cgv @@ -206103,10 +206055,10 @@ sWR kDB hHY eze -pKI -eDW +cIj +olP qix -woq +hRv eze hHY xcw @@ -206613,8 +206565,8 @@ jgx hiV xuh vyG -ybF -foE +gFD +tOR arH rdV rdV @@ -206623,7 +206575,7 @@ rdV rdV rdV rwv -mbX +hLy hCu hCu hCu @@ -206866,13 +206818,13 @@ rmK vPf fxe sDe -rvZ +nNj sAU dYm sAU -hhC -ufj -ocj +wky +gPC +jBt rdV rdV rdV @@ -207120,15 +207072,15 @@ jgx dQp cBJ cve -dSj +eyb oSt uSb bzE aeW ofT -waY +vkV vof -frl +vcg wmb rdV rdV @@ -207137,7 +207089,7 @@ rdV rdV rdV rwv -hTv +kcu hCu hCu hCu @@ -207374,19 +207326,19 @@ hWT vyT hMc jgx -nzT +lwn rlY rlY -hGv +gAA rlY rlY -ulB +wjp ikg rxS ikg -isf -ujM -bDF +eJf +jeP +qlY rdV rdV rdV @@ -207632,7 +207584,7 @@ krH krH krH krH -oxy +udW mLM gJO xgB @@ -207641,8 +207593,8 @@ jgx oSy ssE uln -aGr -bmW +nrp +uFR arH rdV rdV @@ -208159,10 +208111,10 @@ sWR cUJ tqK ncx -xhN +qug ncx ncx -xhN +qug ncx lIU dzc @@ -208667,7 +208619,7 @@ aRo vdU krH wAl -fJq +jzk oKm sWR sWR @@ -208923,8 +208875,8 @@ urj pOj gCq nZx -knx -xrE +foM +mZd cUv wjB mTr @@ -209181,7 +209133,7 @@ rTP tUo nZx cxm -cHm +qkP osN sWR osL @@ -209438,7 +209390,7 @@ rTP tky krH iSe -pik +fUm cUv pOe mho @@ -209688,14 +209640,14 @@ nZx bix xnr xnr -hqj +vaT guR mAW rTP xne krH ucW -psv +ius eUo wwx hLX @@ -209907,7 +209859,7 @@ rBt xTA tJJ ldw -euQ +bKF vIo pQu rbM @@ -209952,8 +209904,8 @@ ieE chK odx cxm -axm -bfB +ufb +fIG sWR ndh dJi @@ -210209,7 +210161,7 @@ rTP kaG odx ieq -xrE +mZd cUv sxn ajQ @@ -210466,7 +210418,7 @@ rTP vBY krH pex -xrE +mZd mGB sxn hnL @@ -210723,8 +210675,8 @@ lAW nFL hhu cxm -pik -xnI +fUm +vsm sWR jyc nFO @@ -210980,7 +210932,7 @@ aIq ngM krH muO -mhc +nTD brG sWR qDa @@ -213257,7 +213209,7 @@ bnW msD qDt iRv -sBh +gtk ajh lKo lKo @@ -214542,7 +214494,7 @@ jyh gmU dPk rHS -xWc +iVQ ajh jsx aYz @@ -214799,7 +214751,7 @@ lmI hnJ fbf qoJ -oOk +rkp ajh hUC lKo @@ -216345,7 +216297,7 @@ hNW oCT jzT dRx -rVr +orZ iLR rHK rHK @@ -219165,7 +219117,7 @@ rgt kpW rFC cUG -jxU +oex bSu auC ylF @@ -219675,12 +219627,12 @@ iHh akf nSJ qUw -sug +trP stq oPJ owJ -cLL -qpL +gKP +ifc fQO nSJ nSJ @@ -226654,7 +226606,7 @@ fzI fVa mAB wIE -tgX +xnx wIE wIE wIE @@ -270841,7 +270793,7 @@ sXT quy eSM ouT -eJJ +nuD oCr bsU aWU @@ -271098,7 +271050,7 @@ sON ltE dUV khW -krp +rfM nwj vwY eTz @@ -271355,7 +271307,7 @@ mFo vWh sEW kNI -ebm +qoO nwj nwj nwj @@ -271374,7 +271326,7 @@ jdq aFJ chu tWP -tNC +lZj bji xJm plL @@ -271612,7 +271564,7 @@ yfv aTB bhv hwC -rDG +qWU mNr pvj cgw @@ -271859,7 +271811,7 @@ fov fov fov fov -gun +oAH eNf oGM sWx @@ -272116,15 +272068,15 @@ rDU eHx eba fov -mIH +jkV eNf rPd lYi -awl +iAA lYi lYi lYi -mGH +uXh rmS rmS rmS @@ -272373,7 +272325,7 @@ bvb sdS dGC fov -dBq +wSG hEO rPd hZQ @@ -272630,7 +272582,7 @@ jvF qvu aWs fov -nzh +vZN hEO rPd fRB @@ -272888,8 +272840,8 @@ ycu eYg nAm cMj -kiq -rzM +pXS +uzg rwi nES mnW @@ -273145,7 +273097,7 @@ wLP put fov aAD -lCd +qfz rPd bpS pCP @@ -273402,7 +273354,7 @@ wLP gES fov oJM -aUW +cep rPd oJC qiC @@ -273905,11 +273857,11 @@ lLF toJ tVm xZQ -oRW -gwC -wPd -eJM -hTG +nzd +uMw +oqp +aMA +nek oVr mxM rxF @@ -277514,7 +277466,7 @@ oTK aDT sor bsY -eeI +tTx sEa pPE stI @@ -280597,15 +280549,15 @@ jTY djD lXl pIO -qJQ +wqR rMj -gBD +tpF cap kYa uFY xUS kYa -pXi +rya jmo fwY stI @@ -280856,13 +280808,13 @@ nKi mbW nlw nKi -vKz -dwE -lGs -ujA -lGs -dwE -upO +doX +qGR +xbf +hvY +xbf +qGR +mxX bSB gvf stI @@ -281119,7 +281071,7 @@ utO uFY lql lql -nJA +idA nVR nXw stI @@ -281360,7 +281312,7 @@ qGE wIl hlu vWw -dMF +uDR wVZ wVZ whQ @@ -281871,7 +281823,7 @@ tBC cyY elJ tqD -nmz +gTW neq qsq fXf @@ -281890,8 +281842,8 @@ bLv bLv ecg rkL -nLp -ikp +olH +oCa gst kBx ucf @@ -281916,7 +281868,7 @@ pfa oPk hHf mZW -aeo +ppn ggO lPo lPo @@ -282432,7 +282384,7 @@ qpq uSs fBB vie -leY +tRg qOh jDE xZE @@ -282689,7 +282641,7 @@ ieF gmA xoe oyY -oiJ +cNe qOh lqu xZE @@ -283202,8 +283154,8 @@ qZz vhF yaa tpV -jet -lzO +dYT +sBW vTR gXl xZE @@ -283460,7 +283412,7 @@ xZE xZE xZE xZE -ewo +sPP lEE xNh xZE @@ -284714,7 +284666,7 @@ vwP vwP vwP vwP -gFr +qmO qVu kgJ jLj @@ -284968,7 +284920,7 @@ uLt tha cpq cHw -wwl +kxW axy fSg aVN @@ -285984,9 +285936,9 @@ ovm epn uOD jOO -vDb +yaL xzK -rST +vpK xzK faM vnP @@ -286241,7 +286193,7 @@ ovm jiy dzv jOO -ufs +cnP rTp vnP dYY @@ -286499,7 +286451,7 @@ iOp uOD jOO pRY -ubX +ivQ rTp dYY oOR @@ -287009,7 +286961,7 @@ xxO ffn bqw ovm -cqF +kVW jOO qec pRY @@ -287266,7 +287218,7 @@ oUm dOx qJs ovm -ubX +ivQ jOO yak pRY @@ -288041,7 +287993,7 @@ gLd tAI jOO afY -mYI +vXK tlo ehs ujB @@ -288313,7 +288265,7 @@ aoX isB ntL boq -oxD +hFQ ehy qgY jlN @@ -292456,7 +292408,7 @@ nTc fFV nTc hoX -lBJ +onr eDm kuv xII @@ -342845,12 +342797,12 @@ uhj uhj bOF xDY -rKQ +bjm vUX -nQH -wvw +viA +suW eFO -xXP +avO vUX iEa cKu @@ -343367,7 +343319,7 @@ xtz bwK skb sTA -sWE +cxD iEa uYQ wWR @@ -344391,7 +344343,7 @@ hAz iIN wso gjA -qiq +cHO chn cuq gBt @@ -348503,7 +348455,7 @@ mtx jOs ncP mMu -dJy +hPs uDJ glJ nen @@ -353602,7 +353554,7 @@ qEm ixW rQp loQ -aoj +qub lyq oRv cAV @@ -387604,7 +387556,7 @@ rxo rIi isl hrn -hns +hWx tto iPV tHw @@ -388661,12 +388613,12 @@ ahy aLf sJv dFx -fEj -hZi -hZi -hZi -hZi -mpL +kzi +qFE +qFE +qFE +qFE +lvy dFx sJv eSV @@ -389175,12 +389127,12 @@ vvt aLf sJv dFx -upF -cNc -cNc -cNc -cNc -fzv +sVD +udO +udO +udO +udO +oks dFx sJv eSV @@ -423474,13 +423426,13 @@ paV paV uGA oeZ -qbi -ofM -ofM -ofM -ofM -ofM -ngK +fif +eVZ +jNV +jNV +jNV +jNV +eXx oeZ eSV eSV @@ -423731,13 +423683,13 @@ paV paV paV oeZ -own -hjX -hjX -hzH -hjX -hjX -klL +rkG +dat +dat +cAf +dat +dat +tyN oeZ eSV eSV @@ -423988,13 +423940,13 @@ paV paV paV oeZ -own -hjX -hjX -ofM -hjX -hjX -klL +rkG +dat +dat +dat +dat +dat +tyN oeZ eSV eSV @@ -424245,13 +424197,13 @@ paV paV paV oeZ -wvJ -hjX -hjX -hjX -hjX -hjX -klL +rkG +dat +dat +dat +dat +odq +tyN oeZ eSV eSV @@ -424502,13 +424454,13 @@ paV paV paV oeZ -wvJ -hjX -nqi -nqi -nqi -hjX -klL +rkG +dat +gLs +jNV +gLs +dat +tyN oeZ eSV eSV @@ -424759,13 +424711,13 @@ paV paV paV oeZ -nWr -kWm -bxZ -cXD -hFr -kkZ -wUe +rde +iVC +dat +dat +dat +iVC +bYz oeZ eSV eSV @@ -425016,13 +424968,13 @@ paV paV paV oeZ -yjB -nDX -cdx -vzx -uen -vpD -eKW +myP +sgv +dat +dat +dat +sgv +xQF oeZ eSV eSV @@ -425273,13 +425225,13 @@ paV paV paV oeZ -own -hjX -yfm -yfm -yfm -hjX -klL +rkG +dat +pnB +oTj +pnB +dat +tyN oeZ eSV eSV @@ -425530,13 +425482,13 @@ paV paV paV oeZ -wvJ -hjX -hjX -hjX -hjX -hjX -klL +rkG +dat +dat +dat +dat +odq +tyN oeZ eSV eSV @@ -425787,13 +425739,13 @@ paV paV paV oeZ -wvJ -hjX -hjX -uEf -hjX -hjX -klL +rkG +dat +dat +dat +dat +dat +tyN oeZ eSV eSV @@ -426044,13 +425996,13 @@ paV paV paV oeZ -wvJ -hjX -hjX -hzH -hjX -hjX -klL +rkG +dat +dat +cAf +dat +dat +tyN oeZ eSV eSV @@ -426301,13 +426253,13 @@ paV paV paV oeZ -biR -uEf -uEf -uEf -uEf -uEf -ajm +wkT +dYl +oTj +oTj +oTj +oTj +wMR oeZ eSV eSV @@ -429521,7 +429473,7 @@ jqW hst dyQ iLe -ecn +aXF quV sFC klg @@ -429778,7 +429730,7 @@ gZA pTZ xPt iLe -gvE +hJR mba kYk quV @@ -430035,7 +429987,7 @@ iLe iLe aHq iLe -czk +xmf quV quV ygK @@ -430296,7 +430248,7 @@ quV quV opo ygK -gfj +ftI iLe ahf oeV @@ -432315,7 +432267,7 @@ oJA qTe qTe qTe -fHF +ohn tRO fTU onB @@ -436605,7 +436557,7 @@ hpz eSV tcP bjb -dzJ +wgU oNd uzt uMP @@ -436849,7 +436801,7 @@ wkJ oKD lnL wiU -iGc +aoD hpz wdW tfC @@ -438248,11 +438200,11 @@ eSV eSV vZj unn -uHr +fNG raR raR unn -cWC +tlr shp nsq unn @@ -440049,7 +440001,7 @@ vZj unn fMY pBv -qSk +sdq cnf bFr wMl