diff --git a/code/game/objects/structures/crates_lockers/closets.dm b/code/game/objects/structures/crates_lockers/closets.dm index 3b9f86e796d..be5679d237d 100644 --- a/code/game/objects/structures/crates_lockers/closets.dm +++ b/code/game/objects/structures/crates_lockers/closets.dm @@ -1,7 +1,7 @@ /obj/structure/closet name = "closet" desc = "It's a basic storage unit." - icon = 'icons/obj/closet.dmi' + icon = 'icons/obj/containers/closet.dmi' icon_state = "generic" density = TRUE build_amt = 2 @@ -626,6 +626,7 @@ update_secure_overlays() /obj/structure/closet/proc/update_secure_overlays() + AddOverlays("[icon_door_overlay]securitypanel") if(broken) AddOverlays("[icon_door_overlay]emag") else diff --git a/code/game/objects/structures/crates_lockers/closets/secure/guncabinet.dm b/code/game/objects/structures/crates_lockers/closets/secure/guncabinet.dm index 8b5ae0c3788..e89d555c8b1 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/guncabinet.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/guncabinet.dm @@ -1,7 +1,7 @@ /obj/structure/closet/secure_closet/guncabinet name = "gun cabinet" req_access = list(ACCESS_ARMORY) - icon = 'icons/obj/guncabinet.dmi' + icon = 'icons/obj/containers/guncabinet.dmi' icon_state = "base" anchored = TRUE canbemoved = TRUE diff --git a/code/game/objects/structures/crates_lockers/closets/secure/locker.dm b/code/game/objects/structures/crates_lockers/closets/secure/locker.dm index a794cb9ba68..2b34bcf2225 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/locker.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/locker.dm @@ -1,7 +1,7 @@ /obj/structure/closet/secure_closet name = "locker" desc = "It's a steel ID-locked locker." - icon = 'icons/obj/closet.dmi' + icon = 'icons/obj/containers/closet.dmi' icon_state = "secure" anchored = FALSE secure = TRUE diff --git a/code/game/objects/structures/crates_lockers/closets/walllocker.dm b/code/game/objects/structures/crates_lockers/closets/walllocker.dm index f627f11e7f5..bf51a764e1c 100644 --- a/code/game/objects/structures/crates_lockers/closets/walllocker.dm +++ b/code/game/objects/structures/crates_lockers/closets/walllocker.dm @@ -4,7 +4,7 @@ /obj/structure/closet/walllocker name = "wall locker" desc = "A wall mounted storage locker." - icon = 'icons/obj/walllocker.dmi' + icon = 'icons/obj/containers/walllocker.dmi' icon_state = "walllocker" //...man, how OLD is this $#!? door_anim_angle = 132 door_anim_squish = 0.38 diff --git a/code/game/objects/structures/crates_lockers/crates.dm b/code/game/objects/structures/crates_lockers/crates.dm index 5924731d5cd..454f1e01edf 100644 --- a/code/game/objects/structures/crates_lockers/crates.dm +++ b/code/game/objects/structures/crates_lockers/crates.dm @@ -5,7 +5,7 @@ /obj/structure/closet/crate name = "crate" desc = "A rectangular steel crate." - icon = 'icons/obj/crate.dmi' + icon = 'icons/obj/containers/crate.dmi' icon_state = "crate" climbable = TRUE build_amt = 10 @@ -240,7 +240,6 @@ /obj/structure/closet/crate/secure name = "secure crate" desc = "A secure crate." - icon_state = "secure_crate" locked = TRUE secure = TRUE secure_lights = TRUE @@ -488,12 +487,12 @@ /obj/structure/closet/crate/secure/weapon name = "weapons crate" desc = "A secure weapons crate." - icon_state = "syndi_secure_crate" + icon_state = "syndi_crate" icon_door_override = TRUE icon_door = "syndi_crate" /obj/structure/closet/crate/secure/weapon/alt - icon_state = "syndi_secure_crate1" + icon_state = "syndi_crate1" icon_door = "syndi_crate1" /obj/structure/closet/crate/secure/legion @@ -516,8 +515,8 @@ /obj/structure/closet/crate/secure/hydrosec name = "secure hydroponics crate" - desc = "A crate with a lock on it, painted in the scheme of the station's botanists." - icon_state = "hydro_secure_crate" + desc = "A crate painted in the scheme of the station's botanists." + icon_state = "hydro_crate" req_one_access = list(ACCESS_HYDROPONICS, ACCESS_XENOBOTANY) /obj/structure/closet/crate/secure/bin diff --git a/code/game/objects/structures/safe.dm b/code/game/objects/structures/safe.dm index 4886d696b74..7fca69db085 100644 --- a/code/game/objects/structures/safe.dm +++ b/code/game/objects/structures/safe.dm @@ -8,7 +8,7 @@ FLOOR SAFES /obj/structure/safe name = "safe" desc = "A huge chunk of metal with a dial embedded in it. Fine print on the dial reads \"Scarborough Arms - 2 tumbler safe, guaranteed thermite resistant, explosion resistant, and assistant resistant.\"" - icon = 'icons/obj/safe.dmi' + icon = 'icons/obj/containers/safe.dmi' icon_state = "safe" anchored = 1 density = 1 diff --git a/code/game/objects/structures/tranqcabinet.dm b/code/game/objects/structures/tranqcabinet.dm index 5d2c796dcb3..0a37bb86421 100644 --- a/code/game/objects/structures/tranqcabinet.dm +++ b/code/game/objects/structures/tranqcabinet.dm @@ -1,7 +1,7 @@ /obj/structure/tranqcabinet name = "tranquilizer rifle cabinet" desc = "A wall mounted cabinet designed to hold a tranquilizer rifle." - icon = 'icons/obj/closet.dmi' + icon = 'icons/obj/containers/closet.dmi' icon_state = "tranq_closed" anchored = 1 density = 0 diff --git a/code/game/objects/structures/under_wardrobe.dm b/code/game/objects/structures/under_wardrobe.dm index bc2adb28bc2..5f1662e468e 100644 --- a/code/game/objects/structures/under_wardrobe.dm +++ b/code/game/objects/structures/under_wardrobe.dm @@ -1,7 +1,7 @@ /obj/structure/undies_wardrobe name = "underwear wardrobe" desc = "Holds item of clothing you shouldn't be showing off in the hallways." - icon = 'icons/obj/closet.dmi' + icon = 'icons/obj/containers/closet.dmi' icon_state = "cabinet" density = 1 diff --git a/code/modules/lock/lock_construct.dm b/code/modules/lock/lock_construct.dm index f64acf92a22..4b3bb174535 100644 --- a/code/modules/lock/lock_construct.dm +++ b/code/modules/lock/lock_construct.dm @@ -1,7 +1,7 @@ /obj/item/material/lock_construct name = "lock" desc = "A crude but useful lock and bolt." - icon = 'icons/obj/crate.dmi' + icon = 'icons/obj/containers/crate.dmi' icon_state = "largebinemag" w_class = WEIGHT_CLASS_TINY var/lock_data diff --git a/code/modules/mob/living/simple_animal/hostile/mimic.dm b/code/modules/mob/living/simple_animal/hostile/mimic.dm index 5249f09c8b7..0bc4eba64f9 100644 --- a/code/modules/mob/living/simple_animal/hostile/mimic.dm +++ b/code/modules/mob/living/simple_animal/hostile/mimic.dm @@ -5,7 +5,7 @@ /mob/living/simple_animal/hostile/mimic name = "crate" desc = "A rectangular steel crate." - icon = 'icons/obj/crate.dmi' + icon = 'icons/obj/containers/crate.dmi' icon_state = "crate_preview" icon_living = "crate_preview" diff --git a/html/changelogs/Batrachophreno-Containers.yml b/html/changelogs/Batrachophreno-Containers.yml new file mode 100644 index 00000000000..ccd72975352 --- /dev/null +++ b/html/changelogs/Batrachophreno-Containers.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: Batrachophreno + +# 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: + - code_imp: "Updated crates and lockers to use standalone security panel sprite overlays." + - refactor: "Moved several container spritesheets to a dedicated folder." diff --git a/icons/obj/closet.dmi b/icons/obj/closet.dmi deleted file mode 100644 index 706ba007751..00000000000 Binary files a/icons/obj/closet.dmi and /dev/null differ diff --git a/icons/obj/containers/closet.dmi b/icons/obj/containers/closet.dmi new file mode 100644 index 00000000000..255f667b684 Binary files /dev/null and b/icons/obj/containers/closet.dmi differ diff --git a/icons/obj/containers/crate.dmi b/icons/obj/containers/crate.dmi new file mode 100644 index 00000000000..9735b13002b Binary files /dev/null and b/icons/obj/containers/crate.dmi differ diff --git a/icons/obj/guncabinet.dmi b/icons/obj/containers/guncabinet.dmi similarity index 100% rename from icons/obj/guncabinet.dmi rename to icons/obj/containers/guncabinet.dmi diff --git a/icons/obj/safe.dmi b/icons/obj/containers/safe.dmi similarity index 100% rename from icons/obj/safe.dmi rename to icons/obj/containers/safe.dmi diff --git a/icons/obj/walllocker.dmi b/icons/obj/containers/walllocker.dmi similarity index 100% rename from icons/obj/walllocker.dmi rename to icons/obj/containers/walllocker.dmi diff --git a/icons/obj/crate.dmi b/icons/obj/crate.dmi deleted file mode 100644 index ac01fdc3e7f..00000000000 Binary files a/icons/obj/crate.dmi and /dev/null differ diff --git a/icons/obj/sciguncabinet.dmi b/icons/obj/sciguncabinet.dmi deleted file mode 100644 index feefbcf10e4..00000000000 Binary files a/icons/obj/sciguncabinet.dmi and /dev/null differ diff --git a/maps/event/rooftop/rooftop-1.dmm b/maps/event/rooftop/rooftop-1.dmm index 9ec10d675f6..6590549256a 100644 --- a/maps/event/rooftop/rooftop-1.dmm +++ b/maps/event/rooftop/rooftop-1.dmm @@ -993,6 +993,13 @@ /obj/structure/table/stone/marble, /turf/simulated/floor/tiled/dark, /area/city/mendell/interior) +"fi" = ( +/obj/item/storage/box/tactical/frags, +/obj/item/storage/box/tactical/frags, +/obj/item/storage/box/tactical/frags, +/obj/item/storage/box/tactical/frags, +/turf/simulated/floor/reinforced, +/area/city/mendell) "fk" = ( /obj/item/clothing/under/suit_jacket/nt_skirtsuit, /obj/item/clothing/under/suit_jacket/nt_skirtsuit, @@ -2445,24 +2452,6 @@ name = "small tiles" }, /area/city/mendell/interior) -"nU" = ( -/obj/structure/table/rack, -/obj/item/melee/energy/sword/knife/sol, -/obj/item/melee/energy/sword/knife/sol, -/obj/item/melee/energy/sword/knife/sol, -/obj/item/melee/energy/sword/knife/sol, -/obj/item/gun/projectile/shotgun/pump/combat/sol, -/obj/item/gun/projectile/shotgun/pump/combat/sol, -/obj/item/gun/projectile/shotgun/pump/combat/sol, -/obj/item/gun/projectile/shotgun/pump/combat/sol, -/obj/item/storage/box/shells/incendiaryshells, -/obj/item/storage/box/shells/buckshot, -/obj/item/storage/box/shells/buckshot, -/obj/item/storage/box/shells/buckshot, -/obj/item/storage/box/shells/buckshot, -/obj/item/storage/box/shells/buckshot, -/turf/simulated/floor/reinforced, -/area/city/mendell) "nY" = ( /obj/structure/bedsheetbin, /obj/structure/table/wood, @@ -2780,33 +2769,6 @@ }, /turf/simulated/floor/wood, /area/city/mendell/interior) -"qj" = ( -/obj/effect/decal/fake_object{ - desc = "What jerk stacked these here?"; - icon = 'icons/obj/crate.dmi'; - icon_state = "tcfl_crate_preview"; - name = "inconveniently placed crate"; - pixel_x = 1 - }, -/obj/effect/decal/fake_object{ - density = 1; - desc = "What jerk stacked these here?"; - icon = 'icons/obj/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/crate.dmi'; - icon_state = "tcfl_crate_preview"; - name = "inconveniently placed crate"; - pixel_x = 2; - pixel_y = 19 - }, -/turf/simulated/floor/tiled/dark, -/area/city/mendell) "qn" = ( /obj/machinery/door/blast/odin{ id = "front_doors" @@ -4165,13 +4127,6 @@ /obj/item/storage/box/fancy/cigarettes/cigar, /turf/simulated/floor/tiled/dark, /area/city/mendell/interior) -"xZ" = ( -/obj/item/storage/box/tactical/frags, -/obj/item/storage/box/tactical/frags, -/obj/item/storage/box/tactical/frags, -/obj/item/storage/box/tactical/frags, -/turf/simulated/floor/reinforced, -/area/city/mendell) "ya" = ( /obj/structure/railing/mapped, /obj/effect/floor_decal/industrial/warning, @@ -4638,6 +4593,33 @@ name = "hex flooring" }, /area/city/mendell/interior) +"Bh" = ( +/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 + }, +/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 + }, +/turf/simulated/floor/tiled/dark, +/area/city/mendell) "Bl" = ( /obj/machinery/light/small{ dir = 1 @@ -5111,6 +5093,24 @@ /obj/item/reagent_containers/food/snacks/burger/superbite, /turf/simulated/floor/tiled/white, /area/city/mendell/interior) +"Do" = ( +/obj/structure/table/rack, +/obj/item/melee/energy/sword/knife/sol, +/obj/item/melee/energy/sword/knife/sol, +/obj/item/melee/energy/sword/knife/sol, +/obj/item/melee/energy/sword/knife/sol, +/obj/item/gun/projectile/shotgun/pump/combat/sol, +/obj/item/gun/projectile/shotgun/pump/combat/sol, +/obj/item/gun/projectile/shotgun/pump/combat/sol, +/obj/item/gun/projectile/shotgun/pump/combat/sol, +/obj/item/storage/box/shells/incendiaryshells, +/obj/item/storage/box/shells/buckshot, +/obj/item/storage/box/shells/buckshot, +/obj/item/storage/box/shells/buckshot, +/obj/item/storage/box/shells/buckshot, +/obj/item/storage/box/shells/buckshot, +/turf/simulated/floor/reinforced, +/area/city/mendell) "Dt" = ( /turf/simulated/floor/lino, /area/city/mendell/interior) @@ -7764,18 +7764,6 @@ }, /turf/simulated/floor/marble/dark, /area/city/mendell/interior) -"Tb" = ( -/obj/effect/decal/fake_object{ - desc = "A crate of military supplies."; - icon = 'icons/obj/crate.dmi'; - icon_state = "dropcrate"; - name = "metal crate"; - pixel_x = 1; - pixel_y = 4 - }, -/obj/effect/floor_decal/industrial/hatch/red, -/turf/simulated/floor/tiled/dark, -/area/city/mendell) "Tc" = ( /obj/machinery/door/airlock/centcom{ id_tag = "qs1"; @@ -8522,6 +8510,18 @@ }, /turf/simulated/floor/wood, /area/city/mendell) +"Xw" = ( +/obj/effect/decal/fake_object{ + desc = "A crate of military supplies."; + icon = 'icons/obj/containers/crate.dmi'; + icon_state = "dropcrate"; + name = "metal crate"; + pixel_x = 1; + pixel_y = 4 + }, +/obj/effect/floor_decal/industrial/hatch/red, +/turf/simulated/floor/tiled/dark, +/area/city/mendell) "XA" = ( /obj/structure/table/rack, /obj/item/reagent_containers/food/snacks/batwings, @@ -14044,7 +14044,7 @@ VN Pk Or Or -Tb +Xw xq xq vx @@ -14394,7 +14394,7 @@ Nc Or kH Pk -qj +Bh vF Pk KL @@ -28475,7 +28475,7 @@ xD xD Or eI -xZ +fi ro Or Jy @@ -28561,7 +28561,7 @@ xD xD xD fK -nU +Do xD ro Or @@ -28648,7 +28648,7 @@ xD xD xD fK -nU +Do xD ro Or @@ -28735,7 +28735,7 @@ xD xD xD fK -nU +Do xD ro fK @@ -28822,7 +28822,7 @@ xD xD xD Or -nU +Do xD ro Or @@ -30911,7 +30911,7 @@ xD xD Or eI -xZ +fi Ni Or Jy diff --git a/maps/sccv_horizon/sccv_horizon.dmm b/maps/sccv_horizon/sccv_horizon.dmm index b3b18903235..2786448a837 100644 --- a/maps/sccv_horizon/sccv_horizon.dmm +++ b/maps/sccv_horizon/sccv_horizon.dmm @@ -5,15 +5,6 @@ }, /turf/simulated/floor/carpet/rubber, /area/horizon/rnd/lab) -"aal" = ( -/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) "aam" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -752,17 +743,29 @@ /obj/structure/grille, /turf/simulated/floor/tiled/dark/full/airless, /area/horizon/command/bridge/controlroom) -"ael" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +"aeo" = ( +/obj/structure/table/wood, +/obj/random/pottedplant_small{ + pixel_x = -3; + pixel_y = 12 }, -/obj/effect/floor_decal/industrial/hatch/operations, -/obj/machinery/conveyor{ - id = "cargo_1"; - color = "#CCCCCC" +/obj/machinery/button/switch/windowtint{ + id = "library"; + pixel_x = 7; + pixel_y = -1; + dir = 10 }, -/turf/simulated/floor/tiled/dark/full, -/area/supply/dock) +/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, @@ -2469,6 +2472,21 @@ 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{ @@ -3744,6 +3762,29 @@ }, /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 @@ -3855,6 +3896,18 @@ }, /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" @@ -5014,6 +5067,16 @@ }, /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, @@ -5406,22 +5469,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/operations/starboard) -"aIF" = ( -/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) "aIH" = ( /obj/structure/table/standard, /obj/item/toy/comic/inspector{ @@ -7304,6 +7351,12 @@ }, /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{ @@ -7481,15 +7534,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/port) -"aWp" = ( -/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) "aWs" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/reagent_dispensers/fueltank, @@ -8063,19 +8107,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/command/bridge/upperdeck) -"baj" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/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) "bal" = ( /obj/structure/flora/grass/jungle, /turf/simulated/floor/exoplanet/grass, @@ -8299,18 +8330,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/atmos/storage) -"bbX" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/undies_wardrobe{ - anchored = 1; - icon = 'icons/obj/crate.dmi'; - icon_state = "drop_crate-grey"; - name = "underwear crate" - }, -/turf/unsimulated/floor, -/area/antag/ninja) "bce" = ( /obj/machinery/door/airlock/maintenance{ name = "Xenobotany Maintenance"; @@ -8818,6 +8837,16 @@ /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) @@ -9636,13 +9665,6 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/specops) -"bjV" = ( -/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) "bkd" = ( /obj/machinery/door/firedoor{ req_one_access = list(24,11,67,73); @@ -10049,6 +10071,13 @@ }, /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 @@ -12447,6 +12476,16 @@ }, /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 @@ -13473,11 +13512,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/service/bar) -"bMc" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/platform, -/turf/simulated/floor/plating, -/area/horizon/hangar/operations) "bMd" = ( /obj/structure/cable/green{ icon_state = "2-8" @@ -14498,15 +14532,6 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"bSQ" = ( -/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) "bSS" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/security/checkpoint2) @@ -14761,17 +14786,6 @@ icon_state = "white" }, /area/centcom/legion) -"bUM" = ( -/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) "bUQ" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/ore_box, @@ -16829,15 +16843,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/central) -"cjF" = ( -/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) "cjH" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -17676,6 +17681,12 @@ /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 @@ -19128,6 +19139,23 @@ /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; @@ -19784,12 +19812,6 @@ /obj/item/tank/jetpack/carbondioxide, /turf/simulated/floor/tiled/white, /area/horizon/storage/eva/expedition) -"cEl" = ( -/obj/machinery/light/floor{ - dir = 1 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hangar/operations) "cEt" = ( /obj/effect/floor_decal/corner_wide/yellow/full{ dir = 4 @@ -20159,6 +20181,16 @@ /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 @@ -20692,23 +20724,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/main/starboard) -"cKC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/fake_object{ - density = 1; - desc = "A wooden crate containing spare parts."; - icon = 'icons/obj/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) "cKG" = ( /obj/structure/bed/stool/chair/holochair{ dir = 8 @@ -20782,6 +20797,21 @@ }, /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, @@ -20935,6 +20965,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" + }, +/turf/simulated/floor/tiled/dark/full, +/area/supply/dock) "cNg" = ( /obj/effect/floor_decal/corner/green{ dir = 9 @@ -22388,6 +22427,17 @@ }, /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; @@ -22808,23 +22858,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/lobby) -"cZq" = ( -/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) "cZt" = ( /obj/effect/floor_decal/industrial/outline/grey, /obj/structure/closet/crate{ @@ -22895,18 +22928,6 @@ }, /turf/unsimulated/floor, /area/antag/raider) -"cZJ" = ( -/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) "cZR" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8 @@ -23444,18 +23465,6 @@ /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_2/cargo_compartment) -"ddy" = ( -/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) "ddB" = ( /obj/effect/floor_decal/corner/dark_blue, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -23540,29 +23549,6 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"dec" = ( -/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) "dej" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 @@ -24291,14 +24277,6 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/atmos/air) -"dit" = ( -/obj/structure/table/wood, -/obj/machinery/recharger{ - pixel_x = -3; - pixel_y = 2 - }, -/turf/simulated/floor/wood, -/area/horizon/service/library) "dix" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold/visible/blue{ @@ -24991,21 +24969,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/horizon/service/cafeteria) -"dmF" = ( -/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) "dmG" = ( /turf/simulated/floor/holofloor/grass{ icon = 'icons/turf/flooring/exoplanet/moghes.dmi'; @@ -26606,6 +26569,12 @@ }, /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; @@ -27347,6 +27316,10 @@ }, /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 @@ -28523,11 +28496,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/indra/monitoring) -"dIR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/alarm/west, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/aft) "dIU" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -28605,6 +28573,23 @@ }, /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 @@ -28916,6 +28901,17 @@ }, /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, @@ -29539,18 +29535,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/rnd/chemistry) -"dRt" = ( -/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) "dRu" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -29702,6 +29686,35 @@ }, /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" @@ -30499,17 +30512,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard/far) -"dYC" = ( -/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) "dYF" = ( /obj/effect/floor_decal/industrial/outline/service, /obj/structure/closet/secure_closet/hydroponics, @@ -30518,14 +30520,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/hydroponics/lower) -"dYL" = ( -/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) "dYR" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 @@ -30895,6 +30889,19 @@ }, /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 @@ -30947,16 +30954,6 @@ /obj/random/dirt_75, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_2/wing/port/nacelle) -"ebu" = ( -/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) "eby" = ( /turf/simulated/wall, /area/horizon/service/kitchen/freezer) @@ -31089,6 +31086,26 @@ 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, @@ -31113,14 +31130,6 @@ icon_state = "wood" }, /area/centcom/legion) -"ecy" = ( -/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) "ecC" = ( /obj/structure/bed/stool/chair/office/bridge{ dir = 1 @@ -31480,14 +31489,6 @@ }, /turf/simulated/floor/carpet, /area/horizon/security/investigators_office) -"eeA" = ( -/obj/effect/floor_decal/industrial/hatch/operations, -/obj/machinery/conveyor{ - id = "cargo_1"; - color = "#CCCCCC" - }, -/turf/simulated/floor/tiled/dark/full, -/area/supply/dock) "eeB" = ( /obj/effect/floor_decal/corner/lime/full{ dir = 8 @@ -31503,6 +31504,13 @@ }, /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 @@ -33833,6 +33841,26 @@ /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, @@ -33934,6 +33962,14 @@ }, /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 @@ -34311,11 +34347,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/port/docks) -"eyC" = ( -/obj/random/junk, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/exoplanet/plating, -/area/horizon/maintenance/deck_2/wing/starboard/near) "eyH" = ( /turf/unsimulated/floor/plating, /area/centcom/bar) @@ -34793,18 +34824,6 @@ /obj/structure/grille, /turf/simulated/floor, /area/horizon/maintenance/deck_3/aft/starboard/far) -"eCu" = ( -/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) "eCw" = ( /obj/structure/shuttle/engine/propulsion/burst/right, /turf/unsimulated/floor/plating, @@ -34980,6 +34999,18 @@ }, /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 @@ -35915,13 +35946,35 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"eJK" = ( -/obj/machinery/light{ +"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/machinery/optable/robotics, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist/surgicalbay) +/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 @@ -37386,21 +37439,6 @@ /obj/effect/floor_decal/industrial/outline/security, /turf/simulated/floor/tiled/white, /area/horizon/security/autopsy_laboratory) -"eUE" = ( -/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) "eUP" = ( /obj/machinery/door/firedoor, /obj/structure/grille, @@ -39076,16 +39114,6 @@ }, /turf/unsimulated/floor, /area/centcom/control) -"fgm" = ( -/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) "fgq" = ( /obj/machinery/vending/medical{ density = 0; @@ -39275,15 +39303,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/bar) -"fhB" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/mining_main/refinery) "fhJ" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ @@ -39922,35 +39941,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/rnd/hallway) -"fnq" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/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) "fnr" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /obj/machinery/status_display/arrivals_display, @@ -40163,6 +40153,13 @@ /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 @@ -40436,18 +40433,6 @@ }, /turf/simulated/floor/exoplanet/barren/raskara, /area/centcom/shared_dream) -"fqw" = ( -/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) "fqx" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -40482,6 +40467,18 @@ }, /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{ @@ -40586,6 +40583,11 @@ }, /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{ @@ -40655,26 +40657,6 @@ /obj/machinery/light_switch/north, /turf/simulated/floor/tiled, /area/horizon/crew/fitness/changing) -"frJ" = ( -/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) "frW" = ( /obj/structure/disposalpipe/junction{ dir = 8; @@ -40694,13 +40676,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/starboard) -"frX" = ( -/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) "frY" = ( /turf/simulated/wall/r_wall, /area/horizon/hangar/intrepid) @@ -40866,18 +40841,6 @@ /obj/random/dirt_75, /turf/simulated/floor/carpet/rubber, /area/horizon/crew/fitness/gym) -"fub" = ( -/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) "fuf" = ( /obj/machinery/camera/network/engineering{ c_tag = "Engineering - Outer Hallway 1"; @@ -40998,18 +40961,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/shuttle/intrepid/medical) -"fuR" = ( -/obj/structure/sign/emergency/evacuation{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hangar/operations) "fuV" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/industrial/hatch_door/engineering{ @@ -41541,6 +41492,17 @@ }, /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"; @@ -42070,12 +42032,6 @@ /obj/item/storage/box/fancy/cookiesnack, /turf/simulated/floor/wood, /area/shuttle/hapt) -"fDz" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/aft) "fDA" = ( /obj/structure/railing/mapped, /obj/effect/floor_decal/industrial/warning{ @@ -42143,6 +42099,17 @@ }, /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 @@ -42604,6 +42571,18 @@ }, /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; @@ -42780,6 +42759,15 @@ }, /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, @@ -45926,15 +45914,6 @@ }, /turf/simulated/floor, /area/horizon/maintenance/deck_3/aft/starboard) -"geO" = ( -/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) "geP" = ( /obj/structure/table/standard{ no_cargo = 1 @@ -46000,6 +45979,17 @@ /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, @@ -47622,14 +47612,6 @@ /obj/machinery/alarm/west, /turf/simulated/floor/plating, /area/horizon/engineering/atmos/air) -"gqR" = ( -/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) "gqS" = ( /turf/simulated/floor/plating, /area/horizon/engineering/storage_hard/lower) @@ -48077,16 +48059,6 @@ "gtL" = ( /turf/simulated/wall/r_wall, /area/horizon/repoffice/consular_two) -"gtP" = ( -/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) "gtT" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/filingcabinet/chestdrawer, @@ -48126,6 +48098,12 @@ /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{ @@ -48314,6 +48292,39 @@ 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, @@ -48472,6 +48483,35 @@ /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, @@ -49206,6 +49246,19 @@ }, /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" @@ -50012,11 +50065,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/office) -"gGZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/full, -/area/horizon/engineering/hallway/fore) "gHc" = ( /obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor/tiled/dark, @@ -51028,13 +51076,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard) -"gNL" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/platform_deco{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/horizon/hangar/operations) "gNN" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -51997,12 +52038,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/full, /area/horizon/hallway/primary/deck_1/central) -"gVr" = ( -/obj/structure/sign/radiation{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/aft) "gVD" = ( /obj/machinery/door/blast/regular/open{ dir = 4; @@ -53828,6 +53863,17 @@ }, /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"; @@ -55090,26 +55136,6 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/plating, /area/horizon/rnd/xenoarch/atrium) -"hpH" = ( -/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) "hpJ" = ( /obj/structure/shuttle_part/scc/scout{ icon_state = "7,10" @@ -55165,6 +55191,15 @@ /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 @@ -56242,33 +56277,6 @@ }, /turf/simulated/floor/wood, /area/horizon/command/bridge/minibar) -"hwV" = ( -/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/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/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/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) "hwW" = ( /obj/effect/floor_decal/corner/full{ dir = 8 @@ -57515,30 +57523,6 @@ }, /turf/simulated/floor/shuttle/dark_blue, /area/horizon/shuttle/escape_pod/pod1) -"hEL" = ( -/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) "hEO" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, /obj/structure/cable{ @@ -57657,22 +57641,6 @@ icon_state = "white" }, /area/centcom/legion) -"hFJ" = ( -/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) "hFL" = ( /obj/structure/sink{ pixel_y = 16 @@ -57776,6 +57744,26 @@ "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 @@ -58083,12 +58071,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/central) -"hIG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/primary/deck_2/central) "hIS" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -59712,6 +59694,11 @@ /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) @@ -59726,6 +59713,14 @@ /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" @@ -60336,6 +60331,14 @@ /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 @@ -61977,6 +61980,12 @@ }, /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,6 +63135,18 @@ /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 @@ -63602,17 +63623,6 @@ /obj/effect/floor_decal/industrial/hatch_door/red, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_2/wing/starboard/nacelle) -"ivH" = ( -/obj/effect/decal/fake_object{ - density = 1; - desc = "A wooden crate containing spare parts."; - icon = 'icons/obj/crate.dmi'; - icon_state = "densecrate"; - name = "mechanical supply crate"; - pixel_x = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) "ivL" = ( /obj/structure/sign/double/map/right{ desc = "A framed picture of a station."; @@ -65036,23 +65046,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/storage/secure/ops_vault) -"iFp" = ( -/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) "iFv" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 @@ -67128,25 +67121,6 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/hangar/port) -"iUn" = ( -/obj/structure/table/reinforced, -/obj/item/storage/pill_bottle/dice{ - 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) "iUo" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/industrial/hatch_door/yellow{ @@ -67592,18 +67566,6 @@ icon_state = "water" }, /area/horizon/holodeck/source_konyang) -"iXz" = ( -/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) "iXA" = ( /obj/structure/cable/orange{ icon_state = "1-2" @@ -67905,18 +67867,6 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/main/starboard) -"iZt" = ( -/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) "iZu" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -68576,6 +68526,26 @@ /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) @@ -69368,35 +69338,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/rnd/xenoarch/atrium) -"jjT" = ( -/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) "jjU" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 5 @@ -70087,30 +70028,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/break_room) -"jnY" = ( -/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) "joj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -71367,6 +71284,21 @@ }, /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{ @@ -72278,11 +72210,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/horizon/hangar/intrepid) -"jEc" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light, -/turf/simulated/floor/plating, -/area/horizon/hangar/operations) "jEi" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, @@ -72498,29 +72425,6 @@ }, /turf/unsimulated/floor, /area/antag/raider) -"jFG" = ( -/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) "jFI" = ( /obj/structure/cable/green{ icon_state = "2-4" @@ -72757,25 +72661,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor/monotile, /area/antag/jockey) -"jHH" = ( -/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) "jHI" = ( /obj/structure/disposalpipe/segment{ icon_state = "pipe-c" @@ -75636,35 +75521,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/rnd/xenobiology) -"kaU" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/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) "kaV" = ( /obj/machinery/firealarm/south, /obj/structure/closet/walllocker/medical/secure{ @@ -76870,6 +76726,19 @@ /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" @@ -77693,6 +77562,18 @@ }, /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, @@ -77894,26 +77775,6 @@ }, /turf/simulated/floor/carpet/rubber, /area/horizon/rnd/chemistry) -"koU" = ( -/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) "koY" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -78223,6 +78084,22 @@ /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, @@ -80345,31 +80222,6 @@ /obj/machinery/alarm/east, /turf/simulated/floor/wood, /area/horizon/rnd/hallway/secondary) -"kDY" = ( -/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) "kEc" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/service/custodial/disposals/deck_1) @@ -82390,18 +82242,6 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"kSm" = ( -/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) "kSt" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/carpet/rubber, @@ -84407,6 +84247,14 @@ /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{ @@ -85444,12 +85292,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/weapons/grauwolf) -"lmh" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/exoplanet/plating, -/area/horizon/maintenance/deck_2/wing/starboard/near) "lmo" = ( /obj/machinery/atmospherics/unary/cryo_cell, /turf/simulated/floor/tiled, @@ -87422,6 +87264,13 @@ }, /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 @@ -87695,6 +87544,25 @@ }, /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, @@ -87737,6 +87605,12 @@ }, /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 @@ -88213,15 +88087,6 @@ "lEZ" = ( /turf/simulated/wall, /area/horizon/engineering/gravity_gen) -"lFb" = ( -/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) "lFd" = ( /obj/effect/floor_decal/industrial/outline/firefighting_closet, /obj/structure/closet/firecloset, @@ -88381,6 +88246,11 @@ /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" @@ -91269,6 +91139,13 @@ }, /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" @@ -92041,6 +91918,21 @@ }, /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 @@ -92443,21 +92335,6 @@ /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/lobby) -"mjB" = ( -/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) "mjJ" = ( /obj/effect/floor_decal/corner/black{ dir = 10 @@ -93058,16 +92935,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor, /area/horizon/maintenance/deck_3/aft/port) -"mnQ" = ( -/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) "mnW" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -93264,6 +93131,16 @@ /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, @@ -95602,6 +95479,26 @@ }, /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" @@ -95877,6 +95774,11 @@ }, /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, @@ -97973,6 +97875,18 @@ }, /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" @@ -99938,16 +99852,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/rnd/xenoarch/atrium) -"nmg" = ( -/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) "nmh" = ( /obj/structure/table/wood, /obj/item/device/megaphone/sec, @@ -99993,6 +99897,15 @@ /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{ @@ -100650,21 +100563,6 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/horizon/rnd/hallway/secondary) -"nsf" = ( -/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) "nsi" = ( /obj/structure/bed/handrail{ dir = 4 @@ -100759,30 +100657,6 @@ /obj/effect/floor_decal/industrial/hatch_door/yellow, /turf/simulated/floor/tiled/full, /area/horizon/service/hydroponics/garden) -"nsS" = ( -/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) "nsT" = ( /obj/machinery/alarm/east, /obj/effect/floor_decal/industrial/warning{ @@ -101676,6 +101550,15 @@ }, /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{ @@ -101706,18 +101589,6 @@ /obj/structure/flora/tree/jungle, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) -"nzD" = ( -/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) "nzM" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/structure/grille, @@ -101774,6 +101645,18 @@ }, /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 @@ -103288,6 +103171,15 @@ 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, @@ -103585,6 +103477,10 @@ /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" @@ -104295,6 +104191,30 @@ }, /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 @@ -105543,21 +105463,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_2/wing/starboard/near) -"oaJ" = ( -/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) "oaK" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/table/standard, @@ -105835,6 +105740,15 @@ }, /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, @@ -106473,19 +106387,6 @@ }, /turf/simulated/floor/wood, /area/horizon/service/cafeteria) -"ogk" = ( -/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) "ogl" = ( /obj/structure/bed/stool/padded/brown, /obj/effect/landmark{ @@ -106843,6 +106744,15 @@ }, /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 @@ -107052,15 +106962,6 @@ }, /turf/simulated/open, /area/horizon/operations/office) -"ojN" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/hangar/operations) "ojQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -107143,18 +107044,6 @@ /obj/effect/floor_decal/spline/plain/corner, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"okK" = ( -/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) "okM" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -108332,13 +108221,6 @@ /obj/random/dirt_75, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_2/wing/starboard/auxatmos) -"osA" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/platform_deco{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/horizon/hangar/operations) "osD" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 6 @@ -109061,6 +108943,18 @@ }, /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 @@ -109489,22 +109383,6 @@ /obj/structure/engineer_maintenance/electric/wall, /turf/simulated/floor/grass/no_edge, /area/horizon/service/hydroponics/lower) -"oAs" = ( -/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) "oAt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -109664,18 +109542,6 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"oBI" = ( -/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) "oBJ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/warning{ @@ -111582,6 +111448,22 @@ }, /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{ @@ -112103,6 +111985,18 @@ }, /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" @@ -112580,10 +112474,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/horizon/operations/lobby) -"oUY" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/primary/deck_2/central) "oVf" = ( /obj/structure/cable/green{ icon_state = "0-4" @@ -114427,6 +114317,15 @@ /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, @@ -115834,6 +115733,18 @@ }, /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{ @@ -116235,17 +116146,6 @@ }, /turf/simulated/floor/reinforced, /area/horizon/command/bridge/selfdestruct) -"pvu" = ( -/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) "pvw" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -116649,19 +116549,6 @@ /obj/effect/floor_decal/spline/fancy/wood/corner, /turf/simulated/floor/wood, /area/horizon/service/mess_hall) -"pyu" = ( -/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) "pyx" = ( /obj/machinery/light{ dir = 4 @@ -118244,18 +118131,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/rnd/xenoarch/atrium) -"pJV" = ( -/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) "pJX" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 10 @@ -118405,6 +118280,21 @@ /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 @@ -120124,6 +120014,15 @@ }, /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" @@ -120275,12 +120174,6 @@ /obj/machinery/light_switch/west, /turf/simulated/floor/wood, /area/horizon/crew/lounge) -"pYn" = ( -/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) "pYp" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -120411,12 +120304,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/turbolift/scc_ship/robotics_lift) -"pZi" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/exoplanet/plating, -/area/horizon/maintenance/deck_2/wing/starboard/near) "pZk" = ( /obj/effect/floor_decal/corner/green/diagonal, /turf/simulated/floor/tiled/white, @@ -121226,26 +121113,6 @@ /obj/random/dirt_75, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/main/port/shortcut) -"qfe" = ( -/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) "qfo" = ( /turf/simulated/open/airless, /area/horizon/exterior) @@ -121670,6 +121537,23 @@ }, /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 @@ -122712,13 +122596,6 @@ /obj/item/gun/projectile/automatic/rifle/shotgun, /turf/simulated/floor/shuttle/black, /area/shuttle/hapt) -"qpz" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 5 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/horizon/engineering/atmos/air) "qpB" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -122739,6 +122616,13 @@ }, /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, @@ -124456,21 +124340,6 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/reactor/supermatter/airlock) -"qCY" = ( -/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) "qDa" = ( /obj/structure/sign/fire{ desc = "A warning sign which reads 'DANGER: SHUTTLE THRUSTERS IN USE' and 'MIND THE DISTANCE'."; @@ -125389,15 +125258,6 @@ }, /turf/simulated/floor/bluegrid, /area/tdome) -"qIU" = ( -/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) "qJh" = ( /obj/structure/table/reinforced/steel, /obj/machinery/door/window/brigdoor/westright{ @@ -125510,6 +125370,19 @@ }, /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, @@ -127515,6 +127388,18 @@ }, /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 @@ -128328,18 +128213,6 @@ }, /turf/space, /area/horizon/exterior) -"rdD" = ( -/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) "rdJ" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ @@ -131186,6 +131059,24 @@ /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" @@ -131773,6 +131664,22 @@ /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, @@ -132034,10 +131941,6 @@ "rBJ" = ( /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/indra/smes) -"rBN" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/exoplanet/plating, -/area/horizon/maintenance/deck_2/wing/starboard/near) "rBT" = ( /obj/structure/cable{ icon_state = "1-2" @@ -132225,6 +132128,22 @@ /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, @@ -133092,39 +133011,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/rnd/xenoarch/storage) -"rJG" = ( -/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/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/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/crate.dmi'; - icon_state = "tcfl_crate_preview"; - name = "inconveniently placed crate"; - pixel_x = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion) "rJL" = ( /obj/effect/decal/fake_object{ color = "#545c68"; @@ -133268,6 +133154,35 @@ /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 @@ -134173,16 +134088,6 @@ /obj/machinery/power/apc/low/west, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/teleporter) -"rPV" = ( -/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) "rPW" = ( /obj/effect/decal/fake_object{ dir = 4; @@ -134627,15 +134532,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_2/wing/port/nacelle) -"rSR" = ( -/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) "rSS" = ( /obj/structure/table/standard, /obj/item/paper_bin{ @@ -134651,6 +134547,11 @@ }, /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) @@ -134964,16 +134865,6 @@ /obj/structure/railing/mapped, /turf/simulated/floor/tiled/white, /area/horizon/medical/hallway/upper) -"rUy" = ( -/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) "rUz" = ( /obj/effect/floor_decal/spline/plain{ dir = 6 @@ -135075,6 +134966,16 @@ }, /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 @@ -136710,15 +136611,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hangar/auxiliary) -"shf" = ( -/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) "shj" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -137766,21 +137658,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/rnd/conference) -"snB" = ( -/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) "snC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -138592,6 +138469,21 @@ /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 @@ -138818,19 +138710,6 @@ /obj/structure/lattice/catwalk/indoor, /turf/unsimulated/floor/plating, /area/centcom/checkpoint/aft) -"svT" = ( -/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) "swd" = ( /obj/machinery/door/blast/regular/open{ dir = 8; @@ -139767,6 +139646,16 @@ /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, @@ -141220,13 +141109,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/ward) -"sKQ" = ( -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 8 - }, -/obj/machinery/newscaster/west, -/turf/simulated/floor/tiled, -/area/horizon/engineering/hallway/fore) "sKR" = ( /obj/effect/floor_decal/corner{ dir = 6 @@ -142133,24 +142015,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/horizon/medical/hallway/upper) -"sQO" = ( -/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) "sQS" = ( /obj/structure/cable/green{ icon_state = "1-8" @@ -142907,6 +142771,31 @@ /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 @@ -144343,6 +144232,35 @@ /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 @@ -145358,17 +145276,6 @@ }, /turf/unsimulated/floor/marble, /area/antag/wizard) -"tnO" = ( -/obj/effect/decal/fake_object{ - density = 1; - desc = "A wooden crate containing spare parts."; - icon = 'icons/obj/crate.dmi'; - icon_state = "densecrate"; - name = "mechanical supply crate"; - pixel_x = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion) "tnP" = ( /obj/effect/floor_decal/industrial/warning{ dir = 9 @@ -145835,22 +145742,6 @@ /obj/structure/sign/flag/scc, /turf/simulated/wall, /area/horizon/hangar/intrepid/interstitial) -"tra" = ( -/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) "trd" = ( /obj/effect/floor_decal/corner/brown/full{ dir = 4 @@ -146592,16 +146483,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_2/starboard) -"tvL" = ( -/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) "tvP" = ( /turf/unsimulated/floor/stairs{ dir = 4 @@ -150043,15 +149924,6 @@ /obj/machinery/telecomms/processor/preset_one, /turf/simulated/floor/bluegrid, /area/horizon/tcommsat/chamber) -"tUZ" = ( -/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) "tVa" = ( /obj/effect/floor_decal/spline/fancy/wood/cee{ dir = 8 @@ -151025,6 +150897,12 @@ }, /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{ @@ -151389,6 +151267,14 @@ }, /turf/simulated/floor, /area/horizon/maintenance/deck_3/aft/holodeck) +"ufj" = ( +/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) "ufk" = ( /obj/structure/sign/directions/civ{ dir = 4; @@ -151427,6 +151313,13 @@ /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{ @@ -152074,6 +151967,15 @@ /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 @@ -152114,6 +152016,15 @@ }, /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) @@ -152366,6 +152277,25 @@ "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{ @@ -152872,6 +152802,18 @@ }, /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) @@ -152922,6 +152864,16 @@ }, /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, @@ -155266,15 +155218,6 @@ /obj/item/device/radio/intercom/expedition/north, /turf/simulated/floor/tiled/dark/full, /area/horizon/shuttle/intrepid/main_compartment) -"uFC" = ( -/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) "uFD" = ( /obj/structure/table/wood/gamblingtable, /obj/item/material/ashtray, @@ -155545,6 +155488,33 @@ }, /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 @@ -156387,13 +156357,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/weapons/grauwolf) -"uNf" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/sign/drop{ - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/horizon/hangar/operations) "uNk" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1380; @@ -156537,13 +156500,6 @@ /obj/structure/railing/mapped, /turf/simulated/floor/wood, /area/horizon/service/cafeteria) -"uOw" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/horizon/service/library) "uOC" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/corner/dark_blue{ @@ -157673,16 +157629,6 @@ }, /turf/unsimulated/floor, /area/centcom/specops) -"uVM" = ( -/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) "uVV" = ( /obj/structure/table/standard, /obj/structure/cable/green{ @@ -159941,16 +159887,6 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/stairwell/starboard/deck_2) -"vmm" = ( -/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) "vmo" = ( /obj/machinery/light/spot{ dir = 1 @@ -160801,23 +160737,6 @@ /obj/machinery/telecomms/bus/preset_three, /turf/simulated/floor/bluegrid, /area/horizon/tcommsat/chamber) -"vtd" = ( -/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) "vte" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/effect/floor_decal/industrial/warning, @@ -162201,6 +162120,13 @@ }, /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 @@ -162458,35 +162384,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/shuttle/skipjack) -"vEK" = ( -/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) "vEN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -163187,6 +163084,16 @@ }, /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, @@ -165474,6 +165381,12 @@ /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 @@ -166684,26 +166597,6 @@ }, /turf/unsimulated/floor/plating, /area/antag/mercenary) -"whV" = ( -/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/crate.dmi'; - icon_state = "tcfl_crate_preview"; - name = "legion supply crate"; - pixel_x = 1; - pixel_y = 3 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion) "wii" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -167154,16 +167047,6 @@ "wlr" = ( /turf/simulated/wall, /area/horizon/operations/warehouse) -"wls" = ( -/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) "wlt" = ( /obj/effect/floor_decal/corner/brown{ dir = 10 @@ -167686,6 +167569,21 @@ /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" @@ -168906,6 +168804,30 @@ }, /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) @@ -168944,6 +168866,13 @@ }, /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; @@ -171656,6 +171585,15 @@ }, /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 @@ -171677,6 +171615,15 @@ }, /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) @@ -172172,17 +172119,6 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/engineering/atmos) -"wSq" = ( -/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) "wSs" = ( /obj/effect/floor_decal/industrial/outline/service, /obj/structure/closet/crate/hydroponics/herbalism, @@ -173319,12 +173255,6 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion/hangar5) -"wYP" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/exoplanet/plating, -/area/horizon/maintenance/deck_2/wing/starboard/near) "wYQ" = ( /obj/machinery/door/airlock/centcom{ name = "Arrival Hangar Maintenance"; @@ -174681,6 +174611,18 @@ /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 @@ -175383,6 +175325,17 @@ /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 @@ -175861,6 +175814,16 @@ "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 @@ -175882,15 +175845,6 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) -"xrP" = ( -/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) "xrR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -180319,6 +180273,18 @@ /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 @@ -180521,6 +180487,30 @@ }, /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{ @@ -180997,6 +180987,16 @@ /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, @@ -205604,13 +205604,13 @@ jvu lUt bdU qtD -eCu +fqH lup pOq lUt mEZ dFe -ddy +qXG uXC bgo hCu @@ -205856,7 +205856,7 @@ kYn ner qqd jgx -ojN +wPr snq jIw cgv @@ -206120,10 +206120,10 @@ sWR kDB hHY eze -qCY -fub +pKI +eDW qix -oaJ +woq eze hHY xcw @@ -206630,8 +206630,8 @@ jgx hiV xuh vyG -vmm -gNL +ybF +foE arH rdV rdV @@ -206640,7 +206640,7 @@ rdV rdV rdV rwv -uNf +mbX hCu hCu hCu @@ -206883,13 +206883,13 @@ rmK vPf fxe sDe -sQO +rvZ sAU dYm sAU -pvu -dYL -bSQ +hhC +ufj +ocj rdV rdV rdV @@ -207137,15 +207137,15 @@ jgx dQp cBJ cve -kaU +dSj oSt uSb bzE aeW ofT -cEl +waY vof -bMc +frl wmb rdV rdV @@ -207154,7 +207154,7 @@ rdV rdV rdV rwv -jEc +hTv hCu hCu hCu @@ -207391,19 +207391,19 @@ hWT vyT hMc jgx -iXz +nzT rlY rlY -hpH +hGv rlY rlY -jHH +ulB ikg rxS ikg -oBI -lFb -fgm +isf +ujM +bDF rdV rdV rdV @@ -207649,7 +207649,7 @@ krH krH krH krH -rdD +oxy mLM gJO xgB @@ -207658,8 +207658,8 @@ jgx oSy ssE uln -uVM -osA +aGr +bmW arH rdV rdV @@ -208176,10 +208176,10 @@ sWR cUJ tqK ncx -pJV +xhN ncx ncx -pJV +xhN ncx lIU dzc @@ -208684,7 +208684,7 @@ aRo vdU krH wAl -qIU +fJq oKm sWR sWR @@ -208940,8 +208940,8 @@ urj pOj gCq nZx -kSm -nmg +knx +xrE cUv wjB mTr @@ -209198,7 +209198,7 @@ rTP tUo nZx cxm -rPV +cHm osN sWR osL @@ -209455,7 +209455,7 @@ rTP tky krH iSe -aal +pik cUv pOe mho @@ -209705,14 +209705,14 @@ nZx bix xnr xnr -fhB +hqj guR mAW rTP xne krH ucW -okK +psv eUo wwx hLX @@ -209924,7 +209924,7 @@ rBt xTA tJJ ldw -qfe +euQ vIo pQu rbM @@ -209969,8 +209969,8 @@ ieE chK odx cxm -fuR -gtP +axm +bfB sWR ndh dJi @@ -210226,7 +210226,7 @@ rTP kaG odx ieq -nmg +xrE cUv sxn ajQ @@ -210483,7 +210483,7 @@ rTP vBY krH pex -nmg +xrE mGB sxn hnL @@ -210740,8 +210740,8 @@ lAW nFL hhu cxm -aal -bUM +pik +xnI sWR jyc nFO @@ -210997,7 +210997,7 @@ aIq ngM krH muO -dmF +mhc brG sWR qDa @@ -213274,7 +213274,7 @@ bnW msD qDt iRv -mnQ +sBh ajh lKo lKo @@ -214559,7 +214559,7 @@ jyh gmU dPk rHS -dRt +xWc ajh jsx aYz @@ -214816,7 +214816,7 @@ lmI hnJ fbf qoJ -tra +oOk ajh hUC lKo @@ -216362,7 +216362,7 @@ hNW oCT jzT dRx -wls +rVr iLR rHK rHK @@ -219182,7 +219182,7 @@ rgt kpW rFC cUG -eUE +jxU bSu auC ylF @@ -219692,12 +219692,12 @@ iHh akf nSJ qUw -snB +sug stq oPJ owJ -nsf -qpz +cLL +qpL fQO nSJ nSJ @@ -226671,7 +226671,7 @@ fzI fVa mAB wIE -vEK +tgX wIE wIE wIE @@ -270858,7 +270858,7 @@ sXT quy eSM ouT -vtd +eJJ oCr bsU aWU @@ -271115,7 +271115,7 @@ sON ltE dUV khW -aIF +krp nwj vwY eTz @@ -271372,7 +271372,7 @@ mFo vWh sEW kNI -svT +ebm nwj nwj nwj @@ -271629,7 +271629,7 @@ yfv aTB bhv hwC -oAs +rDG mNr pvj cgw @@ -271876,7 +271876,7 @@ fov fov fov fov -wYP +gun eNf oGM sWx @@ -272133,15 +272133,15 @@ rDU eHx eba fov -eyC +mIH eNf rPd lYi -jFG +awl lYi lYi lYi -frJ +mGH rmS rmS rmS @@ -272390,7 +272390,7 @@ bvb sdS dGC fov -rBN +dBq hEO rPd hZQ @@ -272647,7 +272647,7 @@ jvF qvu aWs fov -xrP +nzh hEO rPd fRB @@ -272905,8 +272905,8 @@ ycu eYg nAm cMj -ogk -hFJ +kiq +rzM rwi nES mnW @@ -273162,7 +273162,7 @@ wLP put fov aAD -lmh +lCd rPd bpS pCP @@ -273419,7 +273419,7 @@ wLP gES fov oJM -pZi +aUW rPd oJC qiC @@ -273922,11 +273922,11 @@ lLF toJ tVm xZQ -cZJ -fnq -cjF -nzD -gqR +oRW +gwC +wPd +eJM +hTG oVr mxM rxF @@ -277531,7 +277531,7 @@ oTK aDT sor bsY -sKQ +eeI sEa pPE stI @@ -280614,15 +280614,15 @@ jTY djD lXl pIO -pyu +qJQ rMj -baj +gBD cap kYa uFY xUS kYa -geO +pXi jmo fwY stI @@ -280873,13 +280873,13 @@ nKi mbW nlw nKi -tvL -pYn -gGZ -rSR -gGZ -pYn -ebu +vKz +dwE +lGs +ujA +lGs +dwE +upO bSB gvf stI @@ -281136,7 +281136,7 @@ utO uFY lql lql -uFC +nJA nVR nXw stI @@ -281377,7 +281377,7 @@ qGE wIl hlu vWw -wSq +dMF wVZ wVZ whQ @@ -281888,7 +281888,7 @@ tBC cyY elJ tqD -aWp +nmz neq qsq fXf @@ -281907,8 +281907,8 @@ bLv bLv ecg rkL -oUY -hIG +nLp +ikp gst kBx ucf @@ -281933,7 +281933,7 @@ pfa oPk hHf mZW -dec +aeo ggO lPo lPo @@ -282449,7 +282449,7 @@ qpq uSs fBB vie -dit +leY qOh jDE xZE @@ -282706,7 +282706,7 @@ ieF gmA xoe oyY -tUZ +oiJ qOh lqu xZE @@ -283219,8 +283219,8 @@ qZz vhF yaa tpV -koU -uOw +jet +lzO vTR gXl xZE @@ -283477,7 +283477,7 @@ xZE xZE xZE xZE -ecy +ewo lEE xNh xZE @@ -284985,7 +284985,7 @@ uLt tha cpq cHw -eJK +wwl axy fSg aVN @@ -286001,9 +286001,9 @@ ovm epn uOD jOO -bjV +vDb xzK -dIR +rST xzK faM vnP @@ -286258,7 +286258,7 @@ ovm jiy dzv jOO -frX +ufs rTp vnP dYY @@ -286516,7 +286516,7 @@ iOp uOD jOO pRY -fDz +ubX rTp dYY oOR @@ -287026,7 +287026,7 @@ xxO ffn bqw ovm -gVr +cqF jOO qec pRY @@ -287283,7 +287283,7 @@ oUm dOx qJs ovm -fDz +ubX jOO yak pRY @@ -288058,7 +288058,7 @@ gLd tAI jOO afY -fqw +mYI tlo ehs ujB @@ -292473,7 +292473,7 @@ nTc fFV nTc hoX -iUn +lBJ eDm kuv xII @@ -342862,12 +342862,12 @@ uhj uhj bOF xDY -jjT +rKQ vUX -jnY -nsS +nQH +wvw eFO -hEL +xXP vUX iEa cKu @@ -343384,7 +343384,7 @@ xtz bwK skb sTA -kDY +sWE iEa uYQ wWR @@ -344408,7 +344408,7 @@ hAz iIN wso gjA -cZq +qiq chn cuq gBt @@ -348520,7 +348520,7 @@ mtx jOs ncP mMu -iFp +dJy uDJ glJ nen @@ -353619,7 +353619,7 @@ qEm ixW rQp loQ -mjB +aoj lyq oRv cAV @@ -388678,12 +388678,12 @@ ahy aLf sJv dFx -ael -eeA -eeA -eeA -eeA -rUy +fEj +hZi +hZi +hZi +hZi +mpL dFx sJv eSV @@ -389192,12 +389192,12 @@ vvt aLf sJv dFx -iZt -shf -shf -shf -shf -dYC +upF +cNc +cNc +cNc +cNc +fzv dFx sJv eSV @@ -429538,7 +429538,7 @@ jqW hst dyQ iLe -whV +ecn quV sFC klg @@ -429795,7 +429795,7 @@ gZA pTZ xPt iLe -rJG +gvE mba kYk quV @@ -430052,7 +430052,7 @@ iLe iLe aHq iLe -cKC +czk quV quV ygK @@ -430313,7 +430313,7 @@ quV quV opo ygK -tnO +gfj iLe ahf oeV @@ -432332,7 +432332,7 @@ oJA qTe qTe qTe -bbX +fHF tRO fTU onB @@ -438265,11 +438265,11 @@ eSV eSV vZj unn -hwV +uHr raR raR unn -ivH +cWC shp nsq unn