diff --git a/aurorastation.dme b/aurorastation.dme
index 4897e440761..a40a9387160 100644
--- a/aurorastation.dme
+++ b/aurorastation.dme
@@ -958,6 +958,7 @@
#include "code\game\objects\items\devices\lighting\flare.dm"
#include "code\game\objects\items\devices\lighting\flashlight.dm"
#include "code\game\objects\items\devices\lighting\glowstick.dm"
+#include "code\game\objects\items\devices\lighting\hull_beacon.dm"
#include "code\game\objects\items\devices\lighting\lamp.dm"
#include "code\game\objects\items\devices\lighting\survival.dm"
#include "code\game\objects\items\devices\PDA\radio.dm"
diff --git a/code/game/machinery/alarm.dm b/code/game/machinery/alarm.dm
index 9149dd40257..dbca5ccb976 100644
--- a/code/game/machinery/alarm.dm
+++ b/code/game/machinery/alarm.dm
@@ -97,8 +97,13 @@
/obj/machinery/alarm/server
req_one_access = list(access_rd, access_atmospherics, access_engine_equip)
- target_temperature = 90
- desc = "A device that controls the local air regulation machinery. This one is designed for use in server rooms."
+ target_temperature = 80
+ desc = "A device that controls the local air regulation machinery. This one is designed for use in small server rooms."
+ highpower = 1
+
+/obj/machinery/alarm/tcom
+ desc = "A device that controls the local air regulation machinery. This one is designed for use in server halls."
+ req_access = list(access_tcomsat)
highpower = 1
/obj/machinery/alarm/freezer
diff --git a/code/game/machinery/cryopod.dm b/code/game/machinery/cryopod.dm
index 577e474c653..d6fb4d293b6 100644
--- a/code/game/machinery/cryopod.dm
+++ b/code/game/machinery/cryopod.dm
@@ -182,10 +182,15 @@ var/global/list/frozen_crew = list()
desc = "A bewildering tangle of machinery and pipes."
icon = 'icons/obj/sleeper.dmi'
icon_state = "cryo_rear"
- density = TRUE
anchored = TRUE
dir = WEST
+/obj/structure/cryofeed/pipes
+ name = "cryogenic feed pipes"
+ desc = "A bewildering tangle of pipes."
+ icon = 'icons/obj/sleeper.dmi'
+ icon_state = "cryo_rear_pipes"
+
//Cryopods themselves.
/obj/machinery/cryopod
name = "cryogenic freezer"
diff --git a/code/game/objects/items/devices/lighting/hull_beacon.dm b/code/game/objects/items/devices/lighting/hull_beacon.dm
new file mode 100644
index 00000000000..b3ca3c391f4
--- /dev/null
+++ b/code/game/objects/items/devices/lighting/hull_beacon.dm
@@ -0,0 +1,15 @@
+/obj/item/hullbeacon
+ name = "hull beacon"
+ desc = "A light-emitting hull beacon."
+ icon = 'icons/obj/lighting.dmi'
+ anchored = TRUE
+
+/obj/item/hullbeacon/attack_hand(mob/user)
+ return
+
+/obj/item/hullbeacon/red
+ name = "red hull beacon"
+ desc = "A light-emitting red hull beacon."
+ icon_state = "beacon_red_on"
+ light_color = LIGHT_COLOR_RED
+ light_range = 3
\ No newline at end of file
diff --git a/code/game/objects/items/weapons/policetape.dm b/code/game/objects/items/weapons/policetape.dm
index 2991bdc1fd7..e684dab6a80 100644
--- a/code/game/objects/items/weapons/policetape.dm
+++ b/code/game/objects/items/weapons/policetape.dm
@@ -25,6 +25,7 @@ var/list/tape_roll_applications = list()
name = "tape"
icon = 'icons/policetape.dmi'
anchored = 1
+ layer = 3.1 // Above closed airlocks.
var/lifted = 0
var/list/crumplers
var/crumpled = 0
diff --git a/code/game/objects/items/weapons/storage/boxes.dm b/code/game/objects/items/weapons/storage/boxes.dm
index 7ac5178b30e..0cf7b2b3755 100644
--- a/code/game/objects/items/weapons/storage/boxes.dm
+++ b/code/game/objects/items/weapons/storage/boxes.dm
@@ -980,4 +980,10 @@
else
to_chat(user, SPAN_WARNING("\The [src] needs to be empty before you can do that!"))
else
- ..()
\ No newline at end of file
+ ..()
+
+/obj/item/storage/box/tungstenslugs
+ name = "box of compact tungsten slugs"
+ desc = "A box with several compact tungsten slugs, aimed for use in gauss carbines."
+ icon_state = "box_tungstenslug"
+ starts_with = list(/obj/item/ammo_casing/gauss/carbine = 4)
\ No newline at end of file
diff --git a/code/game/objects/structures/lattice.dm b/code/game/objects/structures/lattice.dm
index 26840eee723..f3c38d7dae4 100644
--- a/code/game/objects/structures/lattice.dm
+++ b/code/game/objects/structures/lattice.dm
@@ -65,8 +65,11 @@
desc = "A catwalk for easier EVA maneuvering."
icon = 'icons/obj/smooth/catwalk.dmi'
icon_state = "catwalk"
- smooth = TRUE
- canSmoothWith = null
+ smooth = SMOOTH_TRUE
+ canSmoothWith = list(
+ /obj/structure/lattice/catwalk,
+ /obj/structure/lattice/catwalk/indoor
+ )
var/return_amount = 3
// Special catwalk that can be placed on regular flooring.
diff --git a/code/game/objects/structures/plasticflaps.dm b/code/game/objects/structures/plasticflaps.dm
index 10791d33656..6d64d50b6f2 100644
--- a/code/game/objects/structures/plasticflaps.dm
+++ b/code/game/objects/structures/plasticflaps.dm
@@ -69,18 +69,18 @@
name = "airtight plastic flaps"
desc = "Heavy duty, airtight, plastic flaps."
- New() //set the turf below the flaps to block air
- var/turf/T = get_turf(loc)
- if(T)
- T.blocks_air = 1
- ..()
+/obj/structure/plasticflaps/mining/New() //set the turf below the flaps to block air
+ var/turf/T = get_turf(loc)
+ if(T)
+ T.blocks_air = 1
+ ..()
- Destroy() //lazy hack to set the turf to allow air to pass if it's a simulated floor
- var/turf/T = get_turf(loc)
- if(T)
- if(istype(T, /turf/simulated/floor))
- T.blocks_air = 0
- return ..()
+/obj/structure/plasticflaps/mining/Destroy() //lazy hack to set the turf to allow air to pass if it's a simulated floor
+ var/turf/T = get_turf(loc)
+ if(T)
+ if(istype(T, /turf/simulated/floor))
+ T.blocks_air = 0
+ return ..()
//Airtight plastic flaps made for the kitchen freezer, blocks atmos but not movement
@@ -103,4 +103,4 @@
return ..()
/obj/structure/plasticflaps/airtight/CanPass(atom/A, turf/T)
- return 1//Blocks nothing except air
+ return 1//Blocks nothing except air
\ No newline at end of file
diff --git a/code/game/objects/structures/signs.dm b/code/game/objects/structures/signs.dm
index a3db333e197..d1dd913ec04 100644
--- a/code/game/objects/structures/signs.dm
+++ b/code/game/objects/structures/signs.dm
@@ -275,11 +275,35 @@
desc = "A green sign pointing towards an emergency exit."
icon_state = "emerg_exit"
+/obj/structure/sign/emerg_exit/evac
+ name = "\improper EVACUATION ROUTE sign"
+ desc = "A green sign pointing towards an evacuation route."
+ icon_state = "emerg_exit"
+
/obj/structure/sign/emerg_exitZ
name = "\improper EMERGENCY LADDER"
desc = "A green sign that depicts a person climbing the ladder towards the arrow's direction, pointing at the emergency exit."
icon_state = "emerg_exitZ"
+/obj/structure/sign/emerg_exitZ/evac
+ name = "\improper EVACUATION ROUTE sign"
+ desc = "A green sign that depicts a person climbing a ladder towards an evacuation route."
+ icon_state = "emerg_exitZ"
+
+/obj/structure/sign/emerg_exitZ_stairs
+ name = "\improper STAIRS"
+ desc = "A green sign that depicts a person using stairs towards the arrow's direction, pointing at the emergency exit."
+ icon_state = "emerg_exitZ_stairs"
+
+/obj/structure/sign/emerg_exitZ_stairs/evac
+ name = "\improper EVACUATION ROUTE sign"
+ desc = "A green sign that depicts a person using a stairwell, moving towards an evacuation route."
+ icon_state = "emerg_exitZ_stairs"
+
+/obj/structure/sign/emerg_pods
+ name = "\improper EVACUATION POD sign"
+ desc = "A green sign that depicts an evacuation pod, with the text \"EVACUATION PODS\" under it."
+ icon_state = "emerg_pods"
//Christmas
/obj/structure/sign/christmas/lights
diff --git a/code/game/turfs/flooring/flooring_decals.dm b/code/game/turfs/flooring/flooring_decals.dm
index 6e2834e119c..530633f12bf 100644
--- a/code/game/turfs/flooring/flooring_decals.dm
+++ b/code/game/turfs/flooring/flooring_decals.dm
@@ -378,10 +378,25 @@
/obj/effect/floor_decal/spline/plain/corner
icon_state = "spline_plain_corner"
+/obj/effect/floor_decal/spline/plain/cee
+ icon_state = "spline_plain_cee"
+
+/obj/effect/floor_decal/spline/plain/full
+ icon_state = "spline_plain_full"
+
/obj/effect/floor_decal/spline/fancy
name = "spline - fancy"
icon_state = "spline_fancy"
+/obj/effect/floor_decal/spline/fancy/corner
+ icon_state = "spline_fancy_corner"
+
+/obj/effect/floor_decal/spline/fancy/cee
+ icon_state = "spline_fancy_cee"
+
+/obj/effect/floor_decal/spline/fancy/full
+ icon_state = "spline_fancy_full"
+
/obj/effect/floor_decal/spline/fancy/wood
name = "spline - wood"
color = "#CB9E04"
@@ -443,12 +458,32 @@
/obj/effect/floor_decal/industrial/outline/grey
name = "grey outline"
- color = "#808080"
+ color = COLOR_GRAY
/obj/effect/floor_decal/industrial/outline/red
name = "red outline"
color = "#990C0C"
+/obj/effect/floor_decal/industrial/outline/medical
+ name = "medical green outline"
+ color = COLOR_GREEN_GRAY
+
+/obj/effect/floor_decal/industrial/outline/engineering
+ name = "engineering yellow outline"
+ color = COLOR_YELLOW_ENGI
+
+/obj/effect/floor_decal/industrial/outline/service
+ name = "service lime outline"
+ color = COLOR_PALE_GREEN_GRAY
+
+/obj/effect/floor_decal/industrial/outline/research
+ name = "research mauve outline"
+ color = COLOR_PURPLE_GRAY
+
+/obj/effect/floor_decal/industrial/outline/security
+ name = "security blue outline"
+ color = COLOR_BLUE_GRAY
+
/obj/effect/floor_decal/industrial/loading
name = "loading area"
icon_state = "loadingarea"
@@ -457,7 +492,7 @@
color = "#CFCF55"
/obj/effect/floor_decal/industrial/loading/grey
- color = "#808080"
+ color = COLOR_GRAY
/obj/effect/floor_decal/plaque
name = "plaque"
diff --git a/code/game/turfs/simulated/water.dm b/code/game/turfs/simulated/water.dm
index 33febb92d83..5f3e7a18e57 100644
--- a/code/game/turfs/simulated/water.dm
+++ b/code/game/turfs/simulated/water.dm
@@ -29,6 +29,11 @@
var/obj/effect/water_effect/water_overlay
var/numobjects = 0
+/turf/simulated/floor/beach/water/alt
+ name = "water"
+ icon_state = "seadeep"
+ watertype = "poolwater"
+
/turf/simulated/floor/beach/water/pool
name = "pool"
icon_state = "pool"
diff --git a/code/modules/paperwork/paper.dm b/code/modules/paperwork/paper.dm
index 35b432c5dbf..9337414d59b 100644
--- a/code/modules/paperwork/paper.dm
+++ b/code/modules/paperwork/paper.dm
@@ -686,3 +686,20 @@ Please note: Cell timers will \[b\]NOT\[/b\] function without a valid incident f
/obj/item/paper/medscan
icon_state = "medscan"
+
+//
+// Fluff Papers
+// Fluff papers that you can map in, for lore or whatever.
+//
+
+// Parent item.
+/obj/item/paper/fluff
+ name = "fluff paper"
+ desc = "You aren't supposed to see this."
+
+// Used in the deck 3 cafe on the SCCV Horizon.
+/obj/item/paper/fluff/microwave
+ name = "\improper RE: Where are our microwaves?"
+ desc = null
+ info = "2464-04-30 04:50 GST
E-Mail Title: RE: Where are our microwaves?
We are sorry for the lack of a microwave, but the transport got misdirected on the way.
-Orion Express Customer Service
2464-04-30 07:50 GST
E-Mail Title: RE: Where are our microwaves?
We apologize for the lack of a microwave. As compensation, employees are given a donut box. Please enjoy.
-SCC Internal Affairs"
+ info_links = "2464-04-30 04:50 GST
E-Mail Title: RE: Where are our microwaves?
We are sorry for the lack of a microwave, but the transport got misdirected on the way.
-Orion Express Customer Service
2464-04-30 07:50 GST
E-Mail Title: RE: Where are our microwaves?
We apologize for the lack of a microwave. As compensation, employees are given a donut box. Please enjoy.
-SCC Internal Affairs"
\ No newline at end of file
diff --git a/html/changelogs/deck_3_remap.yml b/html/changelogs/deck_3_remap.yml
new file mode 100644
index 00000000000..11532dd9a50
--- /dev/null
+++ b/html/changelogs/deck_3_remap.yml
@@ -0,0 +1,18 @@
+author: SleepyGemmy
+
+delete-after: True
+
+changes:
+ - maptweak: "Remaps and moves the cafe from the starboard side to the port side on deck 3. Makes it possible to send things to the deck 3 cafe."
+ - maptweak: "Remaps the recreational center. Remaps the changing room, washroom, and showers. Adds a gym and a lounge."
+ - maptweak: "Remaps cryogenics, which now has a shower below it and a toilet a bit further down."
+ - maptweak: "Adds a deck 3 civilian substation below engineering's break/meeting room on deck 3."
+ - maptweak: "Remaps the crew armoury, adds a command access front desk."
+ - maptweak: "Adds more nature, such as a nature showcase to the starboard side and a flowerbed to the rafters on deck 3."
+ - maptweak: "Adds a central stairwell that spans across all decks."
+ - maptweak: "Remaps the starboard side of deck 3, adds a new public hallway. Moves the scuttling chamber to the central ring on deck 3."
+ - maptweak: "Remaps the starboard deck 2 hallway. Moves tech storage to the left. Adds a maintenance airlock into starboard maintenance on deck 2."
+ - maptweak: "Remaps operations and implements QoL features such as a warehouse-to-mail room disposals chute."
+ - maptweak: "Adds a command bunker above the crew armoury."
+ - maptweak: "Remaps the AI core and moves its SMES to deck 2. Makes the turrets stun and lethal instead of lethal only."
+ - maptweak: "Remaps the morgue and makes it look like a morgue."
\ No newline at end of file
diff --git a/icons/obj/crew_quarters_lift.dmi b/icons/obj/crew_quarters_lift.dmi
index 075f352ac7c..c6e89d62614 100644
Binary files a/icons/obj/crew_quarters_lift.dmi and b/icons/obj/crew_quarters_lift.dmi differ
diff --git a/icons/obj/decals.dmi b/icons/obj/decals.dmi
index 6b7c5543275..e19723c95ba 100644
Binary files a/icons/obj/decals.dmi and b/icons/obj/decals.dmi differ
diff --git a/icons/obj/lighting.dmi b/icons/obj/lighting.dmi
index 72ebe54319c..eb610a60cc4 100644
Binary files a/icons/obj/lighting.dmi and b/icons/obj/lighting.dmi differ
diff --git a/icons/obj/sleeper.dmi b/icons/obj/sleeper.dmi
index c0d8d168b00..662c4dccdcc 100644
Binary files a/icons/obj/sleeper.dmi and b/icons/obj/sleeper.dmi differ
diff --git a/icons/obj/storage.dmi b/icons/obj/storage.dmi
index 32615685f79..d31571001ed 100644
Binary files a/icons/obj/storage.dmi and b/icons/obj/storage.dmi differ
diff --git a/icons/turf/areas.dmi b/icons/turf/areas.dmi
index 6cdf7842981..68a0cdbfdd2 100755
Binary files a/icons/turf/areas.dmi and b/icons/turf/areas.dmi differ
diff --git a/maps/_common/areas/station/civilian.dm b/maps/_common/areas/station/civilian.dm
index c34833ad5bb..6ef333d8b76 100644
--- a/maps/_common/areas/station/civilian.dm
+++ b/maps/_common/areas/station/civilian.dm
@@ -1,5 +1,4 @@
//Crew
-
/area/crew_quarters
name = "Dormitories"
icon_state = "Sleep"
@@ -22,12 +21,6 @@
allow_nightmode = 1
holomap_color = HOLOMAP_AREACOLOR_DORMS
-/area/crew_quarters/sleep/engi_wash
- name = "Engineering - Washroom"
- icon_state = "toilet"
- sound_env = SMALL_ENCLOSED
- holomap_color = HOLOMAP_AREACOLOR_ENGINEERING
-
/area/crew_quarters/sleep/bedrooms
name = "Dormitory Bedroom One"
icon_state = "Sleep"
@@ -61,24 +54,6 @@
icon_state = "Sleep"
holomap_color = HOLOMAP_AREACOLOR_MEDICAL
-/area/crew_quarters/sleep_male
- name = "Male Dorm"
- icon_state = "Sleep"
-
-/area/crew_quarters/sleep_male/toilet_male
- name = "Male Toilets"
- icon_state = "toilet"
- sound_env = SMALL_ENCLOSED
-
-/area/crew_quarters/sleep_female
- name = "Female Dorm"
- icon_state = "Sleep"
-
-/area/crew_quarters/sleep_female/toilet_female
- name = "Female Toilets"
- icon_state = "toilet"
- sound_env = SMALL_ENCLOSED
-
/area/crew_quarters/locker
name = "Locker Room"
icon_state = "locker"
@@ -237,4 +212,4 @@
/area/journalistoffice
name = "Journalist's Office"
station_area = 1
- sound_env = SMALL_SOFTFLOOR
+ sound_env = SMALL_SOFTFLOOR
\ No newline at end of file
diff --git a/maps/_common/areas/station/hallways.dm b/maps/_common/areas/station/hallways.dm
index f1386b0afbf..18357341d4f 100644
--- a/maps/_common/areas/station/hallways.dm
+++ b/maps/_common/areas/station/hallways.dm
@@ -1,6 +1,4 @@
-
-//Hallway
-
+// Hallways
/area/hallway
sound_env = LARGE_ENCLOSED
allow_nightmode = TRUE
@@ -88,4 +86,4 @@
/area/hallway/secondary/entry/stairs
name = "Surface Access Stairwell"
- icon_state = "dk_yellow"
+ icon_state = "dk_yellow"
\ No newline at end of file
diff --git a/maps/sccv_horizon/code/sccv_horizon_areas.dm b/maps/sccv_horizon/code/sccv_horizon_areas.dm
index 8151e594246..957a1146569 100644
--- a/maps/sccv_horizon/code/sccv_horizon_areas.dm
+++ b/maps/sccv_horizon/code/sccv_horizon_areas.dm
@@ -316,3 +316,107 @@
has_gravity = FALSE
base_turf = /turf/space
station_area = TRUE
+
+//
+// Areas for the SCCV Horizon Map
+//
+/area/horizon
+ name = "Horizon (PARENT AREA - DON'T USE)"
+ icon_state = "unknown"
+ station_area = TRUE
+
+// Hallways
+/area/horizon/hallway
+ name = "Horizon - Hallway (PARENT AREA - DON'T USE)"
+ sound_env = LARGE_ENCLOSED
+ allow_nightmode = TRUE
+ lightswitch = TRUE
+ holomap_color = HOLOMAP_AREACOLOR_HALLWAYS
+ emergency_lights = TRUE
+
+/area/horizon/hallway/deck_three/primary/starboard
+ name = "Horizon - Deck 3 - Starboard Primary Hallway"
+ icon_state = "hallS"
+
+/area/horizon/hallway/deck_three/primary/starboard/docks
+ name = "Horizon - Deck 3 - Starboard Primary Hallway - Docks"
+
+// Stairwells
+/area/horizon/stairwell
+ name = "Horizon - Stairwell (PARENT AREA - DON'T USE)"
+ flags = RAD_SHIELDED
+
+/area/horizon/stairwell/central // Central stairwell.
+ name = "Horizon - Central Stairwell"
+ icon_state = "stairwell"
+ sound_env = SMALL_ENCLOSED
+
+// Crew Quarters
+/area/horizon/crew_quarters
+ name = "Horizon - Crew Quarters (PARENT AREA - DON'T USE)"
+ flags = RAD_SHIELDED
+
+// Cryogenics
+/area/horizon/crew_quarters/cryo
+ name = "Horizon - Cryogenic Storage"
+ icon_state = "Sleep"
+
+/area/horizon/crew_quarters/cryo/dormitories
+ name = "Horizon - Cryogenic Storage - Dormitories"
+
+/area/horizon/crew_quarters/cryo/washroom
+ name = "Horizon - Cryogenic Storage - Washroom"
+ icon_state = "washroom"
+ sound_env = SMALL_ENCLOSED
+
+/area/horizon/crew_quarters/cryo/showers
+ name = "Horizon - Cryogenic Storage - Showers"
+ icon_state = "showers"
+ sound_env = SMALL_ENCLOSED
+
+// Fitness Center
+/area/horizon/crew_quarters/fitness
+ name = "Horizon - Fitness Center (PARENT AREA - DON'T USE)"
+ icon_state = "fitness"
+
+/area/horizon/crew_quarters/fitness/hallway
+ name = "Horizon - Fitness Center Hallway"
+ icon_state = "fitness_hallway"
+
+/area/horizon/crew_quarters/fitness/pool
+ name = "Horizon - Fitness Center - Pool"
+ icon_state = "fitness_pool"
+
+/area/horizon/crew_quarters/fitness/gym
+ name = "Horizon - Fitness Center - Gym"
+ icon_state = "fitness_gym"
+
+/area/horizon/crew_quarters/fitness/changing
+ name = "Horizon - Fitness Center - Changing Room"
+ icon_state = "fitness_changingroom"
+
+/area/horizon/crew_quarters/fitness/washroom
+ name = "Horizon - Fitness Center - Washroom"
+ icon_state = "washroom"
+ sound_env = SMALL_ENCLOSED
+
+/area/horizon/crew_quarters/fitness/showers
+ name = "Horizon - Fitness Center - Showers"
+ icon_state = "showers"
+ sound_env = SMALL_ENCLOSED
+
+/area/horizon/crew_quarters/fitness/lounge
+ name = "Horizon - Fitness Center - Lounge"
+ icon_state = "fitness_lounge"
+ sound_env = SMALL_SOFTFLOOR
+
+// Cafeteria
+/area/horizon/deck_three/cafeteria
+ name = "Horizon - Deck 3 - Cafeteria"
+ icon_state = "cafeteria"
+
+// Nature Showcase
+/area/horizon/deck_three/nature_showcase
+ name = "Horizon - Deck 3 - Nature Showcase"
+ icon_state = "nature_showcase"
+ sound_env = SMALL_ENCLOSED
\ No newline at end of file
diff --git a/maps/sccv_horizon/sccv_horizon-1_deck_1.dmm b/maps/sccv_horizon/sccv_horizon-1_deck_1.dmm
index 157baf138cb..185387ef227 100644
--- a/maps/sccv_horizon/sccv_horizon-1_deck_1.dmm
+++ b/maps/sccv_horizon/sccv_horizon-1_deck_1.dmm
@@ -19,13 +19,22 @@
},
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"abQ" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "cargo_1";
- layer = 2.9
+"abr" = (
+/obj/structure/grille/diagonal{
+ dir = 4
},
-/turf/simulated/floor/plating,
+/turf/space,
+/area/template_noop)
+"abQ" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 28
+ },
+/obj/effect/floor_decal/corner/brown/full{
+ dir = 4
+ },
+/obj/structure/flora/pottedplant/random,
+/turf/simulated/floor/tiled,
/area/operations/storage)
"acn" = (
/obj/structure/window/shuttle/scc,
@@ -87,7 +96,13 @@
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/lattice/catwalk/indoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/wing/port/deck1)
"agI" = (
@@ -124,19 +139,19 @@
/turf/simulated/floor/plating,
/area/maintenance/wing/port/deck1)
"ajF" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
+/obj/machinery/door/airlock/glass_mining{
+ name = "Mining Shuttle Bay";
+ req_access = null;
+ req_one_access = list(31, 48, 67)
},
-/obj/structure/table/standard{
- no_cargo = 1
- },
-/obj/item/device/destTagger,
-/obj/effect/floor_decal/corner/brown{
- dir = 6
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/hangar/operations)
"ajK" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -150,12 +165,12 @@
/area/hangar/intrepid/interstitial)
"ajM" = (
/obj/machinery/cryopod/robot,
-/obj/effect/floor_decal/industrial/outline/blue,
/obj/machinery/computer/cryopod/robot{
pixel_y = 32
},
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/area/turret_protected/ai_upload)
"akC" = (
/obj/structure/lattice/catwalk/indoor/grate/damaged,
/obj/item/stack/rods,
@@ -332,11 +347,9 @@
/obj/machinery/power/smes/buildable{
RCon_tag = "Substation - Service"
},
-/obj/structure/cable{
- icon_state = "0-8"
- },
+/obj/structure/cable,
/obj/structure/cable/green{
- icon_state = "0-4"
+ icon_state = "0-2"
},
/turf/simulated/floor/plating,
/area/maintenance/substation/civilian_west)
@@ -372,24 +385,31 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/effect/floor_decal/corner/brown{
- dir = 9
- },
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
+/obj/effect/floor_decal/corner/brown/full{
+ dir = 8
+ },
/turf/simulated/floor/tiled,
/area/operations/loading)
"asC" = (
/obj/structure/cable/green{
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/black,
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
/turf/simulated/floor/tiled/dark,
-/area/hangar/operations)
+/area/hangar/auxiliary)
"atA" = (
/obj/structure/cable{
icon_state = "0-2"
@@ -469,6 +489,8 @@
/area/engineering/atmos/propulsion/starboard)
"awX" = (
/obj/machinery/shieldwallgen,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/cable/green,
/turf/simulated/floor/tiled,
/area/hangar/auxiliary)
"axv" = (
@@ -793,6 +815,9 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
/turf/simulated/floor/reinforced,
/area/engineering/gravity_gen)
"aJB" = (
@@ -854,6 +879,7 @@
/area/shuttle/intrepid/medical_compartment)
"aMh" = (
/obj/structure/railing/mapped,
+/obj/structure/trash_pile,
/turf/simulated/floor/tiled,
/area/maintenance/operations)
"aME" = (
@@ -887,6 +913,7 @@
pixel_x = -25;
pixel_y = 5
},
+/obj/effect/floor_decal/industrial/hatch/yellow,
/obj/structure/cable/green{
icon_state = "1-2"
},
@@ -933,20 +960,24 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
+/obj/effect/floor_decal/corner/green/full{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
-/area/hangar/intrepid)
+/area/horizon/stairwell/central)
"aOv" = (
/obj/structure/railing/mapped,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/wing/port/deck1)
"aOC" = (
-/obj/structure/ladder/up{
- pixel_y = 13
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
-/obj/structure/lattice/catwalk/indoor,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
+/obj/structure/closet/emcloset,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/hangar/operations)
"aOD" = (
/obj/structure/bed/stool/chair/shuttle{
dir = 8
@@ -971,7 +1002,8 @@
name = "E.V.A. Recharging Shutters";
pixel_x = -7;
pixel_y = -25;
- req_access = list(18)
+ req_access = list(18);
+ dir = 1
},
/turf/simulated/floor/tiled/dark,
/area/rnd/eva)
@@ -1011,12 +1043,15 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/floor_decal/spline/plain{
- dir = 8
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/effect/floor_decal/corner/brown{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
/turf/simulated/floor/tiled,
/area/operations/loading)
"aSR" = (
@@ -1035,8 +1070,7 @@
},
/obj/machinery/door/airlock/glass_mining{
name = "Mining";
- req_access = list(48);
- req_one_access = null
+ req_one_access = list(31, 48, 67)
},
/turf/simulated/floor/tiled,
/area/outpost/mining_main/refinery)
@@ -1055,12 +1089,9 @@
/turf/simulated/floor/tiled,
/area/maintenance/wing/port/deck1)
"aUi" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
/obj/machinery/door/airlock/atmos{
name = "Atmospherics Maintenance";
- req_access = list(12,24)
+ req_one_access = list(11, 24)
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
@@ -1171,19 +1202,16 @@
/turf/simulated/floor/tiled/dark,
/area/hangar/intrepid)
"aXC" = (
+/obj/structure/railing/mapped{
+ dir = 4
+ },
/obj/structure/cable/green{
icon_state = "0-4"
},
/obj/structure/cable/green{
icon_state = "12-0"
},
-/obj/structure/railing/mapped{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/zpipe/up/supply{
+/obj/effect/floor_decal/industrial/warning{
dir = 4
},
/turf/simulated/floor/plating,
@@ -1210,18 +1238,10 @@
/turf/simulated/floor/plating,
/area/maintenance/wing/port/deck1)
"aYY" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical{
- name = "Morgue";
- req_access = list(6)
- },
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
-/area/medical/morgue/lower)
+/area/medical/emergency_storage)
"aZd" = (
/obj/structure/table/steel,
/obj/effect/floor_decal/industrial/warning{
@@ -1323,7 +1343,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/hatch{
name = "Propulsion";
- req_access = list(10)
+ req_one_access = list(11, 24)
},
/turf/simulated/floor/tiled/dark,
/area/engineering/atmos/propulsion)
@@ -1366,9 +1386,9 @@
/turf/simulated/floor/plating,
/area/maintenance/research_port)
"ben" = (
-/obj/structure/lattice/catwalk/indoor/grate,
/mob/living/silicon/robot/shell,
-/turf/simulated/floor/plating,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/reinforced,
/area/turret_protected/ai)
"beu" = (
/obj/structure/lattice/catwalk/indoor,
@@ -1389,7 +1409,7 @@
pixel_y = 5
},
/turf/simulated/floor/plating,
-/area/engineering/storage/tech)
+/area/engineering/storage/lower)
"beP" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -1441,6 +1461,10 @@
/obj/machinery/light{
dir = 4
},
+/obj/structure/sign/emerg_exit/evac{
+ dir = 4;
+ pixel_x = 32
+ },
/turf/simulated/floor/tiled/dark,
/area/hangar/intrepid)
"bfX" = (
@@ -1505,12 +1529,6 @@
},
/turf/simulated/floor/tiled,
/area/hangar/intrepid)
-"bjE" = (
-/obj/machinery/light/small/emergency{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/engineering/atmos/propulsion)
"bkV" = (
/obj/effect/floor_decal/corner/purple{
dir = 5
@@ -1531,22 +1549,19 @@
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
/area/hangar/intrepid)
"blr" = (
-/obj/structure/table/standard,
-/obj/item/device/suit_cooling_unit,
-/obj/item/storage/toolbox/mechanical{
- pixel_x = -2;
- pixel_y = -1
- },
-/obj/item/storage/belt/utility,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/railing/mapped{
- dir = 8
- },
-/obj/structure/railing/mapped{
+/obj/effect/floor_decal/corner/brown/full{
dir = 1
},
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'DANGER: EQUIPMENT STARTS AND STOPS AUTOMATICALLY' and 'CRUSH HAZARD'.";
+ name = "\improper DANGER: AUTOMATIC EQUIPMENT - CRUSH HAZARD sign";
+ pixel_x = 32
+ },
/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
+/area/hangar/operations)
"blO" = (
/obj/structure/cable/green{
icon_state = "1-4"
@@ -1560,6 +1575,7 @@
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
+/obj/effect/floor_decal/corner/brown/diagonal,
/turf/simulated/floor/tiled,
/area/operations/loading)
"blW" = (
@@ -1582,6 +1598,14 @@
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/plating,
/area/maintenance/wing/port/deck1)
+"boy" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/hangar/operations)
"boB" = (
/obj/structure/lattice/catwalk/indoor/grate,
/obj/structure/cable{
@@ -1592,20 +1616,25 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/hatch{
name = "Starboard Propulsion";
- req_access = list(10)
+ req_one_access = list(11, 24)
},
/obj/machinery/atmospherics/pipe/simple/hidden/black,
/turf/simulated/floor/plating,
/area/engineering/atmos/propulsion/starboard)
+"boC" = (
+/obj/machinery/atmospherics/pipe/simple/visible/purple,
+/obj/structure/lattice/catwalk/indoor,
+/turf/space/dynamic,
+/area/template_noop)
"boH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
/turf/space/dynamic,
/area/template_noop)
"boN" = (
-/obj/effect/decal/warning_stripes,
-/obj/machinery/porta_turret/stationary,
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/porta_turret,
/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/area/turret_protected/ai_upload)
"boY" = (
/obj/machinery/atmospherics/pipe/simple/visible/blue{
dir = 6
@@ -1695,6 +1724,18 @@
/area/shuttle/intrepid/cargo_bay)
"brT" = (
/obj/machinery/light/small,
+/obj/structure/table/standard{
+ no_cargo = 1
+ },
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
/turf/simulated/floor/tiled,
/area/operations/storage)
"btw" = (
@@ -1709,6 +1750,14 @@
},
/turf/simulated/floor/reinforced/airmix,
/area/engineering/atmos/air)
+"bup" = (
+/obj/machinery/door/firedoor/multi_tile,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Deck 1 Central Stairwell"
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/stairwell/central)
"buI" = (
/obj/structure/table/rack,
/obj/item/clothing/shoes/magboots,
@@ -1726,14 +1775,17 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/eva)
"buS" = (
-/obj/vehicle/train/cargo/trolley,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
-/obj/effect/floor_decal/spline/plain,
/obj/effect/floor_decal/corner/brown{
dir = 10
},
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
/turf/simulated/floor/tiled,
/area/operations/loading)
"bvb" = (
@@ -1767,9 +1819,6 @@
/area/engineering/atmos/air)
"bvN" = (
/obj/structure/lattice/catwalk/indoor,
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 10
},
@@ -1838,6 +1887,15 @@
},
/turf/simulated/floor/reinforced,
/area/rnd/xenoarch_atrium)
+"byb" = (
+/obj/effect/floor_decal/corner/brown/full{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/operations)
"byS" = (
/obj/structure/cable/green{
icon_state = "1-4"
@@ -1882,6 +1940,9 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
+/obj/structure/sign/emerg_exit/evac{
+ dir = 4
+ },
/turf/simulated/floor/tiled/dark,
/area/hangar/auxiliary)
"bAM" = (
@@ -1897,8 +1958,8 @@
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/machinery/door/airlock/maintenance,
/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance_hatch,
/turf/simulated/floor/plating,
/area/maintenance/operations)
"bBA" = (
@@ -1964,9 +2025,16 @@
/area/maintenance/hangar/port)
"bCU" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/railing/mapped{
+/obj/machinery/light/small/emergency{
dir = 4
},
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/random/junk,
/turf/simulated/floor/plating,
/area/maintenance/hangar/starboard)
"bDc" = (
@@ -2000,11 +2068,9 @@
/turf/simulated/floor/tiled/dark,
/area/engineering/atmos)
"bDQ" = (
-/obj/structure/window/reinforced,
-/obj/structure/table/standard{
- no_cargo = 1
+/obj/structure/railing/mapped{
+ dir = 8
},
-/obj/item/stack/packageWrap,
/turf/simulated/floor/tiled,
/area/operations/storage)
"bEk" = (
@@ -2023,9 +2089,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/floor_decal/spline/plain{
- dir = 4
- },
/obj/effect/floor_decal/corner/brown{
dir = 6
},
@@ -2035,6 +2098,12 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
/turf/simulated/floor/tiled,
/area/operations/loading)
"bEJ" = (
@@ -2052,6 +2121,19 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/checkpoint)
+"bFd" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"bFw" = (
/obj/effect/floor_decal/industrial/warning{
dir = 8
@@ -2134,8 +2216,8 @@
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/machinery/door/airlock/maintenance_hatch{
- req_one_access = list(73)
+/obj/machinery/door/airlock/maintenance{
+ req_access = list(73)
},
/turf/simulated/floor/tiled/dark,
/area/hangar/control)
@@ -2237,13 +2319,22 @@
/turf/simulated/floor/plating,
/area/engineering/atmos/propulsion)
"bLO" = (
-/obj/machinery/light,
-/obj/machinery/conveyor{
- dir = 4;
- id = "cargo_1";
- layer = 2.9
+/obj/structure/disposalpipe/trunk{
+ dir = 1
},
-/turf/simulated/floor/plating,
+/obj/structure/railing/mapped{
+ dir = 1
+ },
+/obj/machinery/conveyor_switch/oneway{
+ id = "cargo_1";
+ pixel_y = 21;
+ pixel_x = 13
+ },
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/tiled,
/area/operations/loading)
"bLX" = (
/obj/structure/cable/green{
@@ -2339,15 +2430,22 @@
/turf/simulated/floor/tiled/dark,
/area/engineering/atmos/propulsion)
"bQh" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/hangar/operations)
"bQj" = (
/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/camera/network/engineering{
+ c_tag = "Engineering - Atmospherics Stairwell"
+ },
/turf/simulated/floor/plating,
/area/hallway/engineering)
+"bQu" = (
+/obj/structure/window/shuttle/scc_space_ship,
+/obj/structure/grille,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/template_noop)
"bQP" = (
/obj/machinery/power/apc/super/critical{
pixel_y = -24
@@ -2387,7 +2485,10 @@
layer = 2.9;
reversed = null
},
-/turf/simulated/floor/plating,
+/obj/machinery/status_display/supply_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
/area/operations/loading)
"bRX" = (
/obj/machinery/conveyor_switch/oneway{
@@ -2424,10 +2525,9 @@
/turf/simulated/floor/plating,
/area/maintenance/engineering)
"bSM" = (
-/obj/structure/ore_box,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/hangar/operations)
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/plating,
+/area/hangar/intrepid)
"bSO" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -2476,7 +2576,7 @@
dir = 9
},
/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/area/turret_protected/ai_upload)
"bVV" = (
/obj/item/material/shard,
/turf/simulated/floor/plating,
@@ -2536,12 +2636,20 @@
/turf/simulated/floor/plating,
/area/shuttle/intrepid/crew_compartment)
"bZR" = (
-/obj/structure/cable{
- icon_state = "0-8"
+/obj/structure/railing/mapped{
+ dir = 4
},
-/obj/machinery/power/terminal,
-/turf/simulated/floor/plating,
-/area/maintenance/substation/civilian_west)
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 9
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/operations)
"bZU" = (
/obj/effect/floor_decal/industrial/warning{
dir = 6
@@ -2553,14 +2661,14 @@
/turf/simulated/floor/plating,
/area/engineering/atmos/propulsion)
"caN" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
+/obj/structure/railing/mapped{
+ dir = 8
},
-/obj/item/reagent_containers/spray/cleaner,
-/obj/structure/table/steel,
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+/obj/effect/floor_decal/corner/green/full,
+/obj/structure/table/rack,
+/turf/simulated/floor/tiled/white{
+ temperature = 278.15;
+ name = "cooled white floor"
},
/area/medical/morgue/lower)
"cbM" = (
@@ -2642,7 +2750,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/maintenance{
name = "Operations Bay Warehouse Maintenance";
- req_access = list(31)
+ req_access = list(26, 31, 48, 67)
},
/turf/simulated/floor/tiled,
/area/operations/storage)
@@ -2710,6 +2818,9 @@
c_tag = "Engineering - Gravity Generator";
dir = 1
},
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
/turf/simulated/floor/reinforced,
/area/engineering/gravity_gen)
"cir" = (
@@ -2726,10 +2837,6 @@
},
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"ciP" = (
-/obj/structure/lattice/catwalk/indoor,
-/turf/simulated/floor/plating,
-/area/template_noop)
"cjr" = (
/obj/machinery/light/small{
dir = 1
@@ -2741,10 +2848,11 @@
/turf/simulated/floor/tiled/dark,
/area/hangar/control)
"ckb" = (
-/obj/effect/floor_decal/industrial/outline/red,
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/floor/tiled/dark,
-/area/hangar/intrepid)
+/obj/structure/stairs/south,
+/turf/simulated/floor/holofloor/tiled/ramp{
+ dir = 1
+ },
+/area/horizon/stairwell/central)
"ckd" = (
/obj/machinery/atmospherics/pipe/simple/visible/red{
dir = 4
@@ -2761,9 +2869,9 @@
/turf/simulated/floor/tiled/white,
/area/rnd/eva)
"ckY" = (
-/obj/structure/railing/mapped,
/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/oil,
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/bed/stool/chair/folding,
/turf/simulated/floor/plating,
/area/maintenance/wing/port/deck1)
"clb" = (
@@ -2776,6 +2884,7 @@
/turf/simulated/wall/shuttle/scc/cardinal,
/area/shuttle/intrepid/engine_compartment)
"clT" = (
+/obj/structure/lattice/catwalk/indoor,
/turf/space,
/area/template_noop)
"cnb" = (
@@ -2843,6 +2952,7 @@
/turf/simulated/floor/tiled/dark,
/area/hangar/intrepid)
"cpf" = (
+/obj/effect/floor_decal/corner/brown/diagonal,
/turf/simulated/floor/tiled,
/area/operations/loading)
"cpn" = (
@@ -2865,6 +2975,10 @@
},
/turf/simulated/floor/tiled/dark,
/area/engineering/atmos)
+"cpF" = (
+/obj/structure/grille/diagonal,
+/turf/template_noop,
+/area/template_noop)
"cpU" = (
/obj/structure/cable/green{
icon_state = "2-8"
@@ -2930,9 +3044,12 @@
/turf/simulated/floor/plating,
/area/shuttle/intrepid/cargo_bay)
"cty" = (
+/obj/structure/closet/crate,
+/obj/effect/floor_decal/corner/brown{
+ dir = 5
+ },
/obj/effect/floor_decal/industrial/loading/yellow,
/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet/crate,
/turf/simulated/floor/tiled,
/area/outpost/mining_main/refinery)
"ctz" = (
@@ -2950,16 +3067,17 @@
name = "Security Checkpoint External Shutter"
},
/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/regular/open{
+ id = "hangarlockdown";
+ name = "Hangar Lockdown"
+ },
/turf/simulated/floor/plating,
/area/hangar/intrepid)
"ctM" = (
-/obj/effect/floor_decal/industrial/loading/yellow,
-/obj/effect/floor_decal/industrial/outline/yellow,
/obj/machinery/door/firedoor,
-/obj/machinery/door/blast/shutters/open{
- dir = 2;
- id = "miningbay";
- name = "Mining Bay"
+/obj/machinery/door/airlock/glass_mining{
+ name = "Mining";
+ req_one_access = list(31, 48, 67)
},
/turf/simulated/floor/tiled,
/area/outpost/mining_main/refinery)
@@ -2984,13 +3102,17 @@
/turf/simulated/floor/plating,
/area/hallway/primary/aft)
"cuA" = (
-/obj/structure/morgue{
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+/obj/effect/landmark{
+ name = "borerstart"
},
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
/area/medical/morgue/lower)
"cuY" = (
/obj/machinery/light,
@@ -3041,6 +3163,9 @@
/obj/item/device/radio/off{
pixel_y = 5
},
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
/turf/simulated/floor/tiled,
/area/medical/emergency_storage)
"cxA" = (
@@ -3055,7 +3180,6 @@
/obj/structure/cable/green{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{
frequency = 1380;
id_tag = "escape_pod_3_berth";
@@ -3091,6 +3215,19 @@
},
/turf/simulated/floor/tiled/white,
/area/rnd/xenoarch_atrium)
+"czp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/structure/railing/mapped,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"cAq" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -3102,9 +3239,13 @@
/obj/structure/cable{
icon_state = "1-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/wing/port/deck1)
"cAU" = (
@@ -3141,24 +3282,23 @@
/turf/simulated/floor/plating,
/area/engineering/storage/lower)
"cCq" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/hangar/operations)
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/plating,
+/area/hangar/auxiliary)
"cCv" = (
/obj/structure/cable/green{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/structure/window/reinforced{
+/obj/structure/disposalpipe/segment,
+/obj/machinery/firealarm/west,
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/machinery/camera/network/supply{
+ c_tag = "Operations - Warehouse Entrance";
dir = 4
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
+/turf/simulated/floor/tiled,
/area/operations/loading)
"cDa" = (
/obj/structure/cable{
@@ -3190,6 +3330,11 @@
},
/turf/simulated/floor/reinforced,
/area/rnd/test_range)
+"cFo" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/item/material/shard,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"cFq" = (
/obj/machinery/door/blast/regular/open{
dir = 8;
@@ -3202,6 +3347,7 @@
"cGa" = (
/obj/machinery/shieldwallgen,
/obj/structure/cable/green,
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/hangar/intrepid)
"cHx" = (
@@ -3363,7 +3509,7 @@
/obj/machinery/door/airlock/glass_mining{
name = "Cargo Bay";
req_access = null;
- req_one_access = list(31,48,26,67)
+ req_one_access = list(26, 31, 48, 67)
},
/turf/simulated/floor/tiled,
/area/operations/loading)
@@ -3388,18 +3534,33 @@
},
/turf/simulated/floor/tiled/dark,
/area/hangar/intrepid/interstitial)
-"cOy" = (
-/obj/structure/cable/green{
- icon_state = "2-4"
+"cOm" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "cargo_1";
+ layer = 2.9
},
+/obj/structure/railing/mapped{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/operations/loading)
+"cOy" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
-/obj/effect/floor_decal/corner/brown/full{
- dir = 1
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/high{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 6
},
/turf/simulated/floor/tiled,
/area/operations/storage)
@@ -3441,6 +3602,9 @@
/obj/machinery/light/spot/weak{
dir = 4
},
+/obj/structure/sign/emerg_pods{
+ pixel_x = 32
+ },
/turf/simulated/floor/tiled,
/area/hangar/auxiliary)
"cRg" = (
@@ -3527,11 +3691,8 @@
/obj/structure/railing/mapped{
dir = 1
},
-/obj/effect/floor_decal/industrial/warning,
-/obj/machinery/camera/network/command{
- c_tag = "AI Core - First Deck Chamber";
- dir = 1
- },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/porta_turret,
/turf/simulated/floor/tiled/dark,
/area/turret_protected/ai)
"cTm" = (
@@ -3749,9 +3910,8 @@
/obj/machinery/light/spot/weak{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
+/obj/structure/closet/emcloset,
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/hangar/operations)
"dgl" = (
@@ -3830,20 +3990,11 @@
/turf/simulated/floor/tiled,
/area/operations/storage)
"dim" = (
-/obj/machinery/status_display{
- pixel_y = -32
- },
-/obj/machinery/camera/network/mining{
- c_tag = "Mining - Suit Storage";
+/obj/effect/floor_decal/corner/brown/full{
dir = 1
},
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/suit_cycler/mining,
-/obj/structure/railing/mapped{
- dir = 8
- },
/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
+/area/hangar/operations)
"dip" = (
/obj/effect/floor_decal/industrial/warning{
dir = 4
@@ -3882,14 +4033,14 @@
/turf/simulated/floor/tiled,
/area/hangar/intrepid/interstitial)
"diR" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/structure/disposalpipe/up{
+ dir = 2
},
-/obj/effect/floor_decal/corner/brown{
- dir = 8
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 4
},
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"djn" = (
/obj/effect/floor_decal/corner/blue{
dir = 9
@@ -3901,10 +4052,10 @@
/area/shuttle/intrepid/cockpit)
"djv" = (
/obj/machinery/floodlight,
-/obj/effect/floor_decal/industrial/outline/yellow,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
+/obj/effect/floor_decal/corner/green/full,
/turf/simulated/floor/tiled,
/area/medical/emergency_storage)
"dka" = (
@@ -3948,11 +4099,15 @@
/turf/simulated/floor/wood,
/area/shuttle/intrepid/crew_compartment)
"dob" = (
-/obj/machinery/light/small/emergency{
- dir = 8
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/table/standard,
+/obj/item/material/ashtray/bronze,
+/obj/item/material/stool/chair/folding{
+ pixel_y = 19
},
/turf/simulated/floor/plating,
-/area/maintenance/hangar/starboard)
+/area/maintenance/wing/port/deck1)
"dod" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -3984,8 +4139,14 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
+/obj/effect/floor_decal/corner/green/full{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ pixel_y = 28
+ },
/turf/simulated/floor/tiled,
-/area/hangar/operations)
+/area/horizon/stairwell/central)
"doK" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable,
@@ -4024,10 +4185,10 @@
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/structure/lattice/catwalk/indoor/grate,
/obj/machinery/light/small/emergency{
dir = 1
},
+/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/wing/port/deck1)
"drU" = (
@@ -4043,6 +4204,19 @@
},
/turf/simulated/floor/tiled/dark,
/area/engineering/gravity_gen)
+"drY" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/operations/loading)
"dsG" = (
/obj/machinery/suit_cycler/medical,
/obj/effect/floor_decal/corner/paleblue/full{
@@ -4054,6 +4228,9 @@
/obj/machinery/atmospherics/pipe/manifold/hidden{
dir = 1
},
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
/turf/simulated/floor/plating,
/area/maintenance/hangar/starboard)
"dsR" = (
@@ -4090,6 +4267,7 @@
icon_state = "4-8"
},
/obj/effect/floor_decal/spline/plain/corner,
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled,
/area/operations/storage)
"dvT" = (
@@ -4144,11 +4322,12 @@
/turf/simulated/floor/plating,
/area/engineering/atmos)
"dzC" = (
-/obj/effect/floor_decal/corner/brown{
- dir = 10
+/obj/structure/sign/securearea{
+ pixel_y = 32
},
-/turf/simulated/floor/tiled,
-/area/operations/storage)
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/template_noop)
"dAI" = (
/obj/machinery/atmospherics/binary/pump{
dir = 4;
@@ -4172,6 +4351,15 @@
/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/operations)
+"dBb" = (
+/obj/effect/floor_decal/corner/brown{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/operations/loading)
"dBd" = (
/obj/structure/cable{
icon_state = "2-4"
@@ -4197,14 +4385,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/engineering/atmos/propulsion/starboard)
-"dCe" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/turret_protected/ai)
"dCC" = (
/obj/machinery/sparker{
id = "starboard_prop_igni";
@@ -4246,13 +4426,9 @@
/area/maintenance/hangar/port)
"dEe" = (
/obj/machinery/recharge_station,
-/obj/effect/floor_decal/industrial/outline/blue,
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
-"dEk" = (
-/obj/effect/floor_decal/spline/plain,
-/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/turret_protected/ai_upload)
"dEC" = (
/obj/structure/lattice/catwalk/indoor,
/obj/machinery/atmospherics/pipe/simple/visible/purple,
@@ -4271,6 +4447,21 @@
/obj/effect/floor_decal/sign/b,
/turf/simulated/floor/tiled/white,
/area/rnd/xenoarch_atrium)
+"dER" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green,
+/obj/machinery/power/apc/low{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Starboard Hangar Subgrid";
+ name_tag = "Starboard Hangar Subgrid"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/civilian_west)
"dEU" = (
/obj/effect/floor_decal/industrial/warning{
dir = 8
@@ -4354,6 +4545,7 @@
"dJQ" = (
/obj/machinery/shieldwallgen,
/obj/structure/cable/green,
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/hangar/operations)
"dJT" = (
@@ -4379,21 +4571,24 @@
/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/power/apc/super/critical{
dir = 1;
pixel_y = 24
},
+/obj/effect/floor_decal/corner/brown{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
/obj/structure/cable/green{
icon_state = "0-4"
},
-/obj/effect/floor_decal/corner/brown{
- dir = 5
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
/turf/simulated/floor/tiled,
/area/hangar/operations)
@@ -4413,12 +4608,12 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/effect/floor_decal/corner/brown{
dir = 5
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/hangar/operations)
"dMa" = (
@@ -4433,10 +4628,7 @@
icon_state = "4-8"
},
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance_hatch{
- req_access = list(54);
- req_one_access = null
- },
+/obj/machinery/door/airlock/maintenance_hatch,
/turf/simulated/floor/plating,
/area/outpost/mining_main/refinery)
"dMS" = (
@@ -4475,16 +4667,31 @@
/turf/simulated/floor/tiled,
/area/janitor)
"dOc" = (
-/obj/structure/grille,
/obj/structure/lattice,
+/obj/structure/grille/diagonal{
+ dir = 8
+ },
/turf/space/dynamic,
/area/template_noop)
+"dPt" = (
+/obj/machinery/light/small/emergency{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"dPJ" = (
/obj/effect/floor_decal/industrial/warning,
/obj/effect/decal/cleanable/cobweb,
/obj/structure/railing/mapped,
/turf/simulated/floor/plating,
/area/maintenance/wing/port/deck1)
+"dQH" = (
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/light/small/emergency{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/hangar/starboard)
"dQP" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/machinery/door/firedoor,
@@ -4535,6 +4742,22 @@
/obj/item/device/floor_painter,
/turf/simulated/floor/tiled/white,
/area/operations/lower/machinist)
+"dUP" = (
+/obj/structure/railing/mapped,
+/obj/structure/morgue{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer{
+ name = "cooled tiles";
+ temperature = 278.15
+ },
+/area/medical/morgue/lower)
"dVs" = (
/obj/structure/cable/green{
icon_state = "0-2"
@@ -4574,9 +4797,12 @@
/area/shuttle/intrepid/cargo_bay)
"dWw" = (
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/freezer_maint,
+/obj/machinery/door/airlock/freezer_maint{
+ name = "Freezer"
+ },
/obj/effect/decal/cleanable/cobweb,
/obj/effect/decal/cleanable/cobweb2,
+/obj/structure/plasticflaps/airtight,
/turf/simulated/floor/tiled,
/area/maintenance/hangar/port)
"dWC" = (
@@ -4584,10 +4810,23 @@
/turf/simulated/floor/plating,
/area/operations/loading)
"dWD" = (
+/obj/machinery/camera/network/mining{
+ c_tag = "Mining - Suit Storage";
+ dir = 1
+ },
+/obj/machinery/suit_cycler/mining,
/obj/effect/floor_decal/corner/brown{
- dir = 6
+ dir = 10
},
/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/window/eastright{
+ req_access = list(48);
+ name = "Tools Access"
+ },
/turf/simulated/floor/tiled,
/area/outpost/mining_main/refinery)
"dWL" = (
@@ -4613,9 +4852,6 @@
/turf/simulated/floor/tiled/dark,
/area/hangar/auxiliary)
"dZB" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- req_access = list(12)
- },
/obj/structure/cable{
icon_state = "4-8"
},
@@ -4629,6 +4865,9 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/door/airlock/maintenance{
+ req_access = list(12)
+ },
/turf/simulated/floor/tiled,
/area/hallway/primary/aft)
"dZQ" = (
@@ -4828,6 +5067,12 @@
/obj/structure/cable/green{
icon_state = "1-4"
},
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/alarm{
+ pixel_x = -28;
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/hangar/operations)
"eev" = (
@@ -4870,10 +5115,12 @@
/turf/simulated/floor/plating,
/area/engineering/atmos/air)
"ege" = (
-/obj/structure/morgue,
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+/obj/effect/floor_decal/corner/green/full{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white{
+ temperature = 278.15;
+ name = "cooled white floor"
},
/area/medical/morgue/lower)
"ehD" = (
@@ -4886,12 +5133,12 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/effect/floor_decal/corner/brown{
+ dir = 5
+ },
/turf/simulated/floor/tiled,
/area/operations/loading)
"ehH" = (
@@ -4959,6 +5206,9 @@
c_tag = "First Deck - Hangar 10";
dir = 4
},
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled/dark,
/area/hangar/auxiliary)
"elI" = (
@@ -4990,17 +5240,30 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/maintenance_hatch{
- req_access = list(12)
+ req_one_access = list(12, 26, 29)
},
/turf/simulated/floor/plating,
/area/maintenance/operations)
"emH" = (
-/obj/effect/floor_decal/industrial/outline/red,
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/tiled/dark,
-/area/hangar/intrepid)
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/machinery/alarm{
+ pixel_x = 28;
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/industrial/loading/yellow{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/stairwell/central)
"enh" = (
-/obj/effect/floor_decal/spline/plain{
+/obj/effect/floor_decal/corner/brown{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/warning{
dir = 8
},
/turf/simulated/floor/tiled,
@@ -5059,16 +5322,20 @@
/turf/simulated/floor/tiled/dark,
/area/engineering/atmos)
"eqk" = (
-/obj/machinery/door/blast/shutters/open{
- dir = 2;
- id = "miningbay";
- name = "Mining Bay"
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/full{
+ dir = 1
},
-/obj/effect/floor_decal/industrial/loading/yellow,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
+/area/hangar/operations)
"eqs" = (
/obj/effect/floor_decal/industrial/warning{
dir = 8
@@ -5150,15 +5417,16 @@
/area/hangar/operations)
"evd" = (
/obj/structure/cable{
- icon_state = "1-4"
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+ dir = 4
},
/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/light/small/emergency,
/turf/simulated/floor/plating,
/area/maintenance/wing/port/deck1)
"evf" = (
@@ -5173,9 +5441,8 @@
/turf/simulated/floor/plating,
/area/maintenance/engineering)
"evA" = (
-/obj/effect/floor_decal/industrial/warning,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+/obj/effect/floor_decal/corner/green{
+ dir = 10
},
/turf/simulated/floor/tiled,
/area/medical/morgue/lower)
@@ -5253,13 +5520,11 @@
/turf/simulated/floor/plating,
/area/maintenance/research_port)
"exX" = (
-/obj/machinery/door/airlock/freezer_maint{
- name = "Morgue Maintenance";
- req_one_access = list(12,66)
- },
+/obj/structure/disposalpipe/segment,
+/obj/structure/lattice/catwalk/indoor/grate,
/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled,
-/area/medical/morgue/lower)
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"eyI" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -5270,19 +5535,20 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/floor_decal/spline/plain{
- dir = 8
- },
/obj/machinery/firealarm/north,
/obj/effect/floor_decal/corner/brown{
dir = 5
},
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
/turf/simulated/floor/tiled,
/area/hangar/operations)
"eyU" = (
/obj/machinery/atmospherics/pipe/simple/visible/purple{
dir = 10
},
+/obj/structure/lattice/catwalk/indoor,
/turf/space,
/area/template_noop)
"eyW" = (
@@ -5351,6 +5617,9 @@
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
/turf/simulated/floor/reinforced,
/area/engineering/gravity_gen)
"eBb" = (
@@ -5378,7 +5647,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/floor_decal/corner/brown,
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -5411,8 +5679,6 @@
/turf/simulated/floor/plating,
/area/maintenance/wing/port/deck1)
"eDa" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet/crate,
/obj/machinery/requests_console{
department = "Mining";
departmentType = 2;
@@ -5424,6 +5690,13 @@
name = "Station Intercom (General)";
pixel_y = -24
},
+/obj/effect/floor_decal/corner/brown/full{
+ dir = 4
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/operations/loading)
"eDE" = (
@@ -5446,28 +5719,32 @@
/turf/simulated/floor/tiled/dark,
/area/engineering/atmos/propulsion)
"eFe" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/hangar/starboard)
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "cargo_1";
+ layer = 2.9
+ },
+/turf/simulated/floor/tiled,
+/area/operations/loading)
"eFl" = (
-/obj/structure/morgue{
- dir = 1
+/obj/effect/map_effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/regular/open{
+ id = "hangarlockdown";
+ name = "Hangar Lockdown"
},
-/obj/machinery/light/small,
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
- },
-/area/medical/morgue/lower)
+/turf/simulated/floor/plating,
+/area/rnd/eva)
"eFn" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/visible/black,
/turf/space/dynamic,
/area/template_noop)
"eGE" = (
-/obj/effect/floor_decal/spline/plain{
+/obj/effect/floor_decal/corner/brown/full{
dir = 8
},
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/outpost/mining_main/refinery)
"eGG" = (
@@ -5500,16 +5777,14 @@
/turf/simulated/floor/greengrid/nitrogen,
/area/engineering/drone_fabrication)
"eIp" = (
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/machinery/light{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/hangar/starboard)
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/industrial/loading/yellow,
+/turf/simulated/floor/tiled,
+/area/horizon/stairwell/central)
"eIC" = (
/obj/structure/cable/green{
icon_state = "2-8"
@@ -5608,10 +5883,7 @@
/obj/structure/table/standard{
no_cargo = 1
},
-/turf/simulated/floor/tiled{
- dir = 5;
- icon_state = "vault"
- },
+/turf/simulated/floor/tiled,
/area/maintenance/wing/port/deck1)
"eKl" = (
/obj/effect/floor_decal/industrial/warning{
@@ -5643,7 +5915,7 @@
/obj/machinery/door/airlock/glass_mining{
name = "Cargo Bay";
req_access = null;
- req_one_access = list(31,48,26,67)
+ req_one_access = list(26, 31, 48, 67)
},
/obj/machinery/door/blast/regular/open{
id = "hangarlockdown";
@@ -5693,12 +5965,13 @@
/turf/simulated/floor/tiled/dark,
/area/shuttle/intrepid/cockpit)
"eLb" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 4
- },
/obj/effect/floor_decal/corner/brown{
dir = 6
},
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled,
/area/operations/loading)
"eLB" = (
@@ -5740,16 +6013,21 @@
/area/engineering/atmos)
"eNY" = (
/obj/structure/ladder/up{
- pixel_y = 13
+ pixel_y = 16
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor/plating,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
/area/turret_protected/ai)
"eOk" = (
-/obj/structure/railing/mapped{
- dir = 4
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/structure/railing/mapped,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/hangar/starboard)
"eOR" = (
@@ -5792,6 +6070,7 @@
/obj/machinery/atmospherics/pipe/manifold/visible/black{
dir = 1
},
+/obj/effect/floor_decal/industrial/hatch/yellow,
/obj/structure/cable/green{
icon_state = "1-2"
},
@@ -5856,6 +6135,7 @@
/area/template_noop)
"eTg" = (
/obj/machinery/atmospherics/pipe/simple/visible/purple,
+/obj/structure/lattice/catwalk/indoor,
/turf/space,
/area/template_noop)
"eTi" = (
@@ -5916,11 +6196,8 @@
/turf/simulated/floor/tiled/dark,
/area/shuttle/intrepid/engine_compartment)
"eVE" = (
-/obj/structure/railing/mapped,
-/obj/structure/railing/mapped{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/plating,
/area/maintenance/wing/port/deck1)
"eVN" = (
@@ -6093,18 +6370,15 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 1
- },
-/obj/effect/floor_decal/corner/brown{
- dir = 9
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/effect/floor_decal/corner/brown{
+ dir = 5
+ },
+/obj/machinery/light{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/operations/loading)
"fbu" = (
@@ -6120,6 +6394,9 @@
/obj/structure/disposalpipe/junction{
dir = 4
},
+/obj/effect/floor_decal/corner/brown{
+ dir = 6
+ },
/turf/simulated/floor/tiled,
/area/operations/loading)
"fbJ" = (
@@ -6224,6 +6501,9 @@
/obj/effect/floor_decal/corner/black{
dir = 9
},
+/obj/structure/sign/emerg_exit/evac{
+ pixel_x = -32
+ },
/turf/simulated/floor/tiled,
/area/hangar/intrepid)
"feY" = (
@@ -6257,14 +6537,17 @@
/turf/simulated/floor/bluegrid,
/area/rnd/isolation_b)
"fhF" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
/obj/structure/closet/crate/bin,
/obj/random/loot,
/obj/structure/railing/mapped{
dir = 8
},
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/structure/railing/mapped{
+ dir = 1
+ },
/turf/simulated/floor/plating,
/area/maintenance/operations)
"fhZ" = (
@@ -6305,21 +6588,30 @@
/obj/structure/cable/green{
icon_state = "2-4"
},
-/obj/effect/floor_decal/corner/brown/full{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
+/obj/effect/floor_decal/corner/brown{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/operations/storage)
"fja" = (
-/obj/effect/floor_decal/corner/brown/full,
+/obj/effect/floor_decal/corner/brown{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/alarm{
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/hangar/operations)
"fjS" = (
/obj/structure/ladder/up{
pixel_y = 13
@@ -6376,16 +6668,16 @@
/area/engineering/atmos)
"fmi" = (
/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/structure/lattice/catwalk/indoor/grate,
-/obj/effect/decal/cleanable/blood/oil,
+/obj/random/junk,
/turf/simulated/floor/plating,
/area/maintenance/wing/port/deck1)
"fmL" = (
@@ -6411,7 +6703,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/hatch{
name = "Port Propulsion";
- req_access = list(10)
+ req_one_access = list(11, 24)
},
/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
/obj/machinery/door/firedoor,
@@ -6452,10 +6744,12 @@
/obj/machinery/light{
dir = 4
},
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 1
+/obj/structure/closet/crate,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner/brown{
+ dir = 6
},
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/operations/loading)
"fpW" = (
@@ -6499,6 +6793,11 @@
/obj/machinery/light{
dir = 1
},
+/obj/item/paper_bin{
+ pixel_x = -3
+ },
+/obj/item/pen/red,
+/obj/item/stack/packageWrap,
/obj/item/device/hand_labeler,
/turf/simulated/floor/tiled,
/area/outpost/mining_main/refinery)
@@ -6590,6 +6889,7 @@
/obj/machinery/atmospherics/pipe/simple/visible/purple{
dir = 5
},
+/obj/structure/lattice/catwalk/indoor,
/turf/space/dynamic,
/area/template_noop)
"fwA" = (
@@ -6766,6 +7066,13 @@
"fDD" = (
/turf/simulated/floor/plating,
/area/medical/morgue/lower)
+"fDL" = (
+/obj/structure/railing/mapped,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"fDO" = (
/turf/simulated/floor/reinforced/n20,
/area/engineering/atmos/air)
@@ -6791,12 +7098,10 @@
/turf/simulated/floor/carpet/rubber,
/area/shuttle/intrepid/cockpit)
"fFb" = (
-/obj/machinery/camera/network/supply{
- c_tag = "Operations - Mining Shuttle Dock"
- },
-/obj/effect/floor_decal/industrial/loading/yellow{
- dir = 1
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
},
+/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/tiled,
/area/hangar/operations)
"fFf" = (
@@ -6811,6 +7116,18 @@
},
/turf/simulated/floor/tiled/dark,
/area/hangar/auxiliary)
+"fFj" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"fFm" = (
/obj/effect/floor_decal/industrial/warning,
/obj/structure/tank_wall/carbon_dioxide{
@@ -6895,22 +7212,11 @@
},
/area/hangar/auxiliary)
"fJN" = (
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,
-/obj/machinery/atmospherics/pipe/zpipe/up/supply,
-/obj/structure/cable/green{
- icon_state = "12-0"
- },
-/obj/structure/sign/electricshock{
- pixel_y = 32
- },
-/obj/structure/railing/mapped{
- dir = 4
- },
+/obj/structure/window/shuttle/scc_space_ship,
+/obj/structure/grille,
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
-/area/maintenance/hangar/starboard)
+/area/hangar/operations)
"fKe" = (
/obj/effect/floor_decal/industrial/warning{
dir = 8
@@ -6921,10 +7227,12 @@
/turf/simulated/floor/tiled/dark,
/area/engineering/atmos/propulsion)
"fKk" = (
-/obj/structure/table/steel,
-/obj/effect/floor_decal/industrial/outline,
-/obj/machinery/cell_charger,
-/turf/simulated/floor/tiled,
+/obj/machinery/mech_recharger,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
/area/outpost/mining_main/refinery)
"fKt" = (
/obj/structure/railing/mapped{
@@ -6939,17 +7247,19 @@
/turf/simulated/floor/plating,
/area/maintenance/research_port)
"fKD" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/structure/lattice/catwalk/indoor/grate,
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/turf/simulated/floor/plating,
-/area/hangar/intrepid)
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/stairwell/central)
"fLz" = (
/obj/structure/tank_wall{
icon_state = "m-9"
@@ -6968,6 +7278,12 @@
},
/turf/simulated/floor/plating,
/area/engineering/storage/lower)
+"fMB" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"fMM" = (
/obj/machinery/door/airlock/multi_tile/glass,
/obj/machinery/door/firedoor/multi_tile,
@@ -7058,6 +7374,10 @@
/obj/machinery/light{
dir = 4
},
+/obj/structure/sign/emerg_exit/evac{
+ dir = 4;
+ pixel_x = 32
+ },
/turf/simulated/floor/tiled,
/area/hangar/intrepid)
"fQU" = (
@@ -7216,11 +7536,17 @@
/turf/simulated/floor/tiled/dark,
/area/maintenance/operations)
"fVh" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/effect/floor_decal/industrial/warning{
+/obj/item/modular_computer/console/preset/ai{
dir = 1
},
-/turf/simulated/floor/plating,
+/obj/machinery/light/small/emergency{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
/area/turret_protected/ai)
"fVm" = (
/obj/structure/closet/l3closet/janitor,
@@ -7260,7 +7586,7 @@
/obj/machinery/door/airlock/glass_mining{
name = "Cargo Bay";
req_access = null;
- req_one_access = list(31,48,26,67)
+ req_one_access = list(26, 31, 48, 67)
},
/obj/machinery/door/blast/regular/open{
id = "hangarlockdown";
@@ -7274,6 +7600,20 @@
/obj/structure/window/reinforced,
/turf/simulated/floor/grass/alt,
/area/maintenance/hangar/port)
+"fWU" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"fXy" = (
/obj/structure/trash_pile,
/turf/simulated/floor/tiled/freezer{
@@ -7295,8 +7635,12 @@
/obj/effect/floor_decal/industrial/warning{
dir = 4
},
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -28
+ },
/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/area/turret_protected/ai_upload)
"fZr" = (
/obj/random/junk,
/obj/effect/floor_decal/industrial/warning{
@@ -7412,6 +7756,23 @@
},
/turf/simulated/floor/plating,
/area/maintenance/research_port)
+"gdP" = (
+/obj/structure/lattice,
+/obj/structure/grille/diagonal{
+ dir = 1
+ },
+/turf/space/dynamic,
+/area/template_noop)
+"gdR" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/machinery/door/window/northright{
+ name = "Canister Access"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"gex" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -7423,6 +7784,9 @@
dir = 8
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/effect/floor_decal/corner/green{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/medical/emergency_storage)
"geN" = (
@@ -7452,13 +7816,16 @@
/turf/simulated/floor/plating,
/area/shuttle/intrepid/engine_compartment)
"ggp" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/railing/mapped{
- dir = 4
+/obj/structure/cable{
+ icon_state = "1-2"
},
/obj/structure/cable{
- icon_state = "4-8"
+ icon_state = "1-8"
},
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/hangar/starboard)
"ggE" = (
@@ -7654,6 +8021,13 @@
"gkM" = (
/turf/simulated/wall/shuttle/scc/cardinal,
/area/shuttle/escape_pod/pod1)
+"glb" = (
+/obj/structure/railing/mapped,
+/obj/structure/sign/emerg_exit/evac{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/operations)
"gmL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
@@ -7688,10 +8062,8 @@
/turf/simulated/floor/tiled/dark,
/area/engineering/atmos/propulsion)
"goO" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 8
- },
-/obj/effect/floor_decal/spline/plain{
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/effect/floor_decal/industrial/warning/corner{
dir = 4
},
/turf/simulated/floor/tiled,
@@ -7732,13 +8104,14 @@
/turf/simulated/floor/tiled/dark,
/area/shuttle/intrepid/crew_compartment)
"gqn" = (
-/obj/effect/floor_decal/industrial/warning,
-/obj/machinery/firealarm/west,
/obj/machinery/computer/shuttle_control/lift{
pixel_y = -1;
shuttle_tag = "Morgue Lift"
},
/obj/structure/railing/mapped,
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
/turf/simulated/floor/tiled,
/area/medical/morgue/lower)
"gqR" = (
@@ -7755,53 +8128,31 @@
/turf/simulated/floor/plating,
/area/engineering/atmos/air)
"gqW" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/effect/floor_decal/corner/brown{
- dir = 9
- },
-/obj/machinery/computer/shuttle_control/lift{
- pixel_y = -1;
- shuttle_tag = "Operations Lift"
+/obj/machinery/camera/network/supply{
+ c_tag = "Operations - Warehouse Starboard Fore Storage Room";
+ dir = 4
},
/turf/simulated/floor/tiled,
-/area/operations/loading)
+/area/operations/storage)
"grm" = (
-/obj/structure/cable/green{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
- },
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
- },
-/area/medical/morgue/lower)
-"grw" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/structure/window/reinforced{
+/obj/structure/railing/mapped,
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/morgue{
dir = 8
},
-/obj/structure/window/reinforced{
+/turf/simulated/floor/tiled/freezer{
+ name = "cooled tiles";
+ temperature = 278.15
+ },
+/area/medical/morgue/lower)
+"grH" = (
+/turf/simulated/floor/holofloor/tiled/ramp/bottom{
dir = 1
},
-/turf/simulated/floor/plating,
-/area/turret_protected/ai)
-"grH" = (
-/obj/effect/floor_decal/industrial/outline/red,
-/obj/structure/reagent_dispensers/extinguisher,
-/turf/simulated/floor/tiled/dark,
-/area/hangar/intrepid)
+/area/horizon/stairwell/central)
"grP" = (
/obj/machinery/door/airlock/maintenance_hatch{
req_access = list(12)
@@ -7864,13 +8215,20 @@
/obj/effect/floor_decal/industrial/warning{
dir = 8
},
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
/obj/structure/railing/mapped{
dir = 8
},
/obj/machinery/light/spot/weak,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_x = 28;
+ dir = 8
+ },
/turf/simulated/floor/tiled,
/area/hangar/operations)
"gux" = (
@@ -7928,11 +8286,16 @@
/turf/simulated/floor/plating,
/area/engineering/atmos/air)
"gxJ" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/corner/green{
+ dir = 10
},
/turf/simulated/floor/tiled,
-/area/hangar/operations)
+/area/horizon/stairwell/central)
"gxS" = (
/obj/machinery/recharge_station,
/turf/simulated/floor/tiled/dark,
@@ -7955,24 +8318,17 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/eva)
+"gyo" = (
+/obj/effect/floor_decal/corner/brown/full,
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled,
+/area/hangar/operations)
"gyx" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/effect/floor_decal/corner/brown{
+ dir = 6
},
/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
+/area/hangar/operations)
"gyD" = (
/obj/machinery/portable_atmospherics/canister/air/airlock,
/obj/machinery/atmospherics/portables_connector,
@@ -8022,10 +8378,10 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/lattice/catwalk/indoor/grate,
/obj/machinery/light/small/emergency{
dir = 4
},
+/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/wing/port/deck1)
"gAi" = (
@@ -8229,15 +8585,19 @@
/turf/simulated/floor/plating,
/area/engineering/storage/lower)
"gIr" = (
-/obj/structure/railing/mapped{
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/stairs/north,
-/obj/structure/railing/mapped{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/tiled/ramp,
-/area/maintenance/hangar/starboard)
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"gIw" = (
/obj/structure/cable{
icon_state = "1-8"
@@ -8291,6 +8651,15 @@
/obj/effect/shuttle_landmark/lift/morgue_bottom,
/turf/simulated/floor/plating,
/area/medical/morgue/lower)
+"gMM" = (
+/obj/machinery/alarm{
+ pixel_y = 28
+ },
+/obj/effect/decal/cleanable/blood/oil,
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"gMP" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -8307,6 +8676,14 @@
/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/research_port)
+"gNs" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance_hatch,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"gNR" = (
/obj/effect/floor_decal/corner_wide/purple/diagonal,
/turf/simulated/floor/tiled/white,
@@ -8368,6 +8745,10 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/firealarm/north,
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
/turf/simulated/floor/tiled{
name = "cooled floor";
temperature = 278
@@ -8539,17 +8920,31 @@
/turf/simulated/floor/tiled,
/area/hangar/intrepid)
"gZP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/effect/floor_decal/corner/brown{
dir = 5
},
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = 24
+ },
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/hangar/operations)
+"had" = (
+/obj/structure/morgue,
+/turf/simulated/floor/tiled/freezer{
+ name = "cooled tiles";
+ temperature = 278.15
+ },
+/area/medical/morgue/lower)
"haj" = (
/obj/structure/cable/green{
icon_state = "2-8"
@@ -8566,13 +8961,14 @@
/turf/simulated/floor/plating,
/area/maintenance/research_port)
"haN" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
/obj/machinery/firealarm/south,
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/diagonal,
+/turf/simulated/floor/tiled/white{
+ temperature = 278.15;
+ name = "cooled white floor"
},
/area/medical/morgue/lower)
"hbx" = (
@@ -8581,32 +8977,12 @@
/obj/effect/floor_decal/industrial/outline,
/turf/simulated/floor/tiled/dark,
/area/storage/eva)
-"hbT" = (
-/obj/machinery/door/airlock/highsecurity{
- name = "AI SMES";
- req_access = list(16)
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "AICore";
- name = "AI core maintenance hatch";
- opacity = 0
- },
-/obj/machinery/power/terminal{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai)
"hbU" = (
/obj/machinery/shieldwallgen,
/obj/structure/cable/green{
icon_state = "0-4"
},
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/hangar/auxiliary)
"hcD" = (
@@ -8702,7 +9078,7 @@
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/maintenance_hatch{
- req_access = list(12)
+ req_one_access = list(12, 26)
},
/obj/machinery/atmospherics/pipe/simple/hidden/black{
dir = 8
@@ -8750,6 +9126,9 @@
/turf/simulated/floor/carpet/rubber,
/area/shuttle/intrepid/crew_compartment)
"hhO" = (
+/obj/effect/floor_decal/corner/brown{
+ dir = 5
+ },
/obj/effect/floor_decal/industrial/loading/yellow{
dir = 1
},
@@ -8794,9 +9173,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
},
-/obj/effect/floor_decal/corner/brown{
- dir = 8
- },
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -8806,13 +9182,6 @@
},
/turf/simulated/floor/tiled,
/area/outpost/mining_main/refinery)
-"hkb" = (
-/obj/machinery/camera/network/supply{
- c_tag = "Operations - Cargo Bay 1";
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/hangar/operations)
"hkW" = (
/obj/machinery/door/airlock/external{
frequency = 1380;
@@ -8827,9 +9196,13 @@
/area/hangar/auxiliary)
"hle" = (
/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/ramp{
- dir = 8
+/obj/structure/cable{
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor/plating,
/area/maintenance/hangar/starboard)
"hmn" = (
/obj/structure/table/rack{
@@ -8975,14 +9348,10 @@
/turf/simulated/floor/tiled/dark,
/area/engineering/atmos)
"hrb" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/structure/railing/mapped{
- dir = 8
- },
+/obj/structure/railing/mapped,
+/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
-/area/maintenance/operations)
+/area/maintenance/research_port)
"hsn" = (
/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow,
/obj/structure/lattice/catwalk/indoor,
@@ -9033,22 +9402,22 @@
/turf/simulated/floor/tiled/dark,
/area/hangar/intrepid)
"htv" = (
-/obj/machinery/door/airlock/glass_mining{
- name = "Mining";
- req_access = null;
- req_one_access = list(48,67)
- },
-/obj/machinery/door/firedoor,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/plating,
/area/hangar/operations)
"htx" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/portable_atmospherics/powered/pump/filled,
-/turf/simulated/floor/tiled/dark,
-/area/hangar/intrepid)
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/maintenance{
+ name = "Maintenance Passthrough";
+ req_access = list(12)
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/stairwell/central)
"huC" = (
/obj/machinery/atmospherics/binary/pump{
dir = 1;
@@ -9062,6 +9431,9 @@
pixel_y = 28
},
/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/camera/network/supply{
+ c_tag = "Cargo - Machinist Workshop Entrance"
+ },
/turf/simulated/floor/tiled,
/area/operations/lower/machinist)
"hwk" = (
@@ -9168,12 +9540,9 @@
"hAZ" = (
/obj/machinery/shieldwallgen,
/obj/structure/cable/green,
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/hangar/auxiliary)
-"hBl" = (
-/obj/effect/floor_decal/corner/brown/full,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
"hBn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
@@ -9183,6 +9552,10 @@
/obj/machinery/light/small/emergency{
dir = 8
},
+/obj/machinery/camera/network/first_deck{
+ c_tag = "First Deck - Auxiliary Hangar Emergency Supplies Closet";
+ dir = 4
+ },
/turf/simulated/floor/tiled/dark,
/area/hangar/auxiliary)
"hBV" = (
@@ -9249,6 +9622,14 @@
roof_type = null
},
/area/maintenance/disposal)
+"hGu" = (
+/obj/structure/closet/crate,
+/obj/effect/floor_decal/corner/brown{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/operations/storage)
"hGT" = (
/obj/structure/window/reinforced{
dir = 1
@@ -9263,7 +9644,7 @@
id = "QMLoad"
},
/obj/structure/plasticflaps,
-/turf/simulated/floor/plating,
+/turf/simulated/floor/tiled,
/area/operations/loading)
"hHv" = (
/obj/structure/cable/green{
@@ -9299,13 +9680,21 @@
/turf/simulated/floor/plating,
/area/maintenance/wing/port/deck1)
"hIl" = (
-/obj/effect/floor_decal/industrial/outline/red,
/obj/structure/railing/mapped{
dir = 4
},
/obj/structure/railing/mapped,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,
+/obj/machinery/atmospherics/pipe/zpipe/up/supply,
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "12-0"
+ },
+/obj/structure/sign/electricshock{
+ pixel_y = 32
+ },
/turf/simulated/floor/plating,
/area/maintenance/hangar/starboard)
"hIw" = (
@@ -9379,20 +9768,33 @@
/area/rnd/xenoarch_atrium)
"hLw" = (
/obj/machinery/light,
-/obj/machinery/conveyor{
- dir = 4;
- id = "cargo_1";
- layer = 2.9
- },
/obj/machinery/light/small,
-/turf/simulated/floor/plating,
+/obj/vehicle/train/cargo/engine,
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
/area/operations/storage)
"hMj" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/machinery/camera/network/supply{
+ c_tag = Operations - Mining Shuttle Dock Fore Port;
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/full{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'DANGER: EQUIPMENT STARTS AND STOPS AUTOMATICALLY' and 'CRUSH HAZARD'.";
+ name = "\improper DANGER: AUTOMATIC EQUIPMENT - CRUSH HAZARD sign";
+ pixel_y = -32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/hangar/operations)
"hMr" = (
@@ -9445,7 +9847,7 @@
},
/obj/machinery/door/airlock/engineering{
name = "Security Substation";
- req_one_access = list(11,24)
+ req_one_access = list(11, 24)
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
@@ -9456,10 +9858,14 @@
/turf/simulated/floor/tiled/dark,
/area/outpost/mining_main/eva)
"hPB" = (
-/obj/machinery/portable_atmospherics/powered/pump/filled,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/cable/green{
- icon_state = "1-8"
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/hangar/operations)
@@ -9505,21 +9911,20 @@
/turf/simulated/floor/plating,
/area/shuttle/intrepid/crew_compartment)
"hQO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled/freezer{
+ name = "cooled tiles";
+ temperature = 278.15
},
/area/medical/morgue/lower)
"hRn" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 8
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
},
-/obj/effect/floor_decal/spline/plain{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hangar/operations)
+/turf/simulated/floor/tiled/dark,
+/area/operations/loading)
"hRo" = (
/obj/effect/floor_decal/industrial/warning,
/obj/structure/tank_wall/air{
@@ -9580,18 +9985,10 @@
/area/hangar/intrepid)
"hUt" = (
/obj/machinery/portable_atmospherics/canister/air/airlock,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
/obj/machinery/atmospherics/portables_connector,
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/area/turret_protected/ai_upload)
"hUC" = (
/obj/effect/floor_decal/industrial/warning,
/obj/machinery/atmospherics/pipe/manifold/visible/yellow,
@@ -9754,7 +10151,10 @@
dir = 1;
id = "QMLoad"
},
-/turf/simulated/floor/plating,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
/area/hangar/operations)
"iau" = (
/obj/effect/floor_decal/corner/grey/diagonal,
@@ -9877,6 +10277,7 @@
"ifD" = (
/obj/structure/railing/mapped,
/obj/effect/decal/cleanable/dirt,
+/obj/structure/trash_pile,
/turf/simulated/floor/tiled,
/area/maintenance/operations)
"ifE" = (
@@ -9925,7 +10326,13 @@
dir = 1;
id = "QMLoad"
},
-/turf/simulated/floor/plating,
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
/area/operations/loading)
"ihC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -10184,6 +10591,10 @@
"iuk" = (
/turf/simulated/wall/shuttle/scc/cardinal,
/area/shuttle/mining)
+"ivF" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/horizon/stairwell/central)
"ivW" = (
/obj/machinery/atmospherics/pipe/simple/visible/purple,
/obj/machinery/atmospherics/pipe/simple/visible/purple{
@@ -10191,21 +10602,14 @@
},
/turf/simulated/floor/tiled/dark,
/area/engineering/atmos)
-"iwC" = (
-/obj/structure/railing/mapped{
- dir = 8
+"iwn" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table/standard{
+ no_cargo = 1
},
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "12-0"
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai)
+/obj/item/reagent_containers/glass/rag,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"iwV" = (
/obj/structure/cable{
icon_state = "1-4"
@@ -10235,6 +10639,26 @@
},
/turf/simulated/floor/plating,
/area/engineering/atmos/air)
+"ixU" = (
+/obj/effect/floor_decal/corner/brown/full{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'DANGER: EQUIPMENT STARTS AND STOPS AUTOMATICALLY' and 'CRUSH HAZARD'.";
+ name = "\improper DANGER: AUTOMATIC EQUIPMENT - CRUSH HAZARD sign";
+ pixel_y = 32
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_x = -24;
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/operations)
"iyV" = (
/obj/effect/floor_decal/corner/black{
dir = 8
@@ -10296,6 +10720,12 @@
},
/turf/simulated/floor/plating,
/area/rnd/xenoarch_atrium)
+"iBL" = (
+/obj/item/material/shard{
+ icon_state = "medium"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"iCb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -10316,10 +10746,10 @@
/turf/simulated/floor/reinforced/airless,
/area/engineering/atmos/propulsion/starboard)
"iCZ" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
/turf/simulated/floor/plating,
/area/maintenance/hangar/starboard)
"iDk" = (
@@ -10330,25 +10760,19 @@
/turf/simulated/wall,
/area/operations/lower/machinist)
"iDM" = (
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/structure/plasticflaps/airtight,
+/obj/machinery/door/airlock/medical{
+ name = "Morgue";
+ req_access = list(6)
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/railing/mapped{
- dir = 1
- },
-/obj/effect/floor_decal/spline/plain{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/random/junk,
-/turf/simulated/floor/plating,
-/area/maintenance/engineering)
+/turf/simulated/floor/tiled/white,
+/area/medical/morgue/lower)
"iEz" = (
/obj/effect/floor_decal/industrial/hatch/yellow,
/obj/machinery/atmospherics/portables_connector{
@@ -10366,18 +10790,8 @@
/turf/simulated/floor/airless,
/area/engineering/atmos)
"iEX" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/alarm{
- pixel_y = 28
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
},
/turf/simulated/floor/plating,
/area/maintenance/wing/port/deck1)
@@ -10393,9 +10807,11 @@
},
/area/engineering/atmos/propulsion)
"iFL" = (
-/obj/structure/railing/mapped,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/stack/tile/floor,
+/obj/machinery/door/airlock/freezer_maint{
+ name = "Morgue Maintenance";
+ req_access = list(6)
+ },
+/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
/area/maintenance/operations)
"iFU" = (
@@ -10436,10 +10852,7 @@
"iIm" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/bed/stool/chair/padded/black,
-/turf/simulated/floor/tiled{
- dir = 5;
- icon_state = "vault"
- },
+/turf/simulated/floor/tiled,
/area/maintenance/wing/port/deck1)
"iJi" = (
/obj/effect/floor_decal/corner_wide/purple/diagonal,
@@ -10487,7 +10900,7 @@
"iKo" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/maintenance_hatch{
- req_access = list(12)
+ req_one_access = list(12, 63)
},
/turf/simulated/floor/plating,
/area/maintenance/wing/port/deck1)
@@ -10690,9 +11103,6 @@
/turf/simulated/floor/plating,
/area/hangar/intrepid)
"iSc" = (
-/obj/structure/railing/mapped{
- dir = 8
- },
/turf/simulated/floor/tiled/ramp/bottom,
/area/maintenance/research_port)
"iTq" = (
@@ -10770,9 +11180,7 @@
"iXq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/corner/brown{
- dir = 6
- },
+/obj/effect/floor_decal/corner/brown,
/turf/simulated/floor/tiled,
/area/operations/storage)
"iXY" = (
@@ -10793,9 +11201,18 @@
},
/turf/simulated/floor/tiled/dark,
/area/hangar/intrepid)
+"iZi" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
+/area/hangar/intrepid)
"iZk" = (
/obj/machinery/door/blast/regular/open{
- dir = 8;
+ dir = 4;
id = "hangarlockdown";
name = "Hangar Lockdown"
},
@@ -10815,13 +11232,11 @@
/turf/simulated/floor/plating,
/area/engineering/atmos/propulsion)
"jbm" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- icon_state = "1-4"
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
},
/turf/simulated/floor/tiled,
/area/hangar/operations)
@@ -10837,7 +11252,10 @@
/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/door/window/westleft,
+/obj/machinery/door/window/westleft{
+ req_access = list(48);
+ name = "Mining Voidsuit"
+ },
/obj/effect/floor_decal/industrial/outline,
/obj/item/stack/flag/red,
/turf/simulated/floor/tiled,
@@ -10860,11 +11278,11 @@
/area/hangar/intrepid)
"jdm" = (
/obj/structure/morgue{
- dir = 2
+ dir = 8
},
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+/turf/simulated/floor/tiled/freezer{
+ name = "cooled tiles";
+ temperature = 278.15
},
/area/medical/morgue/lower)
"jdC" = (
@@ -10915,9 +11333,6 @@
/obj/structure/cable/green{
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/effect/floor_decal/corner/brown{
dir = 5
},
@@ -11004,20 +11419,23 @@
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
/obj/machinery/light/small{
dir = 1
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
/turf/simulated/floor/tiled,
-/area/hangar/operations)
+/area/horizon/stairwell/central)
"jlo" = (
/obj/effect/floor_decal/corner_wide/purple{
dir = 10
@@ -11034,7 +11452,7 @@
id = "cargo_1"
},
/obj/structure/railing/mapped,
-/obj/effect/floor_decal/spline/plain{
+/obj/effect/floor_decal/industrial/warning{
dir = 4
},
/turf/simulated/floor/tiled,
@@ -11200,6 +11618,30 @@
/obj/machinery/atmospherics/pipe/simple/hidden/black,
/turf/simulated/floor/plating,
/area/hallway/engineering)
+"juI" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 5
+ },
+/obj/machinery/camera/network/supply{
+ c_tag = "Operations - Mining Entrance"
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "miningbay";
+ name = "Mining Bay Entrance";
+ req_access = list(48);
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/operations)
"juK" = (
/obj/structure/tank_wall/nitrous_oxide{
density = 0;
@@ -11210,9 +11652,15 @@
/turf/simulated/floor/reinforced/n20,
/area/engineering/atmos/air)
"juU" = (
-/obj/structure/trash_pile,
-/turf/simulated/floor/tiled,
-/area/maintenance/operations)
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/engineering/gravity_gen)
"jvl" = (
/obj/structure/cable/green{
icon_state = "0-8"
@@ -11253,7 +11701,7 @@
"jvM" = (
/obj/machinery/light,
/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'DANGER: AUTOMATIC EQUIPMENT STARTS AND STOPS AUTOMATICALLY' and 'CRUSH HAZARD'.";
+ desc = "A warning sign which reads 'DANGER: EQUIPMENT STARTS AND STOPS AUTOMATICALLY' and 'CRUSH HAZARD'.";
name = "\improper DANGER: AUTOMATIC EQUIPMENT - CRUSH HAZARD sign";
pixel_y = -32
},
@@ -11290,6 +11738,13 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/firealarm/east,
+/obj/machinery/camera/network/medbay{
+ c_tag = "Medical - Morgue Storage Room";
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
/turf/simulated/floor/tiled,
/area/medical/emergency_storage)
"jwN" = (
@@ -11298,12 +11753,13 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light/small/emergency{
- dir = 4
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Maintenance Passthrough";
+ req_access = list(12)
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor/plating,
-/area/maintenance/hangar/starboard)
+/turf/simulated/floor/tiled,
+/area/horizon/stairwell/central)
"jxj" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/blast/regular/open{
@@ -11327,9 +11783,8 @@
dir = 8
},
/obj/structure/railing/mapped,
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/porta_turret,
/turf/simulated/floor/tiled/dark,
/area/turret_protected/ai)
"jyn" = (
@@ -11361,6 +11816,24 @@
/obj/machinery/firealarm/west,
/turf/simulated/floor/tiled/white,
/area/rnd/xenoarch_atrium)
+"jyX" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/operations)
"jzw" = (
/turf/simulated/wall/shuttle/scc,
/area/shuttle/escape_pod/pod1)
@@ -11400,7 +11873,6 @@
/turf/simulated/floor/plating,
/area/turbolift/primary/deck_1)
"jBX" = (
-/obj/structure/lattice/catwalk/indoor/grate,
/obj/machinery/access_button{
command = "cycle_interior";
frequency = 1380;
@@ -11417,7 +11889,8 @@
pixel_x = -25;
pixel_y = -25
},
-/turf/simulated/floor/plating,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/dark,
/area/turret_protected/ai)
"jCf" = (
/obj/machinery/light/small/emergency,
@@ -11444,12 +11917,12 @@
/turf/simulated/floor/plating,
/area/maintenance/research_port)
"jCg" = (
-/obj/structure/railing/mapped{
- dir = 4
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
-/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/plating,
-/area/maintenance/hangar/starboard)
+/area/hangar/operations)
"jCl" = (
/obj/structure/table,
/turf/simulated/floor/tiled/freezer{
@@ -11479,9 +11952,6 @@
/turf/simulated/floor/tiled/dark,
/area/hangar/intrepid)
"jDs" = (
-/obj/effect/floor_decal/industrial/loading/yellow{
- dir = 4
- },
/obj/item/device/radio/intercom{
dir = 1;
name = "Station Intercom (General)";
@@ -11491,19 +11961,23 @@
c_tag = "Operations - Warehouse Entrance";
dir = 1
},
+/obj/vehicle/train/cargo/trolley,
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/operations/storage)
"jDU" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "warehousetomail";
+ layer = 2.9
},
-/obj/structure/table/standard{
- no_cargo = 1
+/obj/effect/floor_decal/corner/brown{
+ dir = 9
},
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/effect/floor_decal/corner/brown/full,
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/operations/storage)
"jEf" = (
@@ -11637,23 +12111,26 @@
/turf/simulated/floor/tiled/dark,
/area/engineering/gravity_gen)
"jJp" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
+/obj/structure/closet/crate,
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
},
-/obj/structure/lattice/catwalk/indoor/grate/damaged,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/wing/port/deck1)
+/turf/simulated/floor/tiled,
+/area/operations/storage)
"jKF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/operations/storage)
+"jLm" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"jLn" = (
/obj/machinery/floodlight,
/obj/effect/floor_decal/industrial/warning,
@@ -11689,18 +12166,9 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/eva)
"jOo" = (
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
/obj/machinery/light/spot/weak{
dir = 1
},
@@ -11710,6 +12178,12 @@
/obj/effect/floor_decal/corner/brown{
dir = 5
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/hangar/operations)
"jOJ" = (
@@ -11918,8 +12392,14 @@
/obj/machinery/alarm{
pixel_y = 28
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
+/obj/machinery/camera/network/medbay{
+ c_tag = "Medical - Morgue Elevator"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 5
},
/turf/simulated/floor/tiled{
name = "cooled floor";
@@ -11938,11 +12418,24 @@
/obj/effect/floor_decal/corner/black{
dir = 9
},
+/obj/structure/sign/emerg_exit/evac{
+ dir = 8;
+ pixel_x = -32
+ },
/turf/simulated/floor/tiled,
/area/hangar/intrepid)
"kbo" = (
/turf/simulated/wall,
/area/hallway/primary/aft)
+"kbI" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"kcb" = (
/obj/effect/map_effect/wingrille_spawn/reinforced_phoron,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -12000,6 +12493,7 @@
/area/engineering/atmos)
"kfb" = (
/obj/machinery/gravity_generator/main/station,
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/reinforced,
/area/engineering/gravity_gen)
"kfv" = (
@@ -12010,6 +12504,28 @@
/turf/simulated/floor/tiled/dark,
/area/storage/eva)
"kho" = (
+/obj/structure/railing/mapped,
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
+"kid" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/valve/open,
+/turf/space/dynamic,
+/area/template_noop)
+"kiw" = (
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/operations)
+"kjv" = (
/obj/structure/cable/green{
icon_state = "4-8"
},
@@ -12020,25 +12536,13 @@
dir = 4
},
/obj/effect/floor_decal/corner/brown{
- dir = 10
+ dir = 5
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/status_display/supply_display{
+ pixel_y = 32
},
/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"kid" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/valve/open,
-/turf/space/dynamic,
-/area/template_noop)
-"kjy" = (
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -28
- },
-/turf/simulated/floor/plating,
-/area/hangar/intrepid)
+/area/hangar/operations)
"kjH" = (
/obj/structure/cable/green{
icon_state = "1-4"
@@ -12075,7 +12579,7 @@
dir = 4
},
/obj/effect/floor_decal/corner/brown/full{
- dir = 4
+ dir = 1
},
/turf/simulated/floor/tiled,
/area/operations/storage)
@@ -12109,6 +12613,7 @@
/obj/effect/floor_decal/corner/brown{
dir = 5
},
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/outpost/mining_main/refinery)
"knl" = (
@@ -12154,8 +12659,8 @@
/turf/simulated/floor/reinforced/n20,
/area/engineering/atmos/air)
"koz" = (
-/obj/machinery/door/airlock/maintenance,
/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance_hatch,
/turf/simulated/floor/plating,
/area/maintenance/wing/port/deck1)
"koQ" = (
@@ -12170,12 +12675,19 @@
/turf/simulated/floor/tiled,
/area/hangar/intrepid)
"kpm" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
},
/obj/structure/railing/mapped,
-/turf/simulated/floor/tiled,
-/area/hangar/operations)
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/obj/structure/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"kpJ" = (
/obj/structure/shuttle_part{
icon = 'icons/turf/shuttles_unique/scc_shuttle_pieces.dmi';
@@ -12195,7 +12707,10 @@
/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/door/window/westleft,
+/obj/machinery/door/window/westleft{
+ req_access = list(48);
+ name = "Mining Voidsuit"
+ },
/obj/effect/floor_decal/industrial/outline,
/obj/item/stack/flag/purple,
/turf/simulated/floor/tiled,
@@ -12220,7 +12735,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/atmos{
name = "Atmospherics Maintenance";
- req_access = list(12,24)
+ req_access = list(24)
},
/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/turf/simulated/floor/tiled/dark,
@@ -12287,6 +12802,7 @@
/obj/machinery/atmospherics/pipe/simple/visible/black{
dir = 4
},
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled/dark,
/area/shuttle/mining)
"ksy" = (
@@ -12305,6 +12821,10 @@
/obj/structure/cable{
icon_state = "0-4"
},
+/obj/machinery/camera/network/engineering{
+ c_tag = "Engineering - Deck 1 - Security Substation";
+ alarm_on = 1
+ },
/turf/simulated/floor/plating,
/area/maintenance/substation/security)
"ksR" = (
@@ -12317,9 +12837,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/floor_decal/spline/plain{
- dir = 4
- },
/obj/effect/floor_decal/corner/brown{
dir = 5
},
@@ -12331,8 +12848,18 @@
req_one_access = list(13,31);
tag_door = "cargo_bay_door"
},
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/hangar/operations)
+"ktZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"kuh" = (
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/aft)
@@ -12418,7 +12945,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/airlock/glass{
- name = "Firefighting Supplies Closet"
+ name = "Emergency Supplies Closet"
},
/turf/simulated/floor/tiled/dark,
/area/hangar/auxiliary)
@@ -12532,13 +13059,16 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/sign/emerg_exit/evac{
+ dir = 4;
+ pixel_y = -32
+ },
/turf/simulated/floor/tiled,
/area/hangar/intrepid)
"kBV" = (
/obj/structure/cable/green{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{
frequency = 1380;
id_tag = "escape_pod_4_berth";
@@ -12548,10 +13078,7 @@
/turf/simulated/floor/tiled,
/area/hangar/operations)
"kCj" = (
-/obj/structure/railing/mapped{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning{
+/obj/effect/floor_decal/corner/brown{
dir = 4
},
/turf/simulated/floor/tiled,
@@ -12579,6 +13106,15 @@
/obj/structure/lattice,
/turf/space/dynamic,
/area/template_noop)
+"kDf" = (
+/obj/structure/railing/mapped,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"kDt" = (
/obj/effect/floor_decal/corner/blue/full{
dir = 1
@@ -12804,10 +13340,33 @@
/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/research_port)
+"kKb" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_mining{
+ name = "Operations Hangar";
+ req_access = null;
+ req_one_access = list(26, 31, 48, 67)
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/hangar/operations)
"kKc" = (
-/obj/machinery/mech_recharger,
-/obj/effect/floor_decal/industrial/outline,
-/turf/simulated/floor/reinforced,
+/obj/machinery/door/blast/shutters{
+ id = "miningmechbay";
+ name = "Mining Shuttle Bay Shutter"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
/area/hangar/operations)
"kKz" = (
/obj/machinery/atmospherics/pipe/simple/visible/green,
@@ -12834,14 +13393,19 @@
/turf/simulated/floor/tiled,
/area/rnd/xenoarch_atrium)
"kLu" = (
-/obj/vehicle/train/cargo/engine,
-/obj/effect/floor_decal/spline/plain,
-/obj/effect/floor_decal/corner/brown/full,
+/obj/effect/floor_decal/industrial/outline/medical,
/turf/simulated/floor/tiled,
-/area/operations/loading)
+/area/operations/storage)
"kLC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/light/small/emergency,
/obj/structure/cable{
- icon_state = "4-8"
+ icon_state = "1-4"
},
/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
@@ -12856,6 +13420,9 @@
pixel_x = 28;
req_one_access = list(24,11,55)
},
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
/turf/simulated/floor/reinforced,
/area/engineering/gravity_gen)
"kLR" = (
@@ -12868,10 +13435,10 @@
/obj/machinery/door/airlock/glass_mining{
name = "Cargo Bay";
req_access = null;
- req_one_access = list(31,48,26,67)
+ req_one_access = list(26, 31, 48, 67)
},
/obj/machinery/door/blast/regular/open{
- dir = 8;
+ dir = 4;
id = "hangarlockdown";
name = "Hangar Lockdown"
},
@@ -12904,21 +13471,39 @@
dir = 9
},
/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/camera/network/first_deck{
+ c_tag = "First Deck - Auxiliary Hangar Center";
+ dir = 1
+ },
/obj/machinery/light/spot/weak,
/turf/simulated/floor/plating,
/area/hangar/auxiliary)
"kNN" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor/plating,
+/obj/effect/floor_decal/corner/brown{
+ dir = 5
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "miningmechbay";
+ name = "Mining Shuttle Bay";
+ pixel_y = 25;
+ req_access = list(48)
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/camera/network/supply{
+ c_tag = "Operations - Mining Shuttle Dock Aft"
+ },
+/turf/simulated/floor/tiled,
/area/hangar/operations)
"kOJ" = (
-/obj/effect/floor_decal/corner/brown{
- dir = 6
- },
/obj/machinery/camera/network/supply{
c_tag = "Operations - Lower Warehouse 1";
dir = 8
},
+/obj/effect/floor_decal/corner/brown{
+ dir = 6
+ },
/turf/simulated/floor/tiled,
/area/operations/storage)
"kQI" = (
@@ -13020,14 +13605,10 @@
/turf/simulated/floor/plating,
/area/maintenance/wing/port/deck1)
"kTJ" = (
-/obj/effect/floor_decal/corner/brown{
- dir = 8
- },
-/obj/effect/floor_decal/corner/brown{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/operations/storage)
+/obj/structure/disposalpipe/segment,
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"kTL" = (
/obj/effect/floor_decal/industrial/warning{
dir = 1
@@ -13075,14 +13656,13 @@
/turf/simulated/floor/plating,
/area/maintenance/operations)
"kVu" = (
-/obj/machinery/door/airlock/multi_tile/glass{
- dir = 2;
- name = "Operations Hallway";
- req_one_access = list(31,48,26,67)
- },
-/obj/machinery/door/firedoor/multi_tile{
- dir = 1
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_mining{
+ name = "Operations Hangar";
+ req_access = null;
+ req_one_access = list(26, 31, 48, 67)
},
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/hangar/operations)
"kVv" = (
@@ -13101,8 +13681,12 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/eva)
"kWx" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/trash_pile,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/full{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/maintenance/operations)
"kWB" = (
@@ -13115,6 +13699,9 @@
/obj/structure/railing/mapped{
dir = 4
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/hangar/operations)
"kWQ" = (
@@ -13244,7 +13831,7 @@
dir = 4
},
/obj/machinery/door/airlock/maintenance{
- req_access = list(12)
+ req_one_access = list(12, 63)
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
@@ -13267,7 +13854,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/freezer_maint{
name = "Morgue Maintenance";
- req_one_access = list(12,66)
+ req_access = list(6)
},
/turf/simulated/floor/tiled,
/area/medical/emergency_storage)
@@ -13290,9 +13877,6 @@
pixel_x = -24;
pixel_y = 10
},
-/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 6
- },
/obj/machinery/power/smes/buildable/horizon_shuttle{
RCon_tag = "Mining_Pod"
},
@@ -13309,6 +13893,25 @@
},
/turf/simulated/floor/tiled/dark,
/area/shuttle/mining)
+"lig" = (
+/obj/machinery/camera/network/supply{
+ c_tag = Operations - Mining Shuttle Dock Fore Starboard;
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/full,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'DANGER: EQUIPMENT STARTS AND STOPS AUTOMATICALLY' and 'CRUSH HAZARD'.";
+ name = "\improper DANGER: AUTOMATIC EQUIPMENT - CRUSH HAZARD sign";
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/operations)
"liB" = (
/obj/machinery/atmospherics/omni/filter{
name = "phoron filter";
@@ -13338,15 +13941,12 @@
/turf/simulated/floor/tiled/dark,
/area/shuttle/intrepid/cockpit)
"liP" = (
-/obj/effect/floor_decal/corner/brown/full,
-/obj/machinery/button/remote/blast_door{
- id = "miningbay";
- name = "Mining Bay Entrance";
- pixel_x = -30;
- req_access = list(48)
+/obj/structure/sign/securearea{
+ pixel_y = 32
},
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
+/obj/structure/lattice/catwalk,
+/turf/space/dynamic,
+/area/template_noop)
"ljs" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/dark,
@@ -13395,6 +13995,22 @@
},
/turf/simulated/floor/tiled/dark,
/area/hangar/intrepid)
+"lmD" = (
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 9
+ },
+/obj/machinery/alarm{
+ pixel_x = -28;
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/operations)
"lnk" = (
/obj/effect/shuttle_landmark/burglar_ship/hangar,
/turf/simulated/floor/plating,
@@ -13430,7 +14046,10 @@
/turf/simulated/floor/plating,
/area/engineering/atmos/air)
"lnQ" = (
-/obj/effect/map_effect/airlock/w_to_e/long/square,
+/obj/effect/map_effect/airlock/w_to_e/long/square{
+ radio_frequency = 1004;
+ name = "Deck 1 Fore Maintenance Airlock (1004)"
+ },
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
/area/maintenance/hangar/starboard)
"loq" = (
@@ -13608,10 +14227,12 @@
/obj/effect/floor_decal/corner/brown/full{
dir = 4
},
-/obj/item/device/radio/intercom{
+/obj/machinery/button/remote/blast_door{
+ id = "miningbay";
+ name = "Mining Bay Entrance";
+ req_access = list(48);
dir = 1;
- name = "Station Intercom (General)";
- pixel_y = -24
+ pixel_y = -32
},
/turf/simulated/floor/tiled,
/area/outpost/mining_main/refinery)
@@ -13662,6 +14283,9 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
/turf/simulated/floor/reinforced,
/area/engineering/gravity_gen)
"lBi" = (
@@ -13716,25 +14340,23 @@
/turf/simulated/floor/tiled/dark,
/area/hangar/intrepid)
"lDd" = (
-/obj/machinery/door/airlock/engineering,
/obj/structure/cable/green{
- icon_state = "1-2"
+ icon_state = "2-8"
},
-/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/substation/civilian_west)
"lEq" = (
/obj/structure/cable{
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
/obj/structure/lattice/catwalk/indoor/grate/damaged,
/obj/effect/decal/cleanable/greenglow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
/turf/simulated/floor/plating,
/area/maintenance/wing/port/deck1)
"lEw" = (
@@ -13744,14 +14366,14 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/hatch{
name = "Propulsion";
- req_access = list(10)
+ req_one_access = list(11, 24)
},
/turf/simulated/floor/tiled/dark,
/area/engineering/atmos/propulsion/starboard)
"lEN" = (
/obj/structure/stairs/east,
/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/area/turret_protected/ai_upload)
"lEQ" = (
/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
/turf/simulated/floor/plating,
@@ -13897,12 +14519,20 @@
/turf/simulated/floor/tiled/dark,
/area/hangar/intrepid)
"lNi" = (
-/obj/effect/floor_decal/spline/plain,
/obj/effect/floor_decal/corner/brown{
dir = 10
},
/turf/simulated/floor/tiled,
/area/operations/loading)
+"lNj" = (
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/operations/loading)
"lNE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -13916,6 +14546,14 @@
},
/turf/simulated/floor/tiled,
/area/janitor)
+"lNG" = (
+/obj/structure/closet/crate,
+/obj/effect/floor_decal/corner/brown{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/operations/storage)
"lNJ" = (
/obj/structure/table/rack,
/obj/item/clothing/mask/breath,
@@ -13959,14 +14597,17 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
/obj/machinery/light/small{
dir = 1
},
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
/turf/simulated/floor/tiled,
-/area/hangar/intrepid)
+/area/horizon/stairwell/central)
"lOT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -13985,12 +14626,15 @@
/turf/simulated/floor/plating,
/area/maintenance/hangar/port)
"lPL" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
+/obj/item/modular_computer/console/preset/ai,
+/obj/machinery/light/small/emergency{
+ dir = 4
},
-/turf/simulated/floor/plating,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
/area/turret_protected/ai)
"lPP" = (
/obj/structure/tank_wall/hydrogen{
@@ -14063,6 +14707,11 @@
/obj/machinery/power/terminal{
dir = 4
},
+/obj/machinery/camera/network/engineering{
+ c_tag = "Engineering - Deck 1 - Operations Substation";
+ dir = 4;
+ alarm_on = 1
+ },
/turf/simulated/floor/plating,
/area/maintenance/substation/supply)
"lSc" = (
@@ -14134,6 +14783,9 @@
dir = 6
},
/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
/turf/simulated/floor/plating,
/area/maintenance/hangar/starboard)
"lUr" = (
@@ -14203,9 +14855,11 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/lattice/catwalk/indoor/grate/damaged,
/obj/effect/decal/cleanable/greenglow,
-/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/wing/port/deck1)
"lWd" = (
@@ -14240,7 +14894,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering{
name = "Security Substation";
- req_one_access = list(73)
+ req_access = list(73)
},
/obj/structure/cable{
icon_state = "1-2"
@@ -14368,6 +15022,16 @@
},
/turf/simulated/floor/carpet/rubber,
/area/operations/lower/machinist)
+"mfn" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"mfu" = (
/obj/machinery/artifact_scanpad,
/obj/effect/floor_decal/spline/plain{
@@ -14393,12 +15057,11 @@
/turf/simulated/floor/tiled,
/area/operations/storage)
"mhd" = (
-/obj/structure/closet/emcloset,
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/machinery/door/airlock/maintenance{
+ req_access = list(12)
},
-/turf/simulated/floor/tiled/dark,
-/area/hangar/operations)
+/turf/simulated/floor/plating,
+/area/hangar/intrepid)
"mhf" = (
/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
@@ -14424,13 +15087,9 @@
/turf/simulated/floor/tiled/dark,
/area/hangar/auxiliary)
"mhL" = (
-/obj/machinery/airlock_sensor{
- pixel_y = -21
+/obj/machinery/light/small/emergency{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5
- },
-/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/engineering/atmos/propulsion)
"mik" = (
@@ -14440,6 +15099,10 @@
/obj/effect/floor_decal/corner/green{
dir = 9
},
+/obj/machinery/camera/network/service{
+ c_tag = "Custodial - Disposals Fore";
+ dir = 4
+ },
/turf/simulated/floor/tiled/dark,
/area/maintenance/disposal)
"mil" = (
@@ -14461,6 +15124,9 @@
/obj/effect/floor_decal/corner/black{
dir = 6
},
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled/dark,
/area/hangar/auxiliary)
"mjG" = (
@@ -14485,12 +15151,9 @@
/area/outpost/mining_main/eva)
"mkW" = (
/obj/machinery/mech_recharger,
-/obj/effect/floor_decal/industrial/outline/grey,
-/obj/machinery/camera/network/command{
- c_tag = "AI Core - First Deck Entrance"
- },
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/area/turret_protected/ai_upload)
"mlw" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -14508,7 +15171,7 @@
/obj/structure/lattice/catwalk/indoor/grate,
/obj/machinery/door/airlock/maintenance{
name = "Engineering Maintenance";
- req_one_access = list(10)
+ req_access = list(10)
},
/turf/simulated/floor/plating,
/area/hallway/engineering)
@@ -14614,10 +15277,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/maintenance{
- req_access = null;
- req_one_access = list(12,66)
- },
+/obj/machinery/door/airlock/maintenance_hatch,
/turf/simulated/floor/tiled,
/area/maintenance/operations)
"moI" = (
@@ -14641,9 +15301,11 @@
/turf/simulated/floor/plating,
/area/maintenance/research_port)
"mpI" = (
-/obj/effect/floor_decal/spline/plain,
-/obj/machinery/firealarm/west,
/obj/effect/floor_decal/corner/brown/full,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/tiled,
/area/operations/loading)
"mqy" = (
@@ -14679,18 +15341,16 @@
/turf/simulated/floor/tiled/dark,
/area/engineering/atmos)
"mst" = (
-/obj/structure/cable/green{
- icon_state = "2-4"
+/obj/structure/railing/mapped{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/obj/effect/floor_decal/corner/green/full{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+/obj/structure/table/rack,
+/turf/simulated/floor/tiled/white{
+ temperature = 278.15;
+ name = "cooled white floor"
},
/area/medical/morgue/lower)
"msv" = (
@@ -14820,13 +15480,9 @@
/turf/simulated/floor/reinforced/nitrogen,
/area/engineering/atmos/air)
"myA" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
/area/hangar/operations)
"myR" = (
/obj/machinery/recharger/wallcharger{
@@ -14882,8 +15538,9 @@
id = "hangarlockdown";
name = "Hangar Lockdown"
},
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
-/area/hangar/intrepid)
+/area/horizon/stairwell/central)
"mBJ" = (
/obj/structure/shuttle_part{
icon = 'icons/turf/shuttles_unique/scc_shuttle_pieces.dmi';
@@ -14982,11 +15639,13 @@
/turf/simulated/floor/tiled,
/area/hangar/auxiliary)
"mFO" = (
-/obj/machinery/button/remote/blast_door{
- id = "miningmechbay";
- name = "Mining Recharging Bay";
- pixel_y = -30;
- req_access = list(48)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/sign/emerg_exit/evac{
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/hangar/operations)
@@ -15063,6 +15722,19 @@
},
/turf/simulated/floor/tiled/dark,
/area/engineering/atmos/propulsion)
+"mKc" = (
+/obj/effect/floor_decal/corner/brown{
+ dir = 5
+ },
+/obj/machinery/power/apc{
+ pixel_y = 24;
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/refinery)
"mKj" = (
/turf/simulated/floor/tiled/ramp/bottom,
/area/maintenance/operations)
@@ -15140,9 +15812,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/railing/mapped{
- dir = 8
- },
/obj/structure/railing/mapped{
dir = 1
},
@@ -15151,6 +15820,18 @@
},
/turf/simulated/floor/plating,
/area/maintenance/engineering)
+"mNG" = (
+/obj/machinery/light/small/emergency{
+ dir = 1
+ },
+/obj/machinery/atmospherics/binary/pump/on{
+ name = "Distro to Airlock";
+ target_pressure = 200;
+ dir = 8
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"mNH" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark,
@@ -15158,6 +15839,13 @@
"mNU" = (
/turf/space/dynamic,
/area/engineering/atmos/propulsion/starboard)
+"mNV" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"mOd" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -15217,6 +15905,13 @@
},
/turf/simulated/floor/reinforced/airmix,
/area/engineering/atmos/air)
+"mPZ" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 8
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"mQd" = (
/obj/structure/tank_wall{
icon_state = "m-14"
@@ -15257,6 +15952,10 @@
c_tag = "First Deck - Hangar 13";
dir = 8
},
+/obj/structure/sign/emerg_exit/evac{
+ dir = 4;
+ pixel_x = 32
+ },
/turf/simulated/floor/tiled,
/area/hangar/auxiliary)
"mRu" = (
@@ -15276,6 +15975,9 @@
/obj/item/device/radio/off{
pixel_y = 5
},
+/obj/effect/floor_decal/corner/green/full{
+ dir = 8
+ },
/turf/simulated/floor/tiled,
/area/medical/emergency_storage)
"mSd" = (
@@ -15313,12 +16015,29 @@
},
/turf/simulated/floor/tiled/dark,
/area/hangar/auxiliary)
-"mST" = (
-/obj/structure/morgue,
-/obj/machinery/light/small{
- dir = 8
+"mSQ" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/sign/emerg_exit/evac{
+ dir = 4;
+ pixel_x = 32
},
/turf/simulated/floor/tiled,
+/area/hangar/auxiliary)
+"mST" = (
+/obj/structure/morgue,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/freezer{
+ name = "cooled tiles";
+ temperature = 278.15
+ },
/area/medical/morgue/lower)
"mTJ" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
@@ -15333,6 +16052,7 @@
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/industrial/warning/corner,
/turf/simulated/floor/reinforced,
/area/engineering/gravity_gen)
"mTZ" = (
@@ -15345,9 +16065,14 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/tiled/ramp/bottom{
+/obj/random/junk,
+/obj/structure/railing/mapped{
dir = 1
},
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
/area/maintenance/engineering)
"mUj" = (
/obj/structure/lattice/catwalk/indoor/grate,
@@ -15370,14 +16095,12 @@
/turf/simulated/floor/plating,
/area/maintenance/wing/port/deck1)
"mVo" = (
-/obj/structure/railing/mapped{
- dir = 4
- },
/obj/effect/floor_decal/industrial/warning{
dir = 8
},
-/obj/machinery/light/small{
- dir = 8
+/obj/machinery/camera/network/command{
+ c_tag = "AI Core - First Deck Chamber";
+ dir = 4
},
/turf/simulated/floor/tiled/dark,
/area/turret_protected/ai)
@@ -15392,6 +16115,10 @@
/obj/effect/floor_decal/corner/black{
dir = 9
},
+/obj/machinery/alarm{
+ pixel_x = -28;
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/hangar/intrepid)
"mVN" = (
@@ -15470,6 +16197,24 @@
},
/turf/simulated/floor/tiled/dark,
/area/hangar/intrepid)
+"mXG" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/black{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hangar/intrepid)
"mXP" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -15506,13 +16251,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/engineering/atmos/propulsion/starboard)
-"mYn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor/plating,
-/area/engineering/atmos/propulsion)
"mYX" = (
/obj/structure/table/rack,
/obj/item/clothing/shoes/magboots,
@@ -15555,6 +16293,7 @@
"mZr" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/railing/mapped,
+/obj/item/stack/rods,
/turf/simulated/floor/tiled,
/area/maintenance/operations)
"mZz" = (
@@ -15574,7 +16313,7 @@
/area/shuttle/intrepid/crew_compartment)
"nag" = (
/obj/effect/floor_decal/corner/brown{
- dir = 5
+ dir = 9
},
/turf/simulated/floor/tiled,
/area/operations/loading)
@@ -15600,9 +16339,9 @@
/obj/machinery/light/small{
dir = 1
},
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+/turf/simulated/floor/tiled/freezer{
+ name = "cooled tiles";
+ temperature = 278.15
},
/area/medical/morgue/lower)
"ncG" = (
@@ -15684,15 +16423,15 @@
/turf/simulated/floor/tiled,
/area/hangar/auxiliary)
"ngD" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 4
- },
/obj/effect/floor_decal/spline/plain/corner{
dir = 8
},
/obj/effect/floor_decal/corner/brown/full{
dir = 4
},
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/operations/loading)
"nhc" = (
@@ -15702,8 +16441,35 @@
/obj/machinery/light/small/emergency{
dir = 1
},
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
/turf/simulated/floor/plating,
/area/maintenance/hangar/starboard)
+"nhf" = (
+/obj/structure/railing/mapped{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/random/loot,
+/obj/structure/table/standard{
+ no_cargo = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
+"nhi" = (
+/obj/machinery/shieldwallgen,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/hangar/operations)
"nhw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -15877,9 +16643,8 @@
dir = 4
},
/obj/structure/railing/mapped,
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/porta_turret,
/turf/simulated/floor/tiled/dark,
/area/turret_protected/ai)
"nqq" = (
@@ -15934,6 +16699,10 @@
/obj/structure/railing/mapped{
dir = 4
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/hangar/operations)
"nsx" = (
@@ -15960,23 +16729,22 @@
/obj/structure/lattice,
/turf/space/dynamic,
/area/template_noop)
-"ntv" = (
-/obj/machinery/power/smes/buildable{
- charge = 5e+006;
- input_attempt = 1;
- input_level = 200000;
- output_attempt = 1;
- output_level = 200000
- },
-/obj/structure/cable/orange,
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai)
"ntJ" = (
/obj/machinery/atmospherics/pipe/simple/visible/black{
dir = 9
},
/turf/simulated/floor/tiled/dark,
/area/engineering/atmos/propulsion/starboard)
+"nua" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance_hatch,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"nuj" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -16139,7 +16907,7 @@
"nAT" = (
/obj/machinery/door/airlock/engineering{
name = "Engineering Storage";
- req_access = list(10)
+ req_access = list(11)
},
/obj/structure/cable/green{
icon_state = "4-8"
@@ -16163,10 +16931,11 @@
/turf/simulated/floor/airless,
/area/engineering/atmos)
"nBA" = (
-/obj/structure/cable/green{
- icon_state = "2-8"
+/obj/effect/floor_decal/corner/brown{
+ dir = 5
},
-/turf/simulated/floor/tiled/dark,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
/area/hangar/operations)
"nBK" = (
/obj/structure/cable{
@@ -16197,16 +16966,6 @@
},
/turf/simulated/floor/plating,
/area/rnd/xenoarch_atrium)
-"nCd" = (
-/obj/structure/cable/orange{
- icon_state = "2-8"
- },
-/obj/machinery/camera/network/command{
- c_tag = "AI Core - SMES";
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai)
"nCC" = (
/obj/machinery/atmospherics/pipe/simple/visible/black{
dir = 5
@@ -16223,22 +16982,23 @@
/obj/effect/floor_decal/industrial/warning/corner{
dir = 1
},
-/obj/machinery/light/small{
- dir = 1
- },
/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/area/turret_protected/ai_upload)
"nCM" = (
-/obj/machinery/door/blast/shutters/open{
- id = "miningmechbay";
- name = "Recharging Bay"
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
},
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/effect/floor_decal/industrial/loading/yellow{
+/obj/machinery/button/remote/blast_door{
+ id = "miningmechbay";
+ name = "Mining Shuttle Bay";
+ pixel_y = -25;
+ req_access = list(48);
dir = 1
},
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/dark,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
/area/hangar/operations)
"nCV" = (
/turf/simulated/floor/tiled,
@@ -16252,6 +17012,14 @@
"nDI" = (
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
/area/hangar/intrepid)
+"nDL" = (
+/obj/structure/closet/crate/bin,
+/obj/random/loot,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"nEm" = (
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
/area/maintenance/disposal)
@@ -16389,6 +17157,15 @@
"nNS" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/window/westright{
+ name = "Oxygen Supplies Access"
+ },
/turf/simulated/floor/tiled,
/area/outpost/mining_main/refinery)
"nOM" = (
@@ -16424,6 +17201,11 @@
dir = 4
},
/obj/structure/cable,
+/obj/machinery/camera/network/engineering{
+ c_tag = "Engineering - Deck 1 - Hangar Substation";
+ alarm_on = 1;
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/substation/hangar)
"nPL" = (
@@ -16533,9 +17315,6 @@
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
-/obj/effect/floor_decal/corner/brown{
- dir = 10
- },
/turf/simulated/floor/tiled,
/area/outpost/mining_main/refinery)
"nTR" = (
@@ -16570,12 +17349,12 @@
/turf/simulated/floor/tiled/dark,
/area/shuttle/intrepid/engine_compartment)
"nUn" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
/obj/structure/cable/green{
icon_state = "4-8"
},
+/obj/effect/floor_decal/corner/brown{
+ dir = 9
+ },
/turf/simulated/floor/tiled,
/area/operations/storage)
"nUQ" = (
@@ -16604,13 +17383,24 @@
/turf/simulated/floor/plating,
/area/engineering/atmos)
"nVO" = (
-/obj/machinery/portable_atmospherics/powered/pump/filled,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/structure/railing/mapped,
+/obj/structure/railing/mapped{
+ dir = 4
},
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor/plating,
+/area/maintenance/research_port)
+"nWf" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/closet/crate,
+/obj/effect/floor_decal/corner/brown{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
-/area/hangar/operations)
+/area/operations/storage)
"nWA" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -16619,17 +17409,18 @@
/turf/simulated/wall,
/area/maintenance/hangar/starboard)
"nYx" = (
-/obj/machinery/door/airlock/maintenance{
- req_access = list(54)
- },
/obj/structure/cable/green{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
+/obj/machinery/door/airlock/maintenance{
+ req_access = list(26, 31, 48, 67);
+ name = "Cargo Bay Maintenance"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
/area/operations/loading)
"nYA" = (
/obj/structure/window/shuttle/scc_space_ship,
@@ -16641,6 +17432,19 @@
},
/turf/simulated/floor/plating,
/area/maintenance/disposal)
+"nYB" = (
+/obj/structure/plasticflaps{
+ name = "Delivery Chute to Mail Room"
+ },
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "warehousetomail";
+ layer = 2.9
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/operations/storage)
"nYD" = (
/obj/effect/floor_decal/industrial/warning/corner{
dir = 1
@@ -16664,6 +17468,10 @@
/turf/simulated/floor/plating,
/area/rnd/xenoarch_atrium)
"oam" = (
+/obj/structure/grille/diagonal{
+ dir = 8
+ },
+/obj/structure/lattice,
/turf/space/dynamic,
/area/template_noop)
"oap" = (
@@ -16720,13 +17528,16 @@
/turf/simulated/floor/tiled/dark,
/area/operations/lower/machinist)
"oct" = (
-/obj/vehicle/train/cargo/trolley,
-/obj/effect/floor_decal/spline/plain,
-/obj/effect/floor_decal/corner/brown{
- dir = 10
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/tiled,
-/area/operations/loading)
+/obj/machinery/door/airlock/maintenance_hatch{
+ req_access = list(31);
+ name = "Delivery Chute Maintenance"
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/plating,
+/area/operations/storage)
"ocu" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -16748,25 +17559,28 @@
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled/dark,
/area/rnd/eva)
+"ocQ" = (
+/obj/machinery/light/small/emergency{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"ocT" = (
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance_hatch{
- req_one_access = list(12,61)
+/obj/machinery/door/airlock/maintenance{
+ req_access = list(12)
},
/turf/simulated/floor/plating,
/area/maintenance/hangar/port)
"odK" = (
-/obj/structure/cable/green{
- icon_state = "0-2"
+/obj/machinery/light/small{
+ dir = 4
},
-/obj/machinery/power/apc/low{
- dir = 4;
- name = "east bump";
- pixel_x = 24
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/machinery/power/sensor{
- name = "Powernet Sensor - Starboard Hangar Subgrid";
- name_tag = "Starboard Hangar Subgrid"
+/obj/structure/cable{
+ icon_state = "1-8"
},
/turf/simulated/floor/plating,
/area/maintenance/substation/civilian_west)
@@ -16798,14 +17612,8 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/xenoarch_atrium)
"ofh" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/obj/machinery/light/small/emergency{
+ dir = 1
},
/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
@@ -16853,16 +17661,14 @@
/turf/simulated/floor/greengrid/nitrogen,
/area/engineering/drone_fabrication)
"okw" = (
-/obj/effect/floor_decal/industrial/warning{
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/structure/sign/emerg_exit/evac{
dir = 8
},
-/obj/item/device/radio/intercom{
- dir = 1;
- name = "Station Intercom (General)";
- pixel_y = -24
- },
/turf/simulated/floor/tiled,
-/area/hangar/intrepid)
+/area/horizon/stairwell/central)
"okA" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -16901,6 +17707,13 @@
/obj/effect/floor_decal/corner/black,
/turf/simulated/floor/tiled/dark,
/area/hangar/intrepid)
+"omL" = (
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"onN" = (
/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{
dir = 4;
@@ -16922,32 +17735,13 @@
/turf/simulated/floor/tiled,
/area/hangar/intrepid)
"ooy" = (
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/machinery/door/airlock/maintenance{
+ req_one_access = list(31, 48, 67);
+ name = "Mining Shuttle Bay Maintenance"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/simulated/floor/plating,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
/area/maintenance/hangar/starboard)
-"opy" = (
-/obj/effect/map_effect/wingrille_spawn/reinforced_phoron,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "AICore";
- name = "AI core maintenance hatch";
- opacity = 0
- },
-/obj/structure/cable/orange{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai)
"opY" = (
/obj/effect/floor_decal/industrial/loading/yellow{
dir = 8
@@ -16958,10 +17752,16 @@
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/lattice/catwalk/indoor/grate,
/obj/machinery/alarm{
pixel_y = 28
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/wing/port/deck1)
"orq" = (
@@ -16996,6 +17796,7 @@
/obj/effect/floor_decal/corner/brown{
dir = 5
},
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/outpost/mining_main/refinery)
"oum" = (
@@ -17014,11 +17815,17 @@
/turf/simulated/floor/tiled/dark,
/area/engineering/gravity_gen)
"ovb" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_mining{
- name = "Mining";
- req_access = null;
- req_one_access = list(48,67)
+/obj/effect/floor_decal/corner/brown{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
/turf/simulated/floor/tiled,
/area/hangar/operations)
@@ -17117,11 +17924,14 @@
/turf/simulated/floor/reinforced,
/area/rnd/test_range)
"oAU" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
/obj/machinery/light/small{
dir = 8
},
/obj/structure/closet/crate,
+/obj/effect/floor_decal/corner/brown{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/operations/storage)
"oBL" = (
@@ -17198,6 +18008,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/effect/floor_decal/corner/brown/diagonal,
/turf/simulated/floor/tiled,
/area/operations/loading)
"oDB" = (
@@ -17215,9 +18026,7 @@
},
/obj/machinery/door/firedoor,
/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/door/airlock/maintenance_hatch{
- req_access = list(12)
- },
+/obj/machinery/door/airlock/maintenance_hatch,
/turf/simulated/floor/plating,
/area/maintenance/wing/port/deck1)
"oEp" = (
@@ -17230,7 +18039,7 @@
/area/outpost/mining_main/refinery)
"oFy" = (
/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/area/turret_protected/ai_upload)
"oFA" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -17254,15 +18063,18 @@
/turf/simulated/floor/plating,
/area/hangar/intrepid)
"oGK" = (
-/obj/structure/railing/mapped,
-/turf/simulated/floor/plating,
-/area/maintenance/hangar/starboard)
-"oJc" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 5
+/obj/structure/trash_pile,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
},
-/obj/effect/floor_decal/corner/brown/full{
- dir = 1
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
+"oJc" = (
+/obj/effect/floor_decal/corner/brown{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
/turf/simulated/floor/tiled,
/area/operations/loading)
@@ -17273,6 +18085,13 @@
/obj/structure/railing/mapped{
dir = 8
},
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/hangar/operations)
"oJy" = (
@@ -17297,16 +18116,25 @@
/area/rnd/xenoarch_atrium)
"oLG" = (
/obj/machinery/power/apc/low{
- dir = 4;
name = "east bump";
- pixel_x = 24
+ pixel_y = -24
},
/obj/structure/cable/green,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
/turf/simulated/floor/tiled,
/area/medical/emergency_storage)
+"oNv" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/engineering/gravity_gen)
"oOk" = (
/turf/simulated/wall,
/area/outpost/mining_main/eva)
@@ -17348,6 +18176,13 @@
"oRg" = (
/turf/simulated/floor/reinforced,
/area/rnd/test_range)
+"oRA" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/firealarm/west,
+/turf/simulated/floor/tiled,
+/area/hangar/operations)
"oSA" = (
/obj/structure/bed/stool/chair/shuttle{
dir = 8
@@ -17410,6 +18245,16 @@
},
/turf/simulated/floor/plating,
/area/engineering/atmos/air)
+"oXD" = (
+/obj/machinery/camera/network/supply{
+ c_tag = "Operations - Hangar Port Aft";
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/operations)
"oYp" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -17503,6 +18348,13 @@
},
/turf/simulated/floor/plating,
/area/hangar/operations)
+"paL" = (
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"pbJ" = (
/turf/simulated/floor/shuttle/dark_blue,
/area/shuttle/escape_pod/pod4)
@@ -17523,17 +18375,12 @@
/turf/simulated/floor/tiled,
/area/rnd/xenoarch_atrium)
"pcv" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/effect/floor_decal/corner/brown/full{
- dir = 8
+/obj/machinery/camera/network/supply{
+ c_tag = "Operations - Warehouse Starboard Aft Storage Room";
+ dir = 4
},
/turf/simulated/floor/tiled,
-/area/operations/loading)
+/area/operations/storage)
"pcB" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 9
@@ -17543,7 +18390,7 @@
/area/engineering/atmos/air)
"pdC" = (
/turf/simulated/wall/r_wall,
-/area/turret_protected/ai_upload_foyer)
+/area/turret_protected/ai_upload)
"pdL" = (
/obj/effect/floor_decal/industrial/loading/yellow{
dir = 8
@@ -17552,10 +18399,6 @@
/turf/simulated/floor/tiled,
/area/maintenance/hangar/port)
"pep" = (
-/obj/machinery/camera/network/supply{
- c_tag = "Operations - Disposals, Upper";
- dir = 1
- },
/obj/effect/floor_decal/corner/green/full,
/obj/structure/sign/emerg_exit{
pixel_y = -32
@@ -17567,9 +18410,6 @@
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/light/spot/weak{
dir = 1
},
@@ -17579,21 +18419,31 @@
/obj/effect/floor_decal/corner/brown{
dir = 5
},
-/turf/simulated/floor/tiled,
-/area/hangar/operations)
-"pfb" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled,
-/area/operations/storage)
-"pfs" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/effect/floor_decal/corner/brown{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
/turf/simulated/floor/tiled,
+/area/hangar/operations)
+"pfb" = (
+/obj/vehicle/train/cargo/trolley,
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
/area/operations/storage)
+"pfs" = (
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/sign/fire{
+ name = "\improper DANGER: THRUSTERS";
+ desc = "A warning sign which reads 'DANGER: SHUTTLE THRUSTERS IN USE' and 'MIND THE DISTANCE'."
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/operations)
"pfx" = (
/obj/machinery/atmospherics/pipe/manifold/visible,
/obj/machinery/light,
@@ -17616,7 +18466,7 @@
},
/obj/item/device/multitool,
/turf/simulated/floor/plating,
-/area/engineering/storage/tech)
+/area/engineering/storage/lower)
"pfV" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -17628,14 +18478,10 @@
/turf/simulated/floor/plating,
/area/maintenance/wing/port/deck1)
"pgW" = (
-/obj/machinery/camera/network/supply{
- c_tag = "Operations - Cargo Bay 2";
- dir = 8
+/obj/effect/floor_decal/corner/brown{
+ dir = 9
},
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/tiled,
/area/hangar/operations)
"phs" = (
/obj/structure/disposalpipe/sortjunction/flipped{
@@ -17657,6 +18503,7 @@
/area/hallway/primary/aft)
"phO" = (
/obj/effect/decal/cleanable/dirt,
+/obj/structure/reagent_dispensers/lube,
/turf/simulated/floor/tiled{
dir = 5;
icon_state = "vault"
@@ -17692,16 +18539,25 @@
/turf/simulated/floor/tiled/white,
/area/rnd/xenoarch_atrium)
"pjr" = (
+/obj/effect/decal/cleanable/cobweb2{
+ icon_state = "cobweb1"
+ },
+/obj/structure/railing/mapped{
+ dir = 4
+ },
/obj/structure/cable{
icon_state = "0-4"
},
/obj/structure/cable{
icon_state = "12-0"
},
-/obj/effect/decal/cleanable/cobweb2{
- icon_state = "cobweb1"
+/obj/machinery/atmospherics/pipe/zpipe/up/supply{
+ dir = 4
},
-/obj/structure/railing/mapped{
+/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
dir = 4
},
/turf/simulated/floor/plating,
@@ -17770,14 +18626,18 @@
/obj/effect/floor_decal/corner/white/diagonal,
/turf/simulated/floor/tiled/dark,
/area/operations/lower/machinist)
+"pme" = (
+/obj/effect/floor_decal/industrial/outline/research,
+/turf/simulated/floor/tiled,
+/area/operations/storage)
"pnf" = (
-/obj/machinery/door/airlock/maintenance,
/obj/structure/cable{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance_hatch,
/turf/simulated/floor/plating,
/area/maintenance/operations)
"png" = (
@@ -18135,6 +18995,9 @@
/obj/structure/railing/mapped{
dir = 1
},
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
/turf/simulated/floor/plating,
/area/maintenance/wing/port/deck1)
"pAD" = (
@@ -18259,15 +19122,15 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/floor_decal/corner/brown/full{
- dir = 8
- },
/obj/machinery/button/remote/blast_door{
id = "warehouse1";
name = "Warehouse Shutter";
pixel_x = -24;
pixel_y = 32
},
+/obj/effect/floor_decal/corner/brown{
+ dir = 9
+ },
/turf/simulated/floor/tiled,
/area/operations/storage)
"pGy" = (
@@ -18279,12 +19142,7 @@
/turf/simulated/floor/plating,
/area/maintenance/wing/port/deck1)
"pHy" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 8
- },
-/obj/effect/floor_decal/spline/plain{
- dir = 4
- },
+/obj/effect/floor_decal/industrial/warning,
/obj/effect/floor_decal/industrial/loading/grey,
/turf/simulated/floor/tiled,
/area/hangar/operations)
@@ -18294,9 +19152,6 @@
pixel_y = 8
},
/obj/item/device/robotanalyzer,
-/obj/machinery/camera/network/supply{
- c_tag = "Cargo - Machinist Workshop Entrance"
- },
/turf/simulated/floor/tiled/dark,
/area/operations/lower/machinist)
"pIf" = (
@@ -18467,12 +19322,12 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/eva)
"pPU" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+/obj/structure/table/steel,
+/obj/item/storage/box/bodybags,
+/obj/effect/floor_decal/corner/green/full,
+/turf/simulated/floor/tiled/white{
+ temperature = 278.15;
+ name = "cooled white floor"
},
/area/medical/morgue/lower)
"pQv" = (
@@ -18481,6 +19336,22 @@
},
/turf/simulated/floor/tiled/dark,
/area/maintenance/disposal)
+"pRz" = (
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ pixel_x = 28;
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/operations)
"pSk" = (
/obj/machinery/computer/general_air_control/large_tank_control{
input_tag = null;
@@ -18511,9 +19382,6 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
-/obj/effect/floor_decal/corner/brown{
- dir = 6
- },
/turf/simulated/floor/tiled,
/area/operations/storage)
"pTj" = (
@@ -18542,10 +19410,10 @@
/turf/simulated/floor/tiled/dark,
/area/shuttle/intrepid/cargo_bay)
"pTs" = (
-/obj/structure/railing/mapped{
- dir = 4
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
/area/maintenance/hangar/starboard)
"pTF" = (
/turf/simulated/floor/tiled/dark,
@@ -18582,12 +19450,18 @@
/turf/simulated/floor/greengrid,
/area/rnd/xenoarch_atrium)
"pVp" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/alarm{
- pixel_y = 28
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
},
-/turf/simulated/floor/tiled/dark,
-/area/hangar/intrepid)
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/random/junk,
+/obj/machinery/light/small/emergency{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/hangar/starboard)
"pVU" = (
/obj/effect/floor_decal/corner_wide/purple{
dir = 9
@@ -18783,14 +19657,16 @@
/turf/simulated/floor/tiled/dark,
/area/engineering/gravity_gen)
"qco" = (
-/obj/machinery/door/firedoor/multi_tile{
- dir = 2
+/obj/machinery/door/window/northleft,
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/structure/cable/green{
- icon_state = "4-8"
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/hangar/operations)
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"qcr" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 4
@@ -18865,13 +19741,11 @@
/turf/simulated/floor/tiled,
/area/rnd/xenoarch_atrium)
"qeO" = (
-/obj/structure/railing/mapped{
- dir = 4
- },
/obj/effect/decal/cleanable/cobweb,
-/obj/machinery/alarm{
- pixel_y = 28
+/obj/structure/ladder/up{
+ pixel_y = 13
},
+/obj/structure/lattice/catwalk/indoor,
/turf/simulated/floor/plating,
/area/maintenance/research_port)
"qeY" = (
@@ -18976,17 +19850,8 @@
/turf/simulated/floor/plating,
/area/shuttle/intrepid/cargo_bay)
"qju" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance_hatch{
- req_access = list(12)
- },
-/turf/simulated/floor/plating,
-/area/maintenance/hangar/starboard)
+/turf/simulated/wall,
+/area/horizon/stairwell/central)
"qjF" = (
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/simple/visible/black,
@@ -19018,6 +19883,7 @@
/turf/simulated/floor/reinforced,
/area/operations/lower/machinist)
"qlv" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/reinforced,
/area/engineering/gravity_gen)
"qmb" = (
@@ -19149,6 +20015,13 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/eva)
+"qpJ" = (
+/obj/effect/map_effect/airlock{
+ name = "Deck 1 Starboard Aft Maintenance Airlock (1001)";
+ radio_frequency = 1001
+ },
+/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
+/area/maintenance/wing/port/deck1)
"qpO" = (
/obj/machinery/atmospherics/pipe/simple/visible/blue{
dir = 1
@@ -19157,14 +20030,20 @@
/turf/simulated/floor/plating,
/area/engineering/atmos/air)
"qqH" = (
-/obj/machinery/status_display/supply_display{
- pixel_y = 32
+/obj/effect/floor_decal/corner/brown/full{
+ dir = 1
},
-/obj/machinery/conveyor{
- dir = 8;
- id = "QMLoad"
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/industrial/loading/yellow,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
},
-/turf/simulated/floor/plating,
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled,
/area/operations/loading)
"qqS" = (
/obj/effect/floor_decal/industrial/outline/yellow,
@@ -19212,11 +20091,12 @@
/turf/simulated/floor/plating,
/area/hangar/auxiliary)
"qsC" = (
-/obj/effect/floor_decal/industrial/loading/yellow{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
+/obj/effect/floor_decal/industrial/outline/service,
/turf/simulated/floor/tiled,
-/area/hangar/operations)
+/area/operations/storage)
"qsK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
dir = 10
@@ -19278,13 +20158,26 @@
/turf/simulated/floor/plating,
/area/outpost/mining_main/eva)
"qwr" = (
-/obj/machinery/door/airlock/engineering,
+/obj/machinery/door/airlock/engineering{
+ name = "Deck 2 Civilian Substation";
+ req_one_access = list(11, 24)
+ },
/obj/structure/cable{
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/substation/civilian_west)
+"qwB" = (
+/obj/effect/floor_decal/corner/black{
+ dir = 6
+ },
+/obj/structure/sign/emerg_exit/evac{
+ dir = 8;
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hangar/intrepid)
"qxk" = (
/obj/structure/closet/walllocker/emerglocker/east,
/obj/effect/floor_decal/corner/blue{
@@ -19313,7 +20206,7 @@
id = "QMLoad"
},
/obj/structure/railing/mapped,
-/obj/effect/floor_decal/spline/plain{
+/obj/effect/floor_decal/industrial/warning{
dir = 8
},
/turf/simulated/floor/tiled,
@@ -19376,7 +20269,7 @@
/area/maintenance/wing/port/deck1)
"qzt" = (
/obj/machinery/camera/network/service{
- c_tag = "Janitor - Garage"
+ c_tag = "Custodial - Garage"
},
/obj/effect/floor_decal/corner/green{
dir = 5
@@ -19400,14 +20293,9 @@
/turf/simulated/floor/carpet/rubber,
/area/shuttle/intrepid/cockpit)
"qAY" = (
-/obj/machinery/light/small/emergency{
- dir = 8
- },
-/obj/structure/railing/mapped{
- dir = 4
- },
-/turf/simulated/floor/tiled/ramp,
-/area/maintenance/hangar/starboard)
+/obj/effect/floor_decal/industrial/outline/security,
+/turf/simulated/floor/tiled,
+/area/operations/storage)
"qBk" = (
/obj/machinery/atmospherics/binary/pump{
dir = 1;
@@ -19427,14 +20315,10 @@
/turf/simulated/floor/plating,
/area/maintenance/engineering)
"qBC" = (
-/obj/effect/floor_decal/industrial/warning,
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
/obj/structure/railing/mapped,
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
/turf/simulated/floor/tiled,
/area/medical/morgue/lower)
"qBU" = (
@@ -19497,32 +20381,30 @@
/turf/simulated/floor/tiled/white,
/area/rnd/eva)
"qDu" = (
-/obj/machinery/alarm/cold{
- pixel_y = 28
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/area/medical/morgue/lower)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/railing/mapped{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/emergency,
+/turf/simulated/floor/plating,
+/area/maintenance/engineering)
"qDJ" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
- },
-/obj/structure/cable/green{
- icon_state = "0-2"
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/effect/floor_decal/corner/brown{
- dir = 5
- },
/obj/effect/floor_decal/corner/brown{
dir = 10
},
+/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/tiled,
/area/operations/loading)
"qDK" = (
@@ -19535,12 +20417,20 @@
/turf/simulated/floor/reinforced,
/area/rnd/eva)
"qEk" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
+/obj/machinery/power/apc{
+ pixel_y = -24
},
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+/obj/machinery/camera/network/medbay{
+ c_tag = "Medical - Morgue";
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/diagonal,
+/turf/simulated/floor/tiled/white{
+ temperature = 278.15;
+ name = "cooled white floor"
},
/area/medical/morgue/lower)
"qEq" = (
@@ -19549,22 +20439,9 @@
/turf/template_noop,
/area/template_noop)
"qEK" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/table/standard{
- no_cargo = 1
- },
-/obj/random/tech_supply,
-/obj/random/tech_supply,
-/obj/random/tech_supply,
-/obj/machinery/firealarm/west,
/obj/effect/floor_decal/corner/brown{
dir = 9
},
-/obj/machinery/light/small{
- dir = 8
- },
/turf/simulated/floor/tiled,
/area/operations/storage)
"qFy" = (
@@ -19635,6 +20512,11 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/xenoarch_atrium)
+"qKA" = (
+/obj/structure/window/shuttle/scc_space_ship,
+/obj/structure/grille,
+/turf/space/dynamic,
+/area/maintenance/wing/port/deck1)
"qMM" = (
/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
/turf/simulated/floor/plating,
@@ -19657,15 +20539,16 @@
/turf/simulated/floor/shuttle/dark_blue,
/area/shuttle/escape_pod/pod1)
"qNK" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "cargo_1";
- layer = 2.9
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
},
-/obj/machinery/door/firedoor,
-/obj/structure/plasticflaps,
-/turf/simulated/floor/plating,
-/area/operations/storage)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/operations)
"qNU" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -19712,21 +20595,9 @@
/turf/simulated/floor/tiled/dark,
/area/security/checkpoint)
"qPV" = (
-/obj/structure/railing/mapped{
- dir = 8
- },
/obj/effect/floor_decal/industrial/warning{
dir = 4
},
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/cable/orange{
- icon_state = "0-4"
- },
-/obj/structure/cable/orange{
- icon_state = "12-0"
- },
/turf/simulated/floor/tiled/dark,
/area/turret_protected/ai)
"qQa" = (
@@ -19757,20 +20628,16 @@
/turf/simulated/floor/tiled/white,
/area/rnd/eva)
"qQE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/floor_decal/corner/brown{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 10
},
+/obj/machinery/light,
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/hangar/operations)
"qQF" = (
/obj/machinery/mineral/rigpress,
-/obj/effect/floor_decal/industrial/outline,
+/obj/effect/floor_decal/corner/brown/full,
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/outpost/mining_main/refinery)
"qQS" = (
@@ -19789,8 +20656,16 @@
name = "north bump";
pixel_y = 24
},
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/hangar/starboard)
+"qSv" = (
+/obj/structure/trash_pile,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"qSM" = (
/obj/structure/cable/green{
icon_state = "0-4"
@@ -19851,7 +20726,13 @@
id = "cargo_1";
layer = 2.9
},
-/turf/simulated/floor/plating,
+/obj/structure/railing/mapped{
+ dir = 1
+ },
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
/area/operations/loading)
"qVb" = (
/obj/structure/disposalpipe/segment{
@@ -19888,16 +20769,16 @@
/area/hangar/intrepid)
"qVO" = (
/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ dir = 4
},
-/obj/effect/landmark{
- name = "borerstart"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 5
},
/turf/simulated/floor/tiled{
name = "cooled floor";
@@ -19919,6 +20800,9 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
/turf/simulated/floor/reinforced,
/area/engineering/gravity_gen)
"qWB" = (
@@ -19945,14 +20829,24 @@
/turf/simulated/floor/tiled,
/area/operations/storage)
"qXZ" = (
+/obj/structure/railing/mapped,
+/obj/effect/floor_decal/spline/plain,
/obj/structure/morgue,
-/turf/simulated/floor/tiled,
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/freezer{
+ name = "cooled tiles";
+ temperature = 278.15
+ },
/area/medical/morgue/lower)
"qYc" = (
/obj/structure/cable/green{
icon_state = "1-8"
},
-/obj/effect/floor_decal/spline/plain,
/turf/simulated/floor/tiled,
/area/operations/storage)
"qYo" = (
@@ -19998,6 +20892,7 @@
/obj/structure/railing/mapped{
dir = 8
},
+/obj/structure/stairs/north,
/turf/simulated/floor/tiled/ramp,
/area/maintenance/hangar/starboard)
"qZW" = (
@@ -20011,14 +20906,12 @@
/turf/simulated/floor/tiled/dark,
/area/operations/lower/machinist)
"qZZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "QMLoad"
},
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/operations/loading)
"raq" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -20033,8 +20926,14 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/corner/green/full{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
-/area/hangar/intrepid)
+/area/horizon/stairwell/central)
"raw" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/structure/closet/excavation,
@@ -20048,6 +20947,9 @@
/turf/simulated/floor/plating,
/area/maintenance/wing/port/deck1)
"rbx" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
/turf/simulated/floor/tiled/dark,
/area/hangar/intrepid)
"rbK" = (
@@ -20069,16 +20971,11 @@
/turf/simulated/floor/tiled,
/area/hallway/primary/aft)
"rcr" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/effect/floor_decal/industrial/loading/yellow{
- dir = 1
+/obj/machinery/firealarm/east,
+/obj/effect/floor_decal/corner/brown/full{
+ dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/blast/shutters/open{
- id = "miningmechbay";
- name = "Recharging Bay"
- },
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/tiled,
/area/hangar/operations)
"rcA" = (
/turf/simulated/floor/tiled,
@@ -20202,14 +21099,15 @@
/obj/structure/cable{
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/structure/lattice/catwalk/indoor/grate/damaged,
/turf/simulated/floor/plating,
/area/maintenance/wing/port/deck1)
-"rjX" = (
-/obj/structure/lattice/catwalk/indoor,
-/obj/item/stack/rods,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
"rkQ" = (
/obj/effect/floor_decal/corner/black,
/obj/effect/floor_decal/corner/black{
@@ -20284,6 +21182,10 @@
},
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/random/loot,
+/obj/machinery/camera/network/service{
+ c_tag = "Custodial - Disposals Aft";
+ dir = 8
+ },
/turf/simulated/floor/tiled/dark,
/area/maintenance/disposal)
"rnt" = (
@@ -20301,26 +21203,12 @@
/turf/simulated/floor/plating,
/area/maintenance/wing/port/deck1)
"rnz" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/spline/plain{
- dir = 8
- },
-/obj/effect/floor_decal/spline/plain{
- dir = 4
- },
-/obj/effect/floor_decal/corner/brown{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/hangar/operations)
+/obj/structure/railing/mapped,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"ros" = (
/obj/structure/table/standard,
/obj/random/tech_supply,
@@ -20342,7 +21230,6 @@
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/machinery/door/airlock/maintenance,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -20350,42 +21237,25 @@
dir = 4
},
/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance_hatch,
/turf/simulated/floor/tiled,
/area/maintenance/wing/port/deck1)
"rpa" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/railing/mapped{
- dir = 1
- },
-/obj/structure/railing/mapped{
- dir = 4
- },
-/obj/effect/floor_decal/spline/plain{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/engineering)
-"rpj" = (
-/obj/effect/floor_decal/industrial/loading/yellow{
+/obj/structure/railing/mapped,
+/turf/simulated/floor/tiled/ramp{
dir = 8
},
-/obj/machinery/alarm{
- pixel_y = 28
+/area/medical/morgue/lower)
+"rpj" = (
+/obj/effect/floor_decal/corner/brown/full{
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/operations/loading)
"rpK" = (
/obj/structure/janitorialcart/full,
/obj/machinery/camera/network/service{
- c_tag = "Janitor - Main Storage";
+ c_tag = "Custodial - Main Storage";
dir = 1
},
/obj/effect/floor_decal/industrial/outline/yellow,
@@ -20475,7 +21345,7 @@
"rso" = (
/obj/effect/floor_decal/industrial/warning/corner,
/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/area/turret_protected/ai_upload)
"rsz" = (
/obj/effect/overmap/visitable/ship/landable/intrepid,
/turf/simulated/wall/shuttle/scc/cardinal,
@@ -20512,6 +21382,14 @@
/obj/machinery/door/window/eastleft,
/turf/simulated/floor/reinforced,
/area/rnd/test_range)
+"rwh" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/item/stack/rods,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"rwY" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -20562,10 +21440,12 @@
/area/maintenance/engineering)
"rzQ" = (
/obj/machinery/floodlight,
-/obj/effect/floor_decal/industrial/outline/yellow,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
/turf/simulated/floor/tiled,
/area/medical/emergency_storage)
"rAa" = (
@@ -20640,7 +21520,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/hatch{
name = "Propulsion";
- req_access = list(10)
+ req_one_access = list(11, 24)
},
/turf/simulated/floor/tiled/dark,
/area/engineering/atmos/propulsion)
@@ -20661,6 +21541,21 @@
/obj/structure/closet/secure_closet/pilot,
/turf/simulated/floor/tiled/dark,
/area/hangar/control)
+"rFO" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/medical/morgue/lower)
"rHi" = (
/obj/effect/floor_decal/corner/blue/diagonal,
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -20684,7 +21579,11 @@
id = "cargo_1";
layer = 2.9
},
-/turf/simulated/floor/plating,
+/obj/structure/plasticflaps,
+/obj/structure/railing/mapped{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
/area/operations/loading)
"rHK" = (
/turf/simulated/floor/plating,
@@ -20728,19 +21627,20 @@
/turf/simulated/floor/tiled/dark,
/area/shuttle/intrepid/crew_compartment)
"rKM" = (
-/obj/effect/floor_decal/industrial/loading/yellow{
- dir = 1
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
},
/obj/structure/cable/green{
- icon_state = "2-8"
+ icon_state = "1-2"
},
+/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/tiled,
/area/hangar/operations)
"rMf" = (
/obj/structure/railing/mapped,
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/area/turret_protected/ai_upload)
"rMm" = (
/turf/simulated/floor/tiled/dark,
/area/shuttle/mining)
@@ -20772,11 +21672,9 @@
/turf/simulated/floor/plating,
/area/maintenance/engineering)
"rNH" = (
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
- },
-/area/medical/morgue/lower)
+/obj/structure/foamedmetal,
+/turf/simulated/floor/plating,
+/area/maintenance/operations)
"rNR" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -20822,6 +21720,9 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/effect/floor_decal/corner/brown{
+ dir = 9
+ },
/turf/simulated/floor/tiled,
/area/outpost/mining_main/refinery)
"rPA" = (
@@ -20858,13 +21759,17 @@
name = "Security Checkpoint External Shutter"
},
/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/regular/open{
+ id = "hangarlockdown";
+ name = "Hangar Lockdown";
+ dir = 4
+ },
/turf/simulated/floor/tiled/dark,
/area/security/checkpoint)
"rPO" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+/turf/simulated/floor/tiled/freezer{
+ name = "cooled tiles";
+ temperature = 278.15
},
/area/medical/morgue/lower)
"rQC" = (
@@ -20898,14 +21803,36 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance_hatch{
- req_one_access = list(73)
+/obj/machinery/door/airlock/freezer_maint{
+ req_access = list(28);
+ name = "Freezer Maintenance"
},
/turf/simulated/floor/tiled/freezer{
name = "cold storage tiles";
temperature = 278
},
/area/maintenance/hangar/port)
+"rRq" = (
+/obj/structure/table/standard,
+/obj/item/device/suit_cooling_unit,
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/storage/belt/utility,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/window/eastleft{
+ req_access = list(48);
+ name = "Tools Access"
+ },
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/refinery)
"rRE" = (
/obj/effect/floor_decal/industrial/warning{
dir = 1
@@ -20917,6 +21844,16 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/tiled/dark,
/area/shuttle/intrepid/crew_compartment)
+"rSe" = (
+/obj/machinery/alarm/cold{
+ pixel_y = 28
+ },
+/obj/effect/floor_decal/corner/green/diagonal,
+/turf/simulated/floor/tiled/white{
+ temperature = 278.15;
+ name = "cooled white floor"
+ },
+/area/medical/morgue/lower)
"rSw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -20962,6 +21899,25 @@
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled,
/area/rnd/eva)
+"rUd" = (
+/turf/simulated/wall/r_wall,
+/area/turret_protected/ai)
+"rUU" = (
+/obj/machinery/camera/network/medbay{
+ c_tag = "Medical - Morgue Port";
+ dir = 1
+ },
+/obj/machinery/light/small,
+/obj/structure/table/steel,
+/obj/item/storage/box/bodybags,
+/obj/effect/floor_decal/corner/green/full{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white{
+ temperature = 278.15;
+ name = "cooled white floor"
+ },
+/area/medical/morgue/lower)
"rVm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
@@ -20987,8 +21943,9 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_mining{
name = "Warehouse";
- req_access = list(31)
+ req_one_access = list(26, 31, 48, 67)
},
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/operations/storage)
"rWM" = (
@@ -21001,6 +21958,9 @@
dir = 8;
pixel_x = 28
},
+/obj/effect/floor_decal/corner/green/full{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/medical/emergency_storage)
"rXn" = (
@@ -21038,12 +21998,22 @@
/turf/simulated/floor/plating,
/area/maintenance/wing/port/deck1)
"rZi" = (
-/obj/structure/cable{
- icon_state = "2-4"
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor/plating,
-/area/maintenance/hangar/starboard)
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/camera/network/supply{
+ c_tag = "Operations - Hangar Port Fore";
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/hangar/operations)
"rZu" = (
/obj/effect/floor_decal/industrial/warning{
dir = 8
@@ -21066,12 +22036,10 @@
/obj/effect/floor_decal/industrial/warning{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
/obj/structure/railing/mapped{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/hangar/operations)
"saH" = (
@@ -21138,7 +22106,10 @@
/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/door/window/westleft,
+/obj/machinery/door/window/westleft{
+ req_access = list(48);
+ name = "Mining Voidsuit"
+ },
/obj/effect/floor_decal/industrial/outline,
/obj/item/stack/flag/yellow,
/turf/simulated/floor/tiled,
@@ -21187,12 +22158,12 @@
/turf/simulated/floor/tiled,
/area/rnd/xenoarch_atrium)
"sfj" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/effect/floor_decal/corner/green{
+ dir = 5
},
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+/turf/simulated/floor/tiled/white{
+ temperature = 278.15;
+ name = "cooled white floor"
},
/area/medical/morgue/lower)
"sfr" = (
@@ -21214,11 +22185,20 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ name = "Deck 1 Warehouse - Operations Shuttle";
+ sortType = "Deck 1 Warehouse - Operations Shuttle"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/computer/shuttle_control/lift/wall{
+ shuttle_tag = "Operations Lift";
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 5
+ },
+/obj/machinery/light{
+ dir = 1
},
/turf/simulated/floor/tiled,
/area/operations/loading)
@@ -21288,6 +22268,11 @@
},
/turf/simulated/floor/reinforced/hydrogen,
/area/engineering/atmos)
+"sko" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/stack/tile/floor,
+/turf/simulated/floor/tiled,
+/area/maintenance/operations)
"skq" = (
/obj/structure/railing/mapped{
dir = 8
@@ -21315,6 +22300,14 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/dark,
/area/engineering/atmos)
+"slv" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/hangar/operations)
"slH" = (
/obj/effect/floor_decal/corner/black{
dir = 6
@@ -21353,8 +22346,9 @@
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
+/obj/effect/floor_decal/corner/green/full,
/turf/simulated/floor/tiled,
-/area/hangar/operations)
+/area/horizon/stairwell/central)
"spL" = (
/obj/effect/decal/cleanable/blood/drip/oil,
/turf/simulated/floor/tiled/freezer{
@@ -21381,6 +22375,17 @@
/obj/machinery/meter,
/turf/simulated/floor/plating,
/area/rnd/xenoarch_atrium)
+"sqs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/light/small/emergency{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"squ" = (
/obj/effect/floor_decal/industrial/warning{
dir = 1
@@ -21407,7 +22412,7 @@
},
/obj/machinery/door/firedoor,
/obj/structure/plasticflaps,
-/turf/simulated/floor/plating,
+/turf/simulated/floor/tiled,
/area/operations/loading)
"srN" = (
/obj/effect/floor_decal/industrial/warning{
@@ -21497,17 +22502,13 @@
/turf/simulated/floor/plating,
/area/hangar/control)
"suw" = (
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/machinery/shieldwallgen,
+/obj/structure/cable/green{
+ icon_state = "0-4"
},
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/maintenance/substation/civilian_west)
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/hangar/operations)
"suA" = (
/obj/vehicle/train/cargo/trolley/pussywagon,
/obj/effect/floor_decal/industrial/warning{
@@ -21519,8 +22520,7 @@
/turf/simulated/floor/tiled/dark,
/area/janitor)
"suT" = (
-/obj/structure/railing/mapped,
-/obj/structure/trash_pile,
+/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/plating,
/area/maintenance/wing/port/deck1)
"suZ" = (
@@ -21534,9 +22534,15 @@
/obj/structure/morgue{
dir = 8
},
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer{
+ name = "cooled tiles";
+ temperature = 278.15
},
/area/medical/morgue/lower)
"svZ" = (
@@ -21569,7 +22575,8 @@
/obj/structure/railing/mapped{
dir = 1
},
-/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/porta_turret,
/turf/simulated/floor/tiled/dark,
/area/turret_protected/ai)
"sxx" = (
@@ -21599,7 +22606,9 @@
/turf/simulated/floor/tiled/dark,
/area/shuttle/mining)
"sxT" = (
-/obj/machinery/door/airlock/atmos,
+/obj/machinery/door/airlock/atmos{
+ req_one_access = list(11, 24)
+ },
/obj/structure/cable{
icon_state = "1-2"
},
@@ -21670,6 +22679,18 @@
},
/turf/simulated/floor/plating,
/area/maintenance/engineering)
+"sBx" = (
+/obj/structure/railing/mapped,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/emergency{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"sCB" = (
/obj/effect/floor_decal/corner_wide/purple{
dir = 9
@@ -21700,6 +22721,30 @@
},
/turf/simulated/floor/tiled/dark,
/area/storage/eva)
+"sDJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/operations/storage)
+"sDN" = (
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/operations)
"sEw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
@@ -21808,7 +22853,7 @@
},
/obj/structure/disposalpipe/segment{
dir = 4;
- icon_state = "conpipe-c"
+ icon_state = "pipe-c"
},
/turf/simulated/floor/tiled/white,
/area/operations/lower/machinist)
@@ -21903,7 +22948,8 @@
name = "E.V.A. Recharging Shutters";
pixel_x = 25;
pixel_y = 7;
- req_access = list(18)
+ req_access = list(18);
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/hangar/intrepid)
@@ -22017,23 +23063,14 @@
/turf/simulated/floor/tiled/dark,
/area/engineering/atmos)
"sRd" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- req_access = list(54);
- req_one_access = null
- },
/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance_hatch,
/turf/simulated/floor/plating,
/area/maintenance/operations)
"sRe" = (
-/obj/structure/morgue{
- dir = 2
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+/obj/structure/railing/mapped,
+/turf/simulated/floor/tiled/ramp{
+ dir = 4
},
/area/medical/morgue/lower)
"sRM" = (
@@ -22124,10 +23161,10 @@
/area/rnd/eva)
"sVu" = (
/obj/effect/floor_decal/industrial/loading/yellow,
+/obj/machinery/atmospherics/pipe/simple/visible/black,
/obj/structure/cable/green{
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/visible/black,
/turf/simulated/floor/tiled/dark,
/area/shuttle/mining)
"sWa" = (
@@ -22161,12 +23198,11 @@
/turf/simulated/floor/tiled/dark,
/area/engineering/atmos)
"sXU" = (
-/obj/machinery/light/spot/weak{
- dir = 1
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
},
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/railing/mapped,
/turf/simulated/floor/tiled,
/area/hangar/operations)
"sYZ" = (
@@ -22269,7 +23305,6 @@
/turf/simulated/floor/plating,
/area/maintenance/research_port)
"teb" = (
-/obj/machinery/door/airlock/maintenance,
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/operations)
@@ -22344,12 +23379,13 @@
/obj/effect/floor_decal/industrial/warning{
dir = 8
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/obj/structure/railing/mapped{
dir = 8
},
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/hangar/operations)
"tgZ" = (
@@ -22372,8 +23408,15 @@
/area/rnd/xenoarch_atrium)
"thF" = (
/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/camera/network/command{
+ c_tag = "AI Core - First Deck Maintenance";
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/area/turret_protected/ai_upload)
"thO" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -22412,7 +23455,10 @@
/obj/structure/railing/mapped{
dir = 8
},
-/turf/simulated/floor/plating,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
/area/hangar/operations)
"tiJ" = (
/obj/structure/shuttle_part{
@@ -22780,6 +23826,9 @@
/area/rnd/xenoarch_atrium)
"tyw" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/camera/network/research{
+ c_tag = "Research - EVA Preparation Entrance"
+ },
/turf/simulated/floor/tiled,
/area/rnd/eva)
"tzi" = (
@@ -22815,13 +23864,14 @@
/turf/simulated/floor/tiled/dark,
/area/storage/eva)
"tAP" = (
-/obj/structure/window/reinforced,
-/obj/structure/table/standard{
- no_cargo = 1
+/obj/machinery/conveyor_switch/oneway{
+ id = "warehousetomail";
+ pixel_x = -19;
+ pixel_y = -10
},
-/obj/item/device/hand_labeler,
-/obj/effect/floor_decal/corner/brown{
- dir = 10
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/industrial/loading/yellow{
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/operations/storage)
@@ -22871,12 +23921,13 @@
/turf/simulated/floor/tiled/dark,
/area/shuttle/intrepid/crew_compartment)
"tEc" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_mining{
- name = "Mining";
- req_access = list(48);
- req_one_access = null
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "miningbay";
+ name = "Mining Bay"
},
+/obj/machinery/door/firedoor,
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/outpost/mining_main/refinery)
"tEr" = (
@@ -22909,6 +23960,11 @@
},
/turf/simulated/floor/plating,
/area/hangar/auxiliary)
+"tGA" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/table/rack,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"tGK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -23085,11 +24141,24 @@
/turf/simulated/floor/tiled/white,
/area/rnd/test_range)
"tMa" = (
-/obj/structure/bed/stool/chair/office/dark{
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/floor_decal/industrial/warning{
dir = 8
},
-/turf/simulated/floor/tiled,
-/area/operations/storage)
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Warehouse Elevator";
+ req_one_access = list(26, 31, 48, 67);
+ autoclose = 0;
+ dir = 1
+ },
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/operations/loading)
"tMp" = (
/obj/structure/table/steel,
/obj/machinery/button/switch/windowtint{
@@ -23136,13 +24205,11 @@
/turf/simulated/floor/plating,
/area/shuttle/intrepid/atmos_compartment)
"tPr" = (
-/obj/structure/cable/green,
-/obj/machinery/power/apc{
- is_critical = 1;
- name = "south bump";
- pixel_y = -24
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
},
-/obj/effect/floor_decal/corner/brown/full,
+/obj/machinery/cell_charger,
+/obj/structure/table/steel,
/turf/simulated/floor/tiled,
/area/outpost/mining_main/refinery)
"tPs" = (
@@ -23360,11 +24427,14 @@
/obj/structure/cable/green{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/camera/network/supply{
- c_tag = "Operations - Cargo Bay 3";
+ c_tag = "Operations - Hangar Starboard Fore";
dir = 4
},
+/obj/structure/sign/emerg_exit/evac{
+ dir = 8;
+ pixel_x = -32
+ },
/turf/simulated/floor/tiled,
/area/hangar/operations)
"tYm" = (
@@ -23389,14 +24459,23 @@
/turf/simulated/floor/reinforced/phoron,
/area/engineering/atmos)
"tYN" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = -24
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/hangar/intrepid)
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/machinery/camera/network/first_deck{
+ c_tag = "First Deck - Central Stairwell";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/stairwell/central)
"tYS" = (
/obj/machinery/conveyor{
dir = 1;
@@ -23420,9 +24499,11 @@
/turf/simulated/floor/plating,
/area/outpost/mining_main/refinery)
"uaM" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/corner/brown{
+ dir = 6
+ },
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/operations/loading)
"uaU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
@@ -23459,14 +24540,17 @@
/turf/simulated/floor/plating,
/area/maintenance/engineering)
"ucs" = (
-/obj/effect/floor_decal/industrial/loading/yellow,
/obj/structure/closet/crate,
-/obj/effect/floor_decal/industrial/outline/yellow,
/obj/machinery/mineral/stacking_unit_console{
id = "stacking_e";
pixel_x = 28;
pixel_y = -3
},
+/obj/effect/floor_decal/corner/brown/full{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/loading/yellow,
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/outpost/mining_main/refinery)
"ucE" = (
@@ -23557,11 +24641,12 @@
/turf/simulated/floor/plating,
/area/engineering/storage/lower)
"ugW" = (
-/obj/structure/railing/mapped{
- dir = 4
+/obj/machinery/door/airlock/maintenance{
+ req_one_access = list(31, 48, 67);
+ name = "Mining Shuttle Bay Maintenance"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
/area/maintenance/hangar/starboard)
"ugY" = (
/obj/machinery/alarm{
@@ -23584,6 +24669,11 @@
},
/turf/simulated/floor/tiled,
/area/janitor)
+"ujc" = (
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/light/small/emergency,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"ujB" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -23653,14 +24743,19 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/xenoarch_atrium)
"ulE" = (
-/obj/machinery/door/window/eastleft{
- name = "warehouse Entrance";
- req_access = list(31)
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
},
-/turf/simulated/floor/tiled/ramp/bottom{
- dir = 4
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Warehouse Elevator";
+ req_one_access = list(26, 31, 48, 67);
+ autoclose = 0
},
-/area/operations/storage)
+/obj/machinery/door/firedoor/multi_tile,
+/turf/simulated/floor/tiled/dark,
+/area/operations/loading)
"ulJ" = (
/obj/effect/floor_decal/industrial/warning,
/obj/structure/tank_wall/carbon_dioxide{
@@ -23689,16 +24784,13 @@
/turf/simulated/floor/tiled/dark,
/area/shuttle/intrepid/crew_compartment)
"umt" = (
-/obj/structure/table/steel,
/obj/machinery/light,
-/obj/effect/floor_decal/industrial/outline,
-/obj/item/paper_bin{
- pixel_x = -3
+/obj/machinery/mech_recharger,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/railing/mapped{
+ dir = 8
},
-/obj/item/pen,
-/obj/item/pen/red,
-/obj/item/stack/packageWrap,
-/turf/simulated/floor/tiled,
+/turf/simulated/floor/reinforced,
/area/outpost/mining_main/refinery)
"umB" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
@@ -23742,10 +24834,12 @@
/obj/structure/cable/green{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light/spot/weak{
dir = 8
},
+/obj/structure/sign/emerg_pods{
+ pixel_x = -32
+ },
/turf/simulated/floor/tiled,
/area/hangar/operations)
"uob" = (
@@ -23769,13 +24863,27 @@
/obj/structure/cable/green{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/camera/network/supply{
- c_tag = "Operations - Cargo Bay 4";
+ c_tag = "Operations - Hangar Starboard Aft";
dir = 4
},
+/obj/structure/sign/emerg_exit/evac{
+ dir = 8;
+ pixel_x = -32
+ },
/turf/simulated/floor/tiled,
/area/hangar/operations)
+"uoG" = (
+/obj/effect/map_effect/airlock/e_to_w{
+ name = "Deck 1 Port Thruster Airlock (1002)";
+ radio_frequency = 1002
+ },
+/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
+/area/engineering/atmos/propulsion)
+"uoI" = (
+/obj/effect/floor_decal/industrial/outline/engineering,
+/turf/simulated/floor/tiled,
+/area/operations/storage)
"uoV" = (
/obj/machinery/atmospherics/omni/filter{
name = "nitrogen filter";
@@ -23883,17 +24991,27 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/operations)
+"uuV" = (
+/obj/machinery/door/firedoor,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/glass_mining{
+ name = "Warehouse";
+ req_one_access = list(26, 31, 48, 67)
+ },
+/turf/simulated/floor/tiled,
+/area/operations/storage)
"uuZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "1-8"
+ dir = 4
},
/obj/effect/decal/cleanable/dirt,
+/obj/random/junk,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/hangar/starboard)
@@ -23922,12 +25040,8 @@
/turf/simulated/floor/plating,
/area/engineering/storage/lower)
"uwT" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/lattice/catwalk/indoor/grate,
+/obj/random/junk,
/turf/simulated/floor/plating,
/area/maintenance/hangar/starboard)
"uxR" = (
@@ -23993,7 +25107,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering{
name = "Engineering Storage";
- req_access = list(10)
+ req_access = list(11)
},
/turf/simulated/floor/plating,
/area/engineering/storage/lower)
@@ -24013,6 +25127,13 @@
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled,
/area/outpost/mining_main/refinery)
+"uBL" = (
+/obj/structure/sign/securearea{
+ name = "\improper DANGER: AUTOMATIC EQUIPMENT - CRUSH HAZARD sign";
+ desc = "A warning sign which reads 'DANGER: AUTOMATIC EQUIPMENT STARTS AND STOPS AUTOMATICALLY' and 'CRUSH HAZARD'."
+ },
+/turf/simulated/wall,
+/area/operations/loading)
"uCq" = (
/obj/structure/cable/green{
icon_state = "1-4"
@@ -24064,6 +25185,7 @@
/obj/machinery/light/small/emergency{
dir = 8
},
+/obj/item/stack/rods,
/turf/simulated/floor/plating,
/area/maintenance/research_port)
"uDG" = (
@@ -24116,24 +25238,26 @@
/turf/simulated/floor/plating,
/area/maintenance/substation/hangar)
"uGI" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
/obj/machinery/light/small{
dir = 4
},
/obj/structure/closet/crate,
+/obj/effect/floor_decal/corner/brown/full{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/operations/storage)
"uHw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/light/small,
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+/obj/structure/table/steel,
+/obj/item/reagent_containers/spray/cleaner,
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white{
+ temperature = 278.15;
+ name = "cooled white floor"
},
/area/medical/morgue/lower)
"uHA" = (
@@ -24227,6 +25351,7 @@
/area/shuttle/intrepid/atmos_compartment)
"uLM" = (
/obj/machinery/recharge_station,
+/obj/effect/floor_decal/corner/brown/full,
/turf/simulated/floor/tiled,
/area/operations/storage)
"uMS" = (
@@ -24272,7 +25397,7 @@
},
/obj/machinery/door/firedoor/multi_tile,
/obj/machinery/door/blast/regular/open{
- dir = 8;
+ dir = 4;
id = "hangarlockdown";
name = "Hangar Lockdown"
},
@@ -24332,17 +25457,17 @@
/turf/simulated/floor/tiled/dark,
/area/hangar/auxiliary)
"uRl" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/effect/floor_decal/industrial/warning{
+/obj/item/modular_computer/console/preset/ai{
dir = 1
},
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
+/obj/machinery/light/small/emergency{
dir = 4
},
-/turf/simulated/floor/plating,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
/area/turret_protected/ai)
"uRt" = (
/obj/effect/floor_decal/industrial/warning{
@@ -24368,13 +25493,20 @@
},
/turf/simulated/floor/wood,
/area/shuttle/intrepid/crew_compartment)
+"uTz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/hangar/operations)
"uUl" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/machinery/power/terminal{
+ dir = 8
},
-/obj/structure/cable/green{
- icon_state = "2-8"
+/obj/machinery/camera/network/engineering{
+ c_tag = "Engineering - Deck 1 - Second Deck Civilian Substation";
+ alarm_on = 1;
+ dir = 8
},
+/obj/structure/cable,
/turf/simulated/floor/plating,
/area/maintenance/substation/civilian_west)
"uUP" = (
@@ -24448,15 +25580,15 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
-/obj/effect/floor_decal/corner/brown/full{
- dir = 1
- },
/obj/machinery/button/remote/blast_door{
id = "warehouse4";
name = "Warehouse Shutter";
pixel_x = 24;
pixel_y = 32
},
+/obj/effect/floor_decal/corner/brown{
+ dir = 5
+ },
/turf/simulated/floor/tiled,
/area/operations/storage)
"uWW" = (
@@ -24536,6 +25668,8 @@
/obj/effect/floor_decal/corner/black{
dir = 9
},
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/portable_atmospherics/powered/pump/filled,
/turf/simulated/floor/tiled,
/area/hangar/intrepid)
"uZU" = (
@@ -24566,7 +25700,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/airlock/maintenance{
name = "Maintenance Passthrough";
- req_one_access = list(26, 31, 48, 67)
+ req_one_access = list(12, 26, 31, 48, 67)
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled/dark,
@@ -24638,7 +25772,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/maintenance{
name = "Operations Bay Warehouse Maintenance";
- req_access = list(31)
+ req_access = list(26, 31, 48, 67)
},
/turf/simulated/floor/plating,
/area/operations/storage)
@@ -24680,32 +25814,44 @@
/obj/machinery/power/terminal{
dir = 1
},
-/obj/item/stack/material/uranium{
- amount = 10
- },
/obj/structure/cable/green{
icon_state = "0-4"
},
/obj/effect/floor_decal/corner/blue/full{
dir = 4
},
-/obj/machinery/power/portgen/basic/advanced,
+/obj/machinery/power/portgen/basic,
+/obj/item/stack/material/graphite/full,
/turf/simulated/floor/tiled/dark,
/area/shuttle/intrepid/engine_compartment)
"vgw" = (
-/obj/effect/floor_decal/industrial/warning{
+/obj/structure/railing/mapped{
dir = 4
},
-/turf/unsimulated/wall/fakepdoor{
- dir = 4
+/obj/effect/floor_decal/corner/black{
+ dir = 6
},
-/area/hangar/intrepid)
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hangar/auxiliary)
"vgS" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 6
},
/turf/simulated/floor/tiled,
/area/rnd/xenoarch_atrium)
+"vgU" = (
+/obj/machinery/disposal/deliveryChute{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/plating,
+/area/operations/storage)
"vhg" = (
/obj/effect/shuttle_landmark/mining/hangar,
/obj/machinery/hologram/holopad/long_range,
@@ -24755,16 +25901,14 @@
},
/area/maintenance/wing/port/deck1)
"vjx" = (
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc/high{
- dir = 4;
- pixel_x = 24
- },
-/obj/effect/floor_decal/corner/brown{
- dir = 6
+/obj/structure/table/standard{
+ no_cargo = 1
},
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/item/stack/packageWrap,
+/obj/item/device/destTagger,
+/obj/item/device/hand_labeler,
/turf/simulated/floor/tiled,
/area/operations/storage)
"vjI" = (
@@ -24828,7 +25972,7 @@
/area/engineering/atmos)
"vnJ" = (
/obj/machinery/door/airlock/maintenance_hatch{
- req_access = list(12)
+ req_one_access = list(12, 47)
},
/obj/structure/cable{
icon_state = "4-8"
@@ -24894,9 +26038,6 @@
/turf/simulated/floor/plating,
/area/tcommsat/mainlvl_tcomms__relay)
"vpl" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
/obj/machinery/light/small/emergency{
dir = 4
},
@@ -24904,6 +26045,10 @@
/obj/structure/railing/mapped{
dir = 8
},
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/structure/railing/mapped,
/turf/simulated/floor/plating,
/area/maintenance/operations)
"vpu" = (
@@ -24920,13 +26065,8 @@
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
+/obj/structure/lattice/catwalk/indoor/grate/old,
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/wing/port/deck1)
"vqx" = (
@@ -24936,6 +26076,16 @@
},
/turf/simulated/floor/tiled,
/area/hangar/auxiliary)
+"vqC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/random/junk,
+/obj/machinery/light/small/emergency{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/hangar/starboard)
"vqU" = (
/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
@@ -25167,7 +26317,7 @@
pixel_y = 25
},
/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/area/turret_protected/ai_upload)
"vCG" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/blast/shutters{
@@ -25191,15 +26341,12 @@
/turf/simulated/floor/tiled/dark,
/area/hangar/intrepid/interstitial)
"vDP" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/effect/decal/cleanable/blood/oil,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/hangar/operations)
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"vDT" = (
/obj/structure/railing/mapped{
dir = 8
@@ -25223,8 +26370,17 @@
},
/area/maintenance/wing/port/deck1)
"vFD" = (
-/turf/simulated/wall/shuttle/scc,
-/area/shuttle/mining)
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
+/obj/structure/sign/fire{
+ name = "\improper DANGER: THRUSTERS";
+ desc = "A warning sign which reads 'DANGER: SHUTTLE THRUSTERS IN USE' and 'MIND THE DISTANCE'."
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled,
+/area/hangar/operations)
"vFL" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -25343,9 +26499,9 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/maintenance,
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/maintenance_hatch,
/turf/simulated/floor/tiled,
/area/maintenance/wing/port/deck1)
"vKK" = (
@@ -25441,7 +26597,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/hatch{
name = "Propulsion";
- req_access = list(10)
+ req_one_access = list(11, 24)
},
/turf/simulated/floor/tiled/dark,
/area/engineering/atmos/propulsion/starboard)
@@ -25501,11 +26657,17 @@
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/effect/floor_decal/corner/brown{
+ dir = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
},
/turf/simulated/floor/tiled,
/area/hangar/operations)
@@ -25610,24 +26772,22 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/floor_decal/corner/brown/full{
- dir = 1
- },
/obj/machinery/button/remote/blast_door{
id = "warehouse3";
name = "Warehouse Shutter";
pixel_x = -24;
pixel_y = 32
},
+/obj/effect/floor_decal/corner/brown{
+ dir = 5
+ },
/turf/simulated/floor/tiled,
/area/operations/storage)
"vZO" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/camera/network/supply{
- c_tag = "Operations - Garage";
- dir = 1
+/obj/effect/floor_decal/corner/brown{
+ dir = 5
},
-/turf/simulated/floor/plating,
+/turf/simulated/floor/tiled,
/area/hangar/operations)
"vZT" = (
/obj/structure/railing/mapped{
@@ -25652,11 +26812,11 @@
/turf/simulated/floor/tiled,
/area/janitor)
"wbm" = (
-/obj/structure/railing/mapped{
- dir = 4
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/alarm{
+ pixel_x = 28;
+ dir = 8
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood,
/turf/simulated/floor/plating,
/area/maintenance/research_port)
"wbO" = (
@@ -25720,7 +26880,7 @@
dir = 1
},
/turf/simulated/floor/tiled,
-/area/hangar/auxiliary)
+/area/hangar/intrepid)
"weU" = (
/obj/structure/shuttle_part{
icon = 'icons/turf/shuttles_unique/scc_shuttle_pieces.dmi';
@@ -25768,21 +26928,22 @@
/area/rnd/xenoarch_atrium)
"wfM" = (
/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/structure/railing/mapped{
- dir = 8
+/obj/machinery/light/small/emergency{
+ dir = 4
},
/turf/simulated/floor/tiled/ramp/bottom{
dir = 1
},
/area/maintenance/hangar/starboard)
"whg" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 8
- },
/obj/machinery/camera/network/mining{
c_tag = "Mining - Production Room";
dir = 1
},
+/obj/effect/floor_decal/corner/brown/full,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/operations/loading)
"wic" = (
@@ -25917,15 +27078,25 @@
},
/area/maintenance/hangar/port)
"wlh" = (
-/obj/machinery/conveyor_switch/oneway{
- id = "cargo_1"
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "cargo_1";
+ layer = 2.9
+ },
+/obj/machinery/alarm{
+ pixel_y = -28;
+ dir = 1
},
-/obj/effect/floor_decal/spline/plain,
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/operations/loading)
"wmD" = (
-/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
-/turf/simulated/floor/plating,
+/obj/structure/railing/mapped,
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/morgue,
+/turf/simulated/floor/tiled/freezer{
+ name = "cooled tiles";
+ temperature = 278.15
+ },
/area/medical/morgue/lower)
"wmL" = (
/obj/effect/shuttle_landmark/escape_pod/start/pod2,
@@ -26005,7 +27176,8 @@
},
/obj/machinery/door/blast/regular/open{
id = "hangarlockdown";
- name = "Hangar Lockdown"
+ name = "Hangar Lockdown";
+ dir = 4
},
/obj/machinery/door/firedoor,
/obj/effect/floor_decal/corner/black{
@@ -26081,10 +27253,7 @@
/obj/machinery/light/small/emergency{
dir = 8
},
-/turf/simulated/floor/tiled{
- dir = 5;
- icon_state = "vault"
- },
+/turf/simulated/floor/tiled,
/area/maintenance/wing/port/deck1)
"wqf" = (
/obj/effect/floor_decal/corner/brown{
@@ -26129,24 +27298,19 @@
/turf/simulated/floor/tiled,
/area/hangar/intrepid)
"wsA" = (
+/obj/machinery/light/small/emergency,
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/machinery/light/small/emergency,
/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/maintenance/wing/port/deck1)
"wsD" = (
-/obj/structure/stairs/west,
-/turf/simulated/floor/tiled/ramp{
- dir = 4
+/obj/machinery/firealarm/west,
+/obj/effect/floor_decal/corner/brown{
+ dir = 9
},
+/turf/simulated/floor/tiled,
/area/operations/storage)
"wsF" = (
/obj/machinery/atmospherics/pipe/manifold/visible/black,
@@ -26183,10 +27347,7 @@
/obj/machinery/alarm{
pixel_y = 28
},
-/turf/simulated/floor/tiled{
- dir = 5;
- icon_state = "vault"
- },
+/turf/simulated/floor/tiled,
/area/maintenance/wing/port/deck1)
"wtV" = (
/obj/machinery/door/window/eastleft{
@@ -26251,6 +27412,29 @@
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/carpet/rubber,
/area/rnd/xenoarch_atrium)
+"wxd" = (
+/obj/structure/grille/diagonal{
+ dir = 1
+ },
+/obj/structure/lattice,
+/turf/space/dynamic,
+/area/template_noop)
+"wxs" = (
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 9
+ },
+/obj/machinery/camera/network/supply{
+ c_tag = Operations - Mining Shuttle Dock Starboard;
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/operations)
"wxC" = (
/obj/effect/floor_decal/corner/paleblue/diagonal,
/obj/structure/bed/stool/chair/office/dark,
@@ -26265,7 +27449,7 @@
/obj/machinery/door/firedoor,
/obj/structure/lattice/catwalk/indoor/grate,
/obj/machinery/door/airlock/maintenance_hatch{
- req_access = list(12)
+ req_one_access = list(12, 26)
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
@@ -26319,7 +27503,7 @@
/area/shuttle/intrepid/crew_compartment)
"wHJ" = (
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance_hatch{
+/obj/machinery/door/airlock/maintenance{
req_access = list(12)
},
/turf/simulated/floor/plating,
@@ -26347,6 +27531,7 @@
/obj/structure/cable{
icon_state = "0-2"
},
+/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/plating,
/area/maintenance/wing/port/deck1)
"wIJ" = (
@@ -26373,26 +27558,34 @@
/area/engineering/atmos)
"wJg" = (
/obj/structure/cable/green{
- icon_state = "1-4"
+ icon_state = "1-2"
},
-/obj/effect/floor_decal/industrial/warning{
+/obj/machinery/door/airlock/engineering{
+ name = "Deck 2 Civilian Substation";
+ req_one_access = list(11, 24)
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/maintenance/substation/civilian_west)
+"wJh" = (
+/obj/structure/railing/mapped{
dir = 8
},
-/turf/simulated/floor/plating,
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/ramp,
/area/maintenance/hangar/starboard)
-"wJh" = (
-/turf/simulated/floor/tiled/dark,
-/area/hangar/operations)
"wJv" = (
/obj/structure/sign/securearea,
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
/area/rnd/isolation_c)
"wJK" = (
-/obj/structure/railing/mapped{
- dir = 8
- },
/obj/effect/decal/cleanable/dirt,
/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/light/small/emergency{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/research_port)
"wKh" = (
@@ -26420,8 +27613,9 @@
id = "hangarlockdown";
name = "Hangar Lockdown"
},
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
-/area/hangar/intrepid)
+/area/horizon/stairwell/central)
"wLL" = (
/obj/structure/lattice/catwalk/indoor/grate,
/obj/structure/cable{
@@ -26459,12 +27653,12 @@
/turf/simulated/floor/reinforced,
/area/operations/lower/machinist)
"wNn" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- req_one_access = list(48,67)
+/obj/structure/stairs/north,
+/obj/structure/railing/mapped{
+ dir = 8
},
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/hangar/starboard)
+/turf/simulated/floor/tiled,
+/area/operations/storage)
"wNx" = (
/obj/structure/lattice/catwalk/indoor/grate,
/obj/machinery/power/apc/high{
@@ -26484,21 +27678,25 @@
/turf/simulated/floor/plating,
/area/hangar/auxiliary)
"wOP" = (
-/obj/structure/morgue{
+/obj/effect/floor_decal/corner/green/full{
dir = 1
},
-/obj/machinery/camera/network/medbay{
- c_tag = "Medical - Pre-Op 2";
- dir = 1
- },
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+/turf/simulated/floor/tiled/white{
+ temperature = 278.15;
+ name = "cooled white floor"
},
/area/medical/morgue/lower)
"wPo" = (
/obj/structure/dispenser/oxygen,
/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/window/westleft{
+ req_access = list(48);
+ name = "Oxygen Supplies Access"
+ },
/turf/simulated/floor/tiled,
/area/outpost/mining_main/refinery)
"wPz" = (
@@ -26749,12 +27947,11 @@
/turf/simulated/floor/plating,
/area/maintenance/engineering)
"wYE" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/freezer_maint{
- name = "Morgue Maintenance";
- req_one_access = list(12,66)
+/obj/effect/floor_decal/corner/green/diagonal,
+/turf/simulated/floor/tiled/white{
+ temperature = 278.15;
+ name = "cooled white floor"
},
-/turf/simulated/floor/tiled,
/area/medical/morgue/lower)
"wYU" = (
/obj/structure/cable/green{
@@ -26773,7 +27970,7 @@
dir = 4
},
/obj/effect/floor_decal/corner/brown{
- dir = 10
+ dir = 5
},
/turf/simulated/floor/tiled,
/area/operations/storage)
@@ -26789,7 +27986,7 @@
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/maintenance_hatch{
- req_access = list(12)
+ req_one_access = list(12, 26, 29)
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -26907,6 +28104,14 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/engineering/drone_fabrication)
+"xgc" = (
+/obj/structure/railing/mapped,
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/turret_protected/ai_upload)
"xgk" = (
/obj/machinery/atmospherics/pipe/simple/visible/black{
dir = 5
@@ -26922,9 +28127,18 @@
/turf/simulated/floor/plating,
/area/maintenance/research_port)
"xgE" = (
-/obj/structure/railing/mapped,
-/obj/item/stack/rods,
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/full{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/maintenance/operations)
"xgP" = (
@@ -26956,6 +28170,7 @@
icon_state = "door_locked";
id_tag = "mining_shuttle_out"
},
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled/dark,
/area/shuttle/mining)
"xiq" = (
@@ -26968,7 +28183,7 @@
/area/hangar/auxiliary)
"xiH" = (
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
-/area/turret_protected/ai_upload_foyer)
+/area/turret_protected/ai_upload)
"xiN" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 4
@@ -27089,20 +28304,22 @@
/obj/effect/floor_decal/corner/brown{
dir = 5
},
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
/turf/simulated/floor/tiled,
/area/outpost/mining_main/refinery)
"xll" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
-/obj/machinery/light/small{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/obj/structure/table/steel,
-/obj/item/storage/box/bodybags,
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+/obj/effect/floor_decal/corner/green/diagonal,
+/turf/simulated/floor/tiled/white{
+ temperature = 278.15;
+ name = "cooled white floor"
},
/area/medical/morgue/lower)
"xlr" = (
@@ -27152,24 +28369,9 @@
/turf/simulated/floor/plating,
/area/maintenance/operations)
"xmf" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/railing/mapped{
- dir = 1
- },
-/obj/structure/railing/mapped{
- dir = 8
- },
-/obj/effect/decal/cleanable/vomit,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/wing/port/deck1)
+/obj/structure/lattice,
+/turf/space,
+/area/template_noop)
"xmg" = (
/turf/simulated/floor/reinforced/airless,
/area/engineering/atmos)
@@ -27189,10 +28391,6 @@
/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/wing/port/deck1)
-"xnb" = (
-/obj/effect/map_effect/airlock/s_to_n,
-/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
-/area/engineering/atmos/propulsion)
"xnj" = (
/obj/effect/floor_decal/corner_wide/purple{
dir = 10
@@ -27220,8 +28418,10 @@
/turf/simulated/floor/plating,
/area/engineering/atmos/propulsion)
"xof" = (
-/obj/machinery/door/firedoor/multi_tile,
-/turf/simulated/floor/tiled/dark,
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
/area/hangar/operations)
"xol" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
@@ -27382,6 +28582,10 @@
dir = 1;
pixel_y = -29
},
+/obj/machinery/camera/network/service{
+ c_tag = "Dinner - Kitchen Freezer Bottom";
+ dir = 1
+ },
/turf/simulated/floor/tiled/freezer{
name = "cold storage tiles";
temperature = 278
@@ -27480,7 +28684,11 @@
/turf/simulated/floor/reinforced,
/area/rnd/xenoarch_atrium)
"xwo" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
+/obj/structure/table/steel,
+/obj/machinery/recharger,
/turf/simulated/floor/tiled,
/area/outpost/mining_main/refinery)
"xwA" = (
@@ -27539,19 +28747,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/outpost/mining_main/eva)
-"xAI" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/plating,
-/area/maintenance/wing/port/deck1)
"xBw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -27582,10 +28777,7 @@
dir = 4
},
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/freezer_maint{
- name = "Morgue Maintenance";
- req_one_access = list(12,66)
- },
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/medical/emergency_storage)
"xDI" = (
@@ -27669,24 +28861,12 @@
/turf/simulated/floor/tiled/white,
/area/rnd/test_range)
"xGF" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
+/obj/structure/lattice/catwalk,
+/obj/structure/sign/securearea{
+ pixel_y = 32
},
-/obj/structure/railing/mapped{
- dir = 1
- },
-/obj/structure/railing/mapped{
- dir = 4
- },
-/obj/random/loot,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/wing/port/deck1)
+/turf/space/dynamic,
+/area/template_noop)
"xGQ" = (
/obj/machinery/alarm{
pixel_y = -28;
@@ -27706,6 +28886,7 @@
req_access = list(11);
req_one_access = null
},
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled/dark,
/area/engineering/gravity_gen)
"xHW" = (
@@ -27766,11 +28947,20 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/effect/floor_decal/corner/brown{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/operations/loading)
"xKI" = (
-/obj/effect/decal/warning_stripes,
-/obj/machinery/porta_turret/stationary,
+/obj/item/modular_computer/console/preset/ai,
+/obj/machinery/light/small/emergency{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
/turf/simulated/floor/tiled/dark,
/area/turret_protected/ai)
"xLq" = (
@@ -27791,10 +28981,7 @@
/area/maintenance/operations)
"xLY" = (
/obj/machinery/door/firedoor,
-/obj/effect/floor_decal/industrial/warning,
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/hangar/intrepid)
"xMa" = (
@@ -27952,6 +29139,9 @@
"xPv" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
/turf/simulated/floor/plating,
/area/maintenance/hangar/starboard)
"xPX" = (
@@ -28022,11 +29212,13 @@
/turf/simulated/floor/plating,
/area/maintenance/operations)
"xSt" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/structure/disposalpipe/segment,
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/structure/railing/mapped{
dir = 1
},
-/turf/simulated/floor/tiled,
-/area/operations/storage)
+/turf/simulated/floor/plating,
+/area/maintenance/wing/port/deck1)
"xSR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -28129,6 +29321,9 @@
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
/turf/simulated/floor/reinforced,
/area/engineering/gravity_gen)
"xWh" = (
@@ -28141,6 +29336,11 @@
/obj/machinery/light/small/emergency{
dir = 4
},
+/obj/machinery/camera/network/engineering{
+ c_tag = "Engineering - Deck 1 - Atmospherics Substation";
+ dir = 8;
+ alarm_on = 1
+ },
/turf/simulated/floor/plating,
/area/maintenance/substation/engineering/lower)
"xWJ" = (
@@ -28186,8 +29386,11 @@
/turf/simulated/floor/plating,
/area/maintenance/engineering)
"xXO" = (
-/obj/effect/map_effect/airlock/w_to_e/long/square/wide,
-/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
+/obj/effect/map_effect/airlock/w_to_e/long/square/wide{
+ radio_frequency = 1003;
+ name = "Deck 1 Port Maintenance Airlock (1003)"
+ },
+/turf/simulated/wall/r_wall,
/area/turret_protected/ai)
"xXU" = (
/obj/effect/floor_decal/corner_wide/purple/diagonal,
@@ -28237,15 +29440,9 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
+/obj/effect/floor_decal/corner/brown/diagonal,
+/turf/simulated/floor/tiled,
/area/operations/loading)
"ybm" = (
/obj/structure/cable/green{
@@ -28270,6 +29467,8 @@
/obj/effect/floor_decal/corner/black{
dir = 9
},
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/portable_atmospherics/powered/pump/filled,
/turf/simulated/floor/tiled,
/area/hangar/intrepid)
"ycX" = (
@@ -28291,25 +29490,7 @@
/turf/simulated/floor/tiled,
/area/hangar/intrepid)
"yeo" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/table/standard{
- no_cargo = 1
- },
-/obj/random/tech_supply,
-/obj/random/tech_supply,
-/obj/random/tech_supply,
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 28
- },
-/obj/effect/floor_decal/corner/brown{
- dir = 6
- },
-/obj/machinery/light/small{
- dir = 4
- },
+/obj/structure/stairs/north,
/turf/simulated/floor/tiled,
/area/operations/storage)
"yeB" = (
@@ -28332,7 +29513,7 @@
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/maintenance_hatch{
- req_one_access = list(73)
+ req_one_access = list(12, 73)
},
/turf/simulated/floor/plating,
/area/maintenance/hangar/port)
@@ -28359,11 +29540,15 @@
/turf/simulated/floor/tiled/dark,
/area/hangar/auxiliary)
"yhf" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
},
/turf/simulated/floor/tiled/dark,
-/area/hangar/operations)
+/area/operations/loading)
"yib" = (
/obj/structure/lattice/catwalk/indoor,
/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{
@@ -35995,19 +37180,19 @@ eSV
hTk
hTk
hTk
-hoV
-hoV
+hTk
+hTk
+kVe
+kVe
+kVe
hob
-hoV
-hoV
-hoV
+kVe
+kVe
+kVe
hob
-hoV
-hoV
-hoV
-hob
-hoV
-hoV
+kVe
+kVe
+kVe
hTk
hTk
hTk
@@ -36196,19 +37381,19 @@ eSV
eSV
noz
pGC
+nhf
+sTw
hTk
eSV
-eSV
-hoV
-eSV
-eSV
-eSV
-hoV
-eSV
-eSV
-eSV
-hoV
-eSV
+xmf
+kVe
+kVe
+kVe
+xmf
+kVe
+kVe
+kVe
+xmf
eSV
hTk
pjr
@@ -36398,19 +37583,19 @@ eSV
eSV
noz
sTw
-hTk
+hdK
+gtE
+noz
eSV
+xmf
eSV
-hoV
+kVe
eSV
+xmf
eSV
+kVe
eSV
-hoV
-eSV
-eSV
-eSV
-hoV
-eSV
+xmf
eSV
hTk
afe
@@ -36600,24 +37785,24 @@ eSV
eSV
hTk
xDI
-hTk
+mNV
+iBL
+noz
eSV
+xmf
eSV
-hoV
+kVe
eSV
+xmf
eSV
+kVe
eSV
-hoV
-eSV
-eSV
-eSV
-hoV
-eSV
+xmf
eSV
noz
-pLU
-vpX
-hTk
+bFd
+xmV
+noz
hoV
eSV
eSV
@@ -36801,25 +37986,25 @@ eSV
eSV
eSV
hTk
-fif
-noz
-eSV
-eSV
-hoV
-eSV
-eSV
-eSV
-hoV
-eSV
-eSV
-eSV
-hoV
-eSV
-eSV
-noz
-pLU
-vpX
+ktZ
+jLm
+qco
hTk
+xmf
+xmf
+xmf
+kVe
+xmf
+xmf
+xmf
+kVe
+xmf
+xmf
+xmf
+noz
+bFd
+xmV
+noz
hoV
eSV
eSV
@@ -37003,24 +38188,24 @@ eSV
eSV
eSV
hTk
-fif
-noz
-eSV
-eSV
-hoV
-eSV
-eSV
-eSV
-hoV
-eSV
-eSV
-eSV
-hoV
-eSV
-eSV
+mNG
+mfn
+gdR
hTk
+eSV
+xmf
+eSV
+kVe
+eSV
+xmf
+eSV
+kVe
+eSV
+xmf
+eSV
+noz
rjr
-vpX
+xmV
hTk
hTk
eSV
@@ -37205,24 +38390,24 @@ eSV
eSV
eSV
hTk
-fif
+mPZ
+kbI
hTk
-eSV
-eSV
-hoV
-eSV
-eSV
-eSV
-hoV
-eSV
-eSV
-eSV
-hoV
-eSV
-eSV
hTk
-pLU
+qpJ
xmf
+eSV
+kVe
+eSV
+xmf
+eSV
+kVe
+eSV
+xmf
+eSV
+hTk
+bFd
+xmV
noz
eSV
eSV
@@ -37407,24 +38592,24 @@ eSV
eSV
eSV
noz
-fif
-hTk
-eSV
-eSV
-hoV
-eSV
-eSV
-eSV
-hoV
-eSV
-eSV
-eSV
-hoV
-eSV
-eSV
+paL
+omL
+sTw
+dPt
+sTw
+kVe
+kVe
+kVe
+kVe
+kVe
+kVe
+kVe
+xmf
+xmf
+xmf
hTk
oqO
-xGF
+xmV
noz
eSV
eSV
@@ -37609,23 +38794,23 @@ eSV
eSV
eSV
noz
-fif
+paL
+fMB
hTk
-kVe
-kVe
hTk
-kVe
-kVe
-kVe
hTk
-kVe
-kVe
-kVe
+bQu
+bQu
+hob
+hob
+hob
+hob
+hob
+bQu
+bQu
+hob
hTk
-kVe
-kVe
-hTk
-pLU
+fWU
vpX
hTk
hTk
@@ -37811,25 +38996,25 @@ noz
noz
hTk
hTk
-aTR
+gNs
hTk
hTk
hTk
hTk
+fif
+fif
+fif
+kho
+diR
+xSt
+kTJ
+kTJ
+kTJ
+exX
+sqs
+bFd
+xmV
noz
-hTk
-noz
-hTk
-noz
-hTk
-noz
-hTk
-hTk
-hTk
-hTk
-pLU
-jJp
-hTk
hoV
eSV
eSV
@@ -38009,7 +39194,7 @@ eSV
eSV
eSV
noz
-eKi
+iwn
eKi
wpT
wVV
@@ -38017,21 +39202,21 @@ lEq
gBl
gBl
gBl
-cZG
-gBl
+nua
gBl
gBl
gBl
gBl
+fFj
gzW
gBl
gBl
gBl
-gBl
+cZG
lVT
cAG
-xAI
-hTk
+xmV
+noz
hoV
eSV
eSV
@@ -38212,9 +39397,9 @@ eSV
eSV
noz
iIm
-phO
-phO
-wVV
+gtE
+cqd
+aTR
qBU
eCh
vxw
@@ -38230,8 +39415,8 @@ qdE
qdE
qdE
qdE
-qdE
-qdE
+czp
+nDL
xmV
hTk
hTk
@@ -38414,7 +39599,7 @@ eSV
eSV
hTk
wtB
-phO
+cqd
phO
wVV
aiG
@@ -38424,16 +39609,16 @@ fif
qdE
giX
qQa
-nCV
+pcv
tiV
giX
qdE
giX
qQa
-nCV
-tiV
-giX
+gqW
qdE
+rnz
+qSv
xmV
dsR
noz
@@ -38631,10 +39816,10 @@ kAn
nCV
qdE
nCV
-uaM
-qZZ
-xSt
nCV
+tFO
+qdE
+oct
qdE
xmV
dsR
@@ -38834,9 +40019,9 @@ giX
qdE
giX
iQI
-sWr
-iQI
-giX
+sDJ
+qdE
+vgU
qdE
dqy
vJT
@@ -39038,7 +40223,7 @@ qdE
qdE
dhX
qdE
-qdE
+nYB
qdE
cen
mOK
@@ -39234,9 +40419,9 @@ iNW
qdE
tPG
oAU
-fvn
+hGu
map
-fvn
+hGu
oAU
pGs
qEK
@@ -39440,11 +40625,11 @@ fvn
nCV
fvn
fvn
-gZP
-tMa
+sWr
+nCV
tAP
-ulE
-nUn
+nCV
+bqI
brT
qdE
wqR
@@ -39637,17 +40822,17 @@ nCV
nCV
ikV
vZL
-qWW
-qWW
-pfs
-qWW
-qWW
-qQE
nCV
-kTJ
-fja
+nCV
+tHg
+nCV
+nCV
+sWr
+nCV
+nCV
+nCV
bqI
-nCV
+pfb
qdE
wqR
xZC
@@ -39839,15 +41024,15 @@ nCV
iNW
qdE
ubg
-giX
-giX
-tFO
-giX
-giX
-gZP
-pfb
+kLu
+uoI
+qsC
+pme
+qAY
+sWr
+njB
+vjx
nCV
-dzC
duN
jDs
qdE
@@ -40033,7 +41218,7 @@ gtE
mVd
fif
riF
-qBU
+evd
qdE
nkK
niB
@@ -40041,17 +41226,17 @@ jKF
jKF
vFL
uWS
-iXq
-iXq
+jKF
+jKF
pSJ
-iXq
+jKF
iXq
cOy
gGg
gGg
fiO
qYc
-abQ
+pfb
qdE
wqR
obL
@@ -40247,12 +41432,12 @@ fvn
fvn
thO
fvn
-fvn
-bqI
-njB
+jJp
+qdE
+wNn
bDQ
wYX
-dEk
+nCV
hLw
qdE
wqR
@@ -40445,16 +41630,16 @@ nCV
iNW
qdE
gkr
-uGI
-fvn
+nWf
+lNG
kOJ
-fvn
+lNG
uGI
-vjx
+qdE
yeo
-ajF
+nCV
klR
-wlh
+qWW
abQ
qdE
kcL
@@ -40634,7 +41819,7 @@ eSV
eSV
eSV
noz
-fif
+ujc
wVV
bqi
sOH
@@ -40656,8 +41841,8 @@ qdE
qdE
qdE
rVt
+uuV
qdE
-qNK
qdE
ukS
ukS
@@ -40854,31 +42039,31 @@ iJt
owP
gtM
nYx
+drY
yaP
cCv
-cCv
arw
mpI
bLO
gvZ
jfc
uoF
-cCq
-kBV
-cCq
-unZ
-cCq
-cya
-cCq
-tXS
-cCq
-deV
dJT
+kBV
+oRA
+unZ
+oRA
+cya
+dJT
+tXS
+aOC
+deV
+slv
eep
jEx
jEx
jEx
-eSV
+kVe
eSV
eSV
eSV
@@ -41056,31 +42241,31 @@ qkh
qkh
feY
gvZ
-uzB
-uzB
-uzB
+qMM
+qMM
+gvZ
sgp
buS
rHr
gvZ
pes
-bQh
-nsg
-nsg
-nsg
-nsg
-nsg
-nsg
-nsg
-nsg
+myA
nsg
san
-nsg
+san
+san
+san
+san
+san
+san
+san
+san
+san
kWB
iHE
dJQ
jEx
-eSV
+liP
eSV
eSV
eSV
@@ -41240,7 +42425,7 @@ eSV
eSV
eSV
hTk
-iKo
+koz
wVV
wVV
dod
@@ -41259,11 +42444,11 @@ xGe
mDE
gvZ
uzB
-dWC
uzB
+ulE
ehD
-oct
-rHr
+qDJ
+wlh
gvZ
wos
jWJ
@@ -41280,7 +42465,7 @@ mwO
mwO
mwO
tNp
-mwO
+htv
tNp
eSV
eSV
@@ -41461,13 +42646,13 @@ qkh
feY
gvZ
uzB
-uzB
-uzB
+dWC
+hRn
ehD
-oct
-rHr
+qDJ
+eFe
gvZ
-wos
+kjv
jWJ
paB
mwO
@@ -41482,7 +42667,7 @@ mwO
mwO
mwO
tNp
-mwO
+htv
tNp
eSV
eSV
@@ -41654,7 +42839,7 @@ lIg
lIg
lIg
xCD
-nlH
+aYY
nlH
qkh
qkh
@@ -41662,12 +42847,12 @@ qkh
qkh
feY
gvZ
-qDJ
-pcv
-gqW
+yhf
+tMa
+uBL
fbc
-kLu
-rHr
+lNj
+cOm
gvZ
ksR
jmi
@@ -41684,7 +42869,7 @@ mwO
mwO
mwO
tNp
-mwO
+htv
tNp
eSV
eSV
@@ -41849,9 +43034,9 @@ hTk
lkx
vjl
lIg
-ege
-ege
-ege
+had
+had
+wmD
ege
pPU
lIg
@@ -41859,14 +43044,14 @@ gRa
gqn
fDD
fDD
-nnw
+lIg
ueg
icm
feY
gvZ
rpj
nag
-cpf
+nag
xKE
lNi
qUK
@@ -41886,7 +43071,7 @@ mwO
mwO
mwO
tNp
-mwO
+htv
tNp
eSV
eSV
@@ -42054,14 +43239,14 @@ lIg
ncC
rPO
hQO
-hQO
+sfj
uHw
lIg
jZV
evA
gMp
fDD
-nnw
+lIg
mKD
ttV
dAZ
@@ -42073,8 +43258,8 @@ bEm
ngD
goO
qMM
-rnz
-hRn
+wos
+rcA
pHy
mwO
mwO
@@ -42088,7 +43273,7 @@ mwO
mwO
mwO
tNp
-mwO
+htv
tNp
eSV
eSV
@@ -42253,17 +43438,17 @@ wVV
wZi
wVV
lIg
-qDu
-rNH
-rNH
-rNH
+rPO
+rPO
+hQO
+wOP
mst
-aYY
+lIg
qVO
qBC
fDD
fDD
-nnw
+lIg
sWa
vjI
niw
@@ -42272,7 +43457,7 @@ bRU
igj
igj
mby
-igj
+qZZ
igj
hHk
rOz
@@ -42290,7 +43475,7 @@ mwO
mwO
mwO
tNp
-mwO
+htv
tNp
eSV
eSV
@@ -42457,22 +43642,22 @@ xXt
lIg
svg
svg
-svg
-rNH
+dUP
+sRe
qEk
lIg
+rFO
+cuA
lIg
lIg
lIg
-exX
-nnw
dMM
dNk
dNk
dNk
yiT
eGE
-enh
+dBb
aSL
enh
whg
@@ -42492,7 +43677,7 @@ mwO
mwO
mwO
tNp
-mwO
+htv
tNp
eSV
eSV
@@ -42657,15 +43842,15 @@ xPc
nNE
bdY
lIg
-lIg
-lIg
-lIg
-rNH
-qEk
-lIg
+rSe
+wYE
+wYE
+wYE
+xll
+iDM
xgE
kWx
-juU
+nnw
aMh
wqj
vul
@@ -42677,10 +43862,10 @@ cty
cpf
oDA
blP
-cpf
+lNi
cMu
dLp
-kpm
+glb
paB
mwO
mwO
@@ -42694,7 +43879,7 @@ mwO
mwO
mwO
tNp
-mwO
+htv
tNp
eSV
eSV
@@ -42857,17 +44042,17 @@ nRQ
bcG
qzb
nNE
-rpa
+bdY
lIg
-qXZ
+mST
mST
qXZ
-rNH
+rpa
haN
lIg
iFL
-vif
-vif
+nnw
+nnw
mZr
uVX
vul
@@ -42876,7 +44061,7 @@ avx
wPz
hEh
ucs
-cpf
+uaM
fbu
fpy
eDa
@@ -42896,7 +44081,7 @@ mwO
mwO
mwO
tNp
-mwO
+htv
tNp
eSV
eSV
@@ -43060,15 +44245,15 @@ jdP
bwp
gtS
mTZ
-wYE
-rNH
-rNH
-rNH
-rNH
+lIg
+rPO
+rPO
+hQO
+ege
caN
lIg
xNb
-vif
+sko
lyG
aag
mZz
@@ -43084,28 +44269,28 @@ dNk
dNk
dNk
dKS
-rcA
-oJu
-oJu
+boy
oJu
tgY
-oJu
-oJu
-oJu
-oJu
-oJu
-oJu
-oJu
+tgY
+tgY
+tgY
+tgY
+tgY
+rZi
+tgY
+tgY
+tgY
gub
iHE
dJQ
jEx
-eSV
-eSV
-eSV
-eSV
-eSV
-eSV
+kVe
+kVe
+kVe
+kVe
+kVe
+kVe
eSV
eSV
eSV
@@ -43263,11 +44448,11 @@ saH
nNE
mMR
lIg
-grm
+ncC
+rPO
+hQO
sfj
-sfj
-sfj
-xll
+uHw
lIg
joW
vif
@@ -43282,32 +44467,32 @@ gKG
qOf
mTJ
rPo
-liP
+kSe
qQF
dNk
jOo
-hMj
-hMj
-hMj
-jbm
-vDP
-cCq
-myA
-yhf
-pgW
-mhd
-nVO
-nVO
-hPB
+rcA
+xof
+ukS
+ukS
+euj
+euj
+euj
+ukS
+ukS
+euj
+euj
+euj
+ukS
jEx
jEx
jEx
-eSV
-eSV
-eSV
-eSV
-eSV
-eSV
+fJN
+fJN
+jEx
+jEx
+jEx
+kVe
eSV
eSV
eSV
@@ -43463,13 +44648,13 @@ lTv
vsY
hVL
gtS
-vqW
+qDu
lIg
jdm
-rNH
-rNH
+jdm
+grm
wOP
-lIg
+rUU
lIg
nnw
nnw
@@ -43488,28 +44673,28 @@ nTP
umt
wkD
wos
-hkb
-ukS
-wJh
-qco
-euj
-ukS
-euj
-euj
+rcA
+oXD
ukS
+ixU
+pgW
+gyo
+kiw
+bZR
+wxs
+kiw
+kiw
+kiw
+bZR
+kiw
+kiw
+lmD
+kiw
+lig
jEx
+suw
jEx
-jEx
-jEx
-jEx
-jEx
-jEx
-jEx
-jEx
-eSV
-eSV
-eSV
-eSV
+xGF
eSV
eSV
eSV
@@ -43667,12 +44852,12 @@ cSZ
gtS
vqW
lIg
-sRe
-rNH
-rNH
-eFl
lIg
-cqu
+lIg
+lIg
+lIg
+lIg
+lIg
bDl
cqu
fCT
@@ -43686,16 +44871,16 @@ gKG
obc
tgR
beP
-wCx
+tgR
fKk
wkD
lSc
bQh
-xof
-wJh
-asC
-ukS
+jbm
+euj
+nBA
rcA
+vFD
bIe
vHW
vHW
@@ -43705,12 +44890,12 @@ iuk
iuk
iuk
iuk
-vFD
-kCj
-jEx
-jEx
-jEx
-eSV
+iuk
+mwO
+htv
+tNp
+jCg
+tNp
eSV
eSV
eSV
@@ -43862,18 +45047,18 @@ xGW
mzE
mTU
ezW
-mTU
+juU
xWe
xYW
nBK
gtS
-iDM
-lIg
-jdm
+bdY
+nnw
rNH
rNH
-cuA
-lIg
+rNH
+rNH
+nnw
vqU
twX
vqU
@@ -43887,17 +45072,17 @@ wkD
wkD
knh
tgR
-gyx
-diR
+beP
+tgR
tPr
dNk
-wos
+jyX
rcA
-wJh
-wJh
+xof
+euj
nBA
-htv
-eep
+rcA
+sXU
iuk
fdb
qqS
@@ -43909,8 +45094,9 @@ oDr
isL
uUP
mwO
+htv
tNp
-dJQ
+jCg
tNp
eSV
eSV
@@ -43978,7 +45164,6 @@ eSV
eSV
eSV
eSV
-eSV
"}
(78,1,1) = {"
eSV
@@ -44062,20 +45247,20 @@ cda
drX
pnX
kTL
-qlv
-qlv
-qlv
hzC
+qlv
+qlv
+oNv
xYW
nBK
nNE
bdY
-lIg
-lIg
-wmD
-wmD
-lIg
-lIg
+nnw
+nnw
+nnw
+nnw
+nnw
+nnw
teb
nnw
nnw
@@ -44092,13 +45277,13 @@ tgR
uBi
tgR
xwo
-eqk
-vTJ
+dNk
+gZP
rcA
-euj
-bSM
-wJh
+qQE
ukS
+fja
+rcA
sXU
iuk
fbJ
@@ -44111,8 +45296,9 @@ aME
kWo
uUP
mwO
+htv
tNp
-mwO
+jCg
tNp
eSV
eSV
@@ -44180,7 +45366,6 @@ eSV
eSV
eSV
eSV
-eSV
"}
(79,1,1) = {"
eSV
@@ -44264,7 +45449,7 @@ cTs
pSx
pTT
kTL
-qlv
+hzC
qlv
kfb
chW
@@ -44293,14 +45478,14 @@ hhO
tgR
beP
tgR
-xwo
+wCx
ctM
vTJ
mFO
-ukS
-ukS
+qNK
+ajF
ovb
-ukS
+dJT
rKM
aNO
uNw
@@ -44313,8 +45498,9 @@ bZC
sQc
uUP
mwO
+htv
tNp
-mwO
+jCg
tNp
eSV
eSV
@@ -44382,7 +45568,6 @@ eSV
eSV
eSV
eSV
-eSV
"}
(80,1,1) = {"
eSV
@@ -44466,10 +45651,10 @@ ouE
bHs
pTT
kTL
-qlv
-qlv
-qlv
hzC
+qlv
+qlv
+oNv
xYW
obM
gtS
@@ -44494,16 +45679,16 @@ oOk
oul
tgR
eBt
-qpe
+rRq
dWD
-ctM
-vTJ
-rcA
+dNk
+juI
+uTz
nCM
-kKc
-kNN
ukS
-qsC
+kNN
+rcA
+fFb
xij
lhE
ozA
@@ -44515,8 +45700,9 @@ rMm
dgD
uUP
mwO
+htv
tNp
-mwO
+jCg
tNp
eSV
eSV
@@ -44584,7 +45770,6 @@ eSV
eSV
eSV
eSV
-eSV
"}
(81,1,1) = {"
eSV
@@ -44693,18 +45878,18 @@ ych
xAG
qUu
oOk
-obc
+mKc
tgR
-kho
-blr
-dim
-dNk
+beP
+tgR
+wCx
+tEc
wos
rcA
-rcr
-kNN
+xof
+kKc
vZO
-ukS
+rcA
fFb
xij
fjW
@@ -44717,8 +45902,9 @@ vSC
fSl
uUP
mwO
+htv
tNp
-mwO
+jCg
tNp
eSV
eSV
@@ -44786,7 +45972,6 @@ eSV
eSV
eSV
eSV
-eSV
"}
(82,1,1) = {"
eSV
@@ -44882,7 +46067,7 @@ nnw
nnw
nnw
nnw
-teb
+sRd
nyY
uQa
doK
@@ -44898,16 +46083,16 @@ nuj
xlb
tHv
hjO
-kSe
-hBl
+tgR
+wCx
tEc
-wos
-rcA
+eqk
+gyx
rcr
kKc
-kNN
-ukS
-rcA
+blr
+kCj
+pfs
bIe
vHW
vHW
@@ -44919,14 +46104,14 @@ iuk
iuk
iuk
uMS
+htv
tNp
-dJQ
+jCg
tNp
-kVe
-kVe
-kVe
-kVe
-kVe
+eSV
+eSV
+eSV
+eSV
eSV
eSV
eSV
@@ -45103,31 +46288,31 @@ qpe
qpe
lyo
dNk
-vTJ
+kKb
kVu
-nWF
-nWF
-wNn
-nWF
-nWF
-nWF
-msv
-msv
-msv
-msv
-msv
-msv
-msv
-msv
-msv
-msv
-msv
-msv
-msv
-msv
-msv
-msv
-msv
+ukS
+ukS
+ukS
+dim
+byb
+hPB
+sDN
+hPB
+hPB
+hPB
+hPB
+sDN
+hPB
+hPB
+hPB
+pRz
+hMj
+jEx
+nhi
+jEx
+kVe
+kVe
+kVe
kVe
eSV
eSV
@@ -45307,29 +46492,29 @@ wPo
dNk
doE
soT
-nWF
+qju
qRF
-raq
-raq
-oGK
-rZi
-qwr
-suw
-jGM
+nWF
+ooy
+nWF
+nWF
xoY
-dob
-raq
-jCg
+xoY
+xoY
+xoY
+xoY
+nWF
+nWF
nWF
ugW
-jCg
+nWF
nWF
pTs
-pTs
-qAY
-eFe
-eFe
-bij
+msv
+msv
+msv
+msv
+msv
kVe
eSV
eSV
@@ -45509,22 +46694,22 @@ dNk
dNk
jks
gxJ
-nWF
+htx
ggp
bCU
hle
eOk
kLC
xoY
-bZR
+jGM
arn
+dER
xoY
-gIr
qZx
+wJh
+uwT
nPL
-nPL
-nPL
-nPL
+dQH
nWF
lUf
urv
@@ -45708,16 +46893,16 @@ ikP
kGf
xmc
okA
-emF
+jwN
fKD
tYN
qju
-ooy
-jwN
-uwT
-eIp
+qju
+qju
+qju
+qju
uuZ
-xoY
+qwr
odK
uUl
lDd
@@ -45734,7 +46919,7 @@ msv
rtC
rtC
lnQ
-ciP
+kVe
eSV
eSV
eSV
@@ -45910,20 +47095,20 @@ okA
iBe
gkL
klD
-nnw
+qju
lOn
okw
-nWF
-nWF
-nWF
-nWF
-nWF
+bup
+eIp
+grH
+ckb
+qju
psB
xoY
xoY
xoY
xoY
-fJN
+xoY
hIl
xSR
nWF
@@ -45936,7 +47121,7 @@ msv
rtC
rtC
msv
-ciP
+kVe
eSV
eSV
eSV
@@ -46108,25 +47293,25 @@ txk
wYe
qio
vpl
-hrb
+vqU
fhF
hMr
ifX
-nnw
+qju
rau
aOh
-wuD
+ivF
emH
grH
ckb
-nWF
+qju
fXF
fkN
-fkN
+vqC
fkN
uQL
iAL
-iAL
+pVp
uaU
nPL
axv
@@ -46138,7 +47323,7 @@ msv
rtC
rtC
msv
-ciP
+kVe
eSV
eSV
eSV
@@ -46310,20 +47495,20 @@ wuD
wuD
wuD
wuD
+mhd
wuD
wuD
wuD
-wuD
-wuD
+qju
wKW
mBx
-wuD
-pVp
-htx
-htx
-nWF
-nWF
+qju
+qju
+qju
+qju
+qju
nWF
+wHJ
nWF
nWF
nWF
@@ -46340,7 +47525,7 @@ msv
rtC
rtC
msv
-ciP
+kVe
eSV
eSV
eSV
@@ -46536,13 +47721,13 @@ ocu
ycu
uZN
nWF
+pTs
msv
msv
-msv
-ciP
-ciP
-ciP
-ciP
+kVe
+kVe
+kVe
+kVe
eSV
eSV
eSV
@@ -46738,10 +47923,10 @@ xVU
xVU
eIC
ioq
-bli
+iZi
cGa
nDI
-eSV
+dzC
eSV
eSV
eSV
@@ -46941,7 +48126,7 @@ kEJ
kEJ
lBY
cLV
-iRC
+bSM
cLV
eSV
eSV
@@ -47143,7 +48328,7 @@ iRC
iRC
iRC
cLV
-iRC
+bSM
cLV
eSV
eSV
@@ -47275,8 +48460,8 @@ eSV
eSV
eSV
eSV
-eSV
-sPo
+oam
+cpF
eSV
hoV
onU
@@ -47345,7 +48530,7 @@ iRC
iRC
iRC
cLV
-iRC
+bSM
cLV
eSV
eSV
@@ -47477,9 +48662,9 @@ eSV
eSV
eSV
eSV
-eSV
sPo
hoV
+hoV
oDB
bID
fOC
@@ -47547,7 +48732,7 @@ iRC
iRC
iRC
cLV
-iRC
+bSM
cLV
eSV
eSV
@@ -47679,9 +48864,9 @@ eSV
eSV
eSV
eSV
-eSV
sPo
-oam
+eSV
+eSV
jvE
lPP
xHW
@@ -47749,7 +48934,7 @@ iRC
iRC
iRC
cLV
-iRC
+bSM
cLV
eSV
eSV
@@ -47881,9 +49066,9 @@ eSV
eSV
eSV
eSV
-eSV
sPo
eSV
+eSV
twq
dBA
pMX
@@ -47951,7 +49136,7 @@ iRC
iRC
iRC
cLV
-iRC
+bSM
cLV
eSV
eSV
@@ -48083,9 +49268,9 @@ eSV
eSV
eSV
eSV
-eSV
sPo
-oam
+eSV
+eSV
foN
htn
nnh
@@ -48153,7 +49338,7 @@ cAU
uko
iRC
cLV
-iRC
+bSM
cLV
eSV
eSV
@@ -48285,9 +49470,9 @@ eSV
eSV
eSV
eSV
-eSV
sPo
hoV
+hoV
oDB
nAX
vWL
@@ -48327,7 +49512,7 @@ wuD
qVh
rkQ
pjy
-pjy
+qwB
pjy
hUk
cFq
@@ -48355,7 +49540,7 @@ con
con
iRC
cLV
-iRC
+bSM
cLV
eSV
eSV
@@ -48487,9 +49672,9 @@ eSV
eSV
eSV
eSV
-eSV
sPo
eSV
+eSV
hoV
eSV
eSV
@@ -48557,7 +49742,7 @@ laL
con
iRC
cLV
-iRC
+bSM
cLV
eSV
eSV
@@ -48689,9 +49874,9 @@ eSV
eSV
eSV
eSV
-eSV
sPo
hoV
+hoV
oDB
kna
uAi
@@ -48759,7 +49944,7 @@ fEM
con
iRC
cLV
-iRC
+bSM
cLV
eSV
eSV
@@ -48891,9 +50076,9 @@ eSV
eSV
eSV
eSV
-eSV
sPo
-oam
+eSV
+eSV
xJv
ebN
sEE
@@ -48961,7 +50146,7 @@ con
con
iRC
cLV
-iRC
+bSM
cLV
eSV
eSV
@@ -49093,9 +50278,9 @@ eSV
eSV
eSV
eSV
-eSV
sPo
eSV
+eSV
tBT
dKY
nRZ
@@ -49163,7 +50348,7 @@ yfK
kpJ
iRC
cLV
-iRC
+bSM
cLV
eSV
eSV
@@ -49295,9 +50480,9 @@ eSV
eSV
eSV
eSV
-eSV
sPo
-oam
+eSV
+eSV
wnz
bGf
enn
@@ -49365,7 +50550,7 @@ iRC
iRC
iRC
cLV
-iRC
+bSM
cLV
eSV
eSV
@@ -49497,9 +50682,9 @@ eSV
eSV
eSV
eSV
-eSV
sPo
hoV
+hoV
oDB
eMK
lzc
@@ -49567,7 +50752,7 @@ iRC
iRC
iRC
cLV
-iRC
+bSM
cLV
eSV
eSV
@@ -49699,9 +50884,9 @@ eSV
eSV
eSV
eSV
-eSV
sPo
eSV
+eSV
hoV
eSV
mBc
@@ -49769,7 +50954,7 @@ iRC
iRC
iRC
cLV
-iRC
+bSM
cLV
eSV
eSV
@@ -49901,9 +51086,9 @@ eSV
eSV
eSV
eSV
-eSV
sPo
hoV
+hoV
oDB
vbv
dEU
@@ -49971,7 +51156,7 @@ iRC
iRC
iRC
cLV
-iRC
+bSM
cLV
eSV
eSV
@@ -50103,9 +51288,9 @@ eSV
eSV
eSV
eSV
-eSV
sPo
-oam
+eSV
+eSV
uKu
vuB
jpI
@@ -50149,13 +51334,13 @@ aKo
wif
hdi
lBY
-jgf
+iRC
iRC
aeA
iRC
iRC
iRC
-kjy
+iRC
eKr
iRC
iRC
@@ -50173,7 +51358,7 @@ iRC
iRC
iRC
cLV
-iRC
+bSM
cLV
eSV
eSV
@@ -50305,9 +51490,9 @@ eSV
eSV
eSV
eSV
-eSV
sPo
eSV
+eSV
lJK
ckB
pTj
@@ -50347,7 +51532,7 @@ hJx
xdE
hYy
xLY
-mXD
+mXG
rbx
wuD
wuD
@@ -50374,9 +51559,9 @@ uRt
uRt
uRt
lBY
-vgw
-uRt
-vgw
+cLV
+bSM
+cLV
eSV
eSV
eSV
@@ -50507,9 +51692,9 @@ eSV
eSV
eSV
eSV
-eSV
sPo
-oam
+eSV
+eSV
fQZ
wdX
onN
@@ -50579,7 +51764,7 @@ iYT
bli
cGa
nDI
-eSV
+kVe
eSV
eSV
eSV
@@ -50709,9 +51894,9 @@ eSV
eSV
eSV
eSV
-eSV
sPo
hoV
+hoV
oDB
ukl
eeb
@@ -50781,10 +51966,10 @@ wuD
nDI
nDI
nDI
-ciP
-ciP
-ciP
-ciP
+kVe
+kVe
+kVe
+kVe
eSV
eSV
eSV
@@ -50911,14 +52096,14 @@ eSV
eSV
eSV
eSV
-eSV
-sPo
+wxd
+abr
eSV
hoV
clT
eyU
eTg
-eRb
+boC
fvy
wup
eSV
@@ -50951,7 +52136,7 @@ xNz
gyj
aPY
fQC
-qWB
+eFl
fQC
fQC
vCG
@@ -50978,15 +52163,15 @@ bCi
bCi
ocT
bCi
-wuD
-wuD
+bCi
+bCi
fyR
nzz
tsD
tsD
tsD
tsD
-ciP
+kVe
eSV
eSV
eSV
@@ -51114,12 +52299,12 @@ eSV
eSV
eSV
eSV
-sPo
+gdP
uVL
uVL
-xnb
-uVL
uVL
+pwQ
+uoG
uVL
nSi
jSF
@@ -51188,7 +52373,7 @@ dWw
tfB
wKq
tsD
-ciP
+kVe
eSV
eSV
eSV
@@ -51316,10 +52501,10 @@ eSV
eSV
eSV
eSV
-oOI
-pwQ
-bjE
-pwQ
+eSV
+uVL
+uVL
+uVL
mhL
uVL
swD
@@ -51390,7 +52575,7 @@ tsD
tsD
tsD
tsD
-ciP
+kVe
eSV
eSV
eSV
@@ -51522,7 +52707,7 @@ aqY
aqY
uVL
uVL
-mYn
+pwQ
jaP
pSk
sRM
@@ -51592,7 +52777,7 @@ xyG
xyG
fXy
tsD
-ciP
+kVe
eSV
eSV
eSV
@@ -51794,7 +52979,7 @@ jCl
xzd
tsD
tsD
-eSV
+kVe
eSV
eSV
eSV
@@ -51995,8 +53180,8 @@ xyG
ctz
tsD
tsD
-eSV
-eSV
+kVe
+kVe
eSV
eSV
eSV
@@ -52196,8 +53381,8 @@ drU
tsD
drU
tsD
-eSV
-eSV
+kVe
+kVe
eSV
eSV
eSV
@@ -52392,13 +53577,13 @@ yag
nCG
nCG
nCG
-eSV
-eSV
-eSV
-eSV
-eSV
-eSV
-eSV
+kVe
+kVe
+kVe
+kVe
+kVe
+kVe
+kVe
eSV
eSV
eSV
@@ -52576,25 +53761,25 @@ fQC
ugY
gaE
lnF
-dHW
-xjq
+asC
+vgw
mio
-xjq
-xjq
-xjq
+vgw
+vgw
+vgw
ekT
mio
-xjq
-xjq
-xjq
-xjq
-xjq
-xjq
-xjq
-nCG
+vgw
+vgw
+vgw
+vgw
+vgw
+vgw
+vgw
+wYU
awX
nCG
-eSV
+dzC
eSV
eSV
eSV
@@ -52794,7 +53979,7 @@ moI
moI
moI
nyL
-bJa
+cCq
nyL
eSV
eSV
@@ -52996,7 +54181,7 @@ bJa
bJa
bJa
nyL
-bJa
+cCq
nyL
eSV
eSV
@@ -53198,7 +54383,7 @@ bJa
bJa
bJa
nyL
-bJa
+cCq
nyL
eSV
eSV
@@ -53400,7 +54585,7 @@ bJa
bJa
bJa
nyL
-bJa
+cCq
nyL
eSV
eSV
@@ -53553,7 +54738,7 @@ xdF
cTm
pom
qeO
-wbm
+hrb
uDi
mhf
idq
@@ -53602,7 +54787,7 @@ bJa
bJa
bJa
nyL
-bJa
+cCq
nyL
eSV
eSV
@@ -53754,8 +54939,8 @@ gyD
eKc
mhf
pom
-aOC
-rjX
+mhf
+nVO
tFd
lrg
mhf
@@ -53804,7 +54989,7 @@ bJa
bJa
bJa
nyL
-bJa
+cCq
nyL
eSV
eSV
@@ -53958,7 +55143,7 @@ tFd
grP
wJK
iSc
-mhf
+wbm
hgR
eGG
pom
@@ -54006,7 +55191,7 @@ tGr
tGr
tGr
nyL
-bJa
+cCq
nyL
eSV
eSV
@@ -54158,12 +55343,12 @@ rsL
vil
rsL
xXO
-qZp
-qZp
-qZp
-qZp
-qZp
-qZp
+rUd
+rUd
+rUd
+rUd
+rUd
+rUd
xsN
gVe
bRg
@@ -54210,7 +55395,7 @@ sJN
wYU
hAZ
nCG
-eSV
+kVe
eSV
eSV
eSV
@@ -54359,13 +55544,13 @@ uVL
vil
vil
vil
-qZp
+rUd
xKI
xre
mVo
xre
-xKI
-qZp
+fVh
+rUd
akC
mhf
xgm
@@ -54412,7 +55597,7 @@ skS
nCG
nCG
nCG
-eSV
+kVe
eSV
eSV
eSV
@@ -54561,15 +55746,15 @@ uVL
oTX
vil
vil
-qZp
+rUd
npz
-grw
gsG
-lPL
+gsG
+gsG
sxc
-qZp
-qZp
-qZp
+rUd
+rUd
+rUd
pdC
pdC
cDa
@@ -54614,7 +55799,7 @@ mhq
wYU
hAZ
nCG
-eSV
+dzC
eSV
eSV
eSV
@@ -54763,9 +55948,9 @@ uVL
rsL
vil
rsL
-qZp
+rUd
eNY
-fVh
+gsG
ben
gsG
jBX
@@ -54814,7 +55999,7 @@ moI
moI
moI
nyL
-bJa
+cCq
nyL
eSV
eSV
@@ -54964,16 +56149,16 @@ eSV
eSV
eSV
eSV
-eSV
qZp
+rUd
jyg
-uRl
gsG
-dCe
+gsG
+gsG
cTj
-qZp
-qZp
-qZp
+rUd
+rUd
+rUd
nCI
pdC
vcF
@@ -55016,7 +56201,7 @@ bJa
bJa
bJa
nyL
-bJa
+cCq
nyL
eSV
eSV
@@ -55166,14 +56351,14 @@ eSV
eSV
eSV
eSV
-eSV
qZp
-xKI
+rUd
+lPL
skq
qPV
-iwC
-xKI
-qZp
+skq
+uRl
+rUd
hUt
thF
bVh
@@ -55218,7 +56403,7 @@ bJa
bJa
bJa
nyL
-bJa
+cCq
nyL
eSV
eSV
@@ -55368,14 +56553,14 @@ eSV
eSV
eSV
eSV
-eSV
-qZp
-qZp
-qZp
-opy
-hbT
-qZp
qZp
+rUd
+rUd
+rUd
+rUd
+rUd
+rUd
+rUd
ajM
oFy
boN
@@ -55420,7 +56605,7 @@ bJa
bJa
bJa
nyL
-bJa
+cCq
nyL
eSV
eSV
@@ -55570,14 +56755,14 @@ eSV
eSV
eSV
eSV
-eSV
-eSV
-eSV
-hob
-nCd
-ntv
qZp
-xiH
+qZp
+qZp
+qZp
+qZp
+qZp
+qZp
+qZp
mkW
rso
fYt
@@ -55622,7 +56807,7 @@ bJa
bJa
bJa
nyL
-bJa
+cCq
nyL
eSV
eSV
@@ -55775,10 +56960,10 @@ eSV
eSV
eSV
eSV
-hob
-qZp
-qZp
-qZp
+eSV
+eSV
+eSV
+eSV
xiH
dEe
rMf
@@ -55824,7 +57009,7 @@ bJa
bJa
bJa
nyL
-bJa
+cCq
nyL
eSV
eSV
@@ -55983,7 +57168,7 @@ eSV
eSV
xiH
dEe
-rMf
+xgc
lEN
pdC
vnJ
@@ -56026,7 +57211,7 @@ tGr
tGr
tGr
nyL
-bJa
+cCq
nyL
eSV
eSV
@@ -56230,7 +57415,7 @@ ygC
nCG
hbU
nCG
-eSV
+kVe
eSV
eSV
eSV
@@ -56411,12 +57596,12 @@ vfc
xiN
xYn
xtK
-sTw
+ocQ
lPW
fBi
cpU
kDE
-uZm
+mSQ
uZm
mtp
uZm
@@ -56432,7 +57617,7 @@ xbH
wYU
ybm
nCG
-eSV
+kVe
eSV
eSV
eSV
@@ -57423,7 +58608,7 @@ koi
jPp
xlS
qBU
-fif
+ujc
lPW
syN
mbp
@@ -57827,7 +59012,7 @@ uwm
jPp
fif
qBU
-fif
+oGK
lPW
syN
mbp
@@ -58229,9 +59414,9 @@ eSV
eSV
eSV
hTk
-xlS
+tGA
qBU
-fif
+rwh
nCG
mUk
syN
@@ -58432,8 +59617,8 @@ eSV
eSV
xst
suT
-qBU
-fif
+gIr
+iEX
xst
eSV
vCY
@@ -58633,9 +59818,9 @@ eSV
eSV
eSV
xst
-aOv
-qBU
-fif
+eVE
+gIr
+iEX
xst
eSV
eSV
@@ -58835,9 +60020,9 @@ eSV
eSV
eSV
xst
-aOv
+dob
ezh
-fif
+iEX
xst
eSV
eSV
@@ -59039,7 +60224,7 @@ eSV
xst
ckY
qBU
-fif
+vDP
xst
eSV
eSV
@@ -59239,7 +60424,7 @@ eSV
eSV
eSV
hTk
-aOv
+sBx
qBU
hTk
hTk
@@ -59443,7 +60628,7 @@ hoV
hTk
wHY
fiL
-hTk
+qKA
hoV
eSV
eSV
@@ -59643,9 +60828,9 @@ eSV
eSV
eSV
hTk
-aOv
+fDL
qBU
-hTk
+qKA
hoV
eSV
eSV
@@ -59844,8 +61029,8 @@ eSV
eSV
eSV
eSV
-xst
-aOv
+hTk
+kDf
qBU
hTk
hTk
@@ -60049,7 +61234,7 @@ eSV
xst
eVE
qBU
-xst
+qKA
eSV
eSV
eSV
@@ -60248,8 +61433,8 @@ eSV
eSV
eSV
eSV
-hTk
-iEX
+xst
+suT
fmi
xst
eSV
@@ -60451,7 +61636,8 @@ eSV
eSV
eSV
hTk
-qBU
+gMM
+evd
hTk
hTk
eSV
@@ -60542,7 +61728,6 @@ eSV
eSV
eSV
eSV
-eSV
"}
(160,1,1) = {"
eSV
@@ -60653,8 +61838,9 @@ eSV
eSV
eSV
xst
+cFo
qBU
-hTk
+xst
hoV
eSV
eSV
@@ -60744,7 +61930,6 @@ eSV
eSV
eSV
eSV
-eSV
"}
(161,1,1) = {"
eSV
@@ -60855,8 +62040,9 @@ eSV
eSV
eSV
xst
+suT
qBU
-hTk
+xst
hoV
eSV
eSV
@@ -60946,7 +62132,6 @@ eSV
eSV
eSV
eSV
-eSV
"}
(162,1,1) = {"
eSV
@@ -61057,6 +62242,7 @@ eSV
eSV
eSV
hTk
+kpm
qBU
hTk
hTk
@@ -61148,7 +62334,6 @@ eSV
eSV
eSV
eSV
-eSV
"}
(163,1,1) = {"
eSV
@@ -61260,7 +62445,7 @@ eSV
eSV
hTk
ofh
-evd
+bFd
xst
eSV
eSV
diff --git a/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm b/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm
index 4339aca65ab..73e464bc8e1 100644
--- a/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm
+++ b/maps/sccv_horizon/sccv_horizon-2_deck_2.dmm
@@ -36,14 +36,21 @@
/turf/simulated/wall/r_wall,
/area/security/prison)
"aal" = (
-/obj/machinery/alarm{
- pixel_y = 28
- },
/obj/machinery/light{
- dir = 1
+ dir = 8
},
-/turf/simulated/floor/tiled/freezer,
-/area/hallway/primary/central_two)
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/obj/machinery/light_switch{
+ pixel_x = -22;
+ pixel_y = 23
+ },
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-33"
+ },
+/turf/simulated/floor/wood,
+/area/chapel/main)
"aaq" = (
/obj/machinery/light{
dir = 4
@@ -267,6 +274,21 @@
},
/turf/simulated/floor/tiled/dark,
/area/hydroponics)
+"ahm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/mauve/full{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload_foyer)
"ahu" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -324,11 +346,6 @@
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled/dark,
/area/rnd/xenobiology/xenoflora_hazard)
-"aiv" = (
-/obj/structure/grille/broken,
-/obj/structure/lattice,
-/turf/simulated/open/airless,
-/area/horizonexterior)
"aiG" = (
/obj/structure/bed/stool/chair/padded/black{
dir = 4
@@ -336,26 +353,40 @@
/turf/simulated/floor/wood,
/area/library)
"aiP" = (
-/obj/machinery/atmospherics/binary/pump/high_power{
- name = "Aux Tanks Inlet"
+/obj/machinery/camera/network/engineering{
+ c_tag = "Engineering - Technical Storage";
+ dir = 8;
+ alarm_on = 1
},
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/light{
+/obj/machinery/light/small{
dir = 4
},
+/obj/effect/floor_decal/corner/yellow{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/turf/simulated/floor/tiled/dark,
-/area/maintenance/aux_atmospherics/deck_2/starboard)
+/area/engineering/storage/tech)
"ajt" = (
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/structure/lattice/catwalk/indoor/grate,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/random/junk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard)
"ajI" = (
@@ -415,6 +446,17 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room/tesla)
+"akX" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/structure/sign/emerg_exitZ_stairs/evac,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/industrial/loading/yellow{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/stairwell/central)
"alr" = (
/obj/structure/table/reinforced{
table_mat = "steel";
@@ -489,23 +531,24 @@
/turf/simulated/floor/plating,
/area/maintenance/wing/port/far)
"and" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/item/circuitboard/borgupload{
+ pixel_x = -1;
+ pixel_y = 1
},
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
+/obj/item/circuitboard/aiupload{
+ pixel_x = 2;
+ pixel_y = -2
},
-/obj/structure/cable{
- icon_state = "0-8"
+/obj/effect/floor_decal/corner_wide/blue/full{
+ dir = 8
},
-/turf/simulated/floor/plating,
-/area/maintenance/aux_atmospherics/deck_2/starboard)
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/reinforced,
+/area/engineering/storage/tech)
"ann" = (
/obj/effect/floor_decal/corner/mauve{
dir = 8
@@ -534,6 +577,14 @@
/obj/structure/lattice,
/turf/simulated/open,
/area/maintenance/wing/starboard)
+"aoh" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/central_two)
"aor" = (
/obj/machinery/suit_cycler/engineering,
/obj/effect/floor_decal/industrial/outline/red,
@@ -555,9 +606,27 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/hallway)
"aoC" = (
-/obj/effect/map_effect/wingrille_spawn/reinforced,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
+/obj/machinery/camera/network/supply{
+ c_tag = "Operations - Upper Warehouse Starboard";
+ dir = 1
+ },
/turf/simulated/floor/tiled,
-/area/chapel/office)
+/area/operations/office)
"aoD" = (
/turf/simulated/wall,
/area/rnd/xenobiology)
@@ -612,6 +681,13 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_monitoring/tesla)
+"aqR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled,
+/area/maintenance/aux_atmospherics/deck_2/starboard)
"aqT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/floor_decal/spline/fancy/wood{
@@ -620,13 +696,13 @@
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
"aqV" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/effect/floor_decal/corner/brown{
+ dir = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/emcloset,
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/operations/office)
"aqZ" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -659,12 +735,25 @@
/turf/simulated/floor/tiled,
/area/hallway/engineering)
"arK" = (
-/obj/machinery/computer/shuttle_control/lift{
- pixel_y = -1;
- shuttle_tag = "Operations Lift"
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Warehouse Elevator";
+ req_one_access = list(26, 31, 48, 67);
+ autoclose = 0;
+ dir = 2
+ },
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 2
},
/turf/simulated/floor/tiled/dark,
-/area/turbolift/scc_ship/cargo_lift)
+/area/operations/office)
"ask" = (
/obj/structure/shuttle_part/scc_space_ship{
icon_state = "d3-4"
@@ -678,11 +767,19 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/cable/orange{
+/obj/effect/floor_decal/corner/mauve/full{
+ dir = 8
+ },
+/obj/structure/cable{
icon_state = "4-8"
},
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/obj/machinery/turretid/stun{
+ name = "\improper AI Upload Turret Control Console";
+ pixel_y = 32;
+ check_synth = 1
+ },
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload)
"asG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -755,6 +852,13 @@
},
/turf/simulated/floor/tiled,
/area/medical/first_responder)
+"auG" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/service{
+ name = "Chapel"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
"auL" = (
/obj/structure/closet/crate,
/obj/random/loot,
@@ -825,6 +929,11 @@
},
/turf/simulated/floor/tiled,
/area/medical/first_responder)
+"avu" = (
+/obj/structure/lattice,
+/obj/structure/grille,
+/turf/simulated/open/airless,
+/area/horizonexterior)
"avy" = (
/obj/effect/floor_decal/spline/plain,
/obj/machinery/light{
@@ -857,6 +966,21 @@
},
/turf/simulated/floor/tiled,
/area/assembly/chargebay)
+"awH" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 12
+ },
+/obj/structure/mirror{
+ pixel_x = 28;
+ pixel_y = -3
+ },
+/obj/effect/floor_decal/corner_wide/grey/diagonal,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/operations/break_room)
"axB" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -881,17 +1005,10 @@
/turf/simulated/floor/carpet,
/area/library)
"axL" = (
-/obj/machinery/mass_driver{
- _wifi_id = "chapel_driver";
- id = "chapel_driver"
- },
-/obj/effect/floor_decal/industrial/warning/cee{
- dir = 1
- },
-/obj/machinery/light/small/red{
- dir = 4
- },
-/turf/simulated/floor/reinforced,
+/obj/machinery/light/small,
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/structure/table/wood,
+/turf/simulated/floor/wood,
/area/chapel/office)
"axS" = (
/obj/effect/floor_decal/corner/white/diagonal,
@@ -902,12 +1019,15 @@
/turf/simulated/floor/tiled,
/area/medical/first_responder)
"axW" = (
-/obj/structure/railing/mapped,
-/obj/item/material/shard{
- icon_state = "medium"
+/obj/machinery/light/small/emergency{
+ dir = 1
},
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/decal/cleanable/cobweb2,
+/obj/random/loot,
/turf/simulated/floor/plating,
-/area/maintenance/wing/starboard/far)
+/area/maintenance/wing/starboard)
"aya" = (
/obj/structure/bed/stool/chair/office/dark,
/obj/machinery/light{
@@ -931,16 +1051,19 @@
/turf/simulated/floor/tiled,
/area/hydroponics)
"ayv" = (
-/obj/effect/floor_decal/corner/paleblue{
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/corner/green{
dir = 9
},
-/obj/machinery/light{
- dir = 8
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/effect/landmark{
+ name = "JoinLateLift"
},
-/obj/item/device/radio/beacon,
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/sleep/cryo/living_quarters_lift)
"ayA" = (
@@ -957,7 +1080,10 @@
/area/hallway/primary/central_two)
"ayM" = (
/obj/structure/table/standard,
-/obj/item/paper_scanner,
+/obj/machinery/cell_charger,
+/obj/effect/floor_decal/corner/green/full{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/storage/primary)
"ayS" = (
@@ -1017,11 +1143,14 @@
/turf/simulated/floor/wood,
/area/hydroponics/garden)
"azO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/obj/effect/floor_decal/corner/mauve/full{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload)
"aAd" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/turf/simulated/floor/plating,
@@ -1053,25 +1182,25 @@
/turf/simulated/floor/plating,
/area/maintenance/wing/port)
"aBq" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = 12
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
},
-/obj/structure/mirror{
- pixel_x = 28;
- pixel_y = -3
+/obj/machinery/computer/shuttle_control/lift{
+ pixel_y = 23;
+ shuttle_tag = "Operations Lift";
+ pixel_x = 9
},
-/obj/effect/floor_decal/corner_wide/grey/diagonal,
-/obj/machinery/power/apc/low{
- dir = 1;
- name = "north bump";
- pixel_y = 24
+/turf/simulated/floor/tiled/dark,
+/area/turbolift/scc_ship/cargo_lift)
+"aBx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
-/obj/structure/cable/green{
- icon_state = "0-2"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/turf/simulated/floor/tiled/white,
-/area/operations/break_room)
+/turf/simulated/floor/tiled,
+/area/maintenance/aux_atmospherics/deck_2/starboard)
"aBY" = (
/obj/effect/floor_decal/industrial/warning{
dir = 1
@@ -1079,13 +1208,36 @@
/turf/simulated/floor/plating,
/area/engineering/engine_room/tesla)
"aCe" = (
-/obj/structure/shuttle_part/scc_space_ship{
- icon_state = "d2-1"
+/obj/effect/floor_decal/corner/brown{
+ dir = 6
},
-/turf/simulated/wall,
-/area/storage/primary)
+/obj/machinery/disposal/small/west,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
+"aCR" = (
+/obj/machinery/door/airlock/highsecurity{
+ name = "Secure Technical Storage";
+ req_one_access = list(19, 23)
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/engineering/storage/tech)
"aCS" = (
-/obj/effect/floor_decal/industrial/warning/cee,
+/obj/effect/floor_decal/industrial/hatch/red,
+/obj/machinery/mass_driver{
+ _wifi_id = "chapel_driver";
+ id = "chapel_driver"
+ },
/turf/simulated/floor/reinforced,
/area/chapel/office)
"aCU" = (
@@ -1125,6 +1277,16 @@
},
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
+"aDR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
"aDY" = (
/obj/effect/floor_decal/corner_wide/yellow/full,
/turf/simulated/floor/tiled/dark,
@@ -1139,15 +1301,17 @@
/obj/machinery/atmospherics/pipe/manifold/hidden{
dir = 1
},
+/obj/effect/floor_decal/corner/green/full,
/turf/simulated/floor/tiled,
-/area/hallway/primary/central_two)
+/area/security/checkpoint2)
"aFd" = (
/obj/structure/disposalpipe/segment,
/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/hallway/primary/central_two)
"aFm" = (
-/turf/simulated/floor/tiled/ramp/bottom,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
"aFE" = (
/obj/structure/cable/green{
@@ -1163,11 +1327,18 @@
/turf/simulated/floor/tiled/dark,
/area/engineering/engine_monitoring)
"aFJ" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/central_two)
+/area/security/checkpoint2)
"aFK" = (
/obj/structure/table/wood,
/obj/machinery/door/window/southright{
@@ -1284,6 +1455,12 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
+"aJp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/lino/grey,
+/area/chapel/main)
"aJS" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled/dark,
@@ -1293,12 +1470,14 @@
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
"aKv" = (
-/obj/machinery/door/airlock/freezer{
- id_tag = "arrivals_unit_2";
- name = "Unit 2"
+/obj/structure/bed/stool/chair/wood{
+ dir = 8
},
-/turf/simulated/floor/tiled/freezer,
-/area/hallway/primary/central_two)
+/obj/effect/floor_decal/spline/fancy{
+ dir = 10
+ },
+/turf/simulated/floor/wood,
+/area/chapel/main)
"aKL" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/structure/closet/emcloset,
@@ -1336,10 +1515,6 @@
/turf/simulated/floor/plating,
/area/maintenance/wing/port)
"aMa" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Chaplain Office's Maintenance";
- req_one_access = list(22)
- },
/obj/structure/cable/green{
icon_state = "4-8"
},
@@ -1352,12 +1527,12 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
+/obj/machinery/door/airlock/service{
+ name = "Chaplain's Office and Chapel Storage";
+ req_access = list(22)
+ },
+/turf/simulated/floor/wood,
/area/chapel/office)
-"aMd" = (
-/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
-/area/maintenance/hangar/port)
"aMl" = (
/obj/structure/punching_bag,
/obj/effect/floor_decal/corner/brown{
@@ -1486,12 +1661,14 @@
},
/area/engineering/engine_room)
"aQb" = (
-/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
/turf/simulated/floor/tiled,
-/area/hallway/primary/central_two)
+/area/security/checkpoint2)
"aQc" = (
/obj/machinery/door/airlock/glass_engineering{
name = "Tesla Bay";
@@ -1553,10 +1730,11 @@
/turf/simulated/floor/tiled,
/area/engineering/smes)
"aRu" = (
-/obj/structure/railing/mapped,
-/obj/structure/grille,
-/turf/simulated/floor/plating,
-/area/maintenance/wing/starboard/far)
+/obj/structure/shuttle_part/scc_space_ship{
+ icon_state = "d2-2"
+ },
+/turf/simulated/wall,
+/area/operations/lobby)
"aSd" = (
/obj/machinery/access_button{
command = "cycle_interior";
@@ -1571,8 +1749,15 @@
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 10
},
+/obj/effect/floor_decal/corner/green/full{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_x = 28;
+ dir = 8
+ },
/turf/simulated/floor/tiled,
-/area/hallway/primary/central_two)
+/area/security/checkpoint2)
"aSg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
@@ -1610,7 +1795,7 @@
/area/hallway/engineering)
"aSB" = (
/obj/machinery/door/airlock/maintenance{
- req_access = list(12)
+ req_one_access = list(26, 31, 48, 67)
},
/obj/structure/cable/green{
icon_state = "4-8"
@@ -1622,8 +1807,11 @@
dir = 4
},
/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/dark,
-/area/operations/storage)
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/operations/office)
"aSO" = (
/obj/machinery/atmospherics/portables_connector{
dir = 8
@@ -1646,28 +1834,20 @@
/turf/simulated/floor/grass/alt,
/area/hallway/primary/central_two)
"aSV" = (
-/obj/structure/lattice,
-/obj/machinery/camera/network/command{
- c_tag = "AI Core - Core Ladder"
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
},
-/turf/simulated/open,
+/obj/effect/floor_decal/spline/fancy,
+/turf/simulated/floor/tiled/dark,
/area/turret_protected/ai)
"aTa" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
+/obj/machinery/light,
+/obj/effect/floor_decal/corner/green{
+ dir = 10
},
-/obj/item/storage/toolbox/electrical{
- pixel_x = 1;
- pixel_y = -1
- },
-/obj/item/device/multitool,
-/obj/machinery/camera/network/engineering{
- c_tag = "Engineering - Technical Storage";
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/engineering/storage/tech)
+/obj/machinery/firealarm/south,
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"aTd" = (
/obj/structure/closet/crate,
/obj/random/loot,
@@ -1739,11 +1919,8 @@
/turf/simulated/floor/tiled/white,
/area/hallway/medical)
"aUB" = (
-/obj/structure/railing/mapped{
- dir = 4
- },
-/obj/structure/railing/mapped{
- dir = 1
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
},
/turf/simulated/floor/plating,
/area/maintenance/aft)
@@ -1782,12 +1959,12 @@
/turf/simulated/floor/plating,
/area/engineering/engine_room)
"aVO" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 8
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/corner/mauve{
+ dir = 9
+ },
/turf/simulated/floor/tiled,
-/area/turret_protected/ai_upload)
+/area/turret_protected/ai_upload_foyer)
"aVX" = (
/obj/structure/closet/secure_closet/security_cadet,
/obj/machinery/light{
@@ -1862,17 +2039,9 @@
"aXf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/corner/mauve{
- dir = 9
- },
-/obj/effect/floor_decal/corner/mauve{
- dir = 6
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload)
+/obj/effect/floor_decal/corner/blue/diagonal,
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload_foyer)
"aXX" = (
/obj/effect/floor_decal/corner/brown{
dir = 9
@@ -1881,6 +2050,7 @@
pixel_x = -32
},
/obj/structure/closet/emcloset,
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
"aXZ" = (
@@ -1888,12 +2058,13 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/maintenance{
- req_access = list(12)
- },
/obj/machinery/atmospherics/pipe/simple/visible/universal,
/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/dark,
+/obj/machinery/door/airlock/atmos{
+ name = "Deck 2 Aft Auxiliary Atmospherics";
+ req_one_access = list(11, 24)
+ },
+/turf/simulated/floor/plating,
/area/maintenance/aux_atmospherics/deck_2/starboard)
"aYf" = (
/obj/machinery/light,
@@ -1914,22 +2085,23 @@
/turf/simulated/floor/tiled/white,
/area/medical/pharmacy)
"aYE" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/hangar/port)
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/chapel/office)
"aYI" = (
/obj/effect/floor_decal/corner/mauve/diagonal,
/obj/structure/window/reinforced{
@@ -1981,7 +2153,7 @@
req_access = list(13)
},
/turf/simulated/floor/plating,
-/area/hallway/primary/central_two)
+/area/security/checkpoint2)
"aZA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -1989,9 +2161,18 @@
/turf/simulated/floor/tiled,
/area/operations/office)
"aZK" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_wide/blue{
+ dir = 6
+ },
/turf/simulated/floor/reinforced,
/area/storage/secure)
"aZR" = (
@@ -2036,6 +2217,19 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armory)
+"bbI" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
"bca" = (
/obj/structure/cable/green{
icon_state = "2-4"
@@ -2151,8 +2345,9 @@
},
/area/crew_quarters/kitchen/freezer)
"bee" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
+/obj/structure/closet/toolcloset,
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 4
},
/turf/simulated/floor/tiled/dark,
/area/maintenance/wing/starboard/far)
@@ -2183,6 +2378,17 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/security/prison)
+"beY" = (
+/obj/structure/grille,
+/turf/simulated/open/airless,
+/area/horizonexterior)
+"bff" = (
+/obj/machinery/camera/network/command{
+ c_tag = "AI Core - External";
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/turret_protected/ai_upload)
"bfB" = (
/obj/machinery/light/small,
/obj/machinery/alarm{
@@ -2191,18 +2397,32 @@
},
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/bar)
-"bgN" = (
-/obj/machinery/atmospherics/portables_connector,
-/obj/machinery/portable_atmospherics/canister/air/airlock,
-/obj/structure/window/reinforced{
- dir = 1
+"bfF" = (
+/obj/effect/floor_decal/corner/mauve{
+ dir = 10
},
-/obj/structure/window/reinforced{
+/obj/effect/floor_decal/spline/plain{
dir = 8
},
-/obj/effect/floor_decal/industrial/outline/red,
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/obj/machinery/light,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -28
+ },
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload)
+"bgN" = (
+/obj/machinery/door/airlock/highsecurity{
+ name = "AI SMES and External Maintenance";
+ req_access = list(16)
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload)
"bgS" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -2232,15 +2452,11 @@
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
"bhT" = (
-/obj/machinery/shieldwallgen{
- anchored = 1
+/obj/effect/floor_decal/corner/mauve{
+ dir = 6
},
-/obj/effect/floor_decal/industrial/warning/full,
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/reinforced,
-/area/turret_protected/ai)
+/turf/simulated/floor/tiled,
+/area/rnd/hallway)
"bib" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -2341,8 +2557,9 @@
/turf/simulated/floor/plating,
/area/maintenance/aft)
"bkQ" = (
-/obj/effect/map_effect/airlock/s_to_n,
-/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/porta_turret,
+/turf/simulated/floor/reinforced,
/area/turret_protected/ai)
"blt" = (
/obj/machinery/computer/operating{
@@ -2376,10 +2593,23 @@
req_one_access = list(13,65)
},
/turf/simulated/floor/plating,
-/area/hallway/primary/central_two)
+/area/security/checkpoint2)
"bmk" = (
-/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
-/area/turret_protected/ai_upload_foyer)
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/machinery/camera/network/command{
+ c_tag = "AI Core - SMES";
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/effect/floor_decal/corner/yellow/full{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload)
"bmq" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
@@ -2392,6 +2622,11 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/hallway)
+"bmH" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/sign/emerg_exitZ,
+/turf/simulated/floor/reinforced,
+/area/horizonexterior)
"bmM" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -2399,10 +2634,10 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/door/airlock/maintenance{
+/obj/machinery/door/airlock/maintenance_hatch{
req_access = list(12)
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/aft)
"bmS" = (
@@ -2437,16 +2672,10 @@
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
"boE" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/structure/grille/broken,
-/obj/item/material/shard{
- icon_state = "medium"
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
+/obj/structure/closet/crate,
+/obj/random/loot,
+/obj/item/storage/bag/inflatable,
+/turf/simulated/floor/tiled,
/area/maintenance/aux_atmospherics/deck_2/starboard)
"boR" = (
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
@@ -2526,26 +2755,27 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/maintenance{
- req_access = list(12)
- },
/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/dark,
+/obj/machinery/door/airlock/maintenance_hatch,
+/turf/simulated/floor/plating,
/area/maintenance/wing/port/far)
"bpY" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
+/obj/structure/railing/mapped,
+/obj/structure/railing/mapped{
+ dir = 8
},
-/obj/structure/window/reinforced{
- dir = 1
+/obj/structure/railing/mapped{
+ dir = 4
},
-/turf/simulated/floor/tiled,
-/area/operations/storage)
+/turf/simulated/open,
+/area/operations/office)
"bqe" = (
-/obj/machinery/recharge_station,
-/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/corner/mauve/full{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy/corner,
/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/area/turret_protected/ai)
"bqW" = (
/obj/effect/floor_decal/corner_wide/yellow/full{
dir = 8
@@ -2608,18 +2838,11 @@
/turf/simulated/floor/plating,
/area/engineering/engine_waste)
"bsM" = (
-/obj/structure/closet/wardrobe/chaplain_black,
-/obj/item/storage/box/fancy/crayons,
-/obj/item/storage/box/fancy/candle_box,
-/obj/item/storage/box/fancy/candle_box,
/obj/effect/floor_decal/spline/fancy/wood{
dir = 5
},
/obj/machinery/firealarm/north,
-/obj/machinery/camera/network/service{
- c_tag = "Service - Chaplain Office";
- dir = 8
- },
+/obj/machinery/disposal/small/west,
/turf/simulated/floor/wood,
/area/chapel/office)
"bsQ" = (
@@ -2680,6 +2903,25 @@
},
/turf/simulated/floor/tiled/dark,
/area/hydroponics)
+"buM" = (
+/obj/structure/table/wood,
+/obj/item/flame/candle,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/machinery/power/apc/low{
+ name = "south bump";
+ pixel_x = 24;
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/wood,
+/area/chapel/main)
"bve" = (
/obj/structure/window/reinforced{
dir = 4
@@ -2777,6 +3019,27 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room/tesla)
+"byC" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small/emergency{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor/plating,
+/area/maintenance/hangar/port)
"byI" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -2793,6 +3056,12 @@
},
/turf/simulated/floor/carpet/rubber,
/area/rnd/telesci)
+"byZ" = (
+/obj/machinery/light/small/emergency{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/maintenance/wing/starboard)
"bzh" = (
/turf/simulated/wall/r_wall,
/area/maintenance/wing/port)
@@ -2812,6 +3081,14 @@
/obj/machinery/atmospherics/pipe/simple/visible,
/turf/simulated/floor/tiled/dark,
/area/maintenance/aux_atmospherics/deck_2/starboard)
+"bzO" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
"bzY" = (
/obj/item/modular_computer/console/preset/medical{
dir = 1
@@ -2827,17 +3104,9 @@
/turf/simulated/floor/plating,
/area/engineering/engine_room)
"bAF" = (
-/obj/effect/floor_decal/corner/green{
- dir = 10
- },
-/obj/effect/floor_decal/spline/plain/corner{
- dir = 1
- },
-/obj/structure/extinguisher_cabinet{
- pixel_y = -32
- },
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/central_two)
+/obj/structure/foamedmetal,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/starboard/far)
"bAU" = (
/obj/structure/table/wood,
/obj/item/paper_bin,
@@ -2867,6 +3136,7 @@
/obj/machinery/alarm{
pixel_y = 28
},
+/obj/structure/flora/pottedplant/random,
/turf/simulated/floor/tiled,
/area/operations/break_room)
"bBO" = (
@@ -2878,7 +3148,7 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"bCl" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
@@ -2889,8 +3159,12 @@
/turf/simulated/floor/tiled/white,
/area/medical/gen_treatment)
"bCv" = (
-/obj/effect/map_effect/wingrille_spawn/reinforced,
-/obj/machinery/door/firedoor,
+/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
+/obj/machinery/door/blast/shutters/open{
+ dir = 4;
+ id = "seconddeckdocksaf";
+ name = "Security Checkpoint Shutter"
+ },
/turf/simulated/floor/plating,
/area/security/checkpoint2)
"bCD" = (
@@ -2920,11 +3194,12 @@
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard)
"bDj" = (
-/obj/machinery/door/window/westleft,
-/turf/simulated/floor/tiled/ramp{
- dir = 8
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
-/area/maintenance/wing/starboard/far)
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/storage/tech)
"bDo" = (
/turf/simulated/wall,
/area/security/lobby)
@@ -2994,7 +3269,7 @@
dir = 4
},
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"bGh" = (
/turf/simulated/wall/r_wall,
/area/rnd/telesci)
@@ -3041,15 +3316,12 @@
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
"bHm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/status_display{
+ pixel_y = 32
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/alarm{
- pixel_y = 28
- },
-/turf/simulated/floor/plating,
-/area/maintenance/aux_atmospherics/deck_2/starboard)
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/reinforced,
+/area/engineering/storage/tech)
"bHs" = (
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/structure/table/stone/marble,
@@ -3080,6 +3352,22 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
+"bHG" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/starboard)
"bHL" = (
/obj/machinery/camera/network/research{
c_tag = "Research - Telescience Test Chamber A";
@@ -3151,6 +3439,16 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/wing/port/far)
+"bKR" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/structure/bookcase/libraryspawn/religion,
+/turf/simulated/floor/wood,
+/area/chapel/main)
"bKX" = (
/obj/structure/sink{
dir = 4;
@@ -3174,12 +3472,12 @@
/turf/simulated/floor/plating,
/area/engineering/engine_monitoring/tesla)
"bNd" = (
-/obj/machinery/power/apc/high{
- pixel_y = -24
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
+/obj/machinery/portable_atmospherics/canister/phoron,
+/obj/effect/floor_decal/corner_wide/blue{
+ dir = 10
},
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light,
/turf/simulated/floor/reinforced,
/area/storage/secure)
"bNF" = (
@@ -3228,23 +3526,20 @@
/turf/simulated/floor/wood,
/area/hydroponics/garden)
"bOI" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
/obj/structure/disposalpipe/segment{
- dir = 2;
+ dir = 4;
icon_state = "pipe-c"
},
-/obj/structure/lattice/catwalk/indoor/grate,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ dir = 6
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+ dir = 6
},
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/hangar/port)
"bOR" = (
@@ -3285,11 +3580,23 @@
/turf/simulated/floor/tiled/white,
/area/medical/reception)
"bPh" = (
-/obj/structure/table/standard,
-/obj/machinery/recharger,
-/obj/machinery/firealarm/east,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
/turf/simulated/floor/tiled,
-/area/storage/primary)
+/area/operations/lobby)
"bPp" = (
/obj/structure/cable/green{
icon_state = "2-4"
@@ -3334,49 +3641,77 @@
/turf/simulated/floor/tiled,
/area/security/lobby)
"bQd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/engineering/storage/tech)
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/machinery/atm{
+ pixel_y = -32
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"bQt" = (
-/obj/effect/map_effect/airlock/w_to_e,
+/obj/effect/map_effect/airlock/w_to_e{
+ radio_frequency = 2006;
+ name = "Security Maintenance AIrlock (2006)"
+ },
/turf/simulated/wall,
/area/hydroponics)
"bQv" = (
-/obj/machinery/door/airlock/freezer{
- id_tag = "arrivals_unit_1";
- name = "Unit 1"
- },
-/turf/simulated/floor/tiled/freezer,
-/area/hallway/primary/central_two)
-"bQx" = (
-/obj/structure/railing/mapped{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
/obj/machinery/light{
dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
-"bQB" = (
-/obj/structure/flora/pottedplant/random,
-/obj/machinery/light{
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
-/obj/effect/floor_decal/spline/fancy/wood{
+/obj/structure/bed/stool/chair{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
+"bQx" = (
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/aft)
+"bQB" = (
+/obj/structure/bed/stool/chair/wood{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy{
dir = 9
},
/turf/simulated/floor/wood,
/area/chapel/main)
"bQW" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/light/small/emergency{
- dir = 4
+/obj/structure/sink/kitchen{
+ dir = 8;
+ pixel_x = 20
},
-/turf/simulated/floor/plating,
-/area/maintenance/wing/starboard)
+/obj/effect/floor_decal/corner/purple{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/ringer{
+ department = "Auxiliary Custodial";
+ id = "ringers_custodialaux";
+ name = "\improper Auxiliary Custodial Ringer Terminal";
+ req_access = list(26);
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/janitor/stairs)
"bRe" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -3429,11 +3764,11 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/effect/floor_decal/corner/mauve{
+ dir = 5
},
/turf/simulated/floor/tiled,
-/area/turret_protected/ai_upload)
+/area/turret_protected/ai_upload_foyer)
"bTy" = (
/obj/structure/closet/secure_closet/brig,
/obj/effect/floor_decal/corner/blue/full{
@@ -3522,32 +3857,29 @@
/turf/simulated/floor/tiled,
/area/engineering/smes)
"bVw" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/circuitboard/rdconsole,
-/obj/item/circuitboard/rdserver{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/simulated/floor/plating,
-/area/engineering/storage/tech)
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/vending/snack,
+/turf/simulated/floor/tiled/dark,
+/area/operations/lobby)
"bWv" = (
+/obj/machinery/door/airlock/glass{
+ name = "Tool Storage"
+ },
+/obj/machinery/door/firedoor,
/obj/structure/cable/green{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/storage/primary)
"bWz" = (
-/obj/structure/railing/mapped{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 5
},
-/turf/simulated/floor/plating,
-/area/maintenance/wing/starboard)
+/turf/simulated/floor/tiled,
+/area/maintenance/aux_atmospherics/deck_2/starboard)
"bWB" = (
/obj/structure/cable{
icon_state = "1-4"
@@ -3556,14 +3888,18 @@
/area/engineering/smes/tesla)
"bXB" = (
/obj/structure/cable/green{
- icon_state = "1-2"
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment{
- dir = 1;
+ dir = 8;
icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/operations/lobby)
"bXR" = (
@@ -3590,22 +3926,27 @@
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/structure/lattice/catwalk/indoor/grate,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
dir = 1
},
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard)
"bYl" = (
+/obj/structure/foamedmetal,
/obj/structure/shuttle_part/scc_space_ship{
icon_state = "d2-1"
},
-/obj/structure/girder,
/turf/simulated/floor/plating,
-/area/engineering/storage/tech)
+/area/operations/lobby)
"bYB" = (
/obj/machinery/power/apc{
dir = 8;
@@ -3642,18 +3983,10 @@
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
"bZj" = (
-/obj/structure/flora/pottedplant/random,
-/obj/machinery/light{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 10
- },
-/obj/machinery/light_switch{
- pixel_x = -22;
- pixel_y = 23
- },
-/turf/simulated/floor/wood,
+/turf/simulated/floor/lino/grey,
/area/chapel/main)
"bZu" = (
/obj/effect/floor_decal/industrial/outline/yellow,
@@ -3694,8 +4027,11 @@
/turf/simulated/floor/tiled/dark,
/area/maintenance/wing/starboard)
"cam" = (
-/turf/simulated/wall,
-/area/bridge/third_deck_stairs)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/maintenance/aux_atmospherics/deck_2/starboard)
"can" = (
/obj/machinery/atmospherics/pipe/manifold/hidden,
/obj/effect/floor_decal/industrial/warning{
@@ -3714,17 +4050,15 @@
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
"ccl" = (
-/obj/structure/cable/green{
- icon_state = "2-8"
+/obj/effect/floor_decal/corner/green{
+ dir = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/industrial/loading/yellow{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
+/turf/simulated/floor/tiled,
+/area/horizon/stairwell/central)
"ccn" = (
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
/area/crew_quarters/kitchen/freezer)
@@ -3825,6 +4159,7 @@
/obj/structure/window/reinforced{
dir = 4
},
+/obj/structure/window/reinforced,
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard)
"cfw" = (
@@ -3838,13 +4173,10 @@
/turf/simulated/floor/tiled/white,
/area/medical/reception)
"cfz" = (
-/obj/structure/railing/mapped{
- dir = 8
- },
/obj/structure/railing/mapped{
dir = 1
},
-/turf/simulated/open,
+/turf/simulated/floor/tiled,
/area/hallway/primary/central_two)
"cfI" = (
/obj/machinery/atmospherics/omni/filter{
@@ -3858,31 +4190,39 @@
/obj/effect/landmark/engine_setup/filter,
/turf/simulated/floor/plating,
/area/engineering/engine_waste)
-"cgw" = (
-/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/wing/starboard)
"cgP" = (
-/turf/simulated/floor/tiled/freezer,
+/obj/effect/floor_decal/corner_wide/grey/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
/area/operations/break_room)
+"cgU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/maintenance/aux_atmospherics/deck_2/starboard)
"chf" = (
/obj/machinery/vending/snack,
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
"chj" = (
-/obj/effect/floor_decal/corner/blue{
- dir = 6
+/obj/structure/closet/secure_closet/security,
+/obj/machinery/alarm{
+ pixel_y = 28
},
-/obj/structure/cable/green{
- icon_state = "4-8"
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled,
+/turf/simulated/floor/tiled/dark,
/area/security/checkpoint2)
"chz" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
@@ -3892,16 +4232,31 @@
/turf/simulated/floor/plating,
/area/engineering/engine_room)
"cil" = (
-/obj/structure/railing/mapped,
-/obj/structure/railing/mapped{
+/obj/structure/closet/jcloset,
+/obj/effect/floor_decal/corner/purple{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/item/reagent_containers/spray/cleaner,
+/obj/item/grenade/chem_grenade/cleaner,
+/obj/item/grenade/chem_grenade/cleaner,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled,
+/area/janitor/stairs)
+"ciP" = (
+/obj/effect/floor_decal/spline/fancy/wood/cee{
+ dir = 4
+ },
+/obj/structure/bed/stool/chair/padded/brown{
dir = 8
},
-/obj/structure/grille,
-/turf/simulated/floor/plating,
-/area/maintenance/wing/starboard/far)
-"ciP" = (
-/turf/simulated/wall,
-/area/operations/storage)
+/turf/simulated/floor/wood,
+/area/operations/office)
"cjg" = (
/obj/effect/floor_decal/industrial/hatch/yellow,
/obj/effect/floor_decal/industrial/warning/full,
@@ -3933,9 +4288,7 @@
/obj/effect/floor_decal/industrial/warning{
dir = 6
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
+/obj/structure/trash_pile,
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard)
"cks" = (
@@ -4037,11 +4390,16 @@
/turf/simulated/floor/tiled/white,
/area/rnd/xenobiology)
"cne" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/item/material/ashtray/bronze{
+ pixel_x = -5;
+ pixel_y = 2
},
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/obj/structure/table/wood,
/turf/simulated/floor/tiled,
-/area/hallway/primary/central_two)
+/area/security/checkpoint2)
"cns" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 27
@@ -4074,25 +4432,32 @@
},
/obj/item/pen,
/obj/machinery/firealarm/west,
-/obj/item/device/radio/intercom{
- dir = 1;
- name = "Station Intercom (General)";
- pixel_y = -25
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
},
/turf/simulated/floor/wood,
/area/operations/qm)
"cpi" = (
+/obj/effect/floor_decal/corner/mauve/full{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 6
},
-/obj/machinery/computer/cryopod/robot{
- pixel_y = 32
+/obj/machinery/button/remote/blast_door{
+ id = "AICoreFoyer";
+ name = "AI Foyer Maintenance Blast Door";
+ req_access = list(16);
+ pixel_y = 25
},
-/obj/structure/cable/orange{
- icon_state = "2-4"
+/obj/machinery/camera/network/command{
+ c_tag = "AI Core - Foyer"
},
-/turf/simulated/floor/reinforced,
-/area/turret_protected/ai_upload)
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload_foyer)
"cpl" = (
/turf/simulated/wall,
/area/engineering/storage/tech)
@@ -4118,15 +4483,15 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/corner/brown{
- dir = 9
- },
/obj/structure/disposalpipe/segment{
dir = 4;
- icon_state = "conpipe-c"
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 1
},
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/operations/office)
"cre" = (
/obj/machinery/lapvend,
/obj/machinery/camera/network/service{
@@ -4143,6 +4508,11 @@
dir = 1
},
/obj/machinery/light/small/emergency,
+/obj/machinery/camera/network/engineering{
+ c_tag = "Engineering - Deck 2 - Research Substation";
+ dir = 1;
+ alarm_on = 1
+ },
/turf/simulated/floor/plating,
/area/maintenance/substation/research)
"crP" = (
@@ -4162,13 +4532,6 @@
},
/turf/simulated/floor/tiled/white,
/area/hallway/medical)
-"csA" = (
-/obj/machinery/power/terminal{
- dir = 4
- },
-/obj/structure/cable/yellow,
-/turf/simulated/floor/plating,
-/area/engineering/engine_monitoring/tesla)
"ctg" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/tiled/dark,
@@ -4206,7 +4569,10 @@
/turf/simulated/floor/tiled,
/area/security/brig)
"cww" = (
-/obj/effect/map_effect/airlock/s_to_n/long/square/wide,
+/obj/effect/map_effect/airlock/s_to_n/long/square/wide{
+ name = "Deck 2 Starboard Aft Maintenance Airlock (2001)";
+ radio_frequency = 2001
+ },
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
/area/maintenance/wing/starboard)
"cwL" = (
@@ -4231,11 +4597,11 @@
/turf/simulated/floor/reinforced,
/area/crew_quarters/kitchen/freezer)
"cxc" = (
-/obj/structure/railing/mapped,
-/obj/structure/table/rack,
-/obj/random/loot,
-/turf/simulated/floor/plating,
-/area/maintenance/hangar/port)
+/obj/effect/floor_decal/corner/green/full{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/stairwell/central)
"cxi" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -4257,17 +4623,12 @@
/turf/simulated/floor/tiled,
/area/security/main)
"cyG" = (
-/obj/structure/window/shuttle/scc_space_ship,
-/obj/structure/grille,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
+/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
+/obj/machinery/door/blast/regular/open{
+ name = "AI Maintenance Blast Door";
id = "AICore";
- name = "AI core maintenance hatch";
- opacity = 0
+ dir = 4
},
-/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/turret_protected/ai)
"cyZ" = (
@@ -4324,6 +4685,18 @@
/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard)
+"cAf" = (
+/obj/machinery/cell_charger{
+ pixel_y = 5
+ },
+/obj/item/device/multitool,
+/obj/structure/table/steel,
+/obj/effect/floor_decal/corner/yellow{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/storage/tech)
"cAp" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -4360,23 +4733,12 @@
/turf/simulated/floor/plating,
/area/engineering/engine_room/tesla)
"cBF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
/obj/effect/floor_decal/industrial/warning/corner{
dir = 1
},
-/obj/structure/lattice/catwalk/indoor/grate,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/hangar/port)
"cBX" = (
@@ -4399,7 +4761,7 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/xenobiology/xenoflora)
"cCy" = (
-/obj/machinery/door/airlock/maintenance_hatch{
+/obj/machinery/door/airlock/maintenance{
req_access = list(24)
},
/turf/simulated/floor/tiled/dark,
@@ -4419,13 +4781,13 @@
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
"cDE" = (
-/obj/structure/cable/green{
- icon_state = "11-2"
+/obj/structure/railing/mapped,
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/zpipe/down/supply,
-/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,
-/obj/structure/lattice/catwalk,
-/turf/simulated/open,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
/area/maintenance/hangar/port)
"cDV" = (
/obj/effect/floor_decal/corner/green{
@@ -4513,10 +4875,6 @@
/turf/simulated/floor/tiled/dark,
/area/hallway/engineering)
"cJI" = (
-/obj/effect/floor_decal/corner/paleblue{
- dir = 10
- },
-/obj/structure/closet/secure_closet/personal,
/obj/machinery/camera/network/second_deck{
c_tag = "Second Deck - Living Quarters Lift";
dir = 1
@@ -4524,6 +4882,16 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -28
+ },
+/obj/structure/closet/emcloset,
+/obj/item/storage/toolbox/emergency,
+/obj/item/crowbar/red,
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/sleep/cryo/living_quarters_lift)
"cJU" = (
@@ -4546,33 +4914,32 @@
/turf/simulated/floor/plating,
/area/engineering/engine_waste)
"cKc" = (
-/obj/structure/cable/green{
- icon_state = "2-4"
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/machinery/camera/network/service{
+ c_tag = "Service - Chapel Storage";
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor/plating,
-/area/maintenance/hangar/port)
+/obj/structure/table/wood,
+/obj/item/storage/box/fancy/candle_box,
+/obj/item/storage/box/fancy/candle_box,
+/turf/simulated/floor/wood,
+/area/chapel/office)
"cKg" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/wood,
/area/hydroponics/garden)
"cKn" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/effect/floor_decal/industrial/loading/yellow{
- dir = 1
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/obj/structure/railing/mapped,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
},
/turf/simulated/floor/plating,
-/area/maintenance/wing/starboard/far)
+/area/maintenance/wing/starboard)
"cKB" = (
/obj/structure/cable/yellow,
/obj/structure/cable{
@@ -4655,6 +5022,10 @@
},
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
+"cMk" = (
+/obj/machinery/atmospherics/pipe/manifold/visible,
+/turf/simulated/floor/tiled,
+/area/maintenance/aux_atmospherics/deck_2/starboard)
"cMn" = (
/obj/structure/railing/mapped{
dir = 1
@@ -4679,9 +5050,9 @@
dir = 8
},
/turf/simulated/floor/wood,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"cNh" = (
-/obj/structure/disposalpipe/segment,
+/obj/structure/table/standard,
/turf/simulated/floor/tiled,
/area/operations/break_room)
"cNz" = (
@@ -4724,16 +5095,13 @@
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
"cOs" = (
-/obj/effect/map_effect/wingrille_spawn/reinforced_phoron/firedoor,
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "AICore";
- name = "AI core maintenance hatch";
- opacity = 0
+/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
+/obj/machinery/door/blast/regular/open{
+ name = "AI Maintenance Blast Door";
+ id = "AICore"
},
/turf/simulated/floor/plating,
-/area/turret_protected/ai_upload_foyer)
+/area/turret_protected/ai_upload)
"cOC" = (
/obj/structure/bed/stool/chair{
dir = 4
@@ -4751,6 +5119,11 @@
"cOE" = (
/turf/simulated/floor/tiled/dark,
/area/hydroponics)
+"cOU" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/vending/cola,
+/turf/simulated/floor/tiled/dark,
+/area/operations/lobby)
"cOY" = (
/obj/effect/floor_decal/industrial/warning{
dir = 5
@@ -4798,10 +5171,11 @@
/turf/simulated/wall/r_wall,
/area/engineering/aft_airlock)
"cRs" = (
-/obj/machinery/porta_turret/stationary,
-/obj/effect/floor_decal/industrial/warning/full,
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/turret_protected/ai)
"cRu" = (
/obj/machinery/door/firedoor,
/obj/effect/floor_decal/industrial/hatch/yellow,
@@ -4876,10 +5250,6 @@
/obj/machinery/firealarm/north,
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
-"cUh" = (
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled,
-/area/operations/lobby)
"cUi" = (
/obj/item/modular_computer/console/preset/engineering{
dir = 1
@@ -4993,14 +5363,14 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/door/airlock/maintenance{
- req_access = list(12)
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/atmos{
+ name = "Deck 2 Aft Auxiliary Atmospherics";
+ req_one_access = list(11, 24)
+ },
/turf/simulated/floor/plating,
/area/maintenance/aux_atmospherics/deck_2/starboard)
"cYy" = (
@@ -5058,27 +5428,45 @@
/turf/simulated/floor/plating,
/area/engineering/engine_room)
"cZA" = (
-/obj/structure/railing/mapped{
+/obj/machinery/camera/network/command{
+ c_tag = "AI Core - External Access";
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/mauve/full{
dir = 4
},
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/machinery/light{
+/obj/machinery/atmospherics/portables_connector{
dir = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload)
"cZT" = (
+/obj/effect/floor_decal/corner/mauve{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/spline/fancy{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/turret_protected/ai)
+"day" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/floor_decal/industrial/outline/red,
-/obj/structure/cable/orange{
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/obj/structure/lattice/catwalk/indoor,
+/turf/simulated/open,
+/area/operations/office)
"daM" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -5124,7 +5512,7 @@
/obj/machinery/door/airlock/glass_mining{
name = "Break Room";
req_access = null;
- req_one_access = list(31,48,26,67)
+ req_one_access = list(26, 31, 48, 67)
},
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
@@ -5134,6 +5522,15 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled/dark,
/area/maintenance/wing/starboard/far)
+"dcU" = (
+/obj/structure/sign/vacuum{
+ pixel_y = 32
+ },
+/obj/machinery/light/small/emergency{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/bridge/aibunker)
"dcX" = (
/obj/machinery/power/apc{
dir = 1;
@@ -5215,9 +5612,44 @@
},
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
+"deH" = (
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing/mapped,
+/turf/simulated/floor/tiled,
+/area/maintenance/wing/starboard)
"deL" = (
+/obj/item/circuitboard/powermonitor{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/circuitboard/security/engineering,
+/obj/item/circuitboard/atmos_alert{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/circuitboard/security{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/obj/item/circuitboard/message_monitor{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/tiled/dark,
-/area/maintenance/aux_atmospherics/deck_2/starboard)
+/area/engineering/storage/tech)
"deY" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
@@ -5260,7 +5692,7 @@
dir = 4
},
/turf/simulated/floor/lino/grey,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"dgw" = (
/obj/structure/table/standard,
/obj/item/clipboard,
@@ -5275,11 +5707,13 @@
/turf/simulated/floor/tiled,
/area/security/warden)
"dgy" = (
-/obj/effect/floor_decal/corner/green/full,
/obj/machinery/disposal/small/east,
/obj/structure/disposalpipe/trunk{
dir = 4
},
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
"dgZ" = (
@@ -5328,15 +5762,13 @@
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
"dit" = (
-/obj/structure/bed/stool/chair/wood{
- dir = 8
+/obj/effect/floor_decal/corner/green{
+ dir = 10
},
-/obj/machinery/camera/network/service{
- c_tag = "Service - Chapel";
- dir = 1
- },
-/turf/simulated/floor/lino/grey,
-/area/chapel/main)
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/central_two)
"djj" = (
/obj/effect/floor_decal/corner_wide/orange{
dir = 1
@@ -5386,10 +5818,11 @@
/turf/simulated/floor/plating,
/area/medical/cryo)
"dkh" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
+/obj/machinery/portable_atmospherics/canister/phoron,
+/obj/effect/floor_decal/corner_wide/blue/full{
+ dir = 4
},
-/obj/machinery/light,
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/reinforced,
/area/storage/secure)
"dki" = (
@@ -5423,17 +5856,15 @@
/turf/simulated/floor/tiled/white,
/area/hallway/medical)
"dkR" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 9
- },
/obj/structure/railing/mapped{
dir = 8
},
/obj/structure/railing/mapped{
dir = 1
},
-/turf/simulated/floor/tiled/dark/airless,
-/area/maintenance/wing/starboard)
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/template_noop)
"dlG" = (
/obj/structure/closet/crate/hydroponics,
/obj/item/bee_smoker,
@@ -5452,7 +5883,7 @@
/obj/machinery/door/airlock/glass_mining{
name = "Operations Bay";
req_access = null;
- req_one_access = list(31,48,26,67)
+ req_one_access = list(26, 31, 48, 67)
},
/obj/machinery/door/firedoor,
/obj/structure/cable/green{
@@ -5460,10 +5891,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/operations/office)
"dlR" = (
@@ -5479,29 +5907,38 @@
/turf/simulated/floor/tiled,
/area/security/prison)
"dlZ" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/reinforced,
/area/storage/secure)
"dmD" = (
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = 20;
- pixel_y = 1
- },
/obj/machinery/light{
dir = 4
},
-/obj/machinery/vending/coffee,
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/obj/machinery/vending/cola,
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
-/area/hallway/primary/central_two)
+/area/security/checkpoint2)
"dmK" = (
/obj/structure/shuttle_part/scc_space_ship{
icon_state = "d3-3"
},
/turf/space/dynamic,
/area/template_noop)
+"dmT" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/maintenance/aux_atmospherics/deck_2/starboard)
"dnn" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -5530,23 +5967,18 @@
/turf/simulated/floor/tiled,
/area/teleporter)
"dnP" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
/obj/effect/floor_decal/corner/brown{
dir = 5
},
/obj/structure/cable/green{
- icon_state = "1-8"
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/structure/disposalpipe/junction{
- dir = 4
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/operations/lobby)
"dnZ" = (
@@ -5594,15 +6026,30 @@
/turf/template_noop,
/area/horizonexterior)
"dpE" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden,
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/corner/mauve{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload)
"dpG" = (
/obj/effect/floor_decal/industrial/warning{
dir = 1
},
/turf/simulated/floor/tiled/dark,
/area/engineering/lobby)
+"dqs" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/obj/structure/closet/crate/coffin,
+/obj/structure/closet/crate/coffin{
+ pixel_y = 4
+ },
+/turf/simulated/floor/wood,
+/area/chapel/office)
"dqy" = (
/obj/structure/closet/secure_closet/guncabinet{
name = "Weaponry (.45 Pistol)"
@@ -5619,15 +6066,26 @@
/turf/simulated/floor/tiled,
/area/security/security_office)
"drB" = (
-/obj/machinery/cryopod/robot,
-/obj/machinery/camera/network/command{
- c_tag = "AI Core - Cyborg Storage"
+/obj/effect/floor_decal/corner/mauve/full{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
},
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai_upload)
-"dsj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload_foyer)
+"dsj" = (
+/obj/effect/floor_decal/corner/blue/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
/area/security/checkpoint2)
"dsl" = (
/obj/structure/cable/green{
@@ -5636,12 +6094,33 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/lattice/catwalk/indoor/grate,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+ dir = 4
},
+/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard)
+"dss" = (
+/obj/item/stock_parts/manipulator,
+/obj/item/stock_parts/matter_bin,
+/obj/item/stock_parts/matter_bin,
+/obj/item/stock_parts/capacitor,
+/obj/item/stock_parts/capacitor,
+/obj/item/stock_parts/scanning_module,
+/obj/item/stock_parts/scanning_module,
+/obj/structure/table/steel,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/corner/yellow/full{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/storage/tech)
"dsw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
@@ -5660,6 +6139,11 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/exam)
+"dtt" = (
+/obj/machinery/atmospherics/binary/pump,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/maintenance/aux_atmospherics/deck_2/starboard)
"dtP" = (
/obj/structure/lattice/catwalk,
/turf/simulated/open,
@@ -5681,6 +6165,15 @@
"dum" = (
/turf/simulated/floor/tiled,
/area/operations/office)
+"dvf" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner/mauve{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload)
"dvs" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -5740,7 +6233,6 @@
/turf/simulated/floor/plating,
/area/maintenance/substation/wing_starboard)
"dwy" = (
-/obj/structure/table/reinforced,
/obj/item/device/binoculars,
/obj/effect/floor_decal/corner/blue{
dir = 9
@@ -5759,7 +6251,12 @@
name = "Station Intercom (General)";
pixel_x = -25
},
-/turf/simulated/floor/tiled,
+/obj/machinery/camera/network/security{
+ c_tag = "Security - Second Deck Checkpoint";
+ dir = 4
+ },
+/obj/structure/table/steel,
+/turf/simulated/floor/tiled/dark,
/area/security/checkpoint2)
"dwK" = (
/obj/machinery/light,
@@ -5771,13 +6268,7 @@
"dwP" = (
/obj/effect/floor_decal/corner_wide/grey/diagonal,
/obj/structure/table/standard,
-/obj/structure/noticeboard{
- pixel_y = 27
- },
-/obj/item/storage/box/snack{
- desc = "A box full of snack foods. A label is attached that reads, 'Sorry about the microwaves.'";
- name = "corporate care package"
- },
+/obj/item/stack/packageWrap,
/turf/simulated/floor/tiled/white,
/area/operations/break_room)
"dwZ" = (
@@ -5825,15 +6316,21 @@
/turf/simulated/floor/tiled/white,
/area/rnd/conference)
"dyg" = (
-/obj/structure/lattice/catwalk/indoor/grate,
/obj/structure/cable{
icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard/far)
"dyU" = (
/obj/machinery/door/airlock/maintenance{
- req_one_access = list(31,48,26,67)
+ req_one_access = list(26, 31, 48, 67)
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
@@ -5855,8 +6352,8 @@
/obj/machinery/light{
dir = 1
},
-/obj/effect/floor_decal/corner/brown{
- dir = 6
+/obj/effect/floor_decal/corner/brown/full{
+ dir = 1
},
/turf/simulated/floor/tiled,
/area/operations/lobby)
@@ -5880,8 +6377,8 @@
/obj/structure/railing/mapped{
dir = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/turf/simulated/floor/reinforced,
+/area/turret_protected/ai_upload)
"dAw" = (
/obj/effect/floor_decal/industrial/warning{
dir = 4
@@ -5900,22 +6397,20 @@
/obj/structure/cable{
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard)
"dBB" = (
-/obj/structure/bed/stool/chair{
- dir = 8
- },
/obj/effect/floor_decal/corner/brown{
dir = 6
},
+/obj/structure/flora/pottedplant/random,
/turf/simulated/floor/tiled,
/area/operations/lobby)
"dBM" = (
@@ -5923,31 +6418,31 @@
dir = 4
},
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"dBX" = (
-/obj/item/stack/material/phoron,
-/obj/structure/table/rack,
/obj/machinery/alarm{
pixel_y = 28
},
-/obj/item/stack/material/phoron,
-/obj/item/stack/material/phoron,
-/obj/item/tank/phoron,
-/obj/item/tank/phoron,
+/obj/structure/closet/secure_closet,
+/obj/effect/floor_decal/corner_wide/blue{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light{
+ dir = 1
+ },
/turf/simulated/floor/reinforced,
/area/storage/secure)
"dCa" = (
-/obj/effect/floor_decal/corner/paleblue/full{
+/obj/machinery/firealarm/south,
+/obj/machinery/light,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal/small/west,
+/obj/effect/floor_decal/corner/green/full{
dir = 4
},
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -24
- },
-/obj/structure/cable/green,
-/obj/structure/closet/emcloset,
-/obj/item/storage/toolbox/emergency,
-/obj/item/crowbar/red,
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/sleep/cryo/living_quarters_lift)
"dCK" = (
@@ -6002,6 +6497,19 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/pharmacy)
+"dDq" = (
+/obj/effect/floor_decal/corner/brown{
+ dir = 6
+ },
+/obj/structure/bed/stool/chair{
+ dir = 8
+ },
+/obj/structure/sign/directions/all{
+ pixel_x = 32;
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"dDS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -6021,9 +6529,10 @@
/turf/simulated/wall,
/area/maintenance/wing/starboard/far)
"dFi" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 9
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 8
},
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/tiled/dark,
/area/maintenance/wing/starboard/far)
"dFC" = (
@@ -6108,18 +6617,26 @@
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
"dIk" = (
-/obj/structure/table/wood,
-/turf/simulated/floor/wood,
-/area/chapel/main)
+/obj/effect/floor_decal/corner/green/full{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ pixel_x = -28;
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/industrial/loading/yellow,
+/turf/simulated/floor/tiled,
+/area/horizon/stairwell/central)
"dIZ" = (
/turf/simulated/wall,
/area/medical/or2)
"dJs" = (
-/obj/machinery/shower{
- dir = 1
+/obj/machinery/door/airlock{
+ name = "Toilet 1";
+ id_tag = "cargobreak_t1"
},
-/obj/structure/curtain/open/shower,
-/turf/simulated/floor/tiled/freezer,
+/turf/simulated/floor/tiled/white,
/area/operations/break_room)
"dJx" = (
/obj/structure/table/standard,
@@ -6133,6 +6650,41 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/xenobiology)
+"dJE" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
+"dJF" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/atmos{
+ name = "Deck 2 Starboard Auxiliary Atmospherics";
+ req_one_access = list(11, 24)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/maintenance/aux_atmospherics/deck_2/starboard)
"dJV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -6268,7 +6820,7 @@
/area/security/lobby)
"dLD" = (
/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
-/turf/simulated/floor/tiled,
+/turf/simulated/floor/plating,
/area/operations/break_room)
"dLO" = (
/obj/machinery/door/window/westright,
@@ -6277,21 +6829,40 @@
},
/area/maintenance/wing/starboard/far)
"dLX" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/wing/starboard)
-"dMf" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/structure/window/reinforced{
+/obj/effect/floor_decal/corner/yellow/full{
dir = 8
},
-/obj/structure/window/reinforced{
- dir = 1
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/wing/starboard/far)
+/obj/machinery/alarm{
+ pixel_y = 28
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/emcloset,
+/obj/structure/sign/staff_only{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
+"dMf" = (
+/obj/structure/table/steel,
+/obj/item/storage/box/lights/mixed{
+ pixel_x = 5;
+ pixel_y = 6
+ },
+/obj/item/storage/box/mousetraps,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/janitor/stairs)
+"dMG" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/disposalpipe/down{
+ dir = 2
+ },
+/turf/simulated/open,
+/area/maintenance/wing/starboard)
"dMK" = (
/obj/effect/floor_decal/industrial/warning{
dir = 8
@@ -6299,15 +6870,12 @@
/turf/simulated/floor/tiled,
/area/maintenance/wing/starboard/far)
"dNz" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
/obj/machinery/door/airlock/maintenance{
name = "Research and Development Maintenance";
req_access = list(7);
req_one_access = null
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/rnd/chemistry)
"dNF" = (
@@ -6323,7 +6891,7 @@
"dOP" = (
/obj/machinery/cryopod/robot,
/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai_upload)
+/area/turret_protected/ai_upload_foyer)
"dPi" = (
/obj/effect/floor_decal/corner_wide/green/full{
dir = 1
@@ -6360,6 +6928,12 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
+"dPP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/lino/grey,
+/area/chapel/main)
"dPV" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -6381,15 +6955,6 @@
/turf/simulated/wall,
/area/crew_quarters/kitchen)
"dRk" = (
-/obj/effect/floor_decal/corner/green{
- dir = 9
- },
-/obj/effect/floor_decal/spline/plain{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled,
/area/hallway/primary/central_two)
@@ -6444,11 +7009,9 @@
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard/far)
"dTj" = (
-/obj/machinery/door/airlock/maintenance{
- req_access = list(12)
- },
/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/dark,
+/obj/machinery/door/airlock/maintenance_hatch,
+/turf/simulated/floor/plating,
/area/maintenance/wing/port)
"dUw" = (
/obj/structure/lattice,
@@ -6467,12 +7030,17 @@
/turf/simulated/floor/tiled,
/area/security/prison)
"dVt" = (
-/obj/structure/closet/secure_closet/security,
-/obj/effect/floor_decal/corner/blue/full{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/alarm{
- pixel_y = 28
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
/turf/simulated/floor/tiled,
/area/security/checkpoint2)
@@ -6528,6 +7096,7 @@
dir = 4
},
/obj/structure/closet/emcloset,
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
"dWA" = (
@@ -6635,7 +7204,18 @@
/turf/simulated/floor/tiled/freezer,
/area/security/main)
"dZG" = (
-/obj/structure/closet/emcloset,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/operations/lobby)
"dZU" = (
@@ -6664,6 +7244,18 @@
},
/turf/simulated/floor/tiled/dark,
/area/engineering/engine_room)
+"eau" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"ebQ" = (
/obj/structure/lattice/catwalk/indoor/grate/damaged,
/obj/machinery/alarm{
@@ -6673,14 +7265,20 @@
/area/maintenance/wing/port/far)
"ebR" = (
/obj/machinery/camera/network/second_deck{
- c_tag = "Second Deck - Hallway 4";
+ c_tag = "Second Deck - Starboard Dock Port";
dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/structure/sign/vacuum{
+ pixel_y = -32
+ },
/turf/simulated/floor/tiled,
-/area/hallway/primary/central_two)
+/area/security/checkpoint2)
"ebT" = (
/obj/structure/table/steel,
/obj/item/storage/box/fancy/donut{
@@ -6709,6 +7307,14 @@
},
/turf/simulated/floor/plating,
/area/maintenance/wing/port/far)
+"ecx" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/structure/table/wood,
+/turf/simulated/floor/wood,
+/area/operations/office)
"ecV" = (
/turf/simulated/floor/plating,
/area/engineering/engine_monitoring/tesla)
@@ -6805,7 +7411,7 @@
/obj/structure/table/wood,
/obj/item/material/ashtray/bronze,
/turf/simulated/floor/lino/grey,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"eii" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -6819,6 +7425,14 @@
},
/turf/simulated/floor/wood,
/area/medical/psych)
+"eim" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/machinery/disposal/small/south,
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"ejw" = (
/obj/machinery/telepad,
/turf/simulated/floor/carpet/rubber,
@@ -6882,12 +7496,17 @@
/turf/simulated/floor/tiled/white,
/area/rnd/xenobiology/xenoflora)
"ekS" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/door/airlock/maintenance{
- req_access = list(12)
- },
/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
+/obj/effect/decal/cleanable/cobweb,
+/obj/structure/plasticflaps/airtight,
+/obj/machinery/door/airlock/hatch{
+ req_access = list(12);
+ name = "Deck 2 Starboard Pod"
+ },
+/obj/item/tape/engineering{
+ icon_state = "engineering_door"
+ },
+/turf/simulated/floor/tiled/dark,
/area/maintenance/wing/starboard/far)
"ekX" = (
/obj/structure/ladder/up{
@@ -6900,9 +7519,16 @@
/turf/simulated/floor/tiled/ramp,
/area/security/investigations)
"elm" = (
-/obj/effect/map_effect/wingrille_spawn/reinforced,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/maintenance_hatch,
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
-/area/rnd/chemistry)
+/area/maintenance/wing/port)
"elz" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -6951,21 +7577,12 @@
/turf/simulated/floor/wood,
/area/library)
"enz" = (
-/obj/structure/bed/stool/chair{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/effect/floor_decal/corner/brown{
dir = 10
},
@@ -6999,6 +7616,19 @@
/obj/machinery/light/small/emergency,
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard/far)
+"eoK" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"ept" = (
/obj/structure/railing/mapped,
/obj/effect/floor_decal/corner/mauve{
@@ -7022,13 +7652,12 @@
dir = 4;
pixel_x = -28
},
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
+ },
/turf/simulated/floor/wood,
/area/operations/qm)
"epN" = (
-/obj/structure/table/standard,
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -7039,10 +7668,6 @@
/obj/effect/floor_decal/corner/brown{
dir = 10
},
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j2"
- },
/turf/simulated/floor/tiled,
/area/operations/break_room)
"epZ" = (
@@ -7182,6 +7807,16 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/or1)
+"etT" = (
+/obj/structure/bed/stool/chair/padded/red{
+ dir = 4
+ },
+/obj/machinery/camera/network/service{
+ c_tag = "Dinner - Booth 1";
+ dir = 4
+ },
+/turf/simulated/floor/lino/grey,
+/area/hallway/primary/central_two)
"eui" = (
/obj/structure/cable/green{
icon_state = "0-2"
@@ -7202,12 +7837,12 @@
/turf/simulated/floor/tiled/dark,
/area/hydroponics)
"euX" = (
+/obj/structure/foamedmetal,
/obj/structure/shuttle_part/scc_space_ship{
icon_state = "d2-1"
},
-/obj/structure/girder,
/turf/simulated/floor/plating,
-/area/maintenance/wing/starboard)
+/area/engineering/storage/tech)
"evi" = (
/obj/structure/flora/ausbushes/lavendergrass,
/obj/structure/window/reinforced,
@@ -7256,8 +7891,11 @@
/obj/structure/disposalpipe/junction{
dir = 4
},
+/obj/effect/floor_decal/corner/brown{
+ dir = 6
+ },
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/operations/office)
"ewk" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -7313,7 +7951,6 @@
/turf/simulated/floor/tiled/dark,
/area/maintenance/wing/starboard/far)
"exx" = (
-/obj/effect/floor_decal/corner/green/diagonal,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/hallway/primary/central_two)
@@ -7362,7 +7999,6 @@
/obj/structure/disposalpipe/trunk{
dir = 1
},
-/obj/machinery/disposal,
/obj/effect/floor_decal/spline/fancy/wood{
dir = 6
},
@@ -7379,31 +8015,22 @@
name = "AI Upload";
req_access = list(16)
},
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "AICore";
- name = "AI core maintenance hatch";
- opacity = 0
- },
-/obj/structure/cable/orange{
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
icon_state = "4-8"
},
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload)
"eyY" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 2;
- icon_state = "pdoor0";
- id = "AICore";
- name = "AI core maintenance hatch";
- opacity = 0
+/obj/machinery/door/blast/regular/open{
+ name = "AI Maintenance Blast Door";
+ id = "AICore"
},
-/obj/structure/cable/orange{
+/obj/structure/cable/green{
icon_state = "4-8"
},
-/turf/simulated/floor/reinforced,
+/turf/simulated/floor/plating,
/area/turret_protected/ai)
"ezt" = (
/obj/structure/railing/mapped{
@@ -7465,10 +8092,7 @@
req_access = list(47)
},
/obj/machinery/door/firedoor/multi_tile,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/tiled,
/area/rnd/hallway)
"eBy" = (
/obj/effect/floor_decal/spline/fancy/wood{
@@ -7546,11 +8170,19 @@
"eDW" = (
/obj/structure/closet/secure_closet/hangartech,
/obj/machinery/camera/network/supply{
- c_tag = "Operations - Upper Warehouse";
+ c_tag = "Operations - Upper Warehouse Port";
dir = 8
},
+/obj/effect/floor_decal/corner/brown{
+ dir = 6
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = 24
+ },
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/operations/office)
"eEr" = (
/obj/machinery/door/window/brigdoor/northleft{
dir = 2;
@@ -7579,6 +8211,18 @@
},
/turf/simulated/floor/lino/grey,
/area/crew_quarters/bar)
+"eEB" = (
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = -25
+ },
+/obj/structure/closet/secure_closet/operation_manager,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/turf/simulated/floor/wood,
+/area/operations/qm)
"eED" = (
/obj/structure/cable/green{
icon_state = "2-8"
@@ -7624,9 +8268,10 @@
/turf/simulated/floor/tiled/dark,
/area/security/armory)
"eGl" = (
-/obj/structure/window/reinforced,
+/obj/structure/railing/mapped,
+/obj/structure/lattice,
/turf/simulated/open,
-/area/operations/storage)
+/area/operations/office)
"eGx" = (
/obj/machinery/atmospherics/portables_connector{
dir = 1
@@ -7684,11 +8329,11 @@
/turf/simulated/floor/tiled,
/area/security/brig)
"eIE" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 4
+/obj/machinery/door/airlock{
+ name = "Toilet 2";
+ id_tag = "cargobreak_t2"
},
-/turf/simulated/floor/tiled/freezer,
+/turf/simulated/floor/tiled/white,
/area/operations/break_room)
"eIU" = (
/obj/structure/table/standard,
@@ -7838,7 +8483,7 @@
name = "Dinner Hall"
},
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"eQg" = (
/obj/structure/table/standard,
/obj/item/folder/yellow,
@@ -7896,12 +8541,12 @@
/obj/effect/floor_decal/spline/fancy/wood/cee,
/obj/machinery/light,
/turf/simulated/floor/wood,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"eTf" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/bottle/holywater,
-/turf/simulated/floor/carpet,
-/area/chapel/office)
+/obj/structure/table/rack,
+/obj/random/loot,
+/turf/simulated/floor/plating,
+/area/maintenance/hangar/port)
"eTQ" = (
/obj/effect/floor_decal/industrial/warning{
dir = 10
@@ -7919,8 +8564,11 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/effect/floor_decal/corner/brown/full{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/operations/office)
"eUj" = (
/obj/effect/floor_decal/corner/mauve/full{
dir = 4
@@ -7956,17 +8604,18 @@
/obj/effect/floor_decal/spline/fancy/wood{
dir = 8
},
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload)
-"eUX" = (
-/obj/machinery/door/airlock/maintenance{
- req_access = list(12)
+/obj/machinery/light{
+ dir = 8
},
+/turf/simulated/floor/wood,
+/area/turret_protected/ai_upload_foyer)
+"eUX" = (
/obj/structure/cable{
icon_state = "4-8"
},
/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/dark,
+/obj/machinery/door/airlock/maintenance_hatch,
+/turf/simulated/floor/plating,
/area/maintenance/wing/port/far)
"eUY" = (
/obj/structure/table/standard,
@@ -7984,19 +8633,28 @@
/turf/simulated/floor/tiled/white,
/area/medical/reception)
"eUZ" = (
-/obj/structure/sign/securearea,
-/turf/simulated/wall/r_wall,
-/area/engineering/storage/tech)
-"eVf" = (
-/obj/structure/railing/mapped{
- dir = 1
+/obj/effect/floor_decal/corner/purple{
+ dir = 6
},
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/firealarm/east,
+/obj/machinery/camera/network/service{
+ c_tag = "Service - Auxiliary Custodial Closet";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/janitor/stairs)
+"eVf" = (
/obj/structure/railing/mapped{
dir = 4
},
/obj/machinery/light/small/emergency{
dir = 8
},
+/obj/structure/closet/crate,
+/obj/random/loot,
/turf/simulated/floor/plating,
/area/maintenance/aft)
"eVm" = (
@@ -8009,18 +8667,21 @@
/turf/simulated/floor/plating,
/area/engineering/engine_waste)
"eVu" = (
-/obj/structure/curtain/black{
- icon_state = "open";
- opacity = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/turf/simulated/wall,
+/area/bridge/third_deck_stairs)
"eWm" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
+/obj/effect/floor_decal/corner/green{
+ dir = 5
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
-/area/hallway/primary/central_two)
+/area/security/checkpoint2)
"eWw" = (
/obj/structure/window/reinforced{
dir = 1
@@ -8104,7 +8765,7 @@
},
/obj/structure/window/reinforced,
/turf/simulated/floor/tiled,
-/area/hallway/primary/central_two)
+/area/security/checkpoint2)
"eYE" = (
/obj/effect/floor_decal/corner_wide/yellow{
dir = 5
@@ -8214,19 +8875,13 @@
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
"eZN" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
+/obj/structure/cable/green{
+ icon_state = "1-4"
},
-/obj/item/circuitboard/security/mining,
-/obj/item/circuitboard/autolathe{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/circuitboard/ship/helm,
-/obj/item/circuitboard/ship/sensors,
-/turf/simulated/floor/plating,
-/area/engineering/storage/tech)
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"eZZ" = (
/obj/machinery/cryopod,
/turf/simulated/floor/tiled,
@@ -8235,27 +8890,28 @@
/turf/simulated/floor/tiled/white,
/area/medical/or2)
"fak" = (
-/obj/structure/closet/emcloset,
-/obj/effect/floor_decal/corner/paleblue{
- dir = 10
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
},
+/obj/structure/cable/green,
+/obj/structure/closet/emcloset,
/obj/item/storage/toolbox/emergency,
/obj/item/crowbar/red,
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/sleep/cryo/living_quarters_lift)
"fan" = (
-/obj/machinery/computer/borgupload{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
+/obj/effect/floor_decal/corner/mauve/full,
+/obj/structure/railing/mapped,
+/obj/machinery/light{
dir = 8
},
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload)
+/obj/machinery/firealarm/west,
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload_foyer)
"fas" = (
/obj/machinery/atmospherics/binary/pump{
dir = 8
@@ -8286,14 +8942,9 @@
/turf/simulated/floor/tiled/white,
/area/medical/reception)
"fcF" = (
-/obj/structure/railing/mapped{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 6
- },
/obj/structure/railing/mapped,
/obj/random/loot,
+/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard)
"fcQ" = (
@@ -8358,9 +9009,10 @@
/turf/simulated/wall,
/area/maintenance/aux_atmospherics/deck_2/starboard)
"fdV" = (
-/obj/structure/railing/mapped,
-/obj/structure/lattice,
-/turf/simulated/open,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
/area/hallway/primary/central_two)
"fdZ" = (
/obj/machinery/door/firedoor,
@@ -8399,8 +9051,14 @@
req_access = list(12)
},
/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/hangar/port)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/hallway/primary/central_two)
"fer" = (
/obj/structure/railing/mapped,
/obj/effect/floor_decal/industrial/warning{
@@ -8445,7 +9103,6 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/xenobiology)
"ffT" = (
-/obj/machinery/light,
/obj/effect/floor_decal/corner/brown/full,
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
@@ -8456,6 +9113,9 @@
/obj/effect/floor_decal/corner/green/diagonal,
/turf/simulated/floor/tiled,
/area/hydroponics)
+"fgh" = (
+/turf/simulated/floor/plating,
+/area/bridge/aibunker)
"fgZ" = (
/obj/machinery/light/small{
dir = 8
@@ -8475,22 +9135,37 @@
/area/crew_quarters/kitchen/freezer)
"fhd" = (
/obj/machinery/door/airlock/highsecurity{
- name = "AI Upload Access";
+ name = "AI Maintenance";
req_access = list(16)
},
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "AICore";
- name = "AI core maintenance hatch";
- opacity = 0
+/obj/machinery/door/blast/regular/open{
+ name = "AI Maintenance Blast Door";
+ id = "AICore"
},
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload)
"fhh" = (
/obj/machinery/firealarm/south,
/turf/simulated/floor/plating,
/area/engineering/engine_monitoring/tesla)
+"fhq" = (
+/obj/machinery/door/airlock/service{
+ name = "Auxiliary Custodial Closet";
+ req_access = list(26)
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/janitor/stairs)
"fht" = (
/obj/structure/cable{
icon_state = "1-8"
@@ -8505,8 +9180,13 @@
/turf/simulated/floor/plating,
/area/maintenance/wing/port/far)
"fhD" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass,
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Deck 2 Stairwell";
+ dir = 1
+ },
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/operations/lobby)
"fhU" = (
@@ -8524,14 +9204,11 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/chemistry)
"fjg" = (
-/obj/structure/table/standard,
-/obj/item/storage/firstaid/regular,
/obj/effect/floor_decal/corner/brown/full,
-/obj/item/device/radio/intercom{
- dir = 4;
- name = "Station Intercom (General)";
- pixel_x = -25
+/obj/structure/bed/stool/chair/office/dark{
+ dir = 1
},
+/obj/machinery/firealarm/west,
/turf/simulated/floor/tiled,
/area/operations/office)
"fjl" = (
@@ -8540,14 +9217,18 @@
/turf/simulated/floor/plating,
/area/rnd/chemistry)
"fjI" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 4;
+ icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_two)
@@ -8596,6 +9277,9 @@
/obj/structure/bed/stool/chair/padded/black{
dir = 8
},
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
/turf/simulated/floor/wood,
/area/operations/qm)
"flb" = (
@@ -8613,11 +9297,12 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/floor_decal/corner/brown{
- dir = 9
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
+/obj/effect/floor_decal/corner/brown/full,
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/operations/office)
"flS" = (
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
dir = 4
@@ -8631,26 +9316,20 @@
/turf/simulated/floor/carpet,
/area/library)
"fmV" = (
-/obj/machinery/atmospherics/portables_connector,
-/obj/machinery/portable_atmospherics/canister/air/airlock,
-/obj/structure/window/reinforced{
- dir = 4
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/structure/window/reinforced{
- dir = 1
+/obj/effect/floor_decal/corner/mauve{
+ dir = 10
},
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/effect/floor_decal/industrial/outline/red,
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/tiled,
/area/turret_protected/ai_upload)
"fnh" = (
/obj/effect/floor_decal/spline/fancy/wood{
dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload)
+/turf/simulated/floor/wood,
+/area/turret_protected/ai_upload_foyer)
"fnn" = (
/turf/simulated/wall,
/area/engineering/atmos/storage)
@@ -8687,7 +9366,7 @@
dir = 4
},
/turf/simulated/floor/lino/grey,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"fpb" = (
/obj/machinery/portable_atmospherics/hydroponics,
/obj/machinery/light{
@@ -8742,10 +9421,10 @@
/area/rnd/conference)
"fqg" = (
/obj/effect/floor_decal/corner/black/diagonal,
-/obj/machinery/atmospherics/pipe/manifold/hidden{
- dir = 8
- },
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
/turf/simulated/floor/tiled/dark,
/area/maintenance/wing/starboard)
"fqn" = (
@@ -8761,12 +9440,13 @@
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
"fqL" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- req_access = list(12)
- },
/obj/structure/cable{
icon_state = "4-8"
},
+/obj/machinery/door/airlock/maintenance{
+ req_access = list(12)
+ },
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/aft)
"fqS" = (
@@ -8784,6 +9464,18 @@
},
/turf/simulated/floor/reinforced,
/area/horizonexterior)
+"frL" = (
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/checkpoint2)
+"frS" = (
+/obj/machinery/portable_atmospherics/canister/phoron,
+/obj/effect/floor_decal/corner_wide/blue/full,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/reinforced,
+/area/storage/secure)
"fsb" = (
/obj/structure/window/reinforced{
dir = 4
@@ -8838,20 +9530,18 @@
/turf/simulated/floor/reinforced,
/area/rnd/telesci)
"fsZ" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/industrial/warning{
dir = 8
},
-/obj/structure/lattice/catwalk/indoor/grate,
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/railing/mapped{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/hangar/port)
"fti" = (
@@ -8877,6 +9567,20 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/hallway/engineering/tesla)
+"fto" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/floor_decal/corner/blue{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/camera/network/command{
+ c_tag = "Bridge - Deck 2 - Bunker Escape Route";
+ network = list("Command","Bunker");
+ alarm_on = 1;
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
"ftz" = (
/obj/machinery/door/airlock/glass_security{
name = "Armory";
@@ -8891,10 +9595,10 @@
/turf/simulated/floor/tiled,
/area/security/armory)
"ftS" = (
+/obj/structure/foamedmetal,
/obj/structure/shuttle_part/scc_space_ship{
icon_state = "d3-4-f"
},
-/obj/structure/girder,
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard)
"fuu" = (
@@ -8919,7 +9623,7 @@
pixel_y = 28
},
/turf/simulated/floor/wood,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"fvh" = (
/obj/machinery/light_switch{
pixel_x = -26;
@@ -8930,6 +9634,15 @@
/obj/machinery/firealarm/south,
/turf/simulated/floor/carpet/rubber,
/area/server)
+"fvQ" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/operations/break_room)
"fwf" = (
/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
@@ -8997,10 +9710,28 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/gen_treatment)
+"fyH" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Medical Entrance";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/central_two)
+"fyU" = (
+/obj/effect/floor_decal/corner/yellow/full,
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload)
"fyV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/camera/network/service{
+ c_tag = "Service - Chapel Starboard";
+ dir = 1
+ },
/turf/simulated/floor/tiled/ramp{
dir = 4
},
@@ -9105,6 +9836,20 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/kitchen)
+"fDA" = (
+/obj/machinery/porta_turret,
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload)
+"fDE" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark/airless,
+/area/template_noop)
"fDV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
@@ -9174,8 +9919,14 @@
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload)
+/obj/machinery/button/remote/blast_door{
+ id = "ai_upload";
+ name = "AI Upload Foyer Blast Doors";
+ req_access = list(16);
+ pixel_y = 25
+ },
+/turf/simulated/floor/wood,
+/area/turret_protected/ai_upload_foyer)
"fGs" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
@@ -9195,14 +9946,14 @@
/turf/simulated/floor/tiled/dark,
/area/hallway/engineering/tesla)
"fGJ" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/door/blast/shutters/open{
- dir = 2;
- id = "seconddeckdockint";
- name = "shutter"
+/obj/effect/floor_decal/corner/blue{
+ dir = 6
},
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_two)
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/checkpoint2)
"fGT" = (
/obj/machinery/atmospherics/pipe/simple/hidden,
/turf/simulated/floor/plating,
@@ -9328,7 +10079,7 @@
dir = 4
},
/turf/simulated/floor/wood,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"fKi" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -9398,6 +10149,8 @@
/obj/machinery/light/small/emergency{
dir = 1
},
+/obj/structure/table/rack,
+/obj/random/loot,
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard/far)
"fKZ" = (
@@ -9434,8 +10187,9 @@
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard)
"fLu" = (
-/obj/effect/floor_decal/industrial/warning,
-/turf/simulated/floor/tiled/dark,
+/obj/structure/bed/stool,
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor/plating,
/area/maintenance/wing/starboard/far)
"fLv" = (
/obj/structure/cable/orange{
@@ -9475,6 +10229,16 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/plating,
/area/engineering/engine_room)
+"fMp" = (
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/wing/starboard)
"fME" = (
/obj/effect/floor_decal/corner/green{
dir = 9
@@ -9514,12 +10278,6 @@
},
/turf/simulated/floor/tiled/white,
/area/rnd/xenobiology)
-"fOm" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/wing/starboard)
"fOn" = (
/obj/machinery/door/firedoor,
/obj/effect/floor_decal/corner/blue{
@@ -9537,9 +10295,6 @@
dir = 8;
icon_state = "pipe-j2"
},
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
/obj/structure/cable/green{
icon_state = "2-8"
},
@@ -9549,6 +10304,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/kitchen)
"fPb" = (
@@ -9562,6 +10320,16 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/dark,
/area/rnd/xenobiology)
+"fPk" = (
+/obj/effect/floor_decal/corner_wide/grey/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/operations/break_room)
"fPP" = (
/obj/effect/floor_decal/corner/blue{
dir = 9
@@ -9645,10 +10413,12 @@
/turf/simulated/floor/tiled/white,
/area/medical/or1)
"fRc" = (
+/obj/structure/plasticflaps/airtight,
/obj/machinery/door/blast/regular{
_wifi_id = "chapel_driver";
id = "chapel_driver"
},
+/obj/effect/floor_decal/industrial/hatch/red,
/turf/simulated/floor/reinforced,
/area/chapel/office)
"fRg" = (
@@ -9657,6 +10427,17 @@
},
/turf/simulated/floor/reinforced,
/area/horizonexterior)
+"fRi" = (
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/operations/office)
"fRN" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
@@ -9711,9 +10492,8 @@
/turf/simulated/floor/plating,
/area/engineering/engine_room/tesla)
"fSK" = (
-/obj/effect/floor_decal/spline/plain/corner,
-/obj/structure/cable/green{
- icon_state = "2-4"
+/obj/structure/railing/mapped{
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_two)
@@ -9737,25 +10517,14 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/hallway)
"fTd" = (
-/obj/machinery/portable_atmospherics/canister/air/airlock,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/atmospherics/portables_connector,
-/obj/effect/floor_decal/industrial/outline/red,
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/obj/machinery/light/small/emergency,
+/obj/machinery/recharge_station,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/reinforced,
+/area/turret_protected/ai_upload)
"fTo" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/maintenance{
- req_access = list(12)
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/wing/starboard)
+/turf/simulated/wall,
+/area/janitor/stairs)
"fTZ" = (
/obj/effect/floor_decal/corner_wide/yellow{
dir = 10
@@ -9784,6 +10553,9 @@
dir = 10
},
/obj/structure/lattice/catwalk/indoor/grate,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
/turf/simulated/floor/plating,
/area/maintenance/aft)
"fUj" = (
@@ -9798,14 +10570,17 @@
/area/operations/office)
"fVs" = (
/obj/structure/cable/green{
- icon_state = "1-2"
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/landmark/start{
- name = "Assistant"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/corner/green{
+ dir = 5
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/storage/primary)
"fVA" = (
@@ -9869,7 +10644,7 @@
/turf/simulated/floor/plating,
/area/maintenance/wing/port/far)
"fWI" = (
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/lino/grey,
/area/chapel/main)
"fWU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -9882,11 +10657,20 @@
},
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
-"fYh" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/reagent_dispensers/extinguisher,
+"fYC" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Deck 2 Central Stairwell"
+ },
+/obj/machinery/door/firedoor/multi_tile,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
-/area/engineering/storage_hard)
+/area/horizon/stairwell/central)
"fYW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/dark,
@@ -9932,7 +10716,7 @@
dir = 5
},
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"fZI" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -9976,11 +10760,11 @@
/turf/simulated/floor/tiled,
/area/operations/mail_room)
"gax" = (
-/obj/structure/ladder{
- pixel_y = 16
+/obj/effect/floor_decal/corner/mauve/full{
+ dir = 1
},
-/turf/simulated/open,
-/area/maintenance/aft)
+/turf/simulated/floor/tiled/dark,
+/area/rnd/hallway)
"gaA" = (
/obj/effect/floor_decal/industrial/warning,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -9999,8 +10783,11 @@
/obj/machinery/atm{
pixel_y = 28
},
-/obj/effect/floor_decal/corner/brown{
- dir = 9
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/full{
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/operations/lobby)
@@ -10013,6 +10800,12 @@
},
/turf/simulated/floor/tiled,
/area/operations/break_room)
+"gce" = (
+/obj/effect/floor_decal/corner/mauve/full{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload_foyer)
"gci" = (
/obj/structure/lattice/catwalk/indoor/grate,
/obj/structure/cable{
@@ -10030,14 +10823,22 @@
/turf/simulated/floor/plating,
/area/hallway/engineering/tesla)
"gcS" = (
-/obj/machinery/light{
- dir = 8
- },
/obj/effect/landmark{
name = "JoinLateCyborg"
},
-/turf/simulated/floor/reinforced,
-/area/turret_protected/ai_upload)
+/obj/machinery/computer/cryopod/robot{
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/corner/mauve/diagonal,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload_foyer)
"gds" = (
/obj/structure/railing/mapped{
dir = 8
@@ -10071,14 +10872,17 @@
dir = 1;
pixel_y = -28
},
-/obj/effect/floor_decal/corner/brown{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/operations/office)
"gdW" = (
/obj/structure/table/rack,
/obj/structure/window/reinforced,
@@ -10161,21 +10965,17 @@
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
"gfI" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
+/obj/effect/floor_decal/corner/green{
+ dir = 10
},
-/obj/item/circuitboard/message_monitor{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/circuitboard/arcade/battle,
-/obj/item/circuitboard/arcade/orion_trail,
-/turf/simulated/floor/plating,
-/area/engineering/storage/tech)
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"gfN" = (
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/obj/machinery/computer/borgupload{
+ dir = 1
+ },
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/ai_upload)
"gfX" = (
/obj/structure/table/rack,
/obj/item/clothing/mask/breath,
@@ -10209,11 +11009,38 @@
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
"ggy" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/operations/lobby)
+"ggz" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/engineering{
+ name = "Technical Storage";
+ req_one_access = list(19, 23)
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/storage/tech)
"ggA" = (
/obj/structure/toilet/noose{
dir = 4
@@ -10227,8 +11054,6 @@
/obj/structure/cable/green{
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -10236,6 +11061,12 @@
/obj/structure/cable/green{
icon_state = "2-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/security/brig)
"gho" = (
@@ -10268,12 +11099,17 @@
/obj/machinery/light{
dir = 1
},
-/obj/machinery/turretid/stun{
- name = "AI Upload turret control";
- pixel_y = 30
+/obj/effect/floor_decal/corner/mauve{
+ dir = 5
},
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload)
"gis" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
@@ -10285,18 +11121,12 @@
/turf/simulated/floor/tiled,
/area/security/prison)
"giP" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
/obj/structure/railing/mapped{
dir = 8
},
-/obj/structure/lattice,
-/obj/machinery/light/small/emergency{
- dir = 4
- },
+/obj/structure/railing/mapped,
/turf/simulated/open,
-/area/maintenance/wing/starboard)
+/area/operations/office)
"gjl" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
@@ -10338,16 +11168,20 @@
/turf/simulated/floor/plating,
/area/engineering/engine_room/tesla)
"gkB" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light{
- dir = 8
+/obj/machinery/door/firedoor/multi_tile,
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Deck 2 Starboard Docks"
},
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_two)
+/obj/machinery/door/blast/shutters/open{
+ dir = 2;
+ id = "seconddeckdockint";
+ name = "Security Checkpoint Internal Shutter"
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/reinforced,
+/area/security/checkpoint2)
"gkM" = (
/obj/effect/floor_decal/corner/white{
dir = 10
@@ -10359,10 +11193,19 @@
/turf/simulated/floor/reinforced,
/area/hallway/primary/central_two)
"glt" = (
-/turf/simulated/floor/tiled/ramp{
- dir = 4
+/obj/structure/grille/broken,
+/obj/structure/window/reinforced{
+ dir = 8
},
-/area/maintenance/wing/starboard)
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/item/material/shard{
+ icon_state = "small"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/wing/starboard/far)
"glx" = (
/obj/machinery/atmospherics/pipe/simple/visible/black{
dir = 10
@@ -10427,6 +11270,12 @@
},
/turf/simulated/floor/plating,
/area/medical/reception)
+"gnm" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/maintenance/aux_atmospherics/deck_2/starboard)
"gny" = (
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -10461,6 +11310,19 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
+"gos" = (
+/obj/effect/floor_decal/corner/green/full{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/firealarm/south,
+/turf/simulated/floor/tiled,
+/area/horizon/stairwell/central)
"gov" = (
/obj/effect/floor_decal/spline/fancy{
dir = 9
@@ -10486,18 +11348,24 @@
/turf/simulated/floor/tiled,
/area/teleporter)
"gps" = (
-/obj/structure/lattice,
-/obj/machinery/light{
+/obj/effect/floor_decal/corner/mauve/full{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload)
+"gqd" = (
+/obj/item/material/shard{
+ icon_state = "small"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
dir = 4
},
-/obj/structure/cable/green{
- icon_state = "11-2"
- },
-/obj/structure/cable/orange{
- icon_state = "1-8"
- },
-/turf/simulated/open,
-/area/turret_protected/ai)
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/starboard)
"gqo" = (
/obj/effect/floor_decal/corner_wide/yellow{
dir = 9
@@ -10600,27 +11468,21 @@
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/door/airlock/maintenance{
- req_access = list(12)
- },
/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/maintenance_hatch,
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard/far)
"gsz" = (
/turf/simulated/wall/r_wall,
/area/engineering/engine_waste)
"gsQ" = (
-/obj/machinery/power/apc{
- is_critical = 1;
- name = "south bump";
- pixel_y = -24
+/obj/machinery/computer/aiupload{
+ dir = 1
},
-/obj/structure/cable/orange,
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/turf/simulated/floor/bluegrid,
+/area/turret_protected/ai_upload)
"gsR" = (
/obj/structure/table/standard,
/obj/item/reagent_containers/glass/beaker/large,
@@ -10721,16 +11583,13 @@
/turf/simulated/floor/lino/grey,
/area/crew_quarters/bar)
"gun" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/industrial/warning{
+/obj/structure/railing/mapped{
dir = 8
},
-/obj/structure/lattice/catwalk/indoor/grate,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
/turf/simulated/floor/plating,
/area/maintenance/hangar/port)
"guv" = (
@@ -10748,15 +11607,6 @@
},
/turf/simulated/floor/carpet/rubber,
/area/engineering/engine_monitoring)
-"gvv" = (
-/obj/structure/railing/mapped{
- dir = 8
- },
-/obj/structure/railing/mapped{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/wing/starboard/far)
"gvy" = (
/obj/machinery/atmospherics/pipe/manifold/visible{
dir = 4
@@ -10764,11 +11614,20 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/tiled/dark,
/area/maintenance/aux_atmospherics/deck_2/starboard)
+"gvB" = (
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/obj/structure/railing/mapped{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/operations/office)
"gvG" = (
/obj/effect/floor_decal/industrial/loading/yellow{
dir = 1
},
-/turf/simulated/floor/tiled,
+/turf/simulated/floor/tiled/dark,
/area/operations/lobby)
"gwe" = (
/obj/structure/bed/stool/chair{
@@ -10790,7 +11649,7 @@
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/operations/office)
"gwy" = (
/obj/machinery/smartfridge/drinks{
opacity = 1
@@ -10812,14 +11671,17 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/hallway)
"gwZ" = (
-/turf/simulated/floor/tiled/ramp,
+/obj/structure/table/standard,
+/obj/structure/railing/mapped{
+ dir = 1
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor/plating,
/area/maintenance/wing/starboard/far)
"gxa" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
+/turf/simulated/floor/plating,
+/area/turret_protected/ai_upload)
"gyn" = (
/obj/effect/floor_decal/corner/white{
dir = 8
@@ -10833,12 +11695,11 @@
/turf/simulated/floor/reinforced,
/area/hallway/primary/central_two)
"gyu" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 5
+/obj/effect/floor_decal/corner/yellow{
+ dir = 9
},
-/obj/machinery/meter,
/turf/simulated/floor/tiled/dark,
-/area/maintenance/aux_atmospherics/deck_2/starboard)
+/area/engineering/storage/tech)
"gyC" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -10854,7 +11715,7 @@
/area/maintenance/wing/port)
"gzg" = (
/obj/machinery/door/airlock/maintenance{
- req_access = list(66)
+ req_access = list(5)
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
@@ -10878,6 +11739,13 @@
},
/turf/simulated/floor/tiled,
/area/rnd/xenobiology)
+"gAp" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_wide/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/operations/break_room)
"gAs" = (
/obj/machinery/camera/network/engine{
c_tag = "Engineering - Particle Generator Room";
@@ -10912,7 +11780,7 @@
pixel_x = 32
},
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"gBa" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -10987,6 +11855,7 @@
dir = 8
},
/obj/effect/floor_decal/corner/black/diagonal,
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/tiled/dark,
/area/maintenance/wing/starboard)
"gBO" = (
@@ -11019,10 +11888,16 @@
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/lattice/catwalk/indoor/grate/damaged,
/obj/machinery/alarm{
pixel_y = 28
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard/far)
"gDc" = (
@@ -11064,12 +11939,12 @@
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/structure/disposalpipe/junction,
/obj/effect/floor_decal/corner/brown{
- dir = 1
+ dir = 10
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/operations/office)
"gDO" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -11142,17 +12017,22 @@
/turf/simulated/floor/wood,
/area/hydroponics/garden)
"gFs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5
+/obj/effect/landmark{
+ name = "JoinLateCyborg"
},
-/turf/simulated/floor/reinforced,
-/area/turret_protected/ai_upload)
+/obj/effect/floor_decal/corner/mauve/diagonal,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload_foyer)
"gFx" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_mining{
name = "Operations Bay";
req_access = null;
- req_one_access = list(31,48,26,67)
+ req_one_access = list(26, 31, 48, 67)
},
/turf/simulated/floor/tiled,
/area/operations/office)
@@ -11172,6 +12052,16 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
+"gFX" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/machinery/camera/network/service{
+ c_tag = "Dinner - Bartender Desk Port";
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
"gGv" = (
/obj/effect/floor_decal/corner/lime{
dir = 9
@@ -11215,15 +12105,14 @@
/area/engineering/engine_room/tesla)
"gHn" = (
/obj/structure/cable/green{
- icon_state = "4-8"
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
/area/security/checkpoint2)
"gHo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -11279,6 +12168,21 @@
},
/turf/simulated/floor/tiled,
/area/maintenance/wing/starboard)
+"gJM" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner/yellow{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"gKh" = (
/obj/machinery/alarm{
dir = 8;
@@ -11396,10 +12300,12 @@
/turf/simulated/floor/plating,
/area/maintenance/substation/engineering)
"gOq" = (
-/obj/structure/weightlifter,
/obj/effect/floor_decal/corner/brown{
dir = 5
},
+/obj/machinery/light{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/operations/break_room)
"gOH" = (
@@ -11568,6 +12474,11 @@
/obj/item/pen,
/turf/simulated/floor/tiled/white,
/area/medical/reception)
+"gSh" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/starboard)
"gSN" = (
/obj/structure/cable{
icon_state = "0-2"
@@ -11588,8 +12499,10 @@
/obj/effect/floor_decal/industrial/warning{
dir = 1
},
-/obj/structure/table/rack,
-/obj/random/loot,
+/obj/structure/railing/mapped{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/hangar/port)
"gUA" = (
@@ -11613,19 +12526,23 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/hallway)
"gUB" = (
-/obj/machinery/atmospherics/pipe/simple/visible/universal,
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor/plating,
-/area/maintenance/aux_atmospherics/deck_2/starboard)
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner/yellow{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/storage/tech)
"gVn" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/bed/stool/chair/padded/black{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_two)
+/turf/simulated/wall,
+/area/horizon/stairwell/central)
"gVq" = (
/obj/effect/floor_decal/industrial/warning{
dir = 8
@@ -11642,14 +12559,6 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/xenobiology)
"gVs" = (
-/obj/structure/filingcabinet/filingcabinet{
- pixel_x = 7;
- pixel_y = 1
- },
-/obj/structure/filingcabinet/filingcabinet{
- pixel_x = -7;
- pixel_y = 1
- },
/obj/machinery/light{
dir = 1
},
@@ -11659,6 +12568,14 @@
/obj/effect/floor_decal/corner/brown{
dir = 5
},
+/obj/structure/filingcabinet/filingcabinet{
+ pixel_x = -9;
+ pixel_y = 1
+ },
+/obj/machinery/papershredder{
+ pixel_x = 7
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/operations/office)
"gWW" = (
@@ -11685,6 +12602,9 @@
/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/turf/simulated/floor/plating,
/area/engineering/engine_waste)
+"gXy" = (
+/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
+/area/bridge/aibunker)
"gXD" = (
/obj/effect/floor_decal/corner/mauve/diagonal,
/obj/machinery/light{
@@ -11711,6 +12631,21 @@
/obj/effect/decal/warning_stripes,
/turf/simulated/floor/tiled/dark,
/area/security/armory)
+"gYc" = (
+/obj/effect/floor_decal/corner/brown{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled,
+/area/operations/office)
"gYj" = (
/obj/structure/window/reinforced,
/obj/machinery/light,
@@ -11746,7 +12681,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/lino/grey,
/area/chapel/main)
"gZt" = (
/turf/simulated/floor/wood,
@@ -11795,8 +12730,13 @@
/obj/item/stack/medical/bruise_pack,
/obj/item/stack/medical/ointment,
/obj/item/stack/medical/ointment,
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/item/reagent_containers/hypospray/autoinjector/inaprovaline,
+/obj/item/reagent_containers/hypospray/autoinjector/inaprovaline,
/turf/simulated/floor/tiled,
-/area/hallway/primary/central_two)
+/area/security/checkpoint2)
"hcF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -11881,24 +12821,12 @@
/turf/simulated/floor/tiled,
/area/rnd/xenobiology/xenoflora)
"het" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/floor_decal/corner/brown{
dir = 5
},
/obj/machinery/alarm{
pixel_y = 28
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/tiled,
/area/operations/lobby)
"heH" = (
@@ -11906,9 +12834,12 @@
/turf/simulated/floor/tiled,
/area/teleporter)
"hfh" = (
-/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
-/turf/simulated/floor/plating,
-/area/engineering/locker_room)
+/obj/machinery/camera/network/service{
+ c_tag = "Service - Chapel Port";
+ dir = 1
+ },
+/turf/simulated/floor/lino/grey,
+/area/chapel/main)
"hfm" = (
/obj/structure/bed/stool/chair/office/dark{
dir = 8
@@ -11967,15 +12898,24 @@
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
"hfR" = (
+/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
+/obj/machinery/door/blast/shutters/open{
+ dir = 2;
+ id = "seconddeckdocksaf";
+ name = "Security Checkpoint Shutter"
+ },
+/turf/simulated/floor/plating,
+/area/security/checkpoint2)
+"hgK" = (
+/obj/structure/table/rack,
+/obj/item/towel,
+/obj/random/soap,
/obj/structure/window/reinforced{
- dir = 8
+ dir = 4
},
/obj/structure/window/reinforced,
-/obj/structure/railing/mapped{
- dir = 8
- },
-/turf/simulated/open,
-/area/maintenance/wing/starboard)
+/turf/simulated/floor/tiled/freezer,
+/area/operations/break_room)
"hgO" = (
/obj/machinery/portable_atmospherics/hydroponics,
/obj/machinery/light,
@@ -12004,6 +12944,13 @@
},
/turf/simulated/floor/tiled,
/area/engineering/storage_hard)
+"hhY" = (
+/obj/effect/floor_decal/corner_wide/grey/diagonal,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/operations/break_room)
"hiq" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -12112,11 +13059,8 @@
/area/engineering/storage_hard)
"hlM" = (
/obj/machinery/door/airlock/mining{
- name = "Restroom";
- req_one_access = list(31,48,26,67)
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
+ name = "Showers";
+ req_one_access = list(26, 31, 48, 67)
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -12124,27 +13068,19 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/freezer,
+/turf/simulated/floor/tiled/white,
/area/operations/break_room)
"hmK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/effect/floor_decal/corner/green{
dir = 6
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Assistant"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = 24
},
/turf/simulated/floor/tiled,
-/area/storage/primary)
+/area/security/checkpoint2)
"hmX" = (
/obj/structure/railing/mapped,
/obj/structure/lattice,
@@ -12171,14 +13107,14 @@
/turf/simulated/floor/tiled,
/area/operations/office)
"hnf" = (
-/obj/machinery/status_display{
- layer = 4;
- pixel_x = -32
- },
/obj/machinery/camera/network/second_deck{
c_tag = "Second Deck - Dinner Entrance 1";
dir = 4
},
+/obj/structure/sign/emerg_exit/evac{
+ pixel_x = -32;
+ dir = 8
+ },
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
"hnC" = (
@@ -12194,12 +13130,15 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
+"hnE" = (
+/obj/machinery/light/small/emergency,
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/starboard/far)
"hnN" = (
-/obj/machinery/door/airlock/maintenance{
- req_access = list(12)
- },
/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/dark,
+/obj/machinery/door/airlock/maintenance_hatch,
+/turf/simulated/floor/plating,
/area/maintenance/wing/port/far)
"hnP" = (
/obj/machinery/smartfridge,
@@ -12227,19 +13166,29 @@
},
/turf/simulated/floor/reinforced,
/area/assembly/chargebay)
+"hoe" = (
+/obj/structure/foamedmetal,
+/turf/simulated/floor/plating,
+/area/engineering/engine_monitoring/tesla)
"hoi" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/wing/port/far)
"hoo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
+/obj/effect/floor_decal/corner/mauve{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/spline/plain/corner{
dir = 4
},
-/obj/effect/landmark{
- name = "JoinLateCyborg"
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
},
-/turf/simulated/floor/reinforced,
-/area/turret_protected/ai_upload)
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload_foyer)
"hoZ" = (
/obj/machinery/embedded_controller/radio/airlock/docking_port{
frequency = 1380;
@@ -12265,7 +13214,7 @@
dir = 8
},
/turf/simulated/floor/plating,
-/area/hallway/primary/central_two)
+/area/security/checkpoint2)
"hpw" = (
/obj/machinery/camera/network/engine{
c_tag = "Engineering - SMES Room 1";
@@ -12325,7 +13274,7 @@
/area/security/armory)
"hqi" = (
/obj/machinery/door/airlock/maintenance_hatch{
- req_one_access = list(12,47)
+ req_access = list(47)
},
/turf/simulated/floor/plating,
/area/rnd/hallway)
@@ -12400,8 +13349,6 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/blast/regular{
density = 0;
dir = 4;
@@ -12415,8 +13362,20 @@
req_access = list(63)
},
/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
+/turf/simulated/floor/tiled,
/area/security/brig)
+"hsA" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/obj/machinery/alarm{
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/chapel/main)
"hsH" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
dir = 5
@@ -12477,35 +13436,33 @@
},
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard)
+"hvo" = (
+/obj/structure/bed/padded,
+/obj/item/bedsheet/black,
+/obj/structure/railing/mapped{
+ dir = 1
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/starboard/far)
"hvu" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/machinery/light,
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
"hvH" = (
-/obj/machinery/light{
- dir = 8
- },
/obj/effect/floor_decal/corner/brown{
dir = 9
},
+/obj/structure/weightlifter,
/turf/simulated/floor/tiled,
/area/operations/break_room)
"hvL" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/light/small/emergency{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/hangar/port)
"hvU" = (
@@ -12540,7 +13497,7 @@
name = "Dinner Hall"
},
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"hwM" = (
/obj/machinery/light{
dir = 8
@@ -12561,10 +13518,24 @@
},
/turf/simulated/floor/tiled,
/area/engineering/storage_hard)
+"hym" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/corner/brown{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/operations/office)
"hyL" = (
/turf/simulated/floor/tiled/dark,
/area/rnd/telesci)
"hzm" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
/turf/simulated/floor/tiled/dark,
/area/turbolift/scc_ship/cargo_lift)
"hzC" = (
@@ -12605,11 +13576,19 @@
/area/medical/psych)
"hAh" = (
/obj/structure/cable/green{
- icon_state = "1-2"
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/structure/disposalpipe/junction{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/operations/lobby)
"hAu" = (
@@ -12645,12 +13624,12 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/corner/brown{
- dir = 9
- },
/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner/brown/full{
+ dir = 8
+ },
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/operations/office)
"hBL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -12665,7 +13644,7 @@
/area/hallway/primary/central_two)
"hBN" = (
/obj/structure/lattice/catwalk/indoor,
-/turf/simulated/floor/plating,
+/turf/simulated/floor/reinforced,
/area/horizonexterior)
"hBQ" = (
/obj/machinery/alarm{
@@ -12774,6 +13753,9 @@
/obj/structure/cable/green{
icon_state = "2-4"
},
+/obj/structure/railing/mapped{
+ dir = 8
+ },
/turf/simulated/floor/tiled,
/area/operations/lobby)
"hDr" = (
@@ -12792,27 +13774,32 @@
/turf/simulated/floor/wood,
/area/chapel/main)
"hEi" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"hEo" = (
-/obj/machinery/disposal/small/west,
-/obj/structure/disposalpipe/trunk{
+/obj/structure/bed/stool/chair/wood{
dir = 8
},
-/turf/simulated/floor/tiled,
-/area/operations/lobby)
+/obj/effect/floor_decal/spline/fancy{
+ dir = 5
+ },
+/turf/simulated/floor/wood,
+/area/chapel/main)
+"hEo" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/central_two)
"hEs" = (
-/obj/structure/lattice,
-/obj/structure/cable/orange{
+/obj/effect/floor_decal/corner/mauve{
+ dir = 9
+ },
+/obj/structure/cable/green{
icon_state = "2-8"
},
-/turf/simulated/open,
+/obj/effect/floor_decal/spline/fancy{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
/area/turret_protected/ai)
"hEw" = (
/obj/structure/shuttle_part/scc_space_ship{
@@ -12827,16 +13814,19 @@
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
"hEP" = (
-/obj/structure/table/standard,
-/obj/machinery/cell_charger,
-/turf/simulated/floor/tiled,
-/area/storage/primary)
-"hFg" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
+/obj/structure/bed/stool/chair{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/engineering/storage/tech)
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
+"hFg" = (
+/obj/machinery/door/airlock{
+ name = "Emergency Supplies Closet"
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"hFm" = (
/obj/structure/table/standard,
/obj/effect/floor_decal/corner_wide/green/full{
@@ -12890,8 +13880,19 @@
name = "Central Washroom"
},
/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/freezer,
+/turf/simulated/floor/tiled/white,
/area/hallway/primary/central_two)
+"hGJ" = (
+/obj/structure/railing/mapped{
+ dir = 1
+ },
+/obj/machinery/recharge_station,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/turret_protected/ai_upload)
"hGK" = (
/obj/machinery/atmospherics/portables_connector{
dir = 8
@@ -12935,7 +13936,14 @@
/turf/simulated/floor/tiled/white,
/area/hallway/medical)
"hHM" = (
-/obj/structure/ladder,
+/obj/structure/ladder{
+ pixel_y = 4
+ },
+/obj/structure/lattice/catwalk,
+/obj/machinery/camera/network/command{
+ c_tag = "AI Core - Aft";
+ dir = 1
+ },
/turf/simulated/open,
/area/turret_protected/ai)
"hHV" = (
@@ -12966,13 +13974,18 @@
/turf/simulated/floor/grass/alt,
/area/hallway/primary/central_two)
"hIT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/plating,
-/area/maintenance/aux_atmospherics/deck_2/starboard)
+/obj/item/circuitboard/robotics{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/effect/floor_decal/corner_wide/blue/full,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/reinforced,
+/area/engineering/storage/tech)
"hIV" = (
/obj/structure/railing/mapped{
dir = 4
@@ -12981,31 +13994,35 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/wing/port/far)
+"hJj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue{
+ dir = 10
+ },
+/obj/machinery/light/small/emergency,
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
"hKh" = (
-/obj/effect/floor_decal/corner_wide/grey/diagonal,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/white,
-/area/operations/break_room)
+/obj/structure/lattice,
+/obj/structure/railing/mapped,
+/turf/simulated/open,
+/area/operations/office)
"hKM" = (
/obj/machinery/washing_machine,
/obj/effect/floor_decal/corner/red/diagonal,
/turf/simulated/floor/tiled/white,
/area/security/prison)
"hLb" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 9
+/obj/effect/floor_decal/corner/yellow{
+ dir = 6
+ },
+/obj/structure/sign/nosmoking_1{
+ pixel_x = 32
},
/turf/simulated/floor/tiled/dark,
-/area/maintenance/aux_atmospherics/deck_2/starboard)
+/area/engineering/storage/tech)
"hLP" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -13016,11 +14033,13 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/floor_decal/corner_wide/grey/diagonal,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/tiled/white,
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
/area/operations/break_room)
"hLT" = (
/obj/structure/table/rack,
@@ -13070,14 +14089,6 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_two)
-"hNH" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet/toolcloset,
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/wing/starboard/far)
"hNO" = (
/obj/effect/floor_decal/spline/plain{
dir = 5
@@ -13086,6 +14097,11 @@
/obj/item/storage/bag/slimes,
/turf/simulated/floor/carpet/rubber,
/area/rnd/xenobiology)
+"hOA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/floor_decal/corner/blue/diagonal,
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
"hOU" = (
/turf/simulated/wall,
/area/medical/psych)
@@ -13133,7 +14149,7 @@
icon_state = "1-4"
},
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"hQa" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
@@ -13163,7 +14179,14 @@
/turf/simulated/floor/tiled/white,
/area/medical/gen_treatment)
"hQE" = (
-/obj/effect/shuttle_landmark/lift/cargo_top,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/computer/shuttle_control/lift{
+ pixel_y = -2;
+ shuttle_tag = "Operations Lift";
+ pixel_x = -7
+ },
/turf/simulated/floor/tiled/dark,
/area/turbolift/scc_ship/cargo_lift)
"hQI" = (
@@ -13184,20 +14207,13 @@
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"hRY" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "AICore";
- name = "AI core maintenance hatch";
- opacity = 0
- },
/obj/machinery/camera/network/command{
c_tag = "AI Core - Second Deck Airlock"
},
-/obj/structure/cable/orange{
+/obj/structure/cable/green{
icon_state = "4-8"
},
-/turf/simulated/floor/reinforced,
+/turf/simulated/floor/plating,
/area/turret_protected/ai)
"hSp" = (
/turf/simulated/floor/grass/alt,
@@ -13261,9 +14277,14 @@
/turf/simulated/floor/wood,
/area/library)
"hUe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/bed/stool/chair/padded/black{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
/turf/simulated/floor/tiled,
-/area/hallway/primary/central_two)
+/area/security/checkpoint2)
"hUh" = (
/obj/structure/table/standard,
/obj/machinery/light{
@@ -13294,12 +14315,16 @@
/turf/simulated/floor/tiled/white,
/area/medical/gen_treatment)
"hUs" = (
-/obj/structure/railing/mapped{
- dir = 1
+/obj/machinery/power/apc{
+ name = "north bump";
+ pixel_y = -24
},
-/obj/random/junk,
-/turf/simulated/floor/plating,
-/area/maintenance/wing/starboard/far)
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/maintenance/aux_atmospherics/deck_2/starboard)
"hUB" = (
/obj/effect/floor_decal/corner/mauve/diagonal,
/obj/machinery/smartfridge/secure/medbay,
@@ -13319,12 +14344,11 @@
/turf/simulated/floor/reinforced,
/area/template_noop)
"hUP" = (
-/obj/structure/lattice,
/obj/structure/railing/mapped{
dir = 4
},
/turf/simulated/open,
-/area/operations/storage)
+/area/operations/office)
"hVj" = (
/obj/effect/landmark{
name = "carpspawn"
@@ -13354,11 +14378,10 @@
/turf/simulated/floor/plating,
/area/engineering/engine_waste)
"hYk" = (
-/obj/structure/cable/orange{
- icon_state = "4-8"
- },
-/turf/simulated/floor/reinforced,
-/area/turret_protected/ai)
+/obj/effect/floor_decal/corner/mauve/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload)
"hYo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/appliance/cooker/oven,
@@ -13378,8 +14401,18 @@
/turf/simulated/floor/wood,
/area/library)
"iap" = (
-/obj/structure/extinguisher_cabinet{
- pixel_y = -30
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/operations/lobby)
@@ -13430,23 +14463,14 @@
/turf/simulated/floor/tiled,
/area/engineering/storage_eva)
"ibE" = (
-/obj/item/device/flashlight{
- pixel_x = 1;
- pixel_y = 5
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Starboard Emergency Supplies Closet";
+ dir = 1
},
-/obj/item/device/flashlight{
- pixel_x = 1;
- pixel_y = 5
- },
-/obj/item/device/flash,
-/obj/item/device/flash,
-/obj/machinery/ai_status_display{
- pixel_y = -32
- },
-/obj/structure/table/steel,
/obj/machinery/light/small,
-/turf/simulated/floor/plating,
-/area/engineering/storage/tech)
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"ibU" = (
/turf/simulated/wall/r_wall,
/area/security/brig/processing)
@@ -13473,8 +14497,16 @@
dir = 5
},
/obj/structure/closet/emcloset,
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
+"idy" = (
+/obj/structure/railing/mapped{
+ dir = 1
+ },
+/obj/structure/grille/broken,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/starboard/far)
"idF" = (
/obj/structure/lattice/catwalk/indoor/grate,
/obj/effect/floor_decal/industrial/warning{
@@ -13493,12 +14525,9 @@
/turf/simulated/floor/tiled,
/area/hydroponics)
"idS" = (
-/obj/machinery/door/firedoor,
-/obj/effect/floor_decal/corner/green{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/central_two)
+/obj/machinery/firealarm/north,
+/turf/simulated/floor/lino/grey,
+/area/chapel/main)
"idU" = (
/obj/effect/floor_decal/industrial/warning/corner{
dir = 4
@@ -13537,25 +14566,32 @@
/obj/item/reagent_containers/food/drinks/teapot,
/turf/simulated/floor/carpet,
/area/medical/psych)
-"ien" = (
-/obj/item/modular_computer/console/preset/supply,
-/turf/simulated/floor/tiled,
-/area/operations/lobby)
-"ifm" = (
-/obj/effect/floor_decal/industrial/warning{
+"ief" = (
+/obj/effect/floor_decal/corner/green{
dir = 5
},
-/obj/structure/railing/mapped{
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/industrial/loading/yellow,
+/turf/simulated/floor/tiled,
+/area/horizon/stairwell/central)
+"ien" = (
+/obj/item/modular_computer/console/preset/supply,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/operations/lobby)
+"ieM" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/railing/mapped{
- dir = 1
- },
-/obj/structure/railing/mapped{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
+"ifm" = (
+/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
+/area/turret_protected/ai_upload)
"ifK" = (
/obj/machinery/firealarm/north,
/obj/effect/floor_decal/corner_wide/green{
@@ -13634,15 +14670,15 @@
/turf/simulated/floor/plating,
/area/maintenance/wing/port/far)
"iia" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/atmos{
+ name = "Deck 2 Starboard Auxiliary Atmospherics";
+ req_one_access = list(11, 24)
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/wing/starboard)
+/turf/simulated/floor/tiled,
+/area/maintenance/aux_atmospherics/deck_2/starboard)
"iic" = (
/obj/structure/table/reinforced{
table_mat = "steel";
@@ -13693,23 +14729,37 @@
/area/security/main)
"ijD" = (
/obj/machinery/button/remote/blast_door{
- dir = 8;
id = "seconddeckdockint";
name = "Interior Checkpoint Shutters";
- pixel_x = 25;
- pixel_y = 7
+ pixel_y = 7;
+ pixel_x = 5
},
/obj/machinery/button/remote/blast_door{
- dir = 8;
id = "seconddeckdockext";
name = "Exterior Checkpoint Shutters";
- pixel_x = 25;
- pixel_y = -5
+ pixel_y = -2;
+ pixel_x = 5
},
/obj/effect/floor_decal/corner/blue{
dir = 6
},
-/turf/simulated/floor/tiled,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/table/steel,
+/obj/machinery/button/remote/blast_door{
+ id = "seconddeckdocksaf";
+ name = "Checkpoint Safety Shutters";
+ pixel_y = 7;
+ pixel_x = -5
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "seconddeckdockdesk";
+ name = "Checkpoint Desk Shutter";
+ pixel_y = -2;
+ pixel_x = -5
+ },
+/turf/simulated/floor/tiled/dark,
/area/security/checkpoint2)
"ijJ" = (
/obj/machinery/atmospherics/unary/vent_pump/engine{
@@ -13744,9 +14794,19 @@
/turf/simulated/floor/tiled/white,
/area/hallway/medical)
"ikb" = (
-/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/reagent_dispensers/extinguisher,
/turf/simulated/floor/tiled,
-/area/storage/primary)
+/area/engineering/storage_hard)
+"iku" = (
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/operations/office)
"ikB" = (
/obj/machinery/light,
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -13758,11 +14818,11 @@
/obj/structure/cable/orange{
icon_state = "1-2"
},
+/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_engineering{
name = "Tesla Bay";
req_one_access = list(11,24)
},
-/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/engineering/engine_monitoring/tesla)
"ily" = (
@@ -13798,8 +14858,8 @@
/obj/machinery/light{
dir = 8
},
-/obj/machinery/porta_turret/stationary,
-/turf/simulated/floor/tiled,
+/obj/machinery/porta_turret,
+/turf/simulated/floor/reinforced,
/area/turret_protected/ai)
"imC" = (
/obj/structure/railing/mapped{
@@ -13889,7 +14949,17 @@
/turf/simulated/floor/plating,
/area/engineering/engine_waste)
"ipr" = (
-/obj/machinery/vending/tool,
+/obj/structure/table/standard,
+/obj/item/paper_scanner,
+/obj/item/device/camera_film,
+/obj/item/device/camera_film,
+/obj/item/device/camera,
+/obj/item/device/hand_labeler,
+/obj/item/device/hand_labeler,
+/obj/machinery/light,
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
/turf/simulated/floor/tiled,
/area/storage/primary)
"ipy" = (
@@ -13901,11 +14971,9 @@
/turf/simulated/floor/tiled/white,
/area/rnd/xenobiology/xenoflora)
"ipL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
+/obj/effect/floor_decal/corner/yellow/diagonal,
/turf/simulated/floor/tiled/dark,
-/area/maintenance/aux_atmospherics/deck_2/starboard)
+/area/engineering/storage/tech)
"iqg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -13914,7 +14982,7 @@
/obj/machinery/door/airlock/glass_mining{
name = "Operations Bay";
req_access = null;
- req_one_access = list(31,48,26,67)
+ req_one_access = list(26, 31, 48, 67)
},
/turf/simulated/floor/tiled,
/area/operations/office)
@@ -13934,7 +15002,6 @@
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
-/obj/structure/bed/stool/chair/office/dark,
/turf/simulated/floor/tiled,
/area/operations/office)
"irF" = (
@@ -13959,6 +15026,9 @@
"isy" = (
/obj/effect/floor_decal/corner_wide/grey/diagonal,
/obj/machinery/vending/snack,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
/turf/simulated/floor/tiled/white,
/area/operations/break_room)
"isD" = (
@@ -14017,11 +15087,17 @@
/turf/simulated/floor/plating,
/area/engineering/smes/tesla)
"iwC" = (
-/obj/effect/floor_decal/corner/paleblue/full{
+/obj/machinery/cryopod/living_quarters{
+ pixel_y = 8
+ },
+/obj/effect/floor_decal/corner/green/full{
dir = 8
},
-/obj/machinery/computer/cryopod/living_quarters{
- pixel_y = 32
+/obj/structure/sign/directions/civ{
+ pixel_y = -10;
+ name = "\improper To Living Quarters sign";
+ desc = "A sign pointing out that a lift leads to the ship's living quarters.";
+ dir = 1
},
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/sleep/cryo/living_quarters_lift)
@@ -14031,15 +15107,6 @@
},
/turf/simulated/floor/plating,
/area/maintenance/wing/port)
-"ixQ" = (
-/obj/effect/floor_decal/corner/green{
- dir = 10
- },
-/obj/effect/floor_decal/spline/plain/corner{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/central_two)
"ixR" = (
/obj/effect/floor_decal/spline/plain/corner{
dir = 1
@@ -14064,17 +15131,23 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/gen_treatment)
-"izy" = (
-/obj/structure/cable{
- icon_state = "1-2"
+"izg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/effect/floor_decal/industrial/loading/yellow{
+/obj/machinery/camera/network/engineering{
+ c_tag = "Engineering - Deck 2 - Starboard Auxiliary Atmospherics";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/maintenance/aux_atmospherics/deck_2/starboard)
+"izy" = (
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/ramp{
dir = 1
},
-/turf/simulated/floor/plating,
/area/maintenance/wing/starboard/far)
"izV" = (
/obj/structure/extinguisher_cabinet{
@@ -14083,12 +15156,12 @@
pixel_y = 1
},
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"iAB" = (
+/obj/structure/foamedmetal,
/obj/structure/shuttle_part/scc_space_ship{
icon_state = "d3-6-f"
},
-/obj/structure/girder,
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard)
"iAF" = (
@@ -14101,23 +15174,7 @@
/turf/simulated/floor/plating,
/area/engineering/engine_room)
"iBa" = (
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/obj/structure/lattice/catwalk/indoor/grate,
+/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/plating,
/area/maintenance/hangar/port)
"iBw" = (
@@ -14137,19 +15194,19 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_waste)
-"iBT" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/structure/cable{
- icon_state = "4-8"
- },
+"iBG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/effect/floor_decal/corner/mauve{
+ dir = 5
},
-/turf/simulated/floor/plating,
-/area/maintenance/aux_atmospherics/deck_2/starboard)
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload)
"iCx" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -14174,14 +15231,15 @@
/turf/simulated/floor/tiled/white,
/area/rnd/research)
"iDj" = (
-/obj/effect/floor_decal/corner/brown{
- dir = 6
- },
/obj/machinery/alarm{
pixel_y = 28
},
+/obj/effect/floor_decal/corner/brown{
+ dir = 5
+ },
+/obj/structure/flora/pottedplant/random,
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/operations/office)
"iDy" = (
/obj/effect/floor_decal/corner/blue{
dir = 10
@@ -14218,23 +15276,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/bar)
-"iDK" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/lattice,
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/wing/starboard)
"iEd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -14284,6 +15325,18 @@
/obj/structure/window/shuttle/scc_space_ship,
/turf/simulated/floor/plating,
/area/engineering/engine_room)
+"iEB" = (
+/obj/effect/floor_decal/corner/yellow/full{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload)
"iEM" = (
/obj/structure/bed/stool/chair/padded/red{
dir = 4
@@ -14329,7 +15382,19 @@
/turf/simulated/floor/tiled/white,
/area/hallway/medical)
"iGE" = (
-/turf/simulated/wall,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
/area/storage/secure)
"iGG" = (
/obj/structure/stairs/north,
@@ -14498,13 +15563,18 @@
/turf/simulated/floor/tiled,
/area/security/prison)
"iJH" = (
-/obj/effect/floor_decal/corner/mauve{
- dir = 6
+/obj/structure/railing/mapped{
+ dir = 4
},
-/obj/effect/floor_decal/corner/mauve{
- dir = 9
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
},
-/turf/simulated/floor/tiled/dark,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/porta_turret,
+/turf/simulated/floor/reinforced,
/area/turret_protected/ai_upload)
"iJQ" = (
/obj/effect/floor_decal/corner_wide/yellow/full{
@@ -14533,8 +15603,16 @@
/turf/simulated/floor/plating,
/area/engineering/engine_room)
"iKF" = (
-/obj/machinery/cryopod/living_quarters,
-/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/item/device/radio/beacon,
+/obj/machinery/computer/cryopod/living_quarters{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/structure/railing/mapped{
+ dir = 8
+ },
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/sleep/cryo/living_quarters_lift)
"iKV" = (
@@ -14608,6 +15686,26 @@
},
/turf/simulated/floor/tiled,
/area/hallway/medical)
+"iMf" = (
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing/mapped,
+/obj/machinery/light/small/emergency{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/maintenance/wing/starboard)
+"iMo" = (
+/obj/structure/closet/crate/trashcart,
+/obj/effect/floor_decal/corner/purple/full{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/sign/nosmoking_1{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"iMG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
@@ -14638,6 +15736,16 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_two)
+"iND" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
"iNS" = (
/obj/structure/table/standard,
/obj/effect/floor_decal/corner/brown/full{
@@ -14647,6 +15755,7 @@
eftpos_name = "Operations Bay EFTPOS scanner"
},
/obj/item/device/destTagger,
+/obj/item/paper_scanner,
/turf/simulated/floor/tiled,
/area/operations/office)
"iNY" = (
@@ -14727,6 +15836,10 @@
name = "east bump";
pixel_x = 24
},
+/obj/machinery/camera/network/service{
+ c_tag = "Dinner - Kitchen Stairwell";
+ dir = 1
+ },
/turf/simulated/floor/tiled/dark,
/area/bridge/third_deck_stairs)
"iRl" = (
@@ -14751,9 +15864,11 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/hallway)
"iRM" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor/plating,
-/area/maintenance/hangar/port)
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/stairwell/central)
"iRN" = (
/obj/structure/railing/mapped{
dir = 4
@@ -14797,16 +15912,22 @@
/turf/simulated/floor/tiled/white,
/area/medical/icu)
"iSi" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/random/junk,
+/obj/structure/reagent_dispensers/extinguisher,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
/turf/simulated/floor/plating,
/area/maintenance/hangar/port)
"iSn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/machinery/light{
- dir = 8
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/button/remote/blast_door{
+ id = "ai_upload";
+ name = "AI Upload Foyer Blast Doors";
+ dir = 1;
+ pixel_y = -25
},
-/turf/simulated/floor/tiled/dark,
+/obj/machinery/porta_turret,
+/turf/simulated/floor/reinforced,
/area/turret_protected/ai_upload_foyer)
"iSx" = (
/obj/item/modular_computer/console/preset/engineering,
@@ -14959,12 +16080,27 @@
/turf/simulated/floor/carpet,
/area/medical/psych)
"iWz" = (
-/obj/structure/railing/mapped,
-/obj/structure/railing/mapped{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/lattice/catwalk/indoor,
+/turf/simulated/open,
+/area/operations/office)
+"iWN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
-/turf/simulated/open,
-/area/operations/storage)
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/structure/sign/vacuum{
+ pixel_y = -32
+ },
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Starboard Dock Starboard";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
"iWO" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -14974,20 +16110,17 @@
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
"iXv" = (
-/obj/structure/table/reinforced,
-/obj/effect/floor_decal/corner/blue/full{
- dir = 8
- },
/obj/machinery/camera/network/security{
c_tag = "Security - Second Deck Checkpoint";
dir = 4
},
-/obj/item/gun/energy/mousegun/xenofauna,
-/obj/item/gun/energy/mousegun/xenofauna,
-/turf/simulated/floor/tiled,
+/turf/simulated/wall,
/area/security/checkpoint2)
"iXI" = (
-/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/wall/r_wall,
/area/turret_protected/ai)
"iYn" = (
/obj/effect/floor_decal/industrial/warning/corner,
@@ -15000,15 +16133,30 @@
icon_state = "1-2"
},
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"iYw" = (
/obj/machinery/hologram/holopad,
/obj/machinery/camera/network/command{
- c_tag = "AI Core - Front Window";
+ c_tag = "AI Core - Upload";
dir = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/obj/machinery/power/apc{
+ is_critical = 1;
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/effect/floor_decal/corner/mauve{
+ dir = 10
+ },
+/obj/structure/cable/green,
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload)
"iYH" = (
/obj/structure/railing/mapped,
/turf/simulated/floor/plating,
@@ -15033,11 +16181,26 @@
/turf/simulated/floor/plating,
/area/maintenance/wing/port/far)
"iZP" = (
-/obj/effect/floor_decal/industrial/warning{
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/wing/starboard)
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/maintenance/aux_atmospherics/deck_2/starboard)
+"jaD" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"jaK" = (
/obj/machinery/smartfridge/drying_rack,
/turf/simulated/floor/wood,
@@ -15077,11 +16240,10 @@
/area/engineering/lobby)
"jck" = (
/obj/effect/floor_decal/corner_wide/grey/diagonal,
-/obj/structure/table/standard,
-/obj/machinery/camera/network/supply{
- c_tag = "Operations - Break Room"
+/obj/machinery/light{
+ dir = 1
},
-/obj/item/stack/packageWrap,
+/obj/machinery/vending/cola,
/turf/simulated/floor/tiled/white,
/area/operations/break_room)
"jcL" = (
@@ -15164,6 +16326,9 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/main_storage)
+"jeT" = (
+/turf/simulated/wall/r_wall,
+/area/bridge/aibunker)
"jeY" = (
/obj/effect/floor_decal/corner_wide/paleblue{
dir = 5
@@ -15208,6 +16373,12 @@
},
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
+"jgm" = (
+/obj/machinery/door/window/eastright,
+/turf/simulated/floor/tiled/ramp{
+ dir = 8
+ },
+/area/maintenance/wing/starboard/far)
"jgz" = (
/obj/effect/floor_decal/corner/white{
dir = 5
@@ -15448,7 +16619,7 @@
},
/obj/structure/disposalpipe/segment{
dir = 4;
- icon_state = "conpipe-c"
+ icon_state = "pipe-c"
},
/turf/simulated/floor/tiled,
/area/security/brig)
@@ -15549,6 +16720,22 @@
},
/turf/simulated/floor/wood,
/area/chapel/office)
+"jpi" = (
+/obj/effect/floor_decal/corner_wide/grey/diagonal,
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 12
+ },
+/obj/structure/mirror{
+ pixel_x = 28;
+ pixel_y = -3
+ },
+/obj/machinery/alarm{
+ pixel_y = -28;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/operations/break_room)
"jpB" = (
/obj/machinery/door/airlock/highsecurity{
name = "Secure Armory Section";
@@ -15621,11 +16808,8 @@
/turf/simulated/floor/plating,
/area/engineering/engine_room/tesla)
"jri" = (
-/obj/structure/shuttle_part/scc_space_ship{
- icon_state = "d3-4"
- },
-/turf/simulated/wall/r_wall,
-/area/turret_protected/ai_upload_foyer)
+/turf/simulated/floor/plating,
+/area/turret_protected/ai_upload)
"jrr" = (
/obj/effect/floor_decal/corner/mauve/full{
dir = 8
@@ -15662,15 +16846,6 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/reception)
-"jsg" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/effect/floor_decal/corner/beige{
- dir = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/wing/starboard/far)
"jsq" = (
/obj/machinery/atmospherics/pipe/manifold/visible/green{
dir = 8
@@ -15683,14 +16858,10 @@
/turf/simulated/open,
/area/hallway/engineering)
"jsI" = (
-/obj/effect/decal/warning_stripes,
-/obj/machinery/porta_turret/stationary,
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -28
- },
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/porta_turret,
+/turf/simulated/floor/reinforced,
+/area/turret_protected/ai_upload)
"jsR" = (
/obj/effect/floor_decal/industrial/warning{
dir = 4
@@ -15698,13 +16869,13 @@
/turf/simulated/floor/tiled,
/area/maintenance/wing/port/far)
"jsS" = (
-/obj/structure/table/reinforced,
/obj/machinery/recharger{
pixel_y = 4
},
/obj/effect/floor_decal/corner/blue/full,
/obj/item/storage/box/fancy/donut,
-/turf/simulated/floor/tiled,
+/obj/structure/table/steel,
+/turf/simulated/floor/tiled/dark,
/area/security/checkpoint2)
"jtf" = (
/obj/machinery/door/airlock/maintenance_hatch{
@@ -15733,18 +16904,13 @@
},
/turf/simulated/floor/tiled,
/area/engineering/storage_hard)
-"juS" = (
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
"juY" = (
-/obj/machinery/shieldwallgen{
- anchored = 1
+/obj/effect/floor_decal/corner/mauve/diagonal,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
-/obj/effect/floor_decal/industrial/warning/full,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/reinforced,
+/turf/simulated/floor/tiled,
/area/turret_protected/ai)
"jvI" = (
/obj/effect/landmark{
@@ -15880,10 +17046,7 @@
/obj/structure/railing/mapped{
dir = 8
},
-/obj/effect/floor_decal/industrial/loading/yellow{
- dir = 1
- },
-/turf/simulated/floor/plating,
+/turf/simulated/floor/tiled/ramp,
/area/maintenance/wing/starboard/far)
"jAT" = (
/obj/machinery/light_switch{
@@ -15946,16 +17109,16 @@
/turf/simulated/floor/lino/grey,
/area/crew_quarters/bar)
"jCL" = (
-/obj/effect/floor_decal/industrial/loading/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/landmark{
- name = "JoinLateLift"
+/obj/structure/cable/green{
+ icon_state = "2-4"
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/diagonal,
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/sleep/cryo/living_quarters_lift)
"jDa" = (
@@ -16014,8 +17177,14 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload)
+/obj/effect/landmark/start{
+ name = "Cyborg"
+ },
+/obj/effect/floor_decal/corner/mauve{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload_foyer)
"jEq" = (
/obj/effect/floor_decal/corner_wide/green{
dir = 5
@@ -16025,7 +17194,6 @@
/area/medical/exam)
"jEL" = (
/obj/structure/table/wood,
-/obj/item/nullrod/obsidianshards,
/turf/simulated/floor/carpet,
/area/chapel/office)
"jEM" = (
@@ -16038,11 +17206,8 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/landmark/start{
- name = "Cyborg"
- },
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload)
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload_foyer)
"jEO" = (
/obj/machinery/body_scanconsole{
dir = 4
@@ -16201,13 +17366,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/engineering/smes)
-"jJN" = (
-/obj/structure/railing/mapped{
- dir = 8
- },
-/obj/structure/railing/mapped,
-/turf/simulated/floor/plating,
-/area/maintenance/wing/starboard)
"jJW" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/tiled/ramp,
@@ -16244,11 +17402,12 @@
/turf/simulated/floor/tiled,
/area/hallway/engineering)
"jLM" = (
-/obj/machinery/light{
- dir = 1
+/obj/structure/bed/stool/chair/padded/black,
+/obj/effect/floor_decal/corner/green{
+ dir = 9
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/central_two)
+/area/security/checkpoint2)
"jLS" = (
/obj/structure/bed/stool/chair/office/dark,
/obj/machinery/atmospherics/pipe/simple/hidden{
@@ -16295,6 +17454,10 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_two)
+"jMJ" = (
+/obj/structure/lattice/catwalk,
+/turf/template_noop,
+/area/template_noop)
"jMO" = (
/obj/machinery/door/airlock/glass_security{
desc = "It opens and closes. Hazardous lifeforms ahead. Caution advised!";
@@ -16314,10 +17477,16 @@
/turf/simulated/floor/tiled,
/area/engineering/storage_eva)
"jNA" = (
-/obj/machinery/camera/network/supply{
- c_tag = "Operations - Secure Storage"
+/obj/structure/table/rack,
+/obj/item/stack/material/phoron,
+/obj/item/stack/material/phoron,
+/obj/item/stack/material/phoron,
+/obj/item/tank/phoron,
+/obj/item/tank/phoron,
+/obj/effect/floor_decal/corner_wide/blue/full{
+ dir = 1
},
-/obj/structure/closet/secure_closet,
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/reinforced,
/area/storage/secure)
"jNY" = (
@@ -16335,17 +17504,15 @@
/turf/simulated/floor/plating,
/area/maintenance/wing/port)
"jOK" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 5
- },
/obj/structure/railing/mapped{
dir = 4
},
/obj/structure/railing/mapped{
dir = 1
},
-/turf/simulated/floor/tiled/dark/airless,
-/area/maintenance/wing/starboard)
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/template_noop)
"jPb" = (
/obj/effect/floor_decal/corner_wide/paleblue{
dir = 9
@@ -16364,7 +17531,7 @@
pixel_x = 32
},
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"jPX" = (
/obj/effect/floor_decal/corner/mauve{
dir = 5
@@ -16388,24 +17555,33 @@
/turf/simulated/floor/tiled/white,
/area/rnd/xenobiology/xenoflora)
"jQg" = (
-/obj/structure/flora/pottedplant/random,
+/obj/structure/bed/stool/chair/wood{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy{
+ dir = 8
+ },
/turf/simulated/floor/wood,
/area/chapel/main)
"jRA" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
icon_state = "1-2"
},
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
+/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/corner/green{
dir = 10
},
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/central_two)
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/stairwell/central)
"jRE" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -16416,6 +17592,15 @@
},
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/bar)
+"jRN" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/structure/bed/stool/chair/padded/brown{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"jRO" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -16423,27 +17608,21 @@
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
"jSP" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/machinery/camera/network/second_deck{
- c_tag = "Second Deck - Main Tool Storage";
- dir = 1
+/obj/structure/table/standard,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/effect/floor_decal/corner/green{
+ dir = 10
},
/turf/simulated/floor/tiled,
/area/storage/primary)
"jSY" = (
-/obj/effect/floor_decal/industrial/warning/full,
-/obj/machinery/porta_turret/stationary,
+/obj/effect/floor_decal/corner/blue/diagonal,
/turf/simulated/floor/tiled,
-/area/turret_protected/ai)
-"jTA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
/area/turret_protected/ai_upload_foyer)
+"jTA" = (
+/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
+/area/engineering/engine_monitoring/tesla)
"jTH" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
@@ -16531,18 +17710,21 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass,
/obj/structure/cable/green{
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
/area/operations/lobby)
"jUU" = (
-/obj/structure/disposalpipe/trunk{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/obj/machinery/disposal,
+/obj/effect/landmark/start{
+ name = "Assistant"
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
/turf/simulated/floor/tiled,
/area/storage/primary)
"jVc" = (
@@ -16562,36 +17744,26 @@
/turf/simulated/floor/tiled/dark,
/area/hallway/engineering)
"jVR" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
+/obj/effect/floor_decal/corner/brown{
+ dir = 5
},
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
+"jVX" = (
+/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/floor_decal/corner/brown{
- dir = 5
- },
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j2"
- },
-/turf/simulated/floor/tiled,
-/area/operations/lobby)
-"jVX" = (
/obj/structure/cable/green{
icon_state = "11-4"
},
-/obj/structure/lattice,
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/zpipe/down/supply{
- dir = 4
- },
/turf/simulated/open,
/area/maintenance/wing/starboard)
"jWh" = (
@@ -16639,9 +17811,6 @@
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
"jWI" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- req_one_access = list(11,24)
- },
/obj/structure/cable{
icon_state = "1-2"
},
@@ -16649,16 +17818,15 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ req_one_access = list(11, 24)
+ },
/turf/simulated/floor/plating,
/area/engineering/smes/tesla)
"jWV" = (
/turf/simulated/wall,
/area/security/checkpoint2)
"jXv" = (
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/disposal,
/obj/effect/floor_decal/corner/brown{
dir = 5
},
@@ -16695,15 +17863,32 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
/area/security/lobby)
-"jZT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9
+"jZB" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/corner/green{
+ dir = 10
},
-/obj/structure/cable/orange{
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
+"jZT" = (
+/obj/effect/floor_decal/corner/mauve{
+ dir = 6
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/cable/green{
icon_state = "1-2"
},
-/turf/simulated/floor/reinforced,
-/area/turret_protected/ai_upload)
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload_foyer)
"kat" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -16908,9 +18093,6 @@
/turf/simulated/floor/plating,
/area/maintenance/wing/port/far)
"kgS" = (
-/obj/machinery/camera/network/service{
- c_tag = "Dinner - Bar 3"
- },
/obj/structure/table/stone/marble,
/obj/item/storage/box/fancy/cigarettes/cigar,
/obj/item/flame/candle{
@@ -16928,8 +18110,14 @@
/turf/simulated/floor/lino/grey,
/area/crew_quarters/bar)
"kgT" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/mauve{
+ dir = 6
+ },
/turf/simulated/floor/tiled,
-/area/turret_protected/ai_upload)
+/area/turret_protected/ai_upload_foyer)
"khd" = (
/obj/effect/floor_decal/spline/fancy/wood,
/obj/effect/floor_decal/spline/fancy/wood/corner{
@@ -16949,18 +18137,17 @@
/turf/simulated/floor/tiled,
/area/security/main)
"khK" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/effect/floor_decal/corner/green{
+ dir = 10
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/light/small/red{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/hangar/port)
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/stairwell/central)
"kie" = (
/obj/machinery/atmospherics/valve/digital/open{
name = "Starboard Main Supply Valve"
@@ -17031,11 +18218,6 @@
},
/turf/space/dynamic,
/area/template_noop)
-"kmS" = (
-/obj/structure/railing/mapped,
-/obj/structure/table/rack,
-/turf/simulated/floor/plating,
-/area/maintenance/wing/starboard/far)
"kpd" = (
/obj/machinery/power/breakerbox/activated{
RCon_tag = "Port Wing Substation"
@@ -17090,15 +18272,30 @@
/obj/machinery/newscaster{
pixel_y = 30
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
-"krl" = (
-/obj/effect/floor_decal/corner_wide/grey/diagonal,
-/obj/machinery/door/window/southright,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
+"krk" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/spline/fancy{
+ dir = 4
+ },
+/obj/machinery/firealarm/west,
+/turf/simulated/floor/tiled/dark,
+/area/turret_protected/ai)
+"krl" = (
+/obj/machinery/door/airlock/mining{
+ name = "Washroom and Showers";
+ req_one_access = list(26, 31, 48, 67)
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/white,
/area/operations/break_room)
"krC" = (
@@ -17262,8 +18459,10 @@
/obj/structure/bed/stool/chair/wood{
dir = 8
},
-/obj/machinery/firealarm/north,
-/turf/simulated/floor/lino/grey,
+/obj/effect/floor_decal/spline/fancy{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
/area/chapel/main)
"kvG" = (
/obj/structure/cable{
@@ -17282,6 +18481,13 @@
/obj/structure/table/standard,
/turf/simulated/floor/tiled,
/area/security/prison)
+"kvZ" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor/plating,
+/area/maintenance/aft)
"kwS" = (
/obj/effect/floor_decal/corner/mauve/diagonal,
/obj/effect/floor_decal/corner/grey{
@@ -17305,18 +18511,8 @@
/turf/simulated/open,
/area/maintenance/wing/starboard)
"kxt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/outline/red,
-/obj/structure/cable/orange{
- icon_state = "4-8"
- },
-/obj/structure/cable/orange{
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/turf/simulated/floor/reinforced,
+/area/turret_protected/ai_upload)
"kxz" = (
/obj/effect/floor_decal/corner_wide/lime/diagonal,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -17338,15 +18534,11 @@
/turf/simulated/floor/tiled,
/area/maintenance/wing/starboard)
"kyO" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/structure/railing/mapped{
+ dir = 8
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor/plating,
-/area/maintenance/hangar/port)
+/turf/simulated/open,
+/area/horizon/stairwell/central)
"kyV" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/dark,
@@ -17403,10 +18595,7 @@
/turf/simulated/floor/wood,
/area/crew_quarters/heads/chief)
"kzO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/landmark/start{
- name = "Assistant"
- },
+/obj/effect/floor_decal/corner/green/diagonal,
/turf/simulated/floor/tiled,
/area/storage/primary)
"kAn" = (
@@ -17424,11 +18613,13 @@
/area/library)
"kAo" = (
/turf/simulated/floor/lino/grey,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"kAJ" = (
/obj/structure/closet/emcloset,
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
-/area/hallway/primary/central_two)
+/area/security/checkpoint2)
"kAM" = (
/obj/structure/table/wood,
/obj/machinery/alarm{
@@ -17534,12 +18725,23 @@
icon_state = "2-8"
},
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"kEL" = (
-/obj/structure/railing/mapped,
-/obj/machinery/recharge_station,
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai_upload)
+/obj/effect/floor_decal/corner/mauve/full,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload_foyer)
+"kEY" = (
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/operations/office)
"kFa" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/keycard_auth{
@@ -17569,19 +18771,6 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/pharmacy)
-"kFI" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor/plating,
-/area/maintenance/wing/starboard)
"kFZ" = (
/obj/effect/floor_decal/corner/green{
dir = 9
@@ -17609,6 +18798,16 @@
/obj/structure/cable/green{
icon_state = "1-8"
},
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/hangar/port)
@@ -17651,9 +18850,11 @@
/turf/simulated/floor/tiled,
/area/operations/break_room)
"kJw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/engineering/storage/tech)
+/obj/effect/floor_decal/corner/red{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"kJN" = (
/obj/structure/railing/mapped{
dir = 1
@@ -17718,18 +18919,30 @@
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard)
"kKq" = (
-/obj/machinery/door/window/northright,
-/obj/machinery/door/window/southright,
-/obj/effect/floor_decal/corner_wide/grey/diagonal,
-/turf/simulated/floor/tiled,
-/area/maintenance/wing/starboard/far)
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/structure/table/steel,
+/obj/item/device/analyzer/plant_analyzer,
+/obj/item/device/healthanalyzer,
+/obj/item/device/healthanalyzer,
+/obj/item/device/analyzer,
+/obj/item/device/analyzer,
+/obj/item/device/t_scanner,
+/obj/item/device/t_scanner,
+/obj/effect/floor_decal/corner/yellow{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/storage/tech)
"kKM" = (
/obj/machinery/disposal/small/west,
/obj/structure/disposalpipe/trunk{
dir = 8
},
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"kKO" = (
/obj/machinery/newscaster{
pixel_x = 30
@@ -17788,16 +19001,16 @@
/turf/simulated/floor/plating,
/area/engineering/smes)
"kOE" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
/obj/structure/disposalpipe/sortjunction/flipped{
dir = 1;
name = "Operations";
sortType = "Cargo"
},
+/obj/effect/floor_decal/corner/brown{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/operations/office)
"kOW" = (
/obj/structure/bed/stool/chair/padded/black{
dir = 4
@@ -17837,6 +19050,9 @@
/obj/machinery/light/small{
dir = 1
},
+/obj/item/device/radio/intercom{
+ pixel_y = 24
+ },
/turf/simulated/floor/tiled/freezer{
name = "cold storage tiles";
temperature = 278
@@ -17902,12 +19118,13 @@
/turf/simulated/floor/tiled/white,
/area/rnd/xenobiology/xenoflora)
"kRA" = (
-/obj/structure/railing/mapped{
- dir = 8
- },
/obj/structure/railing/mapped{
dir = 1
},
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/aft)
"kRB" = (
@@ -17916,7 +19133,7 @@
pixel_y = -10
},
/turf/simulated/floor/lino/grey,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"kRH" = (
/obj/structure/cable/green{
icon_state = "1-8"
@@ -17979,8 +19196,7 @@
/turf/simulated/floor/tiled/white,
/area/hallway/medical)
"kUf" = (
-/obj/structure/grille,
-/obj/structure/lattice,
+/obj/structure/lattice/catwalk,
/turf/simulated/open/airless,
/area/horizonexterior)
"kUp" = (
@@ -18069,28 +19285,30 @@
},
/turf/simulated/floor/plating,
/area/maintenance/wing/port)
+"kXO" = (
+/obj/structure/railing/mapped,
+/obj/effect/floor_decal/corner/mauve{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload)
"kXS" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/door/airlock/maintenance{
- req_access = list(31)
+ req_one_access = list(26, 31, 48, 67)
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
-/area/operations/storage)
+/area/operations/office)
"kXU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
-/obj/effect/floor_decal/corner/green{
- dir = 9
- },
-/obj/effect/floor_decal/spline/plain{
- dir = 8
- },
/obj/structure/cable/green{
- icon_state = "1-4"
+ icon_state = "4-8"
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_two)
@@ -18101,17 +19319,22 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/hallway)
"kYw" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/structure/cable/green{
- icon_state = "1-2"
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/lattice/catwalk/indoor/grate,
-/obj/structure/disposalpipe/sortjunction/flipped{
- dir = 1;
- name = "Chapel Office";
- sortType = "Chapel Office"
- },
/turf/simulated/floor/plating,
/area/maintenance/hangar/port)
"kYK" = (
@@ -18223,6 +19446,18 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled/dark,
/area/engineering/aft_airlock)
+"lbq" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/maintenance/aux_atmospherics/deck_2/starboard)
"lbv" = (
/obj/structure/table/standard,
/obj/effect/floor_decal/corner/mauve{
@@ -18239,7 +19474,7 @@
"lbO" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"lbP" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -18276,6 +19511,16 @@
},
/turf/simulated/floor/tiled/white,
/area/rnd/conference)
+"lcy" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/machinery/light,
+/obj/structure/sign/emerg_exit/evac{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/central_two)
"lcL" = (
/obj/effect/floor_decal/industrial/warning/corner{
dir = 4
@@ -18341,30 +19586,19 @@
/turf/simulated/floor/tiled/white,
/area/rnd/xenobiology/xenoflora)
"ldT" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/airlock/security{
- name = "Security Checkpoint";
- req_access = list(63)
- },
-/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
-/area/security/checkpoint2)
+/area/operations/lobby)
"leh" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/orderterminal{
- pixel_x = -30;
- pixel_y = -3
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 1
},
+/obj/structure/dispenser/oxygen,
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/area/bridge/aibunker)
"len" = (
/obj/effect/floor_decal/corner/mauve{
dir = 6
@@ -18392,19 +19626,15 @@
},
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard)
-"lga" = (
-/obj/machinery/door/window/eastright,
-/obj/machinery/light/small/emergency,
-/turf/simulated/floor/tiled/ramp{
- dir = 8
- },
-/area/maintenance/wing/starboard/far)
"lgm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/trunk{
dir = 8
},
/obj/machinery/disposal/small/west,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
/turf/simulated/floor/wood,
/area/operations/qm)
"lgB" = (
@@ -18450,6 +19680,15 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/icu)
+"lhP" = (
+/obj/effect/floor_decal/spline/fancy/wood/cee{
+ dir = 8
+ },
+/obj/structure/bed/stool/chair/padded/brown{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/operations/office)
"lhU" = (
/obj/effect/floor_decal/corner/mauve/diagonal,
/obj/structure/cable/green{
@@ -18472,9 +19711,14 @@
/turf/simulated/floor/tiled/white,
/area/rnd/conference)
"liv" = (
-/obj/machinery/lapvend,
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
+/obj/structure/bed/stool/chair{
+ dir = 8
+ },
/turf/simulated/floor/tiled,
-/area/storage/primary)
+/area/operations/lobby)
"liD" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -18530,12 +19774,11 @@
/turf/simulated/floor/plating,
/area/hallway/primary/central_two)
"ljF" = (
-/obj/structure/window/reinforced{
- dir = 8
+/obj/effect/floor_decal/corner/green{
+ dir = 10
},
-/obj/structure/table/standard,
-/obj/item/material/ashtray/bronze,
-/turf/simulated/floor/tiled,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
"lkt" = (
/obj/structure/table/steel,
@@ -18561,6 +19804,13 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_airlock)
+"llp" = (
+/obj/effect/shuttle_landmark/lift/cargo_top,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/turbolift/scc_ship/cargo_lift)
"lmf" = (
/obj/machinery/door/firedoor,
/obj/effect/floor_decal/industrial/hatch/yellow,
@@ -18618,6 +19868,19 @@
/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/hallway/primary/central_two)
+"lno" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/hatch{
+ req_access = list(12);
+ name = "Deck 2 Port Pod"
+ },
+/obj/structure/plasticflaps/airtight,
+/obj/item/tape/engineering{
+ icon_state = "engineering_door"
+ },
+/obj/effect/decal/cleanable/cobweb2,
+/turf/simulated/floor/tiled/dark,
+/area/maintenance/wing/port/far)
"lnr" = (
/obj/machinery/bookbinder,
/turf/simulated/floor/wood,
@@ -18629,23 +19892,20 @@
/turf/simulated/floor/tiled/dark,
/area/hallway/engineering/tesla)
"lnA" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/camera/network/engine{
- c_tag = "Engineering - SMES Room 2";
+/obj/structure/cable/yellow,
+/obj/machinery/power/terminal{
dir = 4
},
/turf/simulated/floor/plating,
/area/engineering/engine_monitoring/tesla)
"lnO" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/structure/window/reinforced{
- dir = 1
+/obj/machinery/door/airlock/service{
+ name = "Auxiliary Custodial Closet";
+ req_access = list(26)
},
-/obj/machinery/light/small/emergency,
-/turf/simulated/floor/plating,
-/area/maintenance/wing/starboard/far)
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
+/area/janitor/stairs)
"lpu" = (
/obj/effect/floor_decal/corner/mauve/diagonal,
/obj/structure/window/reinforced{
@@ -18686,15 +19946,25 @@
},
/turf/simulated/floor/tiled,
/area/rnd/xenobiology/xenoflora)
-"lrh" = (
-/obj/structure/railing/mapped,
-/obj/effect/floor_decal/industrial/warning,
-/obj/machinery/light/small/emergency{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+"lqM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/camera/network/engine{
+ c_tag = "Engineering - Tesla Room External Airlock";
dir = 4
},
+/turf/simulated/floor/tiled/dark,
+/area/engineering/aft_airlock)
+"lrh" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/structure/railing/mapped,
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/item/material/shard{
+ icon_state = "small"
+ },
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard)
"lrD" = (
@@ -18750,8 +20020,8 @@
/obj/item/modular_computer/console/preset/supply,
/obj/machinery/button/remote/blast_door{
id = "cargo_desk";
- pixel_x = -6;
- pixel_y = 24
+ pixel_x = -7;
+ pixel_y = 25
},
/obj/effect/floor_decal/corner/brown/full{
dir = 1
@@ -18759,10 +20029,11 @@
/obj/machinery/ringer{
department = "Cargo";
id = "cargo_ringer";
- pixel_x = 8;
- pixel_y = 28;
+ pixel_x = 5;
+ pixel_y = 32;
req_access = list(31)
},
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/operations/office)
"ltv" = (
@@ -18799,14 +20070,12 @@
/turf/simulated/floor/plating,
/area/engineering/engine_room/tesla)
"luo" = (
-/obj/machinery/light{
- dir = 1
- },
/obj/machinery/alarm{
pixel_y = 28
},
/obj/machinery/recharge_station,
-/turf/simulated/floor/tiled/freezer,
+/obj/effect/floor_decal/corner/green/diagonal,
+/turf/simulated/floor/tiled/white,
/area/hallway/primary/central_two)
"luT" = (
/obj/structure/railing/mapped{
@@ -18847,16 +20116,6 @@
/obj/structure/flora/pottedplant/random,
/turf/simulated/floor/wood,
/area/medical/psych)
-"lxN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/outline/red,
-/obj/structure/cable/orange{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
"lyI" = (
/obj/effect/floor_decal/corner_wide/lime{
dir = 5
@@ -18943,12 +20202,18 @@
/turf/simulated/floor/plating,
/area/maintenance/wing/port/far)
"lBh" = (
-/obj/machinery/door/firedoor,
-/obj/effect/floor_decal/corner/green{
- dir = 5
+/obj/machinery/light{
+ dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/central_two)
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy/wood/cee,
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-28"
+ },
+/turf/simulated/floor/wood,
+/area/chapel/main)
"lBj" = (
/obj/effect/floor_decal/industrial/warning{
dir = 1
@@ -18978,15 +20243,17 @@
/turf/simulated/open/airless,
/area/horizonexterior)
"lBW" = (
-/obj/effect/floor_decal/corner_wide/grey/diagonal,
/obj/effect/decal/cleanable/dirt,
/obj/random/junk,
-/turf/simulated/floor/tiled,
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
/area/maintenance/wing/starboard/far)
"lCr" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"lCF" = (
/obj/structure/grille,
/obj/structure/window/shuttle/scc_space_ship,
@@ -19020,13 +20287,12 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/hallway)
"lCL" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
+/obj/structure/lattice/catwalk,
+/obj/structure/railing/mapped{
+ dir = 1
},
-/turf/simulated/wall/r_wall,
-/area/engineering/storage/tech)
+/turf/space,
+/area/template_noop)
"lCV" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 9
@@ -19157,6 +20423,16 @@
},
/turf/simulated/floor/plating,
/area/medical/reception)
+"lGf" = (
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
+/obj/machinery/power/apc{
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"lGm" = (
/obj/structure/railing/mapped{
dir = 1
@@ -19197,9 +20473,8 @@
/turf/simulated/floor/tiled,
/area/security/brig)
"lHi" = (
-/turf/simulated/floor/tiled/ramp{
- dir = 1
- },
+/obj/effect/decal/cleanable/cobweb,
+/turf/simulated/floor/tiled/dark,
/area/maintenance/wing/starboard/far)
"lHs" = (
/obj/machinery/seed_storage/xenobotany,
@@ -19207,8 +20482,9 @@
/area/rnd/xenobiology/xenoflora)
"lHx" = (
/obj/structure/railing/mapped,
+/obj/machinery/recharge_station,
/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai_upload)
+/area/turret_protected/ai_upload_foyer)
"lHB" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -19242,9 +20518,16 @@
/turf/simulated/floor/lino/grey,
/area/crew_quarters/bar)
"lJi" = (
-/obj/effect/map_effect/wingrille_spawn/reinforced,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
/area/crew_quarters/sleep/cryo/living_quarters_lift)
"lJp" = (
/obj/structure/railing/mapped,
@@ -19267,9 +20550,22 @@
/turf/simulated/floor/plating,
/area/maintenance/substation/wing_port)
"lJX" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
/obj/structure/cable/green{
icon_state = "2-4"
},
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 1;
+ name = "Chapel Office";
+ sortType = "Chapel Office"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/hangar/port)
@@ -19355,6 +20651,30 @@
/obj/item/pen,
/turf/simulated/floor/wood,
/area/chapel/office)
+"lLJ" = (
+/obj/effect/floor_decal/corner/purple{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/bed/stool/chair/office/dark,
+/turf/simulated/floor/tiled,
+/area/janitor/stairs)
+"lMi" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/obj/structure/closet/wardrobe/chaplain_black,
+/obj/item/storage/box/fancy/crayons,
+/obj/item/reagent_containers/food/drinks/bottle/holywater,
+/obj/item/reagent_containers/spray/aspergillum,
+/obj/item/nullrod/obsidianshards,
+/turf/simulated/floor/wood,
+/area/chapel/office)
"lMm" = (
/obj/effect/floor_decal/corner_wide/lime/diagonal,
/obj/structure/cable/green{
@@ -19366,19 +20686,13 @@
/turf/simulated/floor/tiled/white,
/area/medical/reception)
"lMB" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/blast/shutters/open{
- dir = 2;
- id = "seconddeckdockint";
- name = "shutter"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_two)
+/obj/effect/floor_decal/corner/blue{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/checkpoint2)
"lMD" = (
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
/area/hallway/engineering/tesla)
@@ -19504,22 +20818,11 @@
/turf/simulated/floor/wood,
/area/library)
"lQn" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/random/junk,
-/turf/simulated/floor/plating,
-/area/maintenance/hangar/port)
+/turf/simulated/floor/wood,
+/area/chapel/office)
"lQo" = (
/obj/structure/window/phoronreinforced{
dir = 1
@@ -19598,6 +20901,15 @@
},
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard)
+"lSe" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/lattice/catwalk/indoor,
+/turf/simulated/open,
+/area/operations/office)
"lSn" = (
/obj/structure/disposalpipe/up,
/obj/machinery/atmospherics/pipe/zpipe/up/supply,
@@ -19620,17 +20932,11 @@
/turf/simulated/floor/lino/grey,
/area/crew_quarters/bar)
"lSK" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
+/obj/structure/railing/mapped{
+ dir = 8
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/window/westleft{
- dir = 4;
- name = "Operations Lift";
- req_access = null
- },
-/turf/simulated/floor/tiled,
-/area/operations/storage)
+/turf/simulated/open,
+/area/operations/office)
"lST" = (
/obj/effect/floor_decal/corner_wide/yellow{
dir = 10
@@ -19728,9 +21034,12 @@
/turf/simulated/floor/tiled/dark,
/area/maintenance/wing/port/far)
"lVG" = (
-/obj/machinery/atmospherics/pipe/manifold/visible,
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/aux_atmospherics/deck_2/starboard)
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/reinforced,
+/area/engineering/storage/tech)
"lVZ" = (
/obj/machinery/door/airlock{
name = "Brig Showers"
@@ -19753,6 +21062,12 @@
"lWg" = (
/turf/simulated/wall,
/area/crew_quarters/sleep/cryo/living_quarters_lift)
+"lWB" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"lWJ" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -19778,44 +21093,34 @@
/turf/simulated/floor/tiled/white,
/area/rnd/research)
"lXo" = (
-/obj/machinery/door/airlock/maintenance,
/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance_hatch,
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard/far)
"lXt" = (
-/obj/structure/cable/green{
- icon_state = "0-2"
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 1
},
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
- },
-/turf/simulated/floor/plating,
-/area/engineering/storage/tech)
+/turf/simulated/floor/tiled,
+/area/maintenance/aux_atmospherics/deck_2/starboard)
"lXO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/effect/floor_decal/spline/fancy/wood{
dir = 6
},
-/turf/simulated/floor/tiled/dark,
+/obj/structure/railing/mapped,
+/turf/simulated/floor/wood,
/area/chapel/main)
"lYP" = (
/obj/structure/window/phoronreinforced/skrell{
dir = 8
},
-/obj/structure/window/phoronreinforced/skrell,
/obj/effect/floor_decal/industrial/warning{
dir = 10
},
-/obj/effect/floor_decal/spline/plain{
- dir = 10
- },
/obj/machinery/camera/network/command{
- c_tag = "AI Core - Main Core"
- },
-/obj/structure/cable/orange{
- icon_state = "4-8"
+ c_tag = "AI Core - Fore"
},
+/obj/structure/window/phoronreinforced/skrell,
/turf/simulated/floor/bluegrid,
/area/turret_protected/ai)
"lYV" = (
@@ -19941,6 +21246,12 @@
},
/turf/simulated/floor/tiled,
/area/security/warden)
+"mbs" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/maintenance/aux_atmospherics/deck_2/starboard)
"mbE" = (
/obj/effect/floor_decal/corner/blue{
dir = 5
@@ -19948,9 +21259,8 @@
/turf/simulated/floor/tiled,
/area/hallway/primary/central_two)
"mbH" = (
-/obj/structure/closet/crate,
+/obj/structure/table/rack,
/obj/random/loot,
-/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/plating,
/area/maintenance/aft)
"mcV" = (
@@ -20015,6 +21325,12 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
+"mep" = (
+/obj/effect/floor_decal/corner/purple{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"meG" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -20043,11 +21359,12 @@
/area/engineering/lobby)
"mfA" = (
/obj/effect/floor_decal/corner/green{
- dir = 10
+ dir = 5
},
/obj/effect/floor_decal/spline/plain{
dir = 1
},
+/obj/structure/railing/mapped,
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
"mfE" = (
@@ -20128,25 +21445,31 @@
/turf/simulated/floor/wood,
/area/chapel/main)
"mgI" = (
-/obj/structure/railing/mapped,
-/obj/structure/railing/mapped{
+/obj/effect/floor_decal/corner/green/full,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
-/obj/structure/railing/mapped{
+/obj/machinery/light{
dir = 8
},
-/turf/simulated/open,
-/area/maintenance/hangar/port)
+/turf/simulated/floor/tiled,
+/area/horizon/stairwell/central)
"mgJ" = (
+/obj/machinery/power/smes/buildable{
+ charge = 5e+006;
+ input_attempt = 1;
+ input_level = 200000;
+ output_attempt = 1;
+ output_level = 200000
+ },
/obj/effect/floor_decal/industrial/warning{
- dir = 4
+ dir = 10
},
-/obj/structure/railing/mapped{
- dir = 4
+/obj/structure/cable/green{
+ icon_state = "0-8"
},
-/obj/effect/floor_decal/industrial/outline/red,
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/turf/simulated/floor/plating,
+/area/turret_protected/ai_upload)
"mgW" = (
/obj/effect/floor_decal/industrial/warning{
dir = 5
@@ -20168,9 +21491,15 @@
},
/area/hallway/engineering)
"mhm" = (
-/obj/effect/floor_decal/corner_wide/grey/diagonal,
-/turf/simulated/floor/tiled,
-/area/maintenance/wing/starboard/far)
+/obj/item/module/power_control,
+/obj/item/airlock_electronics,
+/obj/structure/table/steel,
+/obj/effect/floor_decal/corner/yellow{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/storage/tech)
"mia" = (
/obj/structure/railing/mapped{
dir = 1
@@ -20230,11 +21559,8 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/door/airlock/maintenance{
- req_access = list(12)
- },
/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance_hatch,
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard/far)
"mjl" = (
@@ -20257,22 +21583,20 @@
/turf/simulated/floor/carpet/rubber,
/area/server)
"mjW" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
/obj/structure/extinguisher_cabinet{
pixel_y = -32
},
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
-"mkb" = (
-/obj/structure/table/steel,
-/obj/structure/railing/mapped{
- dir = 4
+/obj/machinery/camera/network/command{
+ c_tag = "AI Core - Maintenance Stairwell";
+ dir = 8
},
-/obj/structure/railing/mapped,
+/obj/effect/floor_decal/corner/mauve/diagonal,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/firealarm/east,
/turf/simulated/floor/tiled,
-/area/engineering/atmos/storage)
+/area/turret_protected/ai_upload)
"mke" = (
/obj/structure/cable/green{
icon_state = "1-8"
@@ -20319,32 +21643,21 @@
/turf/simulated/floor/tiled,
/area/hallway/primary/central_two)
"mnm" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
- },
-/obj/structure/cable/green{
- icon_state = "0-8"
+/obj/effect/floor_decal/corner/green{
+ dir = 9
},
/turf/simulated/floor/tiled,
-/area/operations/lobby)
+/area/storage/primary)
"mnt" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
+/obj/machinery/alarm{
+ pixel_y = -28;
+ dir = 1
},
-/obj/item/circuitboard/powermonitor{
- pixel_x = -2;
- pixel_y = 2
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/item/circuitboard/security/engineering,
-/obj/item/circuitboard/atmos_alert{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/simulated/floor/plating,
-/area/engineering/storage/tech)
+/turf/simulated/floor/tiled,
+/area/maintenance/aux_atmospherics/deck_2/starboard)
"mpD" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -20355,17 +21668,22 @@
/turf/simulated/floor/tiled,
/area/engineering/storage_hard)
"mpV" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/cable/green{
- icon_state = "4-8"
+/obj/machinery/door/firedoor,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/engineering/storage/tech)
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"mpX" = (
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/tiled/dark,
@@ -20375,8 +21693,11 @@
/obj/machinery/light{
dir = 4
},
+/obj/effect/floor_decal/corner/brown{
+ dir = 6
+ },
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/operations/office)
"mqn" = (
/obj/machinery/light{
dir = 4
@@ -20394,7 +21715,10 @@
/turf/simulated/floor/tiled,
/area/hallway/engineering)
"mqE" = (
-/obj/effect/map_effect/airlock/s_to_n/long/square,
+/obj/effect/map_effect/airlock/s_to_n/long/square{
+ name = "Deck 2 SM Reactor Airlock (2002)";
+ radio_frequency = 2002
+ },
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
/area/engineering/engine_room)
"mqN" = (
@@ -20409,6 +21733,7 @@
pixel_x = -24;
specialfunctions = 4
},
+/obj/effect/floor_decal/corner/green/diagonal,
/turf/simulated/floor/tiled/freezer,
/area/hallway/primary/central_two)
"mqR" = (
@@ -20486,9 +21811,6 @@
/obj/structure/railing/mapped,
/obj/effect/floor_decal/industrial/warning,
/obj/random/junk,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard)
"mte" = (
@@ -20665,10 +21987,13 @@
},
/area/engineering/lobby)
"mwH" = (
-/obj/effect/map_effect/wingrille_spawn/reinforced,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/hallway/primary/central_two)
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/obj/machinery/vending/snack,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
"mxh" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 5
@@ -20703,6 +22028,10 @@
"mxO" = (
/obj/machinery/atmospherics/pipe/manifold/visible,
/obj/machinery/light/small/emergency,
+/obj/machinery/camera/network/engineering{
+ dir = 1;
+ c_tag = "Engineering - Deck 2 - Aft Auxiliary Atmospherics"
+ },
/turf/simulated/floor/tiled/dark,
/area/maintenance/aux_atmospherics/deck_2/starboard)
"mye" = (
@@ -20728,15 +22057,16 @@
/turf/simulated/floor/grass/alt,
/area/hydroponics)
"myG" = (
-/obj/structure/table/standard,
-/obj/random/tech_supply,
-/obj/random/tech_supply,
+/obj/machinery/lapvend,
+/obj/effect/floor_decal/corner/green/full{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/storage/primary)
"mzh" = (
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/engineering/aft_airlock)
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
"mzL" = (
/obj/machinery/recharge_station,
/obj/effect/floor_decal/industrial/hatch/yellow,
@@ -20807,7 +22137,7 @@
dir = 1
},
/turf/simulated/floor/lino/grey,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"mDQ" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -20827,15 +22157,24 @@
/turf/simulated/floor/plating,
/area/maintenance/wing/port)
"mFc" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/structure/cable{
- icon_state = "0-8"
- },
/obj/machinery/power/apc/low{
dir = 1;
name = "north bump";
pixel_y = 24
},
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard/far)
"mFs" = (
@@ -20869,6 +22208,13 @@
},
/turf/simulated/floor/tiled,
/area/security/armory)
+"mFJ" = (
+/obj/structure/foamedmetal,
+/obj/structure/shuttle_part/scc_space_ship{
+ icon_state = "d2-1"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/wing/starboard)
"mFQ" = (
/obj/effect/floor_decal/corner/blue{
dir = 10
@@ -20893,11 +22239,26 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/effect/floor_decal/corner/brown{
- dir = 5
+ dir = 10
},
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/operations/office)
+"mGi" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/full{
+ dir = 4
+ },
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-33"
+ },
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"mGr" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -20965,27 +22326,32 @@
/turf/simulated/open,
/area/hallway/primary/central_two)
"mHH" = (
-/obj/structure/window/shuttle/scc_space_ship,
-/obj/structure/grille,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "AICore";
- name = "AI core maintenance hatch";
- opacity = 0
+/obj/machinery/door/airlock/highsecurity{
+ name = "AI SMES";
+ req_access = list(16)
},
/obj/machinery/door/firedoor,
+/obj/effect/floor_decal/industrial/hatch/yellow,
/obj/structure/cable/green{
- icon_state = "1-2"
+ icon_state = "4-8"
},
-/turf/simulated/floor/plating,
+/turf/simulated/floor/tiled,
/area/turret_protected/ai)
"mHM" = (
-/obj/structure/window/shuttle/scc_space_ship,
-/obj/structure/grille,
-/turf/simulated/floor/plating,
-/area/turret_protected/ai_upload_foyer)
+/obj/machinery/door/airlock/highsecurity{
+ name = "AI SMES";
+ req_access = list(16)
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload)
+"mHO" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/horizon/stairwell/central)
"mIe" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -21005,11 +22371,20 @@
/turf/simulated/floor/tiled/white,
/area/hallway/medical)
"mIS" = (
-/obj/structure/railing/mapped{
- dir = 8
+/obj/effect/floor_decal/corner/green{
+ dir = 10
},
-/turf/simulated/open,
-/area/maintenance/hangar/port)
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/power/apc/critical{
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/stairwell/central)
"mJJ" = (
/turf/simulated/wall/r_wall,
/area/maintenance/hangar/port)
@@ -21030,18 +22405,17 @@
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard)
"mKA" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
- },
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/effect/floor_decal/industrial/warning/corner,
/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner/brown{
+ dir = 6
+ },
+/obj/machinery/computer/shuttle_control/lift/wall{
+ dir = 8;
+ pixel_x = 32;
+ shuttle_tag = "Operations Lift"
+ },
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/operations/office)
"mKJ" = (
/obj/effect/floor_decal/corner_wide/yellow{
dir = 10
@@ -21058,25 +22432,13 @@
/obj/effect/shuttle_landmark/merc_ship/second_deck,
/turf/template_noop,
/area/template_noop)
-"mLk" = (
-/obj/effect/floor_decal/corner/green{
- dir = 6
- },
-/obj/effect/floor_decal/spline/plain{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_two)
"mLw" = (
+/obj/structure/foamedmetal,
/obj/structure/shuttle_part/scc_space_ship{
icon_state = "d2-2"
},
-/obj/structure/girder,
/turf/simulated/floor/plating,
-/area/engineering/storage/tech)
+/area/operations/lobby)
"mLH" = (
/obj/structure/lattice/catwalk/indoor/grate,
/obj/machinery/light/small/emergency{
@@ -21090,6 +22452,29 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/bar)
+"mLM" = (
+/obj/structure/closet/l3closet/janitor,
+/obj/effect/floor_decal/corner/purple/full{
+ dir = 8
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "east bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_x = -24;
+ pixel_y = -9;
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/janitor/stairs)
"mLU" = (
/obj/effect/floor_decal/industrial/warning{
dir = 8
@@ -21119,10 +22504,17 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/airlock/maintenance{
- req_access = list(12)
- },
/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/hatch{
+ req_access = list(12);
+ name = "Deck 2 Port Pod"
+ },
+/obj/structure/plasticflaps/airtight,
+/obj/item/tape/engineering{
+ icon_state = "engineering_door"
+ },
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/decal/cleanable/cobweb2,
/turf/simulated/floor/tiled/dark,
/area/maintenance/wing/port/far)
"mMz" = (
@@ -21288,19 +22680,22 @@
/obj/structure/window/shuttle/scc_space_ship,
/turf/simulated/floor/reinforced,
/area/crew_quarters/kitchen/freezer)
-"mPF" = (
-/obj/effect/floor_decal/corner/beige{
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/wing/starboard/far)
"mQe" = (
-/obj/structure/lattice,
-/obj/structure/cable/green{
- icon_state = "2-4"
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/turf/simulated/open,
-/area/turret_protected/ai)
+/obj/machinery/door/airlock/highsecurity{
+ name = "AI Foyer Maintenance";
+ req_access = list(16)
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/regular{
+ dir = 4;
+ id = "AICoreFoyer";
+ name = "AI Foyer Maintenance Blast Door"
+ },
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload_foyer)
"mQi" = (
/obj/effect/floor_decal/industrial/warning{
dir = 10
@@ -21438,11 +22833,14 @@
dir = 1;
pixel_y = -29
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/effect/floor_decal/corner/brown{
- dir = 5
+ dir = 10
},
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/operations/office)
"mVb" = (
/obj/machinery/door/airlock{
id_tag = "sec_unit_1";
@@ -21562,10 +22960,12 @@
/obj/machinery/door/blast/regular{
dir = 4;
id = "ai_upload";
- name = "AI Upload Blast Doors"
+ name = "AI Foyer Blast Door"
},
-/turf/simulated/floor/tiled,
-/area/turret_protected/ai_upload)
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/reinforced,
+/area/turret_protected/ai_upload_foyer)
"mYs" = (
/obj/machinery/portable_atmospherics/canister/nitrogen,
/obj/effect/floor_decal/industrial/outline/yellow,
@@ -21575,9 +22975,21 @@
/turf/simulated/floor/plating,
/area/engineering/engine_room)
"mYx" = (
-/obj/machinery/vending/cola,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/corner/brown{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
-/area/hallway/primary/central_two)
+/area/operations/lobby)
"mYK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -21588,6 +23000,8 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass,
/turf/simulated/floor/tiled,
/area/hallway/primary/central_two)
"mYL" = (
@@ -21611,7 +23025,7 @@
opacity = 0
},
/turf/simulated/floor/lino/grey,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"nac" = (
/obj/structure/bed/stool/chair/office/light{
dir = 1
@@ -21632,7 +23046,6 @@
"naD" = (
/obj/machinery/door/window/southright,
/obj/machinery/door/window/northright,
-/obj/effect/floor_decal/corner_wide/grey/diagonal,
/turf/simulated/floor/tiled,
/area/maintenance/wing/starboard/far)
"naE" = (
@@ -21641,10 +23054,15 @@
/turf/simulated/floor/plating,
/area/crew_quarters/kitchen)
"naN" = (
-/turf/simulated/floor/tiled/ramp{
+/obj/effect/floor_decal/corner/mauve/full{
dir = 1
},
-/area/turret_protected/ai_upload_foyer)
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload)
"nbd" = (
/obj/structure/closet/walllocker/medical/secure{
name = "Stabilization Kit";
@@ -21732,8 +23150,11 @@
"ndn" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/effect/floor_decal/corner/mauve{
+ dir = 5
+ },
/turf/simulated/floor/tiled,
-/area/turret_protected/ai_upload)
+/area/turret_protected/ai_upload_foyer)
"ndD" = (
/obj/structure/window/phoronreinforced{
dir = 8
@@ -21833,13 +23254,20 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/xenobiology/xenoflora)
"nfL" = (
-/obj/structure/cable/green,
-/obj/machinery/power/apc/low{
- name = "south bump";
- pixel_y = -24
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/chapel/office)
"nfN" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -21863,20 +23291,24 @@
/turf/simulated/wall/r_wall,
/area/engineering/lobby)
"ngg" = (
+/obj/structure/janitorialcart{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/full{
+ dir = 1
+ },
/obj/structure/cable/green{
- icon_state = "4-8"
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/corner/brown{
- dir = 5
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/alarm{
+ pixel_y = 28
},
+/obj/structure/mopbucket,
+/obj/item/mop,
+/obj/item/reagent_containers/glass/bucket,
/turf/simulated/floor/tiled,
-/area/operations/lobby)
+/area/janitor/stairs)
"ngA" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -21890,11 +23322,14 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/effect/floor_decal/corner/brown{
- dir = 5
+ dir = 10
},
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/operations/office)
"ngB" = (
/obj/machinery/power/apc{
is_critical = 1;
@@ -21918,6 +23353,13 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
+"ngE" = (
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/aft)
"ngG" = (
/obj/machinery/seed_extractor,
/turf/simulated/floor/tiled/dark,
@@ -21926,10 +23368,13 @@
/obj/structure/shuttle_part/scc_space_ship{
icon_state = "d2-1"
},
-/turf/simulated/wall,
-/area/maintenance/wing/starboard)
+/turf/simulated/wall/r_wall,
+/area/engineering/storage/tech)
"nhF" = (
/obj/structure/bed/stool/chair/padded/black,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
/turf/simulated/floor/wood,
/area/operations/qm)
"nhR" = (
@@ -21994,6 +23439,15 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armory)
+"niM" = (
+/obj/effect/floor_decal/corner/purple{
+ dir = 6
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"njl" = (
/obj/structure/bed/stool/chair/plastic{
dir = 1
@@ -22013,15 +23467,18 @@
dir = 4;
id = "cargo_desk"
},
-/obj/machinery/door/window/westleft{
- name = "Operations Desk";
- req_access = list(50)
- },
/obj/machinery/ringer_button{
id = "cargo_ringer";
- pixel_x = 5;
+ pixel_x = 6;
pixel_y = 5
},
+/obj/machinery/door/window/westright{
+ name = "Operations Desk Interior Access";
+ req_access = list(50)
+ },
+/obj/machinery/door/window/eastleft{
+ name = "Operations Desk Exterior Access"
+ },
/turf/simulated/floor/tiled,
/area/operations/office)
"njB" = (
@@ -22049,6 +23506,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
/turf/simulated/floor/wood,
/area/operations/qm)
"nkb" = (
@@ -22061,10 +23521,6 @@
/turf/simulated/floor/plating,
/area/engineering/engine_waste)
"nkd" = (
-/obj/effect/floor_decal/corner/green/diagonal,
-/obj/effect/floor_decal/corner/green{
- dir = 10
- },
/obj/structure/disposalpipe/junction{
dir = 2
},
@@ -22088,7 +23544,6 @@
/turf/simulated/floor/tiled/white,
/area/hallway/medical)
"nkM" = (
-/obj/structure/table/reinforced,
/obj/item/paper_bin{
pixel_x = -3;
pixel_y = 7
@@ -22102,7 +23557,8 @@
},
/obj/item/paper_scanner,
/obj/item/device/flash,
-/turf/simulated/floor/tiled,
+/obj/structure/table/steel,
+/turf/simulated/floor/tiled/dark,
/area/security/checkpoint2)
"nkT" = (
/obj/effect/map_effect/wingrille_spawn/reinforced,
@@ -22138,6 +23594,21 @@
"nlG" = (
/turf/simulated/wall/r_wall,
/area/engineering/atmos/storage)
+"nlL" = (
+/obj/machinery/newscaster{
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/corner/purple/full,
+/obj/machinery/button/remote/blast_door{
+ pixel_y = -25;
+ dir = 1;
+ name = "Auxiliary Custodial Closet Desk Shutter";
+ id = "shutters_deck2_auxcustdesk";
+ req_access = list(26);
+ pixel_x = 7
+ },
+/turf/simulated/floor/tiled,
+/area/janitor/stairs)
"nlT" = (
/obj/effect/floor_decal/corner_wide/yellow{
dir = 9
@@ -22198,11 +23669,10 @@
/turf/simulated/floor/tiled,
/area/rnd/xenobiology/xenoflora)
"nnu" = (
-/obj/item/module/power_control,
-/obj/item/airlock_electronics,
-/obj/structure/table/steel,
-/turf/simulated/floor/plating,
-/area/engineering/storage/tech)
+/obj/structure/closet/crate,
+/obj/random/loot,
+/turf/simulated/floor/tiled,
+/area/maintenance/aux_atmospherics/deck_2/starboard)
"noi" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
@@ -22225,12 +23695,9 @@
/turf/simulated/floor/plating,
/area/maintenance/substation/medical)
"noS" = (
-/obj/machinery/light{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
/turf/simulated/floor/tiled,
/area/operations/lobby)
"noU" = (
@@ -22269,28 +23736,19 @@
/turf/simulated/floor/tiled/dark,
/area/hallway/engineering)
"npL" = (
-/obj/structure/table/steel,
-/obj/structure/railing/mapped{
- dir = 4
- },
+/obj/structure/railing/mapped,
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
"nqm" = (
-/obj/effect/floor_decal/corner/brown{
- dir = 5
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled,
-/area/operations/break_room)
-"nqs" = (
/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/door/airlock/maintenance{
- req_access = list(12)
+/obj/structure/railing/mapped{
+ dir = 1
},
+/turf/simulated/floor/plating,
+/area/maintenance/wing/starboard)
+"nqs" = (
/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance_hatch,
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard)
"nqy" = (
@@ -22333,32 +23791,44 @@
/turf/simulated/floor/tiled/dark,
/area/security/armory)
"nry" = (
-/obj/structure/closet/secure_closet/operation_manager,
-/obj/machinery/camera/network/supply{
- c_tag = "Operations - Quartermaster's Office";
- dir = 4
- },
+/obj/effect/floor_decal/spline/fancy/wood,
/turf/simulated/floor/wood,
/area/operations/qm)
+"nsn" = (
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Operations Hallway";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"nsx" = (
/obj/structure/girder,
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard/far)
"ntn" = (
-/obj/structure/railing/mapped{
+/obj/machinery/light{
dir = 4
},
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
+/obj/effect/floor_decal/corner/yellow{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/spline/fancy{
+ dir = 8
},
/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/area/turret_protected/ai)
"nts" = (
/obj/structure/window/shuttle/scc_space_ship,
/obj/structure/grille,
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"ntt" = (
/turf/simulated/wall/r_wall,
/area/engineering/engine_room/tesla)
@@ -22380,15 +23850,21 @@
/turf/simulated/open,
/area/hallway/primary/central_two)
"ntV" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
/obj/machinery/alarm{
dir = 8;
pixel_x = 28
},
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/obj/effect/floor_decal/corner/mauve/full{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload)
"nue" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -22397,7 +23873,7 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/lino/grey,
/area/chapel/main)
"nuD" = (
/obj/structure/disposalpipe/segment,
@@ -22433,6 +23909,9 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/machinery/portable_atmospherics/powered/pump/filled,
/obj/machinery/firealarm/south,
+/obj/structure/railing/mapped{
+ dir = 8
+ },
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
"nwe" = (
@@ -22488,6 +23967,10 @@
/obj/structure/cable{
icon_state = "0-8"
},
+/obj/machinery/camera/network/engineering{
+ c_tag = "Engineering - Deck 2 - Medical Substation";
+ alarm_on = 1
+ },
/turf/simulated/floor/plating,
/area/maintenance/substation/medical)
"nyF" = (
@@ -22608,6 +24091,13 @@
},
/turf/simulated/floor/tiled,
/area/engineering/storage_hard)
+"nBf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled,
+/area/maintenance/aux_atmospherics/deck_2/starboard)
"nBn" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -22620,21 +24110,18 @@
/turf/simulated/floor/plating,
/area/maintenance/substation/wing_starboard)
"nBD" = (
-/obj/item/stack/cable_coil{
- pixel_x = -3;
- pixel_y = 3
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/obj/item/stack/cable_coil,
-/obj/item/cell/high{
- charge = 100;
- maxcharge = 15000
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/table/steel,
-/obj/machinery/light/small{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
+/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
-/area/engineering/storage/tech)
+/area/maintenance/wing/starboard)
"nCg" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -22728,11 +24215,8 @@
/turf/simulated/floor/plating,
/area/hallway/engineering)
"nDK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/aux_atmospherics/deck_2/starboard)
+/turf/simulated/wall/r_wall,
+/area/engineering/storage/tech)
"nEx" = (
/obj/structure/railing/mapped,
/turf/simulated/open,
@@ -22745,34 +24229,42 @@
/area/maintenance/wing/starboard/far)
"nEC" = (
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
+"nES" = (
+/obj/structure/lattice,
+/obj/structure/railing/mapped{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/operations/office)
"nFf" = (
/turf/simulated/wall,
/area/security/prison)
"nFm" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "AICore";
- name = "AI core maintenance hatch";
- opacity = 0
+/obj/effect/floor_decal/corner/mauve/full{
+ dir = 8
},
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
-"nFO" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/device/analyzer/plant_analyzer,
-/obj/item/device/healthanalyzer,
-/obj/item/device/analyzer,
-/obj/item/device/analyzer,
/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload)
+"nFO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/engineering/storage/tech)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"nFT" = (
/obj/machinery/atmospherics/binary/pump/high_power{
dir = 8;
@@ -22855,11 +24347,13 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/xenobiology)
"nKg" = (
-/obj/machinery/atmospherics/portables_connector,
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled/dark,
-/area/maintenance/aux_atmospherics/deck_2/starboard)
+/area/engineering/storage/tech)
"nKt" = (
/obj/effect/floor_decal/corner/mauve{
dir = 9
@@ -22878,16 +24372,15 @@
},
/obj/structure/lattice/catwalk/indoor/grate,
/obj/machinery/door/airlock/maintenance{
- req_access = list(12)
+ req_one_access = list(10, 12)
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard)
"nLC" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/blue/diagonal,
+/turf/simulated/floor/tiled/dark,
/area/security/checkpoint2)
"nLG" = (
/obj/structure/bed/stool/chair/plastic{
@@ -22994,25 +24487,18 @@
/turf/simulated/floor/carpet/rubber,
/area/rnd/strongroom)
"nOS" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
/obj/structure/disposalpipe/segment,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/computer/shuttle_control/lift{
- pixel_y = -1;
- shuttle_tag = "Operations Lift"
+/obj/effect/floor_decal/corner/brown{
+ dir = 6
},
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/operations/office)
"nPA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9
+/obj/effect/floor_decal/corner/mauve{
+ dir = 10
},
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload)
"nPG" = (
/obj/structure/lattice/catwalk/indoor,
/turf/simulated/open/airless,
@@ -23093,8 +24579,9 @@
/obj/structure/railing/mapped{
dir = 4
},
+/obj/structure/railing/mapped,
/turf/simulated/open,
-/area/operations/storage)
+/area/operations/office)
"nTF" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -23105,12 +24592,6 @@
/obj/structure/railing/mapped{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/wing/port)
@@ -23192,14 +24673,16 @@
/turf/simulated/floor/tiled/white,
/area/hallway/medical)
"nXQ" = (
-/obj/machinery/turretid/stun{
- name = "AI Upload turret control";
- pixel_y = -30
+/obj/machinery/light/small/emergency{
+ dir = 4
},
-/turf/simulated/floor/tiled,
+/turf/simulated/floor/plating,
/area/turret_protected/ai_upload)
"nZj" = (
-/obj/effect/map_effect/airlock/e_to_w,
+/obj/effect/map_effect/airlock/e_to_w{
+ radio_frequency = 2003;
+ name = "Deck 2 Tesla Reactor Airlock (2003)"
+ },
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
/area/engineering/aft_airlock)
"nZk" = (
@@ -23266,6 +24749,9 @@
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
/turf/simulated/floor/wood,
/area/operations/qm)
"oad" = (
@@ -23298,7 +24784,7 @@
dir = 9
},
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/operations/office)
"oaQ" = (
/obj/effect/floor_decal/corner/mauve{
dir = 5
@@ -23354,12 +24840,32 @@
},
/turf/simulated/floor/tiled,
/area/operations/office)
-"obJ" = (
+"oby" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/railing/mapped{
+ dir = 1
+ },
/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/porta_turret,
+/turf/simulated/floor/reinforced,
+/area/turret_protected/ai_upload)
+"obJ" = (
+/obj/machinery/light/small/red{
dir = 8
},
-/turf/simulated/floor/tiled/freezer,
-/area/operations/break_room)
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/sign/securearea{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/storage/secure)
"obQ" = (
/obj/structure/table/standard,
/obj/item/storage/box/cups,
@@ -23372,10 +24878,12 @@
/obj/machinery/door/blast/regular{
dir = 4;
id = "ai_upload";
- name = "AI Upload Blast Doors"
+ name = "AI Foyer Blast Door"
},
-/turf/simulated/floor/tiled,
-/area/turret_protected/ai_upload)
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/reinforced,
+/area/turret_protected/ai_upload_foyer)
"ocU" = (
/obj/structure/table/standard,
/obj/item/paper_bin,
@@ -23387,9 +24895,11 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/xenobiology)
"odq" = (
-/obj/structure/table/standard,
-/obj/effect/floor_decal/corner_wide/grey/diagonal,
-/turf/simulated/floor/tiled/white,
+/obj/effect/floor_decal/corner/brown/full{
+ dir = 4
+ },
+/obj/machinery/firealarm/south,
+/turf/simulated/floor/tiled,
/area/operations/break_room)
"odZ" = (
/obj/effect/floor_decal/corner_wide/paleblue{
@@ -23403,19 +24913,11 @@
/turf/simulated/floor/tiled/white,
/area/medical/or2)
"oeF" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/stock_parts/manipulator,
-/obj/item/stock_parts/matter_bin,
-/obj/item/stock_parts/matter_bin,
-/obj/item/stock_parts/capacitor,
-/obj/item/stock_parts/capacitor,
-/obj/item/stock_parts/scanning_module,
-/obj/item/stock_parts/scanning_module,
-/turf/simulated/floor/plating,
-/area/engineering/storage/tech)
+/obj/structure/reagent_dispensers/extinguisher,
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"oeI" = (
/obj/structure/table/standard,
/obj/structure/window/reinforced,
@@ -23434,10 +24936,21 @@
"off" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp{
- pixel_y = 10
+ pixel_y = 10;
+ pixel_x = 3
},
/turf/simulated/floor/carpet,
/area/chapel/office)
+"ofR" = (
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/starboard/far)
+"ogd" = (
+/turf/simulated/floor/tiled/ramp{
+ dir = 8
+ },
+/area/maintenance/wing/starboard)
"ogu" = (
/obj/structure/cable/green{
icon_state = "1-8"
@@ -23468,23 +24981,14 @@
/turf/simulated/floor/plating,
/area/hallway/primary/central_two)
"ohc" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/floor_decal/corner/brown{
dir = 5
},
/obj/structure/extinguisher_cabinet{
pixel_y = 30
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/light{
+ dir = 1
},
/turf/simulated/floor/tiled,
/area/operations/lobby)
@@ -23591,14 +25095,16 @@
/turf/simulated/floor/tiled/dark,
/area/security/armory)
"ojd" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/central_two)
+/area/operations/lobby)
"ojK" = (
/obj/structure/shuttle_part/scc_space_ship{
icon_state = "d3-3-f"
@@ -23609,16 +25115,14 @@
/obj/machinery/door/blast/shutters/open{
dir = 2;
id = "seconddeckdockext";
- name = "shutter"
+ name = "Security Checkpoint External Shutter"
},
/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_two)
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/reinforced,
+/area/security/checkpoint2)
"ojY" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass,
@@ -23662,6 +25166,18 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room/tesla)
+"omD" = (
+/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
+/obj/machinery/door/blast/regular/open{
+ name = "AI Maintenance Blast Door";
+ id = "AICore";
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/turret_protected/ai)
"ond" = (
/obj/effect/floor_decal/industrial/warning{
dir = 1
@@ -23691,11 +25207,16 @@
/turf/simulated/floor/plating,
/area/hallway/primary/central_two)
"ool" = (
-/obj/structure/lattice,
/obj/machinery/light{
dir = 8
},
-/turf/simulated/open,
+/obj/effect/floor_decal/corner/yellow{
+ dir = 9
+ },
+/obj/effect/floor_decal/spline/fancy{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
/area/turret_protected/ai)
"ooA" = (
/obj/effect/floor_decal/industrial/warning/corner{
@@ -23770,12 +25291,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/wing/port)
@@ -23841,21 +25356,23 @@
/turf/simulated/floor/tiled/white,
/area/medical/icu)
"osY" = (
-/obj/effect/map_effect/airlock/w_to_e,
-/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
+/obj/effect/map_effect/airlock/w_to_e{
+ radio_frequency = 2101;
+ name = "Deck 2 AI Internal Airlock (2101)"
+ },
+/turf/simulated/wall/r_wall,
/area/turret_protected/ai)
"otf" = (
-/obj/machinery/button/remote/blast_door{
- id = "ai_upload";
- name = "AI Upload Entrance";
- pixel_x = 25;
- req_access = list(16)
+/obj/machinery/turretid/stun{
+ name = "\improper AI Foyer Turret Control Console";
+ pixel_y = 32;
+ check_synth = 1
},
-/obj/machinery/light{
- dir = 4
+/obj/effect/floor_decal/corner/mauve/full{
+ dir = 1
},
/turf/simulated/floor/tiled,
-/area/turret_protected/ai_upload)
+/area/turret_protected/ai_upload_foyer)
"otr" = (
/obj/structure/table/stone/marble,
/obj/machinery/door/blast/shutters{
@@ -23866,13 +25383,45 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/lino/grey,
/area/crew_quarters/bar)
-"otw" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 1
+"otv" = (
+/obj/effect/floor_decal/corner/blue/full,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 8
},
+/obj/structure/table/rack,
+/obj/item/device/gps,
+/obj/item/device/gps,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/void/security,
+/obj/item/clothing/suit/space/void/security,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/head/helmet/space/void/security,
+/obj/item/clothing/head/helmet/space/void/security,
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark,
-/area/maintenance/aux_atmospherics/deck_2/starboard)
+/area/bridge/aibunker)
+"otw" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/circuitboard/security/mining,
+/obj/item/circuitboard/autolathe{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/circuitboard/ship/helm,
+/obj/item/circuitboard/ship/sensors,
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/storage/tech)
"otI" = (
/obj/effect/floor_decal/corner/blue{
dir = 10
@@ -23915,12 +25464,6 @@
/turf/simulated/floor/tiled,
/area/hallway/primary/central_two)
"ovI" = (
-/obj/structure/bed/stool/chair{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -23931,7 +25474,8 @@
dir = 10
},
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 1;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/tiled,
/area/operations/break_room)
@@ -23992,7 +25536,15 @@
/area/medical/exam)
"oyf" = (
/obj/effect/floor_decal/corner_wide/grey/diagonal,
-/obj/machinery/vending/cola,
+/obj/structure/noticeboard{
+ pixel_x = 32
+ },
+/obj/structure/table/standard,
+/obj/item/storage/box/snack{
+ desc = "A box full of snack foods. A label is attached that reads, 'Sorry about the microwaves.'";
+ name = "corporate care package"
+ },
+/obj/effect/floor_decal/spline/plain,
/turf/simulated/floor/tiled/white,
/area/operations/break_room)
"oyi" = (
@@ -24005,11 +25557,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/airlock/maintenance{
- req_access = list(12)
- },
/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/dark,
+/obj/machinery/door/airlock/maintenance_hatch,
+/turf/simulated/floor/plating,
/area/maintenance/wing/port)
"oyq" = (
/obj/effect/floor_decal/industrial/warning/corner,
@@ -24033,16 +25583,21 @@
"oza" = (
/turf/simulated/floor/tiled/dark,
/area/turbolift/scc_ship/morgue_lift)
-"ozz" = (
-/obj/effect/floor_decal/industrial/loading/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+"ozs" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/vending/cigarette,
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
+"ozz" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/landmark{
- name = "JoinLateLift"
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/sleep/cryo/living_quarters_lift)
@@ -24059,22 +25614,17 @@
/turf/simulated/floor/tiled,
/area/security/brig)
"oAc" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering{
- name = "Tech Storage";
- req_access = list(23)
- },
-/turf/simulated/floor/plating,
-/area/engineering/storage/tech)
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"oAq" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -24231,7 +25781,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/lino/grey,
/area/chapel/main)
"oBV" = (
/obj/structure/cable/green{
@@ -24282,11 +25832,8 @@
/turf/simulated/floor/wood,
/area/library)
"oCz" = (
-/obj/structure/bed/stool/chair/wood{
- dir = 8
- },
-/obj/structure/extinguisher_cabinet{
- pixel_y = -32
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
/turf/simulated/floor/lino/grey,
/area/chapel/main)
@@ -24304,17 +25851,11 @@
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"oDl" = (
-/obj/structure/window/reinforced{
- dir = 8
+/obj/effect/floor_decal/corner/brown{
+ dir = 6
},
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/railing/mapped{
- dir = 8
- },
-/turf/simulated/open,
-/area/maintenance/wing/starboard)
+/turf/simulated/floor/tiled,
+/area/operations/office)
"oDz" = (
/obj/effect/floor_decal/corner/lime{
dir = 9
@@ -24367,24 +25908,25 @@
/turf/simulated/floor/plating,
/area/medical/or2)
"oGp" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/effect/floor_decal/corner/green{
+ dir = 1
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/central_two)
+/area/security/checkpoint2)
"oGy" = (
/obj/effect/floor_decal/corner_wide/yellow{
dir = 6
},
/turf/simulated/floor/tiled/dark,
/area/hallway/engineering/tesla)
-"oGI" = (
+"oGR" = (
+/obj/machinery/r_n_d/protolathe,
+/turf/simulated/floor/carpet/rubber,
+/area/rnd/research)
+"oHI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -24394,24 +25936,29 @@
/obj/structure/cable/green{
icon_state = "4-8"
},
-/turf/simulated/floor/plating,
-/area/engineering/storage/tech)
-"oGR" = (
-/obj/machinery/r_n_d/protolathe,
-/turf/simulated/floor/carpet/rubber,
-/area/rnd/research)
-"oHI" = (
/obj/structure/railing/mapped{
- dir = 4
+ dir = 1
},
-/turf/simulated/open,
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor/plating,
/area/maintenance/hangar/port)
"oHX" = (
/obj/structure/table/wood,
/obj/item/paper_bin,
/obj/item/pen,
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = -32
+ },
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
+"oIG" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/railing/mapped,
+/turf/simulated/open,
+/area/operations/office)
"oIL" = (
/turf/simulated/wall,
/area/maintenance/wing/starboard)
@@ -24453,6 +26000,39 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
+"oJT" = (
+/obj/item/circuitboard/rdtechprocessor{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/circuitboard/unary_atmos/heater,
+/obj/item/circuitboard/rdconsole,
+/obj/item/circuitboard/rdserver{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/circuitboard/unary_atmos/cooler{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/circuitboard/destructive_analyzer{
+ pixel_y = 8
+ },
+/obj/item/circuitboard/protolathe,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/storage/tech)
"oKf" = (
/obj/structure/table/stone/marble,
/obj/machinery/door/blast/shutters{
@@ -24472,21 +26052,30 @@
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/camera/network/service{
+ c_tag = "Service - Chaplain Office";
+ dir = 8
+ },
/turf/simulated/floor/wood,
/area/chapel/office)
"oKH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/structure/cable/green{
- icon_state = "2-4"
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/landmark{
+ name = "JoinLateLift"
},
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/sleep/cryo/living_quarters_lift)
@@ -24519,8 +26108,18 @@
/area/crew_quarters/kitchen)
"oKR" = (
/obj/machinery/light/small/emergency,
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/item/material/shard,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard)
"oKU" = (
@@ -24555,11 +26154,17 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/xenobiology/xenoflora_hazard)
"oLE" = (
-/obj/effect/floor_decal/industrial/loading/yellow{
- dir = 4
+/obj/machinery/light{
+ dir = 8
},
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_two)
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
+ },
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-29"
+ },
+/turf/simulated/floor/wood,
+/area/chapel/main)
"oLT" = (
/obj/structure/window/phoronreinforced{
dir = 8
@@ -24567,6 +26172,9 @@
/obj/machinery/portable_atmospherics/hydroponics,
/turf/simulated/floor/tiled/dark,
/area/rnd/xenobiology/xenoflora)
+"oMC" = (
+/turf/simulated/open,
+/area/horizon/stairwell/central)
"oNy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -24752,6 +26360,9 @@
/obj/structure/lattice,
/turf/template_noop,
/area/horizonexterior)
+"oTa" = (
+/turf/simulated/floor/tiled,
+/area/maintenance/aux_atmospherics/deck_2/starboard)
"oTr" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled,
@@ -24767,9 +26378,18 @@
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
"oTK" = (
-/obj/effect/map_effect/wingrille_spawn/reinforced,
-/turf/simulated/floor/plating,
-/area/maintenance/hangar/port)
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/maintenance{
+ req_access = list(12)
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/horizon/stairwell/central)
"oTR" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
@@ -24816,6 +26436,9 @@
name = "Supply Manager Request Console";
pixel_x = -32
},
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
/turf/simulated/floor/wood,
/area/operations/qm)
"oWm" = (
@@ -24843,11 +26466,13 @@
"oWC" = (
/obj/structure/table/wood,
/obj/machinery/light,
-/obj/item/reagent_containers/spray/aspergillum,
/turf/simulated/floor/carpet,
/area/chapel/office)
"oWQ" = (
-/obj/effect/floor_decal/spline/fancy/wood{
+/obj/structure/bed/stool/chair/wood{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy{
dir = 6
},
/turf/simulated/floor/wood,
@@ -24889,6 +26514,7 @@
/area/crew_quarters/kitchen)
"oXw" = (
/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/spline/fancy/wood,
/turf/simulated/floor/wood,
/area/operations/qm)
"oXy" = (
@@ -25118,18 +26744,9 @@
/turf/simulated/floor/wood,
/area/library)
"pef" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/maintenance{
- req_access = list(12)
- },
-/obj/machinery/door/firedoor,
+/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
/turf/simulated/floor/plating,
-/area/hallway/primary/central_two)
+/area/horizon/stairwell/central)
"pep" = (
/obj/effect/floor_decal/industrial/warning/cee,
/turf/simulated/floor/tiled/dark/airless,
@@ -25151,12 +26768,12 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/xenobiology/xenoflora)
"pew" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/obj/effect/floor_decal/corner/brown/full{
+ dir = 8
},
-/turf/simulated/floor/tiled/freezer,
-/area/operations/break_room)
+/obj/structure/flora/pottedplant/random,
+/turf/simulated/floor/tiled,
+/area/operations/office)
"pfb" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 4
@@ -25166,6 +26783,22 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
+"pfi" = (
+/obj/effect/floor_decal/corner_wide/grey/diagonal,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/machinery/button/remote/airlock{
+ id = "cargobreak_t1";
+ pixel_y = 32;
+ name = "Door Bolt Control";
+ specialfunctions = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/operations/break_room)
"pfp" = (
/obj/structure/dispenser/oxygen,
/obj/effect/floor_decal/industrial/hatch/yellow,
@@ -25173,38 +26806,46 @@
/turf/simulated/floor/tiled,
/area/engineering/storage_eva)
"pfB" = (
-/obj/structure/toilet,
-/obj/machinery/light/small{
- dir = 4
+/obj/machinery/light,
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
},
-/obj/machinery/button/remote/airlock{
- dir = 4;
- id = "arrivals_unit_1";
- name = "Door Bolt Control";
- pixel_x = -24;
- specialfunctions = 4
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/turf/simulated/floor/tiled/freezer,
-/area/hallway/primary/central_two)
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"pgg" = (
-/obj/machinery/door/airlock/highsecurity{
- name = "Secure Tech Storage";
- req_access = list(19,23)
+/obj/effect/floor_decal/corner/green{
+ dir = 5
},
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/reinforced,
-/area/engineering/storage/tech)
+/obj/structure/table/wood,
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"pgi" = (
+/obj/effect/floor_decal/industrial/hatch/red,
+/obj/machinery/door/window/westright{
+ req_access = list(22);
+ name = "Mass Driver Internal Access"
+ },
+/obj/machinery/door/window/eastleft{
+ req_access = list(22);
+ name = "Mass Driver External Access"
+ },
+/obj/structure/plasticflaps/airtight,
/obj/machinery/door/blast/regular{
id = "massdriver"
},
-/turf/simulated/floor/tiled,
+/turf/simulated/floor/reinforced,
/area/chapel/office)
"pgj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/ramp,
-/area/turret_protected/ai_upload)
+/area/turret_protected/ai_upload_foyer)
"pgD" = (
/obj/structure/railing/mapped{
dir = 1
@@ -25281,13 +26922,18 @@
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
"piE" = (
-/obj/effect/floor_decal/corner/paleblue/full{
+/obj/machinery/cryopod/living_quarters{
+ pixel_y = 8
+ },
+/obj/effect/floor_decal/corner/green/full{
dir = 1
},
-/obj/machinery/disposal/small/west{
- pixel_y = -6
+/obj/structure/sign/directions/civ{
+ pixel_y = -10;
+ name = "\improper To Living Quarters sign";
+ desc = "A sign pointing out that a lift leads to the ship's living quarters.";
+ dir = 1
},
-/obj/structure/disposalpipe/trunk,
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/sleep/cryo/living_quarters_lift)
"piY" = (
@@ -25303,11 +26949,11 @@
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hos)
"pjL" = (
-/obj/structure/railing/mapped{
+/obj/effect/floor_decal/spline/fancy/wood/cee{
dir = 8
},
-/obj/structure/railing/mapped,
-/turf/simulated/open,
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/grass/alt,
/area/hallway/primary/central_two)
"pjQ" = (
/obj/structure/sink{
@@ -25318,7 +26964,8 @@
pixel_x = 24;
pixel_y = 3
},
-/turf/simulated/floor/tiled/freezer,
+/obj/effect/floor_decal/corner/green/diagonal,
+/turf/simulated/floor/tiled/white,
/area/hallway/primary/central_two)
"pkf" = (
/obj/machinery/chem_master,
@@ -25328,15 +26975,10 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/xenobiology/xenoflora)
"pkH" = (
-/obj/machinery/door/airlock{
- name = "Fore Washroom"
- },
-/turf/simulated/floor/tiled/freezer,
-/area/hallway/primary/central_two)
+/obj/effect/floor_decal/corner/green/diagonal,
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
"pkK" = (
-/obj/machinery/light{
- dir = 8
- },
/obj/structure/table/standard,
/obj/effect/floor_decal/spline/fancy/wood{
dir = 9
@@ -25346,8 +26988,8 @@
/obj/machinery/alarm{
pixel_y = 28
},
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload)
+/turf/simulated/floor/wood,
+/area/turret_protected/ai_upload_foyer)
"pkV" = (
/obj/effect/floor_decal/industrial/warning{
dir = 8
@@ -25431,16 +27073,20 @@
/turf/simulated/floor/plating,
/area/hallway/engineering)
"plH" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
+/obj/effect/floor_decal/corner/green{
+ dir = 10
},
-/obj/item/circuitboard/security{
- pixel_x = 1;
- pixel_y = -1
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -24;
+ dir = 1
},
-/turf/simulated/floor/plating,
-/area/engineering/storage/tech)
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Auxiliary Custodial Closet Entrance";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"plL" = (
/turf/space,
/area/rnd/xenobiology/xenoflora)
@@ -25470,7 +27116,7 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/structure/disposalpipe/segment{
dir = 4;
- icon_state = "conpipe-c"
+ icon_state = "pipe-c"
},
/turf/simulated/floor/wood,
/area/crew_quarters/heads/chief)
@@ -25533,7 +27179,7 @@
"poJ" = (
/obj/structure/disposalpipe/segment{
dir = 4;
- icon_state = "conpipe-c"
+ icon_state = "pipe-c"
},
/turf/simulated/floor/wood,
/area/operations/qm)
@@ -25554,12 +27200,19 @@
/turf/simulated/floor/tiled/white,
/area/medical/or2)
"pqE" = (
-/obj/structure/table/standard,
-/obj/random/tech_supply,
-/obj/random/tech_supply,
-/obj/machinery/light{
- dir = 1
+/obj/structure/closet/toolcloset,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
},
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/storage/primary)
"prk" = (
@@ -25567,6 +27220,18 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/tiled,
/area/maintenance/wing/starboard)
+"prC" = (
+/obj/effect/floor_decal/industrial/loading/yellow{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/engineering/storage/tech)
"psg" = (
/obj/structure/cable/green{
icon_state = "2-4"
@@ -25577,12 +27242,15 @@
/turf/simulated/floor/tiled,
/area/security/warden)
"psH" = (
-/obj/machinery/vending/assist,
-/obj/machinery/alarm{
- pixel_y = 28
+/obj/effect/floor_decal/corner/brown/full{
+ dir = 4
+ },
+/obj/machinery/vending/zora,
+/obj/structure/sign/directions/dock{
+ pixel_y = -32
},
/turf/simulated/floor/tiled,
-/area/storage/primary)
+/area/operations/lobby)
"ptk" = (
/obj/effect/floor_decal/industrial/warning{
dir = 8
@@ -25606,6 +27274,13 @@
},
/turf/simulated/floor/tiled,
/area/medical/gen_treatment)
+"ptJ" = (
+/obj/effect/floor_decal/corner_wide/grey/diagonal,
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/operations/break_room)
"ptV" = (
/obj/effect/floor_decal/corner/mauve/diagonal,
/obj/structure/table/standard,
@@ -25706,15 +27381,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Assistant"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
+/obj/effect/floor_decal/corner/green/diagonal,
/turf/simulated/floor/tiled,
/area/storage/primary)
"pxt" = (
@@ -25754,6 +27421,24 @@
},
/turf/simulated/open,
/area/hallway/primary/central_two)
+"pyo" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 9
+ },
+/obj/structure/table/rack,
+/obj/item/device/gps,
+/obj/item/device/gps,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/void/security,
+/obj/item/clothing/suit/space/void/security,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/head/helmet/space/void/security,
+/obj/item/clothing/head/helmet/space/void/security,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
"pyJ" = (
/obj/machinery/shower{
dir = 1
@@ -25854,11 +27539,23 @@
/turf/simulated/floor/tiled,
/area/security/prison)
"pBB" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 10
+/obj/structure/sign/securearea{
+ pixel_x = -32
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
/turf/simulated/floor/tiled/dark,
-/area/maintenance/aux_atmospherics/deck_2/starboard)
+/area/engineering/storage/tech)
"pCf" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -25914,6 +27611,7 @@
name = "east bump";
pixel_x = 24
},
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/aft)
"pEh" = (
@@ -25932,15 +27630,23 @@
/turf/simulated/floor/reinforced,
/area/rnd/xenobiology)
"pEt" = (
-/obj/machinery/atmospherics/pipe/simple/visible/universal{
+/obj/effect/floor_decal/corner/yellow{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/storage/tech)
+"pEu" = (
+/obj/structure/railing/mapped{
dir = 4
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor/plating,
-/area/maintenance/aux_atmospherics/deck_2/starboard)
-"pEu" = (
/turf/simulated/floor/tiled/ramp,
-/area/turret_protected/ai_upload)
+/area/turret_protected/ai_upload_foyer)
"pEA" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/structure/particle_accelerator/particle_emitter/left{
@@ -25952,18 +27658,9 @@
/turf/simulated/wall,
/area/crew_quarters/kitchen)
"pEQ" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
+/obj/structure/foamedmetal,
/turf/simulated/floor/plating,
-/area/maintenance/aux_atmospherics/deck_2/starboard)
+/area/maintenance/wing/starboard)
"pER" = (
/obj/structure/cable/yellow{
icon_state = "0-8"
@@ -25986,11 +27683,11 @@
/turf/simulated/floor/plating,
/area/engineering/engine_room)
"pFe" = (
-/obj/structure/railing/mapped,
-/turf/simulated/floor/tiled/ramp{
- dir = 8
- },
-/area/maintenance/wing/starboard)
+/obj/effect/floor_decal/corner_wide/grey/diagonal,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled/white,
+/area/operations/break_room)
"pFr" = (
/obj/structure/table/stone/marble,
/obj/machinery/door/blast/shutters{
@@ -26023,9 +27720,18 @@
/area/crew_quarters/kitchen)
"pGb" = (
/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning,
/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/hangar/port)
@@ -26036,11 +27742,6 @@
/area/maintenance/wing/starboard)
"pGu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
/obj/structure/table/stone/marble,
/obj/machinery/door/blast/shutters{
dir = 2;
@@ -26052,14 +27753,15 @@
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"pGX" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/effect/floor_decal/industrial/loading/yellow{
+/obj/structure/disposalpipe/segment,
+/obj/structure/railing/mapped{
dir = 8
},
-/obj/structure/cable{
- icon_state = "1-8"
+/obj/machinery/light/small/emergency{
+ dir = 4
},
-/turf/simulated/floor/plating,
+/obj/structure/lattice,
+/turf/simulated/open,
/area/maintenance/wing/starboard)
"pHp" = (
/obj/structure/cable/green{
@@ -26073,16 +27775,19 @@
/turf/simulated/floor/tiled/dark,
/area/engineering/aft_airlock)
"pHu" = (
-/obj/machinery/papershredder,
/obj/machinery/light{
dir = 8
},
-/obj/machinery/computer/guestpass{
- pixel_x = -30
- },
/obj/effect/floor_decal/corner/brown{
dir = 9
},
+/obj/machinery/requests_console{
+ department = "Cargo Bay";
+ departmentType = 2;
+ name = "Operations Requests Console";
+ pixel_x = -32
+ },
+/obj/structure/table/standard,
/turf/simulated/floor/tiled,
/area/operations/office)
"pHJ" = (
@@ -26154,14 +27859,9 @@
/turf/simulated/floor/tiled,
/area/security/prison)
"pJK" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 6
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/table/rack,
-/obj/random/loot,
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/wing/starboard/far)
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/maintenance/aux_atmospherics/deck_2/starboard)
"pKc" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
@@ -26190,9 +27890,6 @@
/obj/structure/railing/mapped{
dir = 8
},
-/obj/structure/railing/mapped{
- dir = 1
- },
/obj/effect/floor_decal/corner/black/diagonal,
/turf/simulated/floor/tiled/dark,
/area/maintenance/wing/starboard)
@@ -26269,12 +27966,14 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
-/obj/effect/floor_decal/corner_wide/grey/diagonal,
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
-/turf/simulated/floor/tiled/white,
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
/area/operations/break_room)
"pMN" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
@@ -26319,15 +28018,14 @@
/turf/simulated/floor/tiled,
/area/rnd/xenobiology/xenoflora)
"pNw" = (
-/obj/machinery/autolathe,
/obj/effect/floor_decal/corner/brown{
dir = 5
},
-/obj/machinery/requests_console{
- department = "Cargo Bay";
- departmentType = 2;
- name = "Operations Requests Console";
- pixel_y = 32
+/obj/machinery/autolathe,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = 24
},
/turf/simulated/floor/tiled,
/area/operations/office)
@@ -26346,14 +28044,31 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/prison)
-"pOb" = (
-/obj/effect/floor_decal/industrial/loading,
-/turf/simulated/floor/tiled,
-/area/engineering/atmos/storage)
+"pNX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/corner/blue{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/loading/yellow{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/checkpoint2)
"pOl" = (
-/obj/structure/stairs/west,
+/obj/structure/closet/toolcloset,
+/obj/machinery/alarm{
+ pixel_y = 28
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
-/area/hallway/primary/central_two)
+/area/storage/primary)
"pOV" = (
/obj/machinery/light,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
@@ -26396,18 +28111,18 @@
/turf/template_noop,
/area/horizonexterior)
"pQj" = (
-/obj/structure/table/stone/marble,
-/obj/effect/floor_decal/spline/fancy/wood{
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/railing/mapped{
dir = 8
},
-/obj/item/storage/bible,
-/obj/item/device/radio/intercom{
- dir = 4;
- name = "Station Intercom (General)";
- pixel_x = -25
- },
-/turf/simulated/floor/wood,
-/area/chapel/main)
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor/plating,
+/area/maintenance/hangar/port)
"pQm" = (
/obj/structure/table/standard,
/obj/item/paper_bin,
@@ -26445,6 +28160,10 @@
},
/turf/simulated/floor/wood,
/area/medical/psych)
+"pRd" = (
+/obj/structure/foamedmetal,
+/turf/simulated/floor/plating,
+/area/engineering/engine_room/tesla)
"pRf" = (
/obj/structure/cable/orange{
icon_state = "2-4"
@@ -26497,8 +28216,9 @@
/turf/simulated/floor/tiled,
/area/hallway/engineering)
"pSP" = (
-/obj/structure/bed/stool/chair/wood{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "2-4"
},
/turf/simulated/floor/lino/grey,
/area/chapel/main)
@@ -26532,9 +28252,12 @@
/turf/simulated/floor/tiled,
/area/security/lobby)
"pTY" = (
-/obj/effect/floor_decal/corner_wide/grey/diagonal,
/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled,
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
/area/maintenance/wing/starboard/far)
"pUn" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
@@ -26576,15 +28299,9 @@
/turf/simulated/floor/tiled/white,
/area/medical/exam)
"pUT" = (
-/obj/structure/cable/orange,
-/obj/machinery/power/smes/buildable{
- RCon_tag = "Tesla - Containment";
- charge = 2e+006;
- input_attempt = 1;
- input_level_max = 350000;
- is_critical = 1;
- output_attempt = 1;
- output_level_max = 350000
+/obj/machinery/camera/network/engine{
+ c_tag = "Engineering - SMES Room 2";
+ dir = 1
},
/turf/simulated/floor/plating,
/area/engineering/engine_monitoring/tesla)
@@ -26625,17 +28342,8 @@
/turf/simulated/floor/lino/grey,
/area/crew_quarters/bar)
"pWb" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/maintenance{
- req_access = list(12)
- },
-/turf/simulated/floor/tiled/dark,
+/obj/machinery/atmospherics/pipe/manifold4w/visible,
+/turf/simulated/floor/tiled,
/area/maintenance/aux_atmospherics/deck_2/starboard)
"pWj" = (
/obj/structure/cable/green{
@@ -26698,8 +28406,23 @@
dir = 1;
icon_state = "pipe-c"
},
-/turf/simulated/wall,
-/area/rnd/chemistry)
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor/plating,
+/area/maintenance/aft)
+"pXV" = (
+/obj/structure/foamedmetal,
+/turf/simulated/floor/plating,
+/area/bridge/aibunker)
+"pYK" = (
+/obj/structure/bed/stool/chair/padded/red{
+ dir = 4
+ },
+/obj/machinery/camera/network/service{
+ c_tag = "Dinner - Booth 2";
+ dir = 4
+ },
+/turf/simulated/floor/lino/grey,
+/area/hallway/primary/central_two)
"pYU" = (
/obj/structure/lattice/catwalk/indoor/grate,
/obj/effect/floor_decal/industrial/loading/yellow,
@@ -26804,6 +28527,12 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
/area/security/warden)
+"qaI" = (
+/obj/structure/railing/mapped,
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/starboard)
"qbl" = (
/obj/effect/floor_decal/corner/mauve{
dir = 5
@@ -26836,11 +28565,17 @@
/area/maintenance/wing/starboard)
"qcc" = (
/obj/structure/railing/mapped,
-/obj/structure/cable/orange{
+/obj/effect/floor_decal/corner/mauve/full{
+ dir = 4
+ },
+/obj/structure/cable/green{
icon_state = "1-4"
},
-/turf/simulated/floor/reinforced,
-/area/turret_protected/ai_upload)
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload_foyer)
"qcs" = (
/obj/machinery/disposal/small/east,
/obj/structure/disposalpipe/trunk{
@@ -26905,10 +28640,28 @@
/obj/machinery/shield_diffuser,
/turf/template_noop,
/area/horizonexterior)
-"qfw" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
+"qff" = (
+/obj/machinery/light{
+ dir = 4
},
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-33"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_x = 22
+ },
+/obj/effect/floor_decal/spline/fancy/wood/cee{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 32
+ },
+/turf/simulated/floor/wood,
+/area/chapel/main)
+"qfw" = (
/obj/structure/cable/green{
icon_state = "1-4"
},
@@ -26918,12 +28671,12 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/floor_decal/corner/brown/full{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
/turf/simulated/floor/tiled,
/area/operations/break_room)
"qfC" = (
@@ -26959,11 +28712,13 @@
/obj/machinery/light{
dir = 8
},
-/obj/effect/floor_decal/corner/brown{
- dir = 9
+/obj/effect/floor_decal/corner/brown/full{
+ dir = 8
},
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/emcloset,
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/operations/office)
"qgN" = (
/turf/template_noop,
/area/template_noop)
@@ -27007,6 +28762,16 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/hallway)
+"qhF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/lattice/catwalk/indoor,
+/turf/simulated/open,
+/area/operations/office)
"qja" = (
/turf/simulated/floor/tiled/dark,
/area/engineering/lobby)
@@ -27029,7 +28794,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/lino/grey,
/area/chapel/main)
"qjm" = (
/obj/effect/map_effect/wingrille_spawn/reinforced_phoron,
@@ -27073,21 +28838,37 @@
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
"qlm" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/structure/window/reinforced{
- dir = 1
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ req_one_access = list(12, 26)
},
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
-/area/maintenance/wing/starboard/far)
+/area/maintenance/wing/starboard)
"qlp" = (
/obj/effect/floor_decal/corner/blue{
dir = 9
},
-/obj/machinery/light{
- dir = 8
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
},
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled,
+/obj/item/crowbar,
+/obj/item/device/flashlight/heavy{
+ pixel_y = 6
+ },
+/obj/item/device/flashlight/heavy{
+ pixel_y = 6
+ },
+/obj/item/device/flashlight/heavy{
+ pixel_y = 6
+ },
+/obj/item/device/camera,
+/obj/structure/table/steel,
+/turf/simulated/floor/tiled/dark,
/area/security/checkpoint2)
"qlU" = (
/obj/structure/bed,
@@ -27108,15 +28889,28 @@
/obj/structure/cable/green{
icon_state = "4-8"
},
-/turf/simulated/floor/tiled/freezer,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/light/small,
+/obj/effect/floor_decal/corner/green/diagonal,
+/turf/simulated/floor/tiled/white,
/area/hallway/primary/central_two)
"qmy" = (
/obj/item/modular_computer/console/preset/engineering,
/turf/simulated/floor/carpet/rubber,
/area/engineering/engine_monitoring)
"qnb" = (
-/obj/structure/lattice,
-/turf/simulated/open,
+/obj/effect/floor_decal/corner/mauve/full{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/spline/fancy/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
/area/turret_protected/ai)
"qni" = (
/obj/effect/floor_decal/corner/blue{
@@ -27145,19 +28939,28 @@
/turf/simulated/floor/plating,
/area/maintenance/hangar/port)
"qnE" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/zpipe/down/supply{
+ dir = 1
+ },
/obj/structure/cable{
icon_state = "11-8"
},
-/obj/structure/lattice,
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/plating,
+/turf/simulated/open,
/area/maintenance/wing/starboard)
+"qpB" = (
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/obj/structure/railing/mapped,
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/operations/office)
"qqs" = (
/obj/structure/coatrack{
pixel_x = 4
@@ -27168,6 +28971,9 @@
/obj/machinery/light{
dir = 4
},
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
/turf/simulated/floor/wood,
/area/operations/qm)
"qqK" = (
@@ -27181,20 +28987,14 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden,
/turf/simulated/floor/plating,
-/area/hallway/primary/central_two)
+/area/security/checkpoint2)
"qra" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_mining{
- name = "Operations Bay";
- req_access = null;
- req_one_access = list(31,48,26,67)
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
+/obj/structure/table/standard,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/effect/floor_decal/corner/green/full,
/turf/simulated/floor/tiled,
-/area/operations/office)
+/area/storage/primary)
"qrx" = (
/obj/effect/map_effect/wingrille_spawn/reinforced,
/obj/structure/cable/green{
@@ -27238,11 +29038,9 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/door/airlock/maintenance{
- req_access = list(12)
- },
/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/dark,
+/obj/machinery/door/airlock/maintenance_hatch,
+/turf/simulated/floor/plating,
/area/maintenance/wing/port)
"qsj" = (
/obj/effect/floor_decal/corner/mauve{
@@ -27282,10 +29080,12 @@
/obj/effect/floor_decal/corner/green{
dir = 10
},
-/obj/machinery/camera/network/second_deck{
- c_tag = "Second Deck - Medical Entrance";
- dir = 1
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
"qtY" = (
@@ -27304,11 +29104,13 @@
/turf/simulated/floor/tiled/dark,
/area/hallway/engineering/tesla)
"que" = (
-/obj/effect/floor_decal/industrial/warning/corner{
+/obj/machinery/door/blast/regular/open{
+ name = "AI Maintenance Blast Door";
+ id = "AICore";
dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/turf/simulated/floor/plating,
+/area/turret_protected/ai_upload)
"quh" = (
/obj/structure/table/stone/marble,
/obj/item/reagent_containers/glass/bucket,
@@ -27379,15 +29181,16 @@
pixel_x = -24;
pixel_y = 3
},
-/turf/simulated/floor/tiled/freezer,
+/obj/effect/floor_decal/corner/green/diagonal,
+/turf/simulated/floor/tiled/white,
/area/hallway/primary/central_two)
"qvl" = (
/obj/effect/floor_decal/industrial/warning/full,
/obj/machinery/light{
dir = 4
},
-/obj/machinery/porta_turret/stationary,
-/turf/simulated/floor/tiled,
+/obj/machinery/porta_turret,
+/turf/simulated/floor/reinforced,
/area/turret_protected/ai)
"qvx" = (
/obj/effect/floor_decal/industrial/warning{
@@ -27399,7 +29202,7 @@
/turf/simulated/floor/plating,
/area/engineering/engine_room)
"qvF" = (
-/obj/structure/girder,
+/obj/structure/foamedmetal,
/turf/simulated/floor/plating,
/area/storage/primary)
"qvO" = (
@@ -27414,14 +29217,20 @@
/obj/item/reagent_containers/spray/pepper,
/turf/simulated/floor/tiled/dark,
/area/security/armory)
-"qwk" = (
-/obj/machinery/light/small/emergency{
+"qvZ" = (
+/obj/structure/railing/mapped,
+/obj/machinery/light{
dir = 8
},
-/obj/structure/closet/crate/software_backup,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/reinforced,
-/area/engineering/storage/tech)
+/turf/simulated/open,
+/area/operations/office)
+"qwk" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"qwq" = (
/obj/structure/cable/green{
icon_state = "2-4"
@@ -27429,11 +29238,22 @@
/turf/simulated/floor/tiled/dark,
/area/engineering/aft_airlock)
"qwD" = (
-/obj/structure/lattice,
/obj/machinery/light{
dir = 4
},
-/turf/simulated/open,
+/obj/effect/floor_decal/corner/yellow{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/spline/fancy{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
/area/turret_protected/ai)
"qwJ" = (
/obj/structure/disposalpipe/segment,
@@ -27474,18 +29294,28 @@
/turf/simulated/floor/tiled,
/area/security/prison)
"qxy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/effect/floor_decal/corner/yellow{
+ dir = 9
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor/plating,
-/area/maintenance/aux_atmospherics/deck_2/starboard)
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/sign/securearea{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"qxK" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/door/airlock/maintenance,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/wing/starboard/far)
+/obj/machinery/keycard_auth{
+ pixel_y = -24
+ },
+/obj/machinery/camera/network/supply{
+ c_tag = "Operations - Quartermaster's Office";
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/wood,
+/area/operations/qm)
"qyh" = (
/obj/effect/floor_decal/corner/mauve/diagonal,
/obj/structure/bed/stool/chair/office/light{
@@ -27508,7 +29338,6 @@
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
"qzR" = (
-/obj/structure/table/standard,
/obj/machinery/disposal/small/north,
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -27516,8 +29345,10 @@
/obj/effect/floor_decal/corner/brown{
dir = 10
},
-/obj/item/paper_scanner,
-/obj/machinery/firealarm/south,
+/obj/structure/closet/walllocker/medical{
+ pixel_y = -32
+ },
+/obj/item/storage/firstaid/regular,
/turf/simulated/floor/tiled,
/area/operations/office)
"qzX" = (
@@ -27534,9 +29365,6 @@
/turf/simulated/floor/plating,
/area/medical/cryo)
"qAF" = (
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -27547,11 +29375,11 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
-/obj/effect/floor_decal/corner/mauve{
- dir = 9
- },
/obj/structure/cable/green{
- icon_state = "1-2"
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/corner/mauve/full{
+ dir = 8
},
/turf/simulated/floor/tiled/dark,
/area/rnd/hallway)
@@ -27641,13 +29469,14 @@
dir = 5
},
/obj/machinery/camera/network/service{
- c_tag = "Dinner - Bar 2"
+ c_tag = "Dinner - Lounge Fore"
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
"qEQ" = (
+/obj/structure/lattice,
/turf/simulated/open,
-/area/operations/storage)
+/area/operations/office)
"qFf" = (
/obj/structure/cable{
icon_state = "1-8"
@@ -27700,6 +29529,21 @@
/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/aft)
+"qFt" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/wing/starboard)
"qFD" = (
/obj/structure/bed/stool/chair/office/light,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -27780,22 +29624,21 @@
/turf/simulated/floor/tiled/white,
/area/medical/pharmacy)
"qFW" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/window/reinforced{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/aux_atmospherics/deck_2/starboard)
-"qFX" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -29
+/obj/machinery/light{
+ dir = 1
},
-/turf/simulated/floor/tiled/freezer{
- name = "cold storage tiles";
- temperature = 278
+/obj/machinery/alarm{
+ pixel_y = 28
},
-/area/crew_quarters/kitchen/freezer)
+/obj/effect/floor_decal/corner_wide/blue/full{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/reinforced,
+/area/engineering/storage/tech)
"qFY" = (
/obj/machinery/atmospherics/binary/pump{
dir = 8
@@ -27832,6 +29675,9 @@
pixel_x = 29
},
/obj/item/material/ashtray/bronze,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
/turf/simulated/floor/wood,
/area/operations/qm)
"qHE" = (
@@ -27854,6 +29700,15 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/conference)
+"qIA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/railing/mapped,
+/turf/simulated/floor/tiled/ramp{
+ dir = 4
+ },
+/area/chapel/main)
"qJr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
@@ -27865,14 +29720,14 @@
/turf/simulated/floor/tiled/white,
/area/rnd/chemistry)
"qKi" = (
-/obj/structure/toilet{
- dir = 4
+/obj/machinery/shower{
+ pixel_y = 24
},
-/obj/effect/floor_decal/corner_wide/grey/diagonal,
-/obj/machinery/light/small{
- dir = 1
+/obj/structure/curtain/open/shower,
+/obj/machinery/door/window/southleft{
+ name = "Shower"
},
-/turf/simulated/floor/tiled/white,
+/turf/simulated/floor/tiled/freezer,
/area/operations/break_room)
"qKK" = (
/obj/effect/floor_decal/corner_wide/green{
@@ -27892,8 +29747,8 @@
/obj/effect/floor_decal/spline/fancy/wood{
dir = 6
},
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload)
+/turf/simulated/floor/wood,
+/area/turret_protected/ai_upload_foyer)
"qLA" = (
/obj/effect/floor_decal/corner/brown/diagonal,
/obj/effect/floor_decal/industrial/warning{
@@ -27952,23 +29807,21 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/hallway)
"qNo" = (
-/obj/effect/floor_decal/corner_wide/grey/diagonal,
-/obj/structure/cable/green{
- icon_state = "1-4"
+/obj/structure/railing/mapped{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/railing/mapped{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/operations/break_room)
+/turf/simulated/open,
+/area/operations/office)
"qNy" = (
-/obj/structure/closet/toolcloset,
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/obj/machinery/newscaster{
+ pixel_x = 32
+ },
/turf/simulated/floor/tiled,
/area/storage/primary)
"qOt" = (
@@ -27979,6 +29832,19 @@
"qOM" = (
/turf/simulated/floor/plating,
/area/maintenance/hangar/port)
+"qPn" = (
+/obj/machinery/door/airlock/mining{
+ name = "Washroom";
+ req_one_access = list(26, 31, 48, 67)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/operations/break_room)
"qPo" = (
/obj/machinery/disposal/small/south,
/obj/structure/disposalpipe/trunk{
@@ -28015,6 +29881,12 @@
},
/turf/simulated/floor/plating,
/area/maintenance/wing/port/far)
+"qPY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/maintenance/aux_atmospherics/deck_2/starboard)
"qQs" = (
/obj/structure/lattice/catwalk/indoor/grate/damaged,
/turf/simulated/floor/plating,
@@ -28045,14 +29917,16 @@
icon_state = "0-8"
},
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/camera/network/engineering{
+ c_tag = "Engineering - Deck 2 - Starboard Pod Substation";
+ dir = 1;
+ alarm_on = 1
+ },
/turf/simulated/floor/plating,
/area/maintenance/substation/wing_starboard)
"qRe" = (
/obj/structure/railing/mapped,
/obj/effect/floor_decal/corner/black/diagonal,
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5
- },
/turf/simulated/floor/tiled/dark,
/area/maintenance/wing/starboard)
"qRh" = (
@@ -28063,25 +29937,17 @@
/turf/simulated/floor/tiled/dark,
/area/engineering/atmos/storage)
"qRE" = (
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
/obj/effect/floor_decal/corner/brown{
dir = 1
},
-/obj/structure/disposalpipe/junction{
- dir = 1;
- icon_state = "pipe-j2"
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/operations/lobby)
"qRY" = (
@@ -28123,16 +29989,9 @@
/area/engineering/atmos/storage)
"qSn" = (
/obj/structure/railing/mapped,
-/obj/machinery/atmospherics/portables_connector{
- dir = 8
- },
-/obj/machinery/portable_atmospherics/canister/air/airlock,
-/obj/effect/floor_decal/industrial/outline/red,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plating,
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/dark,
/area/maintenance/wing/starboard)
"qSu" = (
/obj/effect/floor_decal/industrial/warning/corner,
@@ -28152,16 +30011,13 @@
/obj/structure/cable/green{
icon_state = "1-2"
},
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/floor_decal/corner/brown{
- dir = 9
+ dir = 1
},
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/operations/office)
"qSO" = (
/obj/structure/cable/green{
icon_state = "2-4"
@@ -28202,6 +30058,11 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/research)
+"qTC" = (
+/obj/machinery/door/firedoor,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"qUt" = (
/obj/machinery/door/airlock/multi_tile/glass,
/turf/simulated/floor/tiled,
@@ -28223,11 +30084,22 @@
},
/turf/simulated/floor/tiled,
/area/engineering/storage_hard)
-"qVb" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/portable_atmospherics/powered/pump/filled,
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/wing/starboard)
+"qUS" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ pixel_y = -32
+ },
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Central Stairwell";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/stairwell/central)
"qVk" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
@@ -28265,12 +30137,12 @@
/area/rnd/xenobiology)
"qVJ" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"qVS" = (
/obj/item/modular_computer/console/preset/engineering{
dir = 8
@@ -28284,10 +30156,16 @@
/turf/simulated/floor/reinforced,
/area/horizonexterior)
"qXx" = (
-/obj/structure/lattice,
-/obj/structure/railing/mapped,
-/turf/simulated/open,
-/area/operations/storage)
+/obj/effect/floor_decal/corner/brown{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/operations/office)
"qXF" = (
/obj/machinery/light{
dir = 4
@@ -28471,11 +30349,23 @@
/obj/structure/railing/mapped{
dir = 8
},
+/obj/structure/table/rack,
+/obj/random/loot,
/turf/simulated/floor/plating,
/area/maintenance/aft)
"rbF" = (
-/obj/structure/bed/stool/chair{
- dir = 1
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
},
/turf/simulated/floor/tiled,
/area/operations/lobby)
@@ -28494,11 +30384,13 @@
/turf/simulated/floor/plating,
/area/maintenance/wing/port)
"rbO" = (
-/obj/item/aicard,
-/obj/item/aiModule/reset,
-/obj/structure/table/steel,
-/turf/simulated/floor/plating,
-/area/engineering/storage/tech)
+/obj/structure/disposalpipe/segment,
+/obj/structure/railing/mapped,
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/maintenance/wing/starboard)
"rca" = (
/obj/structure/toilet,
/obj/machinery/light/small{
@@ -28511,6 +30403,7 @@
pixel_x = 24;
specialfunctions = 4
},
+/obj/effect/floor_decal/corner/green/diagonal,
/turf/simulated/floor/tiled/freezer,
/area/hallway/primary/central_two)
"rck" = (
@@ -28580,18 +30473,15 @@
/turf/simulated/floor/tiled,
/area/operations/qm)
"rez" = (
-/obj/machinery/computer/aiupload{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
+/obj/effect/floor_decal/corner/mauve/full{
dir = 4
},
-/obj/structure/window/reinforced{
- dir = 8
+/obj/structure/railing/mapped,
+/obj/machinery/light{
+ dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload)
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload_foyer)
"reL" = (
/obj/structure/cable/green{
icon_state = "2-4"
@@ -28600,12 +30490,6 @@
dir = 4;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/wing/port)
@@ -28626,14 +30510,14 @@
/turf/simulated/floor/tiled,
/area/security/brig)
"rfG" = (
-/obj/structure/lattice,
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/cable/orange{
+/obj/effect/floor_decal/corner/mauve/full,
+/obj/structure/cable/green{
icon_state = "1-4"
},
-/turf/simulated/open,
+/obj/effect/floor_decal/spline/fancy/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
/area/turret_protected/ai)
"rfO" = (
/obj/effect/floor_decal/industrial/outline/yellow,
@@ -28650,8 +30534,8 @@
/obj/effect/floor_decal/spline/fancy/wood{
dir = 10
},
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload)
+/turf/simulated/floor/wood,
+/area/turret_protected/ai_upload_foyer)
"rgk" = (
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -28667,10 +30551,6 @@
},
/turf/simulated/floor/tiled,
/area/engineering/smes)
-"rgF" = (
-/obj/structure/ladder/up,
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai)
"rgH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/floor_decal/corner/blue{
@@ -28695,6 +30575,10 @@
/obj/structure/closet/radiation,
/turf/simulated/floor/carpet/rubber,
/area/rnd/strongroom)
+"rgU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"rhz" = (
/obj/effect/floor_decal/corner/blue{
dir = 5
@@ -28759,14 +30643,38 @@
},
/turf/simulated/floor/tiled/dark,
/area/medical/pharmacy)
+"rju" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/lattice/catwalk/indoor,
+/turf/simulated/open,
+/area/operations/office)
"rjK" = (
/obj/effect/floor_decal/spline/fancy/wood/corner,
/turf/simulated/floor/wood,
/area/chapel/main)
+"rjP" = (
+/obj/machinery/door/firedoor,
+/obj/effect/map_effect/wingrille_spawn/reinforced/polarized{
+ id = "chapel_outer"
+ },
+/turf/simulated/floor/plating,
+/area/chapel/main)
"rkk" = (
/obj/structure/window/phoronreinforced,
/turf/space,
/area/rnd/xenobiology/xenoflora)
+"rkq" = (
+/obj/structure/railing/mapped,
+/turf/simulated/open,
+/area/operations/office)
"rkO" = (
/obj/effect/floor_decal/industrial/warning,
/obj/structure/cable/yellow{
@@ -28830,6 +30738,7 @@
/obj/machinery/door/airlock/maintenance_hatch{
req_access = list(12)
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/aft)
"rlv" = (
@@ -28913,15 +30822,13 @@
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/kitchen)
"rnO" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/effect/landmark/start{
name = "Assistant"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
+/obj/effect/floor_decal/corner/green/diagonal,
/turf/simulated/floor/tiled,
/area/storage/primary)
"rom" = (
@@ -28931,6 +30838,12 @@
},
/turf/simulated/floor/carpet/rubber,
/area/rnd/strongroom)
+"roq" = (
+/obj/machinery/light/small/emergency{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/wing/starboard)
"rou" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
dir = 10
@@ -29080,22 +30993,23 @@
/turf/simulated/floor/tiled,
/area/operations/office)
"rqS" = (
-/obj/effect/floor_decal/industrial/loading/yellow,
-/turf/simulated/floor/plating,
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/ramp{
+ dir = 1
+ },
/area/maintenance/wing/starboard/far)
"rrq" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/effect/floor_decal/corner/brown/full,
/turf/simulated/floor/tiled,
/area/operations/break_room)
@@ -29146,13 +31060,17 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/operations/office)
"rtH" = (
/obj/structure/railing/mapped,
+/obj/effect/floor_decal/corner/mauve/full,
/obj/effect/floor_decal/industrial/warning,
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload)
"rtI" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/machinery/newscaster{
@@ -29254,20 +31172,24 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/xenobiology/xenoflora)
"rvT" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/lattice/catwalk/indoor/grate,
/obj/random/junk,
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 28
+ },
/turf/simulated/floor/plating,
/area/maintenance/hangar/port)
"rwe" = (
-/obj/structure/closet/secure_closet,
-/turf/simulated/floor/reinforced,
-/area/storage/secure)
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/wing/starboard)
"rwn" = (
/obj/structure/sign/securearea{
icon_state = "radiation"
@@ -29313,9 +31235,11 @@
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"ryb" = (
-/obj/machinery/vending/assist,
-/turf/simulated/floor/plating,
-/area/engineering/storage/tech)
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/maintenance/aux_atmospherics/deck_2/starboard)
"ryi" = (
/obj/effect/floor_decal/corner/green{
dir = 10
@@ -29324,6 +31248,21 @@
/obj/machinery/light,
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
+"ryq" = (
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Warehouse Elevator";
+ req_one_access = list(26, 31, 48, 67);
+ autoclose = 0
+ },
+/obj/machinery/door/firedoor/multi_tile,
+/turf/simulated/floor/tiled/dark,
+/area/operations/office)
"ryu" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -29390,8 +31329,16 @@
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/obj/effect/floor_decal/corner/mauve{
+ dir = 10
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/machinery/firealarm/south,
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload)
"rAn" = (
/obj/structure/table/wood,
/obj/item/storage/pill_bottle/dice/gaming,
@@ -29456,19 +31403,12 @@
/turf/simulated/floor/tiled,
/area/hallway/medical)
"rCH" = (
-/obj/machinery/power/apc{
- is_critical = 1;
- name = "south bump";
- pixel_y = -24
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/machinery/newscaster{
+ pixel_y = 32
},
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/effect/floor_decal/corner/green{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/central_two)
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
"rCL" = (
/obj/effect/floor_decal/industrial/warning{
dir = 4
@@ -29493,11 +31433,13 @@
/turf/simulated/floor/tiled/white,
/area/rnd/conference)
"rDw" = (
-/obj/structure/closet/crate,
-/obj/random/loot,
-/obj/item/storage/bag/inflatable,
+/obj/item/aicard,
+/obj/item/aiModule/reset,
+/obj/structure/table/steel,
+/obj/effect/floor_decal/corner/yellow/full,
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark,
-/area/maintenance/aux_atmospherics/deck_2/starboard)
+/area/engineering/storage/tech)
"rDH" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/machinery/alarm{
@@ -29550,7 +31492,6 @@
/turf/simulated/floor/tiled/white,
/area/medical/reception)
"rEK" = (
-/obj/effect/floor_decal/corner/green/diagonal,
/obj/effect/floor_decal/corner/green{
dir = 5
},
@@ -29656,9 +31597,6 @@
/turf/simulated/floor/wood,
/area/library)
"rHj" = (
-/obj/item/device/radio/intercom{
- pixel_y = -28
- },
/obj/structure/window/reinforced{
dir = 1
},
@@ -29669,18 +31607,19 @@
/turf/simulated/floor/reinforced,
/area/crew_quarters/kitchen/freezer)
"rHw" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
-/obj/structure/window/reinforced{
- dir = 4
+/obj/effect/floor_decal/corner/brown{
+ dir = 6
},
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/operations/office)
+"rHW" = (
+/obj/effect/floor_decal/corner/brown,
+/turf/simulated/floor/tiled,
+/area/operations/office)
"rIK" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
@@ -29782,20 +31721,19 @@
/turf/simulated/floor/plating,
/area/rnd/research)
"rLF" = (
-/obj/structure/table/rack,
-/obj/item/towel,
-/obj/item/towel,
-/obj/item/towel{
- pixel_y = 6
- },
-/obj/item/towel{
- pixel_y = 6
+/obj/structure/toilet{
+ dir = 4
},
/obj/effect/floor_decal/corner_wide/grey/diagonal,
-/obj/structure/window/reinforced,
-/obj/random/soap,
-/obj/random/soap,
-/obj/random/soap,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/button/remote/airlock{
+ id = "cargobreak_t2";
+ pixel_y = 32;
+ name = "Door Bolt Control";
+ specialfunctions = 4
+ },
/turf/simulated/floor/tiled/white,
/area/operations/break_room)
"rMf" = (
@@ -29878,13 +31816,16 @@
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/structure/lattice/catwalk/indoor/grate,
/obj/item/material/shard{
icon_state = "small"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard)
"rOt" = (
@@ -30033,6 +31974,16 @@
/obj/item/paper_bin,
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hos)
+"rQO" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/machinery/camera/network/service{
+ c_tag = "Dinner - Bartender Desk Starboard";
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
"rRe" = (
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled/ramp{
@@ -30089,14 +32040,13 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/hallway)
"rSG" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor/tiled,
-/area/operations/lobby)
+/turf/simulated/open,
+/area/operations/office)
"rSP" = (
+/obj/structure/foamedmetal,
/obj/structure/shuttle_part/scc_space_ship{
icon_state = "d2-2"
},
-/obj/structure/girder,
/turf/simulated/floor/plating,
/area/storage/primary)
"rSW" = (
@@ -30125,17 +32075,14 @@
/turf/simulated/floor/tiled/white,
/area/medical/or2)
"rTT" = (
-/obj/structure/table/standard,
-/obj/item/stack/material/glass/full,
-/obj/item/stack/material/steel/full,
/obj/effect/floor_decal/corner/brown{
dir = 9
},
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -28
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/photocopier,
+/obj/machinery/computer/guestpass{
+ pixel_x = -32
},
-/obj/item/storage/belt/utility,
/turf/simulated/floor/tiled,
/area/operations/office)
"rTZ" = (
@@ -30170,12 +32117,14 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/xenobiology)
"rUC" = (
-/obj/structure/cable/green{
- icon_state = "1-4"
+/obj/structure/bed/stool/chair/office/dark,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
/obj/effect/landmark/start{
name = "Assistant"
},
+/obj/effect/floor_decal/corner/green/diagonal,
/turf/simulated/floor/tiled,
/area/storage/primary)
"rUT" = (
@@ -30223,12 +32172,20 @@
icon_state = "pipe-c"
},
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/operations/office)
+"rWg" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk/indoor,
+/turf/simulated/open/airless,
+/area/horizonexterior)
"rWp" = (
+/obj/structure/foamedmetal,
/obj/structure/shuttle_part/scc_space_ship{
icon_state = "d2-2"
},
-/turf/simulated/wall,
+/turf/simulated/floor/plating,
/area/maintenance/wing/starboard)
"rWq" = (
/obj/effect/map_effect/wingrille_spawn/reinforced_phoron,
@@ -30248,6 +32205,12 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/medical/pharmacy)
+"rWW" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/checkpoint2)
"rXd" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -30272,6 +32235,14 @@
},
/turf/simulated/floor/tiled/freezer,
/area/security/main)
+"rXj" = (
+/obj/structure/ladder/up,
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
"rXm" = (
/obj/effect/floor_decal/industrial/warning/full,
/obj/machinery/mech_recharger,
@@ -30306,20 +32277,29 @@
/turf/simulated/floor/tiled,
/area/assembly/chargebay)
"rYx" = (
-/obj/structure/closet/crate,
-/obj/random/loot,
+/obj/item/stack/cable_coil{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/stack/cable_coil,
+/obj/item/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/structure/table/steel,
+/obj/effect/floor_decal/corner/yellow/full{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark,
-/area/maintenance/aux_atmospherics/deck_2/starboard)
+/area/engineering/storage/tech)
"rYM" = (
-/obj/effect/floor_decal/corner/paleblue/full,
-/obj/structure/closet/secure_closet/personal,
-/obj/machinery/atmospherics/unary/vent_pump/on{
+/obj/machinery/light,
+/obj/structure/disposalpipe/trunk{
dir = 1
},
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -28
- },
+/obj/machinery/disposal/small/east,
+/obj/effect/floor_decal/corner/green/full,
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/sleep/cryo/living_quarters_lift)
"rYW" = (
@@ -30330,7 +32310,7 @@
/area/rnd/xenobiology/xenoflora)
"rZh" = (
/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled,
+/turf/simulated/floor/tiled/dark,
/area/operations/lobby)
"rZU" = (
/obj/effect/floor_decal/corner/mauve/full,
@@ -30347,13 +32327,14 @@
/area/horizonexterior)
"saJ" = (
/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/firedoor,
/obj/machinery/door/blast/shutters/open{
dir = 2;
id = "seconddeckdockext";
- name = "shutter"
+ name = "Security Checkpoint External Shutter"
},
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_two)
+/turf/simulated/floor/reinforced,
+/area/security/checkpoint2)
"sbu" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -30384,6 +32365,10 @@
},
/turf/simulated/floor/plating,
/area/maintenance/substation/engineering)
+"sbW" = (
+/obj/structure/foamedmetal,
+/turf/simulated/floor/plating,
+/area/engineering/storage/tech)
"sci" = (
/obj/structure/cable/green{
icon_state = "2-8"
@@ -30445,10 +32430,10 @@
/obj/structure/railing/mapped{
dir = 8
},
-/obj/structure/lattice,
/obj/machinery/light/small/emergency{
dir = 4
},
+/obj/structure/lattice,
/turf/simulated/open,
/area/maintenance/wing/starboard)
"sdT" = (
@@ -30457,23 +32442,36 @@
},
/turf/simulated/floor/wood,
/area/library)
-"sem" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/effect/floor_decal/industrial/loading/yellow,
-/turf/simulated/floor/plating,
+"sdX" = (
+/obj/effect/decal/cleanable/cobweb2,
+/turf/simulated/floor/tiled/dark,
/area/maintenance/wing/starboard/far)
+"sem" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/structure/railing/mapped{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/maintenance/wing/starboard)
"sen" = (
/turf/simulated/wall/r_wall,
/area/maintenance/substation/engineering)
"seQ" = (
-/obj/structure/cable/orange{
- icon_state = "1-2"
+/obj/machinery/power/smes/buildable{
+ RCon_tag = "Tesla - Containment";
+ charge = 2e+006;
+ input_attempt = 1;
+ input_level_max = 350000;
+ is_critical = 1;
+ output_attempt = 1;
+ output_level_max = 350000;
+ output_level = 150000;
+ input_level = 150000
},
+/obj/structure/cable/orange,
/obj/machinery/light{
dir = 4
},
@@ -30504,8 +32502,8 @@
/obj/structure/shuttle_part/scc_space_ship{
icon_state = "d2-2"
},
-/turf/simulated/wall,
-/area/maintenance/aux_atmospherics/deck_2/starboard)
+/turf/simulated/wall/r_wall,
+/area/engineering/storage/tech)
"sfr" = (
/obj/effect/floor_decal/industrial/loading/yellow{
dir = 4
@@ -30543,19 +32541,14 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/hallway/engineering)
-"sgW" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/door/airlock/maintenance{
- req_access = list(12)
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/aux_atmospherics/deck_2/starboard)
"shi" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload)
+/obj/effect/floor_decal/corner/mauve{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload_foyer)
"shR" = (
/obj/machinery/camera/network/engine{
c_tag = "Engineering - Tesla Room 2"
@@ -30586,9 +32579,18 @@
/turf/simulated/open,
/area/hallway/primary/central_two)
"sjv" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/operations/lobby)
"sjO" = (
@@ -30641,33 +32643,44 @@
/turf/simulated/floor/plating,
/area/rnd/xenobiology)
"skq" = (
-/obj/effect/floor_decal/corner_wide/grey/diagonal,
+/obj/effect/floor_decal/corner/brown{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/operations/break_room)
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/operations/office)
+"sky" = (
+/obj/machinery/atmospherics/pipe/tank/air,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/maintenance/aux_atmospherics/deck_2/starboard)
"slm" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
/turf/simulated/floor/wood,
/area/library)
+"slS" = (
+/obj/effect/floor_decal/corner/purple{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/janitor/stairs)
"smh" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
},
-/obj/item/storage/toolbox/electrical{
- pixel_x = 1;
- pixel_y = -1
- },
-/obj/item/clothing/gloves/yellow,
-/obj/item/clothing/gloves/yellow/specialu,
-/obj/item/clothing/gloves/yellow/specialt,
-/obj/item/device/t_scanner,
-/obj/item/device/multitool,
-/turf/simulated/floor/plating,
-/area/engineering/storage/tech)
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/maintenance/aux_atmospherics/deck_2/starboard)
"smn" = (
/obj/machinery/power/apc/low{
name = "south bump";
@@ -30703,22 +32716,16 @@
/turf/simulated/floor/plating,
/area/medical/psych)
"snB" = (
-/obj/structure/table/reinforced,
-/obj/effect/floor_decal/corner/blue{
- dir = 5
+/obj/machinery/door/airlock/security{
+ name = "Deck 2 Starboard Docks - Security Checkpoint";
+ req_access = list(63)
},
-/obj/item/device/camera,
-/obj/item/device/flashlight/heavy{
- pixel_y = 6
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
-/obj/item/device/flashlight/heavy{
- pixel_y = 6
- },
-/obj/item/device/flashlight/heavy{
- pixel_y = 6
- },
-/obj/machinery/firealarm/north,
-/obj/item/crowbar,
/turf/simulated/floor/tiled,
/area/security/checkpoint2)
"soc" = (
@@ -30734,6 +32741,18 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/icu)
+"soA" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/machinery/power/apc{
+ is_critical = 1;
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/central_two)
"soK" = (
/obj/effect/floor_decal/industrial/hatch/yellow,
/obj/effect/floor_decal/industrial/warning,
@@ -30764,7 +32783,6 @@
/turf/simulated/floor/tiled/white,
/area/rnd/research)
"spn" = (
-/obj/structure/flora/pottedplant/random,
/obj/effect/floor_decal/spline/fancy/wood{
dir = 10
},
@@ -30773,6 +32791,9 @@
name = "Station Intercom (General)";
pixel_x = -25
},
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-33"
+ },
/turf/simulated/floor/wood,
/area/chapel/office)
"spM" = (
@@ -30789,7 +32810,8 @@
/area/medical/psych)
"spR" = (
/obj/machinery/door/window/brigdoor/southleft{
- req_access = list(16)
+ req_access = list(16);
+ name = "AI Core Access"
},
/obj/effect/floor_decal/industrial/warning,
/obj/effect/floor_decal/spline/plain,
@@ -30800,21 +32822,16 @@
},
/obj/machinery/turretid/stun{
check_synth = 1;
- name = "AI Chamber turret control";
+ name = "\improper AI Chamber Turret Control Console";
pixel_x = -40;
pixel_y = 25
},
-/obj/structure/cable/orange{
- icon_state = "4-8"
- },
/turf/simulated/floor/bluegrid,
/area/turret_protected/ai)
"sqc" = (
-/obj/structure/railing/mapped,
/obj/effect/floor_decal/industrial/warning,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
+/obj/structure/railing/mapped,
+/obj/structure/trash_pile,
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard)
"sqe" = (
@@ -30986,12 +33003,22 @@
/turf/simulated/floor/plating,
/area/engineering/engine_monitoring/tesla)
"swi" = (
-/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
/obj/machinery/door/window/brigdoor/eastleft{
name = "Arrivals Processing Desk"
},
-/turf/simulated/floor/tiled,
+/obj/structure/table/reinforced/steel,
+/obj/machinery/door/window/brigdoor/westright{
+ name = "Arrivals Processing Desk"
+ },
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/door/blast/shutters{
+ id = "seconddeckdockdesk";
+ name = "Security Checkpoint Desk Shutter";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
/area/security/checkpoint2)
"sww" = (
/obj/effect/floor_decal/industrial/warning{
@@ -31062,24 +33089,12 @@
},
/turf/simulated/wall/r_wall,
/area/engineering/smes)
-"syk" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/obj/structure/bed/stool/chair/padded/black,
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_two)
"sAT" = (
-/obj/machinery/cell_charger{
- pixel_y = 5
- },
-/obj/item/device/multitool,
-/obj/structure/table/steel,
-/turf/simulated/floor/plating,
-/area/engineering/storage/tech)
+/obj/structure/closet/firecloset,
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"sBr" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -31102,8 +33117,8 @@
/turf/simulated/wall/r_wall,
/area/maintenance/aux_atmospherics/deck_2/starboard)
"sBE" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/dark,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/lino/grey,
/area/chapel/main)
"sBL" = (
/obj/machinery/door/firedoor,
@@ -31115,6 +33130,9 @@
dir = 8
},
/obj/random/junk,
+/obj/effect/floor_decal/industrial/loading/yellow{
+ dir = 1
+ },
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard/far)
"sCq" = (
@@ -31133,10 +33151,25 @@
/turf/simulated/floor/tiled/white,
/area/hallway/medical)
"sCE" = (
-/turf/simulated/floor/tiled/ramp{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/area/chapel/main)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Chaplain Office's Maintenance";
+ req_access = list(22)
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/wood,
+/area/chapel/office)
"sDc" = (
/obj/effect/floor_decal/corner/brown{
dir = 6
@@ -31217,7 +33250,7 @@
dir = 4
},
/turf/simulated/floor/lino/grey,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"sGG" = (
/obj/machinery/mech_recharger,
/obj/effect/floor_decal/industrial/outline,
@@ -31277,20 +33310,24 @@
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
"sHR" = (
-/obj/machinery/light{
- dir = 4
- },
/obj/machinery/power/apc{
dir = 1;
is_critical = 1;
name = "north bump";
pixel_y = 24
},
-/obj/structure/cable/orange{
+/obj/structure/railing/mapped,
+/obj/effect/floor_decal/corner/mauve/diagonal,
+/obj/structure/cable/green{
icon_state = "0-8"
},
-/turf/simulated/floor/reinforced,
-/area/turret_protected/ai_upload)
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload_foyer)
"sHY" = (
/turf/simulated/floor/carpet/rubber,
/area/rnd/strongroom)
@@ -31304,12 +33341,14 @@
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
/area/engineering/storage_hard)
"sIp" = (
-/obj/structure/bed/stool/chair/office/dark{
+/obj/machinery/vending/assist,
+/obj/machinery/light{
dir = 1
},
-/obj/effect/landmark/start{
- name = "Assistant"
+/obj/effect/floor_decal/corner/green{
+ dir = 5
},
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/storage/primary)
"sIR" = (
@@ -31321,18 +33360,18 @@
/turf/simulated/floor/tiled,
/area/security/brig)
"sJi" = (
-/obj/structure/closet/toolcloset,
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
+/obj/structure/table/standard,
+/obj/machinery/recharger,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
pixel_x = 24
},
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/machinery/light{
- dir = 4
- },
/turf/simulated/floor/tiled,
/area/storage/primary)
"sJS" = (
@@ -31433,6 +33472,15 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room/tesla)
+"sMS" = (
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/turret_protected/ai_upload)
"sNe" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 30
@@ -31466,18 +33514,20 @@
/turf/simulated/floor/plating,
/area/maintenance/wing/port)
"sNJ" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/cable/green{
- icon_state = "4-8"
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/railing/mapped{
+ dir = 8
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/central_two)
+/area/horizon/stairwell/central)
"sNT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 1
@@ -31556,13 +33606,12 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/glass{
- name = "Primary Tool Storage"
- },
-/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
/turf/simulated/floor/tiled,
-/area/storage/primary)
+/area/operations/lobby)
"sRw" = (
/obj/effect/floor_decal/corner/blue{
dir = 6
@@ -31584,6 +33633,13 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_waste)
+"sRG" = (
+/obj/structure/bed/stool/padded/red,
+/obj/machinery/camera/network/service{
+ c_tag = "Dinner - Lounge Starboard"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/bar)
"sSY" = (
/turf/simulated/floor/plating,
/area/engineering/engine_room)
@@ -31602,7 +33658,6 @@
},
/area/crew_quarters/kitchen/freezer)
"sTu" = (
-/obj/machinery/photocopier,
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
@@ -31618,6 +33673,15 @@
c_tag = "Operations - Main Desk";
dir = 4
},
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/table/standard,
+/obj/item/stack/material/glass/full,
+/obj/item/stack/material/steel/full,
+/obj/item/storage/belt/utility,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -28
+ },
/turf/simulated/floor/tiled,
/area/operations/office)
"sUa" = (
@@ -31677,16 +33741,14 @@
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
"sVn" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 1
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/railing/mapped,
+/obj/structure/railing/mapped{
+ dir = 4
},
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/effect/decal/warning_stripes,
-/obj/machinery/porta_turret/stationary,
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload)
+/obj/machinery/porta_turret,
+/turf/simulated/floor/reinforced,
+/area/turret_protected/ai_upload_foyer)
"sVB" = (
/obj/structure/lattice/catwalk/indoor/grate,
/obj/structure/railing/mapped,
@@ -31729,20 +33791,13 @@
/turf/simulated/open/airless,
/area/horizonexterior)
"sXb" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/obj/structure/railing/mapped{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/structure/lattice/catwalk/indoor/grate,
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/hangar/port)
"sXc" = (
@@ -31752,7 +33807,8 @@
/obj/structure/railing/mapped{
dir = 4
},
-/obj/structure/grille,
+/obj/structure/table/rack,
+/obj/random/loot,
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard/far)
"sXC" = (
@@ -31765,17 +33821,14 @@
/turf/simulated/floor/tiled/dark,
/area/maintenance/wing/starboard)
"sXT" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
+/obj/effect/floor_decal/corner/green{
+ dir = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/central_two)
+/area/security/checkpoint2)
"sYc" = (
/turf/simulated/wall,
/area/maintenance/substation/research)
@@ -31789,12 +33842,40 @@
/obj/machinery/door/window/westleft,
/turf/simulated/floor/grass/alt,
/area/hydroponics)
+"sYy" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/wing/starboard)
"sYA" = (
-/obj/structure/lattice,
+/obj/effect/floor_decal/corner/mauve/full{
+ dir = 4
+ },
/obj/structure/cable/green{
icon_state = "1-8"
},
-/turf/simulated/open,
+/obj/effect/floor_decal/spline/fancy/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
/area/turret_protected/ai)
"sYY" = (
/obj/structure/closet/emcloset,
@@ -31806,12 +33887,10 @@
/turf/simulated/floor/tiled,
/area/hallway/primary/central_two)
"tab" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
/obj/machinery/door/window/westright,
-/turf/simulated/floor/tiled/dark/airless,
-/area/maintenance/wing/starboard)
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/template_noop)
"tae" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -31822,7 +33901,7 @@
dir = 9
},
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/operations/office)
"taf" = (
/obj/structure/closet/emcloset,
/obj/structure/cable/green{
@@ -31874,22 +33953,17 @@
/turf/simulated/floor/tiled/white,
/area/medical/exam)
"tau" = (
-/obj/structure/shuttle_part/scc_space_ship{
- icon_state = "d3-5"
+/obj/effect/map_effect/airlock/s_to_n{
+ radio_frequency = 2005;
+ name = "Deck 2 AI External Airlock (2005)"
},
/turf/simulated/wall/r_wall,
-/area/turret_protected/ai_upload_foyer)
+/area/turret_protected/ai_upload)
"taG" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/effect/floor_decal/corner/brown{
dir = 10
},
@@ -32031,7 +34105,7 @@
"tfl" = (
/obj/structure/bed/stool/padded/red,
/turf/simulated/floor/lino/grey,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"tfr" = (
/obj/machinery/atmospherics/pipe/simple/hidden,
/turf/simulated/floor/tiled/dark,
@@ -32065,7 +34139,7 @@
},
/obj/structure/disposalpipe/segment{
dir = 4;
- icon_state = "conpipe-c"
+ icon_state = "pipe-c"
},
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/heads/hos)
@@ -32104,12 +34178,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/hallway/engineering)
-"thy" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
"thL" = (
/obj/machinery/atmospherics/portables_connector,
/obj/machinery/portable_atmospherics/canister/nitrogen,
@@ -32142,14 +34210,12 @@
/area/medical/reception)
"tiD" = (
/obj/structure/closet/secure_closet/hangartech,
-/obj/item/device/radio/intercom{
- dir = 8;
- name = "Station Intercom (General)";
- pixel_x = 21;
- pixel_y = -13
+/obj/effect/floor_decal/corner/brown{
+ dir = 6
},
+/obj/machinery/firealarm/east,
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/operations/office)
"tiF" = (
/obj/machinery/portable_atmospherics/hydroponics,
/obj/machinery/light,
@@ -32195,7 +34261,7 @@
dir = 8
},
/turf/simulated/floor/lino/grey,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"tjP" = (
/obj/structure/closet/crate,
/obj/machinery/alarm{
@@ -32226,6 +34292,10 @@
/area/crew_quarters/kitchen)
"tki" = (
/obj/machinery/computer/arcade/battle,
+/obj/machinery/camera/network/service{
+ c_tag = "Dinner - Lounge Aft";
+ dir = 8
+ },
/turf/simulated/floor/carpet,
/area/crew_quarters/bar)
"tkB" = (
@@ -32301,6 +34371,11 @@
/turf/simulated/floor/tiled/dark,
/area/maintenance/wing/port/far)
"tna" = (
+/obj/machinery/camera/network/engineering{
+ c_tag = "Engineering - Deck 2 - Engineering Substation";
+ dir = 1;
+ alarm_on = 1
+ },
/turf/simulated/floor/plating,
/area/maintenance/substation/engineering)
"tnc" = (
@@ -32332,21 +34407,15 @@
/turf/simulated/floor/tiled,
/area/engineering/storage_eva)
"toe" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
+/obj/structure/closet/crate/coffin,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/closet/crate/coffin{
+ pixel_y = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor/plating,
-/area/maintenance/hangar/port)
+/turf/simulated/floor/wood,
+/area/chapel/office)
"toA" = (
/obj/structure/table/standard,
/obj/item/reagent_containers/spray/cleaner{
@@ -32386,7 +34455,7 @@
},
/obj/structure/disposalpipe/segment{
dir = 4;
- icon_state = "conpipe-c"
+ icon_state = "pipe-c"
},
/turf/simulated/floor/tiled/white,
/area/medical/or2)
@@ -32408,32 +34477,30 @@
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/bar)
"trC" = (
-/obj/machinery/door/airlock/glass{
- name = "Deck 2 Stairwell"
+/obj/machinery/light,
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
},
-/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
-/area/hallway/primary/central_two)
-"trX" = (
-/obj/structure/sign/double/barsign/kitchensign,
-/turf/simulated/wall,
-/area/crew_quarters/kitchen)
+/area/operations/lobby)
"tsf" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 1
+/obj/structure/railing/mapped{
+ dir = 8
},
-/obj/structure/window/reinforced{
- dir = 1
+/obj/structure/railing/mapped{
+ dir = 4
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor/plating,
-/area/turret_protected/ai_upload)
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/ramp,
+/area/turret_protected/ai_upload_foyer)
"tsk" = (
/obj/effect/floor_decal/industrial/warning/cee{
dir = 1
},
/turf/simulated/floor/tiled/dark/airless,
-/area/maintenance/wing/starboard)
+/area/template_noop)
"tsA" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -32448,8 +34515,11 @@
dir = 1;
icon_state = "pipe-c"
},
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/operations/office)
"tue" = (
/obj/effect/floor_decal/corner/blue{
dir = 10
@@ -32559,16 +34629,23 @@
/turf/simulated/floor/plating,
/area/engineering/smes/tesla)
"txc" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/light{
- dir = 8
+/obj/structure/closet/crate/software_backup,
+/obj/effect/floor_decal/corner_wide/blue{
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/aux_atmospherics/deck_2/starboard)
-"txq" = (
-/turf/simulated/wall,
-/area/crew_quarters/cafeteria)
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/sign/nosmoking_1{
+ pixel_x = -32
+ },
+/obj/machinery/camera/motion{
+ c_tag = "Engineering - Secure Technical Storage";
+ name = "engineering";
+ network = list("Engineering");
+ alarm_on = 1;
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/engineering/storage/tech)
"txy" = (
/turf/simulated/floor/tiled/dark,
/area/rnd/hallway)
@@ -32594,9 +34671,6 @@
/turf/simulated/floor/tiled,
/area/security/lobby)
"tyd" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 8
- },
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
@@ -32604,22 +34678,20 @@
c_tag = "Research -AI Core Entrance";
dir = 1
},
+/obj/effect/floor_decal/corner/mauve/full,
/turf/simulated/floor/tiled,
-/area/turret_protected/ai_upload)
+/area/turret_protected/ai_upload_foyer)
"tyq" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 5
- },
-/obj/structure/reagent_dispensers/fueltank,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/wing/starboard/far)
+/obj/random/junk,
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/starboard)
"tyZ" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/machinery/light/small/emergency{
+ dir = 1
},
-/turf/simulated/floor/tiled/ramp,
-/area/turret_protected/ai_upload)
+/turf/simulated/floor/plating,
+/area/engineering/aft_airlock)
"tzf" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_atmos{
@@ -32680,6 +34752,18 @@
},
/turf/simulated/floor/plating,
/area/hallway/engineering)
+"tAN" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 8;
+ name = "Distro to Starboard Docks";
+ target_pressure = 200
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor/plating,
+/area/security/checkpoint2)
"tAS" = (
/obj/structure/table/standard,
/obj/effect/floor_decal/corner/mauve{
@@ -32694,6 +34778,17 @@
/obj/item/stack/cable_coil/random,
/turf/simulated/floor/tiled/white,
/area/rnd/research)
+"tAX" = (
+/obj/effect/floor_decal/corner/yellow/full,
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-21"
+ },
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Tech Storage Entrance";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"tBB" = (
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/bar)
@@ -32705,42 +34800,42 @@
/turf/simulated/floor/tiled,
/area/operations/office)
"tBZ" = (
-/obj/structure/table/standard,
/obj/machinery/door/blast/shutters{
dir = 2;
id = "cargo_desk"
},
-/obj/machinery/door/window/southleft,
-/obj/machinery/door/window/northright,
+/obj/machinery/door/window/northleft{
+ name = "Operations Desk Interior Access";
+ req_access = list(50)
+ },
+/obj/machinery/door/window/southleft{
+ name = "Operations Desk Exterior Access"
+ },
+/obj/structure/table/reinforced,
/turf/simulated/floor/tiled,
/area/operations/office)
"tCG" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/circuitboard/rdtechprocessor{
- pixel_x = -2;
- pixel_y = 2
- },
-/obj/item/circuitboard/unary_atmos/heater,
-/obj/item/circuitboard/unary_atmos/cooler{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/simulated/floor/plating,
-/area/engineering/storage/tech)
-"tCP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
-/area/turret_protected/ai_upload)
+/area/operations/lobby)
+"tCP" = (
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/ramp,
+/area/turret_protected/ai_upload_foyer)
"tDc" = (
/turf/simulated/floor/carpet/rubber,
/area/rnd/research)
+"tDl" = (
+/obj/machinery/door/airlock/service{
+ name = "Chapel Storage";
+ req_access = list(22)
+ },
+/turf/simulated/floor/wood,
+/area/chapel/main)
"tDZ" = (
/obj/effect/map_effect/wingrille_spawn/reinforced,
/obj/machinery/door/firedoor,
@@ -32799,12 +34894,14 @@
/turf/simulated/floor/tiled/dark,
/area/hallway/engineering)
"tEE" = (
-/obj/structure/lattice,
/obj/machinery/status_display/supply_display{
pixel_y = 32
},
+/obj/machinery/light{
+ dir = 1
+ },
/turf/simulated/open,
-/area/operations/storage)
+/area/operations/office)
"tFf" = (
/obj/structure/railing/mapped{
dir = 4
@@ -32834,6 +34931,16 @@
icon_state = "plating"
},
/area/engineering/engine_room)
+"tFL" = (
+/obj/effect/floor_decal/corner_wide/grey/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/operations/break_room)
"tFP" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -32850,9 +34957,6 @@
"tFX" = (
/obj/structure/table/standard,
/obj/item/paper_scanner,
-/obj/machinery/keycard_auth{
- pixel_y = -24
- },
/turf/simulated/floor/wood,
/area/operations/qm)
"tGb" = (
@@ -32956,8 +35060,23 @@
/turf/simulated/floor/tiled/white,
/area/medical/or2)
"tHZ" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/portable_atmospherics/canister/phoron,
+/obj/effect/floor_decal/corner_wide/blue{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/power/apc/high{
+ pixel_x = -24;
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/camera/network/supply{
+ c_tag = "Operations - Secure Storage";
+ dir = 4
+ },
/turf/simulated/floor/reinforced,
/area/storage/secure)
"tIa" = (
@@ -32996,7 +35115,7 @@
/turf/simulated/floor/tiled/white,
/area/medical/pharmacy)
"tJB" = (
-/obj/structure/railing/mapped{
+/obj/effect/floor_decal/industrial/warning{
dir = 4
},
/turf/simulated/floor/plating,
@@ -33022,15 +35141,18 @@
/turf/simulated/floor/tiled/white,
/area/rnd/research)
"tKo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/machinery/status_display{
+ pixel_y = 32
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
+/obj/effect/floor_decal/corner/yellow{
+ dir = 5
},
-/turf/simulated/floor/plating,
-/area/maintenance/aux_atmospherics/deck_2/starboard)
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/table/steel,
+/obj/item/circuitboard/arcade/orion_trail,
+/obj/item/circuitboard/arcade/battle,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/storage/tech)
"tKw" = (
/obj/effect/floor_decal/corner/blue{
dir = 10
@@ -33103,21 +35225,6 @@
},
/turf/simulated/floor/tiled/white,
/area/rnd/xenobiology)
-"tLc" = (
-/obj/effect/floor_decal/corner/mauve{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/orange{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload)
"tME" = (
/obj/effect/floor_decal/corner/mauve{
dir = 9
@@ -33132,15 +35239,6 @@
"tNa" = (
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
/area/engineering/engine_waste)
-"tNu" = (
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/engineering/storage/tech)
"tND" = (
/obj/machinery/atmospherics/pipe/simple/visible{
dir = 6
@@ -33171,9 +35269,6 @@
/obj/structure/railing/mapped{
dir = 1
},
-/obj/structure/cable{
- icon_state = "4-8"
- },
/turf/simulated/floor/tiled/ramp{
dir = 8
},
@@ -33194,25 +35289,24 @@
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/machinery/alarm{
pixel_y = 28
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard)
"tOS" = (
-/obj/machinery/light{
- dir = 1
- },
/obj/effect/floor_decal/corner/brown{
dir = 5
},
+/obj/machinery/disposal/small/south,
+/obj/structure/disposalpipe/trunk,
/turf/simulated/floor/tiled,
/area/operations/break_room)
"tOW" = (
@@ -33298,7 +35392,7 @@
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"tRz" = (
/obj/structure/railing/mapped,
/obj/structure/railing/mapped{
@@ -33320,6 +35414,12 @@
/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/hangar/port)
+"tSl" = (
+/obj/structure/shuttle_part/scc_space_ship{
+ icon_state = "d2-1"
+ },
+/turf/simulated/wall,
+/area/operations/lobby)
"tSC" = (
/obj/item/reagent_containers/blood/OMinus,
/obj/item/reagent_containers/blood/OMinus,
@@ -33334,6 +35434,11 @@
temperature = 278
},
/area/medical/surgery)
+"tSL" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/vending/coffee,
+/turf/simulated/floor/tiled/dark,
+/area/operations/lobby)
"tTb" = (
/obj/item/hand_tele,
/obj/structure/table/standard,
@@ -33365,8 +35470,9 @@
/turf/simulated/floor/tiled,
/area/engineering/storage_hard)
"tUR" = (
-/obj/structure/stairs/north,
-/turf/simulated/floor/tiled/ramp,
+/obj/structure/stairs/east,
+/obj/structure/railing/mapped,
+/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
"tVu" = (
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
@@ -33408,10 +35514,23 @@
/turf/simulated/floor/tiled,
/area/security/security_office)
"tWF" = (
-/obj/random/loot,
-/obj/structure/table/rack,
-/turf/simulated/floor/plating,
-/area/maintenance/hangar/port)
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/chapel/office)
"tWH" = (
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/heads/hos)
@@ -33431,16 +35550,20 @@
/turf/simulated/floor/tiled,
/area/security/prison)
"tXc" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
-/obj/item/circuitboard/protolathe,
-/obj/item/circuitboard/destructive_analyzer{
- pixel_y = 8
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/engineering/storage/tech)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"tXt" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -33458,13 +35581,14 @@
/turf/simulated/floor/tiled,
/area/hallway/engineering)
"tXJ" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_two)
+/obj/effect/floor_decal/corner/blue{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/security/checkpoint2)
"tXM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
@@ -33589,19 +35713,24 @@
/turf/simulated/floor/plating,
/area/engineering/engine_room/tesla)
"ubX" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/green{
- icon_state = "2-4"
+/obj/effect/floor_decal/corner/green{
+ dir = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/corner/brown{
- dir = 9
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/machinery/ringer_button{
+ id = "ringers_custodialaux";
+ name = "\improper Auxiliary Custodial Ringer";
+ pixel_y = 24;
+ pixel_x = -7
},
/turf/simulated/floor/tiled,
/area/operations/lobby)
+"ubZ" = (
+/obj/structure/sign/drop{
+ name = "\improper DANGER: FALLING HAZARD sign";
+ desc = "A warning sign which reads 'DANGER: FALLING HAZARD' and 'THIS EQUIPMENT STARTS AND STOPS AUTOMATICALLY'."
+ },
+/turf/simulated/wall,
+/area/operations/office)
"ucc" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -33610,7 +35739,18 @@
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"uci" = (
-/obj/machinery/light,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/operations/lobby)
"ucq" = (
@@ -33685,7 +35825,7 @@
/obj/structure/window/shuttle/scc_space_ship,
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
-/area/hallway/primary/central_two)
+/area/security/checkpoint2)
"uej" = (
/obj/machinery/light{
dir = 1
@@ -33775,20 +35915,27 @@
/turf/simulated/floor/tiled/white,
/area/medical/gen_treatment)
"ugZ" = (
+/obj/structure/foamedmetal,
/obj/structure/shuttle_part/scc_space_ship{
icon_state = "d3-5-f"
},
-/obj/structure/girder,
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard)
"uhi" = (
-/obj/structure/railing/mapped{
- dir = 8
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/structure/railing/mapped,
-/obj/structure/railing/mapped{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/hangar/port)
"uhk" = (
@@ -33841,6 +35988,18 @@
},
/turf/simulated/wall/r_wall,
/area/security/armory)
+"uiL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/lino/grey,
+/area/chapel/main)
"uje" = (
/obj/machinery/door/airlock/glass_engineering{
name = "Tesla Bay";
@@ -33890,9 +36049,30 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/icu)
+"ukz" = (
+/obj/structure/table/wood,
+/obj/item/flame/candle,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_x = 28;
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/chapel/main)
"ukM" = (
-/turf/simulated/wall/r_wall,
-/area/engineering/storage/tech)
+/obj/effect/floor_decal/corner/green/full,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/obj/machinery/vending/zora,
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"ukV" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
@@ -34032,6 +36212,9 @@
/obj/effect/floor_decal/corner/brown/full{
dir = 1
},
+/obj/machinery/camera/network/supply{
+ c_tag = "Operations - Break Room"
+ },
/turf/simulated/floor/tiled,
/area/operations/break_room)
"unV" = (
@@ -34067,12 +36250,13 @@
/turf/simulated/floor/plating,
/area/medical/cryo)
"uot" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/service{
- name = "Chapel"
+/obj/structure/table/rack,
+/obj/random/loot,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
},
-/turf/simulated/floor/tiled,
-/area/chapel/main)
+/turf/simulated/floor/plating,
+/area/maintenance/hangar/port)
"uoz" = (
/obj/machinery/power/breakerbox/activated{
RCon_tag = "Research Substation"
@@ -34125,16 +36309,20 @@
/turf/simulated/floor/plating,
/area/maintenance/wing/port/far)
"upm" = (
-/obj/machinery/door/blast/regular{
- dir = 4;
- id = "ai_upload";
- name = "AI Upload Blast Doors"
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
/obj/structure/cable/green{
- icon_state = "1-2"
+ icon_state = "2-4"
},
-/turf/simulated/floor/tiled,
-/area/turret_protected/ai_upload)
+/obj/effect/floor_decal/corner/mauve{
+ dir = 10
+ },
+/obj/effect/floor_decal/spline/fancy{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/turret_protected/ai)
"upn" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -34151,9 +36339,21 @@
/obj/structure/railing/mapped{
dir = 8
},
-/obj/structure/grille/broken,
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard/far)
+"upt" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "AICoreFoyer";
+ name = "AI Foyer Maintenance Blast Door";
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor/plating,
+/area/maintenance/aft)
"upE" = (
/obj/structure/table/reinforced/steel,
/obj/machinery/door/firedoor,
@@ -34170,6 +36370,16 @@
},
/turf/simulated/floor/tiled,
/area/security/security_office)
+"upO" = (
+/obj/machinery/camera/network/service{
+ c_tag = "Dinner - Kitchen Freezer";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer{
+ name = "cold storage tiles";
+ temperature = 278
+ },
+/area/crew_quarters/kitchen/freezer)
"upP" = (
/turf/simulated/wall,
/area/crew_quarters/kitchen/freezer)
@@ -34264,23 +36474,27 @@
/turf/simulated/floor/tiled,
/area/operations/lobby)
"usq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/obj/structure/cable/green{
- icon_state = "1-2"
+ icon_state = "11-4"
},
-/obj/machinery/light/small/red{
+/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
dir = 4
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/random/junk,
-/obj/random/junk,
-/turf/simulated/floor/plating,
+/obj/machinery/atmospherics/pipe/zpipe/down/supply{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk,
+/turf/simulated/open,
/area/maintenance/hangar/port)
+"usr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/janitor/stairs)
"usD" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
@@ -34295,11 +36509,16 @@
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/kitchen)
"usP" = (
-/obj/effect/floor_decal/corner_wide/grey/diagonal,
-/obj/machinery/door/airlock{
- name = "Restroom"
+/obj/structure/table/rack,
+/obj/item/towel,
+/obj/random/soap,
+/obj/structure/window/reinforced{
+ dir = 4
},
-/turf/simulated/floor/tiled/white,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/freezer,
/area/operations/break_room)
"usW" = (
/obj/machinery/atmospherics/binary/circulator{
@@ -34366,6 +36585,21 @@
/obj/machinery/atmospherics/pipe/manifold4w/visible,
/turf/simulated/floor/tiled/dark,
/area/rnd/xenobiology/xenoflora_hazard)
+"uvB" = (
+/obj/structure/table/standard,
+/obj/item/stack/medical/bruise_pack,
+/obj/item/stack/medical/bruise_pack,
+/obj/item/stack/medical/ointment,
+/obj/item/stack/medical/ointment,
+/obj/item/reagent_containers/hypospray/autoinjector/inaprovaline,
+/obj/item/reagent_containers/hypospray/autoinjector/inaprovaline,
+/obj/structure/closet/walllocker/medical{
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"uvM" = (
/obj/structure/cable/yellow{
icon_state = "2-4"
@@ -34380,7 +36614,7 @@
"uwe" = (
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"uwi" = (
/obj/machinery/atmospherics/pipe/manifold/hidden,
/obj/structure/cable/green{
@@ -34404,6 +36638,7 @@
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"uwP" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/bed/stool/chair{
dir = 8
},
@@ -34415,8 +36650,19 @@
},
/obj/structure/table/wood,
/obj/item/flame/candle,
+/obj/machinery/camera/network/service{
+ c_tag = "Dinner - Booth 3";
+ dir = 8
+ },
/turf/simulated/floor/lino/grey,
/area/crew_quarters/bar)
+"uxi" = (
+/obj/effect/map_effect/airlock/s_to_n/long/square/wide{
+ name = "Deck 2 Command Bunker Airlock (2004)";
+ radio_frequency = 2004
+ },
+/turf/simulated/wall/r_wall,
+/area/bridge/aibunker)
"uxn" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -34493,21 +36739,12 @@
/turf/simulated/floor/tiled/white,
/area/rnd/chemistry)
"uzr" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Tech Storage"
},
-/obj/item/circuitboard/borgupload{
- pixel_x = -1;
- pixel_y = 1
- },
-/obj/item/circuitboard/aiupload{
- pixel_x = 2;
- pixel_y = -2
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/reinforced,
-/area/engineering/storage/tech)
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"uzy" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -34520,23 +36757,20 @@
/turf/simulated/floor/plating,
/area/teleporter)
"uzU" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/door/blast/shutters/open{
+ dir = 2;
+ id = "seconddeckdockint";
+ name = "Security Checkpoint Internal Shutter"
},
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/reinforced,
+/area/security/checkpoint2)
+"uAt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/corner/brown{
- dir = 5
- },
/turf/simulated/floor/tiled,
-/area/operations/lobby)
+/area/maintenance/aux_atmospherics/deck_2/starboard)
"uBf" = (
/obj/machinery/light/small/emergency{
dir = 8
@@ -34562,7 +36796,7 @@
pixel_x = -27
},
/turf/simulated/floor/plating,
-/area/hallway/primary/central_two)
+/area/security/checkpoint2)
"uCD" = (
/obj/effect/floor_decal/industrial/warning{
dir = 1
@@ -34596,21 +36830,37 @@
/turf/simulated/floor/tiled/white,
/area/rnd/conference)
"uDs" = (
+/obj/effect/landmark/start{
+ name = "Cyborg"
+ },
+/obj/effect/floor_decal/corner/mauve{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload_foyer)
+"uEg" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/full{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/obj/structure/cable/green{
icon_state = "1-2"
},
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload)
-"uEg" = (
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/machinery/light_switch{
+ pixel_x = 24;
+ pixel_y = -9;
+ dir = 8
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/wing/starboard)
+/turf/simulated/floor/tiled,
+/area/janitor/stairs)
"uEl" = (
/obj/effect/floor_decal/corner/brown/diagonal,
/obj/effect/floor_decal/industrial/warning{
@@ -34644,12 +36894,18 @@
/turf/simulated/floor/wood,
/area/chapel/office)
"uEI" = (
-/obj/machinery/atmospherics/pipe/tank/air{
+/obj/machinery/alarm{
+ pixel_y = -28;
dir = 1
},
-/obj/effect/floor_decal/industrial/outline/blue,
+/obj/machinery/light/small,
+/obj/machinery/vending/assist,
+/obj/effect/floor_decal/corner/yellow{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark,
-/area/maintenance/aux_atmospherics/deck_2/starboard)
+/area/engineering/storage/tech)
"uFc" = (
/obj/machinery/light{
dir = 1
@@ -34715,22 +36971,10 @@
/turf/simulated/floor/plating,
/area/engineering/engine_room/tesla)
"uGL" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/effect/floor_decal/corner/brown{
dir = 5
},
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/operations/lobby)
"uGP" = (
@@ -34756,6 +37000,16 @@
/obj/machinery/firealarm/south,
/turf/simulated/floor/tiled/white,
/area/rnd/conference)
+"uHb" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/camera/network/command{
+ c_tag = "Bridge - Deck 2 - Bunker Escape Route External";
+ network = list("Command","Bunker");
+ alarm_on = 1;
+ dir = 1
+ },
+/turf/template_noop,
+/area/template_noop)
"uHh" = (
/obj/effect/floor_decal/industrial/warning{
dir = 1
@@ -34778,11 +37032,12 @@
/turf/simulated/floor/lino/grey,
/area/crew_quarters/bar)
"uHF" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
},
-/turf/simulated/floor/plating,
-/area/engineering/storage/tech)
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"uHN" = (
/obj/effect/floor_decal/corner_wide/lime/diagonal,
/obj/structure/disposalpipe/segment,
@@ -34878,13 +37133,6 @@
/obj/effect/floor_decal/industrial/warning{
dir = 5
},
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/tiled/dark,
/area/maintenance/wing/starboard)
@@ -34929,18 +37177,14 @@
/turf/simulated/floor/tiled/dark,
/area/engineering/lobby)
"uLz" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
/obj/structure/cable/green{
- icon_state = "2-8"
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_two)
@@ -34990,8 +37234,10 @@
/obj/effect/floor_decal/corner/blue{
dir = 6
},
-/obj/structure/bed/stool/chair/office/bridge,
-/turf/simulated/floor/tiled,
+/obj/structure/bed/stool/chair/office/bridge/generic{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
/area/security/checkpoint2)
"uNq" = (
/obj/machinery/door/airlock/highsecurity{
@@ -35019,13 +37265,10 @@
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard/far)
"uOy" = (
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/reinforced,
-/area/storage/secure)
+/obj/structure/disposalpipe/segment,
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/starboard)
"uOD" = (
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/structure/closet/secure_closet/freezer,
@@ -35106,9 +37349,23 @@
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
"uRo" = (
-/obj/effect/map_effect/wingrille_spawn/reinforced,
-/turf/simulated/floor/plating,
-/area/maintenance/wing/starboard)
+/obj/effect/floor_decal/corner/purple{
+ dir = 9
+ },
+/obj/structure/table/steel,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/pen,
+/obj/item/device/hand_labeler,
+/obj/machinery/requests_console{
+ department = "Custodial";
+ departmentType = 1;
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/janitor/stairs)
"uRu" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
@@ -35135,13 +37392,20 @@
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/structure/cable/green{
- icon_state = "1-8"
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/operations/office)
"uSj" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -35197,24 +37461,27 @@
/turf/simulated/wall/r_wall,
/area/teleporter)
"uTw" = (
-/turf/simulated/wall,
-/area/turret_protected/ai_upload)
+/obj/effect/floor_decal/corner/mauve{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload_foyer)
"uTY" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
},
/obj/structure/cable/green{
icon_state = "1-4"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"uUa" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/machinery/particle_accelerator/control_box,
@@ -35282,6 +37549,22 @@
/obj/structure/railing/mapped,
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard)
+"uWx" = (
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/item/material/shard{
+ icon_state = "small"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/wing/starboard)
+"uXd" = (
+/obj/effect/map_effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "cargo_desk"
+ },
+/turf/simulated/floor/plating,
+/area/operations/office)
"uXq" = (
/obj/structure/railing/mapped{
dir = 1
@@ -35301,39 +37584,33 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/wing/port)
"uXX" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 5
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
+/obj/effect/floor_decal/corner/mauve/diagonal,
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload_foyer)
+"uYJ" = (
+/obj/structure/closet/crate,
+/obj/random/loot,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light/small/emergency{
dir = 4
},
-/obj/effect/decal/warning_stripes,
-/obj/machinery/porta_turret/stationary,
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload)
+/turf/simulated/floor/plating,
+/area/maintenance/wing/starboard/far)
"uYK" = (
/turf/simulated/wall/r_wall,
/area/engineering/engine_airlock)
"uYW" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
/obj/machinery/door/window/westleft,
-/turf/simulated/floor/tiled/dark/airless,
-/area/maintenance/wing/starboard)
+/obj/structure/lattice/catwalk,
+/obj/structure/sign/drop{
+ pixel_y = -32
+ },
+/turf/space,
+/area/template_noop)
"uZh" = (
/obj/effect/floor_decal/spline/fancy/wood/full,
/obj/structure/flora/pottedplant/random,
@@ -35341,7 +37618,7 @@
dir = 8
},
/turf/simulated/floor/wood,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"uZs" = (
/obj/machinery/light,
/obj/structure/table/wood,
@@ -35439,6 +37716,16 @@
/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/tiled/dark,
/area/maintenance/wing/starboard)
+"vbH" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor/plating,
+/area/security/checkpoint2)
"vcv" = (
/obj/structure/lattice/catwalk/indoor/grate,
/obj/effect/floor_decal/industrial/warning{
@@ -35489,14 +37776,21 @@
/turf/simulated/floor/tiled/white,
/area/medical/pharmacy)
"veq" = (
-/obj/effect/floor_decal/corner/green/full{
- dir = 4
- },
/obj/effect/floor_decal/spline/plain{
dir = 4
},
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
+"veu" = (
+/obj/structure/lattice/catwalk/indoor,
+/obj/structure/ladder/up{
+ pixel_y = 16
+ },
+/turf/simulated/floor/reinforced,
+/area/horizonexterior)
"veO" = (
/obj/structure/cable/green{
icon_state = "2-4"
@@ -35511,30 +37805,26 @@
/turf/simulated/floor/plating,
/area/maintenance/hangar/port)
"veP" = (
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
-/area/hallway/primary/central_two)
+/area/security/checkpoint2)
"vfi" = (
+/obj/structure/foamedmetal,
/obj/structure/shuttle_part/scc_space_ship{
icon_state = "d2-1"
},
-/obj/structure/girder,
/turf/simulated/floor/plating,
/area/storage/primary)
-"vfm" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
"vfQ" = (
/obj/effect/floor_decal/corner/orange/full{
dir = 8
@@ -35583,6 +37873,13 @@
icon_state = "4-8"
},
/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/random/junk,
/turf/simulated/floor/plating,
/area/maintenance/hangar/port)
"vhI" = (
@@ -35602,16 +37899,13 @@
/turf/simulated/floor/plating,
/area/maintenance/substation/engineering)
"vhU" = (
-/obj/effect/floor_decal/corner/green{
- dir = 6
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
},
-/obj/effect/floor_decal/spline/plain{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/sunnybush,
+/turf/simulated/floor/grass/alt,
/area/hallway/primary/central_two)
"viR" = (
/obj/structure/closet/secure_closet/RD,
@@ -35737,12 +38031,23 @@
/turf/simulated/wall/r_wall,
/area/crew_quarters/heads/chief)
"voH" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/structure/table/steel,
+/obj/item/device/flashlight{
+ pixel_x = 1;
+ pixel_y = 5
},
-/turf/simulated/floor/plating,
-/area/maintenance/aux_atmospherics/deck_2/starboard)
+/obj/item/device/flashlight{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/item/device/flash,
+/obj/item/device/flash,
+/obj/effect/floor_decal/corner/yellow/full{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/storage/tech)
"voX" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -35753,11 +38058,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/airlock/maintenance{
- req_access = list(12)
- },
/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/dark,
+/obj/machinery/door/airlock/maintenance_hatch,
+/turf/simulated/floor/plating,
/area/maintenance/wing/port/far)
"vpj" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
@@ -35778,6 +38081,18 @@
/obj/item/stack/wrapping_paper,
/turf/simulated/floor/tiled/white,
/area/rnd/research)
+"vqe" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/lino/grey,
+/area/chapel/main)
"vqk" = (
/obj/structure/lattice/catwalk/indoor/grate,
/obj/machinery/light/small/emergency{
@@ -35796,7 +38111,7 @@
/obj/machinery/door/airlock/medical{
id_tag = "EXdoor1";
name = "Examination Room";
- req_one_access = list(5)
+ req_access = list(5)
},
/obj/effect/floor_decal/corner_wide/green{
dir = 9
@@ -35900,18 +38215,6 @@
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
"vua" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
/obj/effect/floor_decal/corner/brown{
dir = 5
},
@@ -35960,15 +38263,12 @@
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard)
"vvS" = (
-/obj/structure/cable/green{
- icon_state = "0-8"
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Living Quarters Lift"
},
-/obj/machinery/power/apc/critical{
- dir = 4;
- pixel_x = 24
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_two)
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/sleep/cryo/living_quarters_lift)
"vwc" = (
/obj/effect/floor_decal/industrial/warning{
dir = 4
@@ -35987,17 +38287,19 @@
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/floor_decal/corner/brown{
- dir = 5
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-8"
},
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/operations/office)
"vxe" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -36018,15 +38320,6 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
/area/operations/mail_room)
-"vxh" = (
-/obj/structure/ladder{
- pixel_y = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/open,
-/area/maintenance/wing/starboard)
"vxK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -36090,24 +38383,21 @@
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
"vyk" = (
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/structure/cable{
- icon_state = "2-4"
+/obj/effect/floor_decal/corner/green{
+ dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/wing/starboard)
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"vyE" = (
-/obj/structure/lattice/catwalk/indoor/grate,
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
dir = 8
},
+/obj/structure/closet/crate,
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard/far)
"vyP" = (
@@ -36159,6 +38449,14 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/hallway)
+"vAD" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/hangar/port)
"vBn" = (
/obj/structure/table/standard,
/obj/effect/floor_decal/corner_wide/paleblue/full,
@@ -36198,11 +38496,15 @@
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
icon_state = "2-4"
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard/far)
@@ -36245,8 +38547,6 @@
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/wing/port)
@@ -36263,9 +38563,10 @@
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
"vDT" = (
-/obj/machinery/vending/cigarette,
-/obj/effect/floor_decal/corner_wide/grey/diagonal,
-/turf/simulated/floor/tiled/white,
+/obj/effect/floor_decal/corner/brown/full{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
/area/operations/break_room)
"vEg" = (
/obj/structure/reagent_dispensers/fueltank,
@@ -36279,6 +38580,11 @@
/obj/structure/cable{
icon_state = "0-8"
},
+/obj/machinery/camera/network/engineering{
+ c_tag = "Engineering - Deck 2 - Port Pod Substation";
+ dir = 1;
+ alarm_on = 1
+ },
/turf/simulated/floor/plating,
/area/maintenance/substation/wing_port)
"vEo" = (
@@ -36364,7 +38670,13 @@
"vGT" = (
/obj/machinery/vending/cigarette,
/turf/simulated/floor/lino/grey,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
+"vHl" = (
+/obj/structure/ladder{
+ pixel_y = 16
+ },
+/turf/simulated/open,
+/area/maintenance/aft)
"vHp" = (
/obj/structure/table/standard,
/obj/machinery/light,
@@ -36388,13 +38700,10 @@
/turf/simulated/floor/tiled/white,
/area/medical/main_storage)
"vHy" = (
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 5
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/alarm{
- pixel_y = 28
- },
-/turf/simulated/floor/wood,
+/turf/simulated/floor/lino/grey,
/area/chapel/main)
"vId" = (
/obj/machinery/chemical_dispenser,
@@ -36443,6 +38752,17 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/medical/reception)
+"vJu" = (
+/obj/machinery/shower{
+ dir = 1;
+ pixel_y = -8
+ },
+/obj/machinery/door/window/northleft{
+ name = "Shower"
+ },
+/obj/structure/curtain/open/shower,
+/turf/simulated/floor/tiled/freezer,
+/area/operations/break_room)
"vJv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -36464,20 +38784,28 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/landmark/start{
- name = "Cyborg"
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload)
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload_foyer)
"vJK" = (
/obj/machinery/light{
dir = 4
},
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/heads/hos)
+"vJR" = (
+/obj/effect/floor_decal/corner/green/full{
+ dir = 8
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"vKf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -36512,7 +38840,7 @@
dir = 4
},
/obj/machinery/door/airlock/maintenance{
- req_access = list(66)
+ req_access = list(5)
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
@@ -36528,6 +38856,18 @@
/obj/item/nitrilebox,
/turf/simulated/floor/carpet/rubber,
/area/rnd/strongroom)
+"vMl" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner/green{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/horizon/stairwell/central)
"vMD" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -36554,13 +38894,6 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"vMH" = (
-/obj/structure/railing/mapped{
- dir = 4
- },
-/obj/structure/railing/mapped,
-/turf/simulated/open,
-/area/hallway/primary/central_two)
"vNF" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
@@ -36573,6 +38906,14 @@
"vNG" = (
/turf/simulated/wall/r_wall,
/area/security/brig/processing_secondary)
+"vNI" = (
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/emergency{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/maintenance/wing/starboard)
"vNK" = (
/obj/structure/railing/mapped,
/obj/structure/railing/mapped{
@@ -36613,6 +38954,14 @@
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/security/prison)
+"vOr" = (
+/obj/machinery/atmospherics/binary/pump/high_power{
+ name = "Aux Tanks Inlet";
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/maintenance/aux_atmospherics/deck_2/starboard)
"vOt" = (
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/structure/disposalpipe/segment{
@@ -36631,7 +38980,8 @@
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
"vOA" = (
-/obj/structure/grille,
+/obj/structure/table/rack,
+/obj/structure/railing/mapped,
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard/far)
"vOL" = (
@@ -36677,7 +39027,7 @@
/area/engineering/engine_airlock)
"vPg" = (
/obj/machinery/door/airlock/maintenance{
- name = "Firefighting equipment";
+ name = "Emergency Supplies Closet";
req_access = list(12)
},
/obj/machinery/door/firedoor,
@@ -36690,7 +39040,7 @@
/obj/structure/window/phoronreinforced,
/obj/structure/lattice,
/obj/structure/disposalpipe/trunk,
-/obj/machinery/disposal/deliveryChute{
+/obj/structure/disposaloutlet{
dir = 1
},
/turf/space,
@@ -36715,17 +39065,17 @@
/turf/simulated/floor/tiled,
/area/security/armory)
"vQd" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 8
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/effect/floor_decal/corner/mauve/full{
+ dir = 8
+ },
/turf/simulated/floor/tiled,
-/area/turret_protected/ai_upload)
+/area/turret_protected/ai_upload_foyer)
"vQl" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -36785,9 +39135,11 @@
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/heads/hos)
"vQQ" = (
-/obj/effect/landmark/start{
- name = "Assistant"
+/obj/machinery/vending/tool,
+/obj/effect/floor_decal/corner/green{
+ dir = 5
},
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/storage/primary)
"vQR" = (
@@ -36821,13 +39173,18 @@
dir = 4
},
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"vSd" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 10
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/wing/starboard/far)
+/obj/effect/floor_decal/corner/purple{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"vSA" = (
/obj/effect/map_effect/wingrille_spawn/reinforced_phoron/firedoor,
/turf/simulated/floor/plating,
@@ -36940,6 +39297,25 @@
/obj/random/loot,
/turf/simulated/floor/tiled/dark,
/area/maintenance/aux_atmospherics/deck_2/starboard)
+"vVD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/mauve{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/spline/plain/corner,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload)
"vVF" = (
/obj/machinery/conveyor{
dir = 10;
@@ -36972,6 +39348,23 @@
},
/turf/simulated/floor/tiled/white,
/area/rnd/conference)
+"vWh" = (
+/obj/machinery/door/window/brigdoor/eastright{
+ name = "Secure Technical Storage Interior Access";
+ req_one_access = list(19, 23);
+ req_access = null
+ },
+/obj/effect/floor_decal/corner_wide/blue{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/reinforced,
+/area/engineering/storage/tech)
"vWt" = (
/obj/effect/floor_decal/industrial/warning{
dir = 1
@@ -36981,10 +39374,32 @@
},
/turf/simulated/floor/tiled/dark,
/area/engineering/lobby)
+"vWE" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/machinery/door/window/eastright{
+ name = "Canister Access";
+ req_access = list(19)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
"vWX" = (
-/obj/random/junk,
-/turf/simulated/floor/plating,
-/area/maintenance/hangar/port)
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light/small,
+/obj/effect/floor_decal/corner/green/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/hallway/primary/central_two)
"vXe" = (
/obj/structure/shuttle_part/scc_space_ship{
icon_state = "d3-3"
@@ -36998,10 +39413,14 @@
/obj/machinery/light{
dir = 1
},
+/obj/structure/sign/double/barsign/kitchensign{
+ pixel_y = 32
+ },
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/kitchen)
"vXp" = (
-/obj/structure/grille/broken,
+/obj/structure/grille,
+/obj/structure/railing/mapped,
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard/far)
"vXy" = (
@@ -37070,8 +39489,6 @@
/obj/structure/cable/green{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/sortjunction/flipped{
name = "Security";
sortType = "Security"
@@ -37079,18 +39496,9 @@
/turf/simulated/floor/tiled,
/area/security/brig)
"vYE" = (
-/obj/structure/flora/pottedplant/random,
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/machinery/light_switch{
- pixel_x = 22
- },
-/turf/simulated/floor/wood,
-/area/chapel/main)
+/obj/structure/stairs/north,
+/turf/simulated/floor/holofloor/tiled/ramp,
+/area/horizon/stairwell/central)
"vYI" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
@@ -37098,6 +39506,23 @@
/obj/effect/floor_decal/spline/fancy/wood/cee,
/turf/simulated/floor/wood,
/area/chapel/office)
+"vYK" = (
+/obj/effect/floor_decal/corner_wide/grey/diagonal,
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 12
+ },
+/obj/structure/mirror{
+ pixel_x = 28;
+ pixel_y = -3
+ },
+/obj/machinery/alarm{
+ pixel_y = -28;
+ dir = 1
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/white,
+/area/operations/break_room)
"vYQ" = (
/obj/structure/railing/mapped,
/obj/structure/railing/mapped{
@@ -37242,6 +39667,16 @@
},
/turf/simulated/floor/reinforced,
/area/rnd/xenobiology)
+"wbP" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Chapel Entrance";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/central_two)
"wbV" = (
/obj/effect/map_effect/wingrille_spawn/reinforced,
/obj/structure/cable/green{
@@ -37354,6 +39789,17 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
+"weh" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/railing/mapped{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/starboard)
"wej" = (
/obj/effect/floor_decal/corner_wide/paleblue/full{
dir = 8
@@ -37410,6 +39856,9 @@
/obj/structure/cable/green{
icon_state = "1-2"
},
+/obj/structure/railing/mapped{
+ dir = 8
+ },
/turf/simulated/floor/tiled,
/area/operations/lobby)
"wfR" = (
@@ -37498,7 +39947,7 @@
/obj/effect/floor_decal/corner/blue/full{
dir = 4
},
-/turf/simulated/floor/tiled,
+/turf/simulated/floor/tiled/dark,
/area/security/checkpoint2)
"wiz" = (
/obj/effect/floor_decal/corner/green/diagonal,
@@ -37543,6 +39992,11 @@
},
/turf/simulated/floor/wood,
/area/chapel/main)
+"wkw" = (
+/obj/structure/lattice,
+/obj/structure/grille/broken,
+/turf/simulated/open/airless,
+/area/horizonexterior)
"wkN" = (
/obj/machinery/atmospherics/pipe/manifold/visible/black,
/obj/effect/floor_decal/industrial/warning/corner{
@@ -37588,11 +40042,19 @@
/turf/simulated/floor/tiled/white,
/area/rnd/conference)
"wlJ" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 1
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/aux_atmospherics/deck_2/starboard)
+/obj/machinery/light/small/emergency,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor/plating,
+/area/maintenance/wing/starboard)
"wmc" = (
/obj/structure/closet/secure_closet/freezer/meat,
/turf/simulated/floor/tiled/freezer{
@@ -37614,32 +40076,39 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/bar)
"wmp" = (
+/turf/simulated/open,
+/area/maintenance/hangar/port)
+"wmz" = (
+/obj/structure/closet/secure_closet,
+/obj/effect/floor_decal/corner_wide/blue/full{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/reinforced,
+/area/storage/secure)
+"wmT" = (
+/obj/structure/railing/mapped,
/obj/structure/railing/mapped{
dir = 4
},
-/obj/structure/railing/mapped{
- dir = 8
- },
/turf/simulated/open,
-/area/maintenance/hangar/port)
-"wmT" = (
-/obj/structure/lattice,
-/turf/simulated/open,
-/area/operations/storage)
+/area/operations/office)
"wmV" = (
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/lattice/catwalk/indoor/grate/damaged,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard)
"wnj" = (
@@ -37718,14 +40187,12 @@
/turf/simulated/floor/plating,
/area/engineering/engine_room/tesla)
"woY" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
/obj/structure/railing/mapped{
dir = 4
},
-/turf/simulated/floor/tiled/dark/airless,
-/area/maintenance/wing/starboard)
+/obj/structure/lattice/catwalk,
+/turf/space,
+/area/template_noop)
"wpb" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -37776,23 +40243,10 @@
/turf/simulated/floor/tiled,
/area/security/prison)
"wpz" = (
-/obj/machinery/porta_turret/stationary,
-/obj/structure/window/reinforced{
- layer = 5;
- name = "adjusted reinforced window"
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/effect/decal/warning_stripes,
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload)
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/porta_turret,
+/turf/simulated/floor/reinforced,
+/area/turret_protected/ai_upload_foyer)
"wqe" = (
/obj/effect/floor_decal/spline/plain{
dir = 1
@@ -37804,6 +40258,35 @@
dir = 1
},
/area/hallway/engineering/tesla)
+"wqn" = (
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 8
+ },
+/obj/structure/table/rack,
+/obj/item/device/gps,
+/obj/item/device/gps,
+/obj/item/device/gps,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/void/security,
+/obj/item/clothing/suit/space/void/security,
+/obj/item/clothing/suit/space/void/security,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/head/helmet/space/void/security,
+/obj/item/clothing/head/helmet/space/void/security,
+/obj/item/clothing/head/helmet/space/void/security,
+/obj/structure/sign/vacuum{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
"wqC" = (
/obj/structure/window/reinforced{
dir = 1
@@ -37889,17 +40372,28 @@
},
/turf/simulated/floor/tiled/dark,
/area/engineering/atmos/storage)
+"wrW" = (
+/obj/effect/floor_decal/corner/mauve{
+ dir = 5
+ },
+/obj/machinery/firealarm/north,
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload)
"wsn" = (
-/obj/effect/decal/warning_stripes,
-/obj/machinery/porta_turret/stationary,
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
-"wsw" = (
-/obj/machinery/camera/network/engineering{
- c_tag = "Engineering - Secure Technical Storage"
+/obj/structure/railing/mapped{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
},
/turf/simulated/floor/reinforced,
-/area/engineering/storage/tech)
+/area/turret_protected/ai_upload)
+"wsw" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/maintenance/aux_atmospherics/deck_2/starboard)
"wsL" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -37913,17 +40407,14 @@
/turf/simulated/floor/plating,
/area/engineering/engine_room/tesla)
"wsV" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
},
-/obj/item/circuitboard/robotics{
- pixel_x = -2;
- pixel_y = 2
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/reinforced,
-/area/engineering/storage/tech)
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"wsW" = (
/turf/simulated/wall,
/area/maintenance/wing/port)
@@ -37981,23 +40472,17 @@
/turf/simulated/floor/tiled,
/area/security/prison)
"wvK" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/obj/machinery/light{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
},
-/obj/effect/floor_decal/corner/brown{
- dir = 5
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/effect/floor_decal/corner/green/full{
+ dir = 8
},
/turf/simulated/floor/tiled,
-/area/operations/lobby)
+/area/security/checkpoint2)
"wwd" = (
/obj/item/modular_computer/console/preset/security{
dir = 1
@@ -38042,17 +40527,19 @@
/turf/simulated/wall,
/area/medical/cryo)
"wzl" = (
-/obj/effect/map_effect/wingrille_spawn/reinforced,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/engineering/atmos/storage)
-"wzs" = (
-/obj/effect/floor_decal/industrial/warning/corner,
-/obj/machinery/light/small/red{
+/obj/structure/railing/mapped{
dir = 1
},
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/aft)
+"wzs" = (
+/obj/effect/floor_decal/industrial/warning/corner,
/turf/simulated/floor/reinforced,
-/area/maintenance/hangar/port)
+/area/template_noop)
"wzD" = (
/obj/structure/flora/pottedplant/random,
/obj/machinery/camera/network/engineering{
@@ -38082,6 +40569,13 @@
dir = 4
},
/area/rnd/xenobiology/xenoflora)
+"wzW" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/hangar/port)
"wAa" = (
/obj/item/reagent_containers/glass/beaker/cryoxadone{
pixel_x = 6;
@@ -38115,11 +40609,9 @@
/turf/simulated/wall/r_wall,
/area/engineering/engine_waste)
"wBh" = (
-/obj/structure/railing/mapped{
- dir = 8
- },
-/turf/simulated/floor/tiled/ramp,
-/area/maintenance/wing/starboard)
+/obj/effect/floor_decal/corner/red/diagonal,
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"wBq" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -38156,12 +40648,36 @@
/turf/simulated/floor/tiled,
/area/hallway/primary/central_two)
"wCS" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/power/apc{
+ dir = 1;
+ pixel_y = 24
},
-/turf/simulated/floor/plating,
-/area/maintenance/aux_atmospherics/deck_2/starboard)
+/obj/structure/table/steel,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/item/storage/toolbox/electrical{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/obj/item/storage/toolbox/electrical{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/obj/item/clothing/gloves/yellow,
+/obj/item/clothing/gloves/yellow/specialt,
+/obj/item/clothing/gloves/yellow/specialu,
+/obj/item/device/multitool,
+/obj/item/device/multitool,
+/obj/effect/floor_decal/corner/yellow{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/engineering/storage/tech)
"wCZ" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -38320,12 +40836,11 @@
/turf/simulated/floor/tiled/dark,
/area/security/prison)
"wFh" = (
-/obj/effect/map_effect/wingrille_spawn/reinforced,
-/turf/simulated/floor/plating,
+/turf/simulated/wall,
/area/maintenance/aft)
"wFj" = (
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
-/area/hallway/primary/central_two)
+/area/security/checkpoint2)
"wFX" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
dir = 4
@@ -38334,7 +40849,6 @@
/area/engineering/engine_room)
"wGf" = (
/obj/structure/table/standard,
-/obj/structure/disposalpipe/segment,
/obj/item/deck/cards,
/turf/simulated/floor/tiled,
/area/operations/break_room)
@@ -38370,10 +40884,20 @@
/turf/simulated/floor/tiled/white,
/area/rnd/research)
"wGT" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ dir = 4
},
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/highsecurity{
+ name = "Secure Storage";
+ req_access = list(41)
+ },
+/obj/machinery/door/firedoor,
/turf/simulated/floor/reinforced,
/area/storage/secure)
"wHs" = (
@@ -38386,20 +40910,13 @@
/turf/simulated/floor/plating,
/area/maintenance/wing/port/far)
"wIA" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 8
},
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_two)
+/turf/simulated/floor/tiled/dark,
+/area/security/checkpoint2)
"wJh" = (
/obj/structure/table/standard,
/obj/item/book/manual/wiki/security_space_law,
@@ -38417,9 +40934,10 @@
/area/security/warden)
"wJi" = (
/obj/structure/railing/mapped,
-/turf/simulated/floor/tiled/ramp{
- dir = 4
+/obj/structure/railing/mapped{
+ dir = 8
},
+/turf/simulated/floor/plating,
/area/maintenance/wing/starboard)
"wKa" = (
/obj/machinery/light{
@@ -38517,17 +41035,6 @@
},
/turf/simulated/floor/tiled,
/area/rnd/xenobiology)
-"wLp" = (
-/obj/structure/curtain/black,
-/obj/machinery/button/mass_driver{
- _wifi_id = "chapel_driver";
- id = "chapel_driver";
- layer = 3.2;
- pixel_x = 24;
- pixel_y = -22
- },
-/turf/simulated/floor/tiled,
-/area/chapel/office)
"wLz" = (
/obj/item/device/radio/intercom{
listening = 0;
@@ -38557,19 +41064,25 @@
/obj/machinery/button/remote/blast_door{
desc = "A remote control-switch for the AI core maintenance door.";
id = "AICore";
- name = "AI Maintenance Hatch";
+ name = "AI Maintenance Blast Doors";
pixel_x = 17;
pixel_y = 25;
req_access = list(20)
},
-/obj/effect/decal/warning_stripes,
-/obj/structure/cable/cyan{
- d2 = 4;
- icon_state = "0-4"
- },
/obj/effect/landmark/start{
name = "AI"
},
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/button/remote/blast_door{
+ id = "AICoreFoyer";
+ name = "AI Foyer Maintenance Blast Door";
+ req_access = list(16);
+ pixel_y = 35;
+ pixel_x = 17
+ },
/turf/simulated/floor/bluegrid{
name = "cooled mainframe floor";
temperature = 278
@@ -38661,6 +41174,10 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/hallway)
+"wMP" = (
+/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
+/turf/simulated/floor/plating,
+/area/crew_quarters/sleep/cryo/living_quarters_lift)
"wNk" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
@@ -38670,7 +41187,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"wNI" = (
/turf/simulated/floor/lino/grey,
/area/crew_quarters/bar)
@@ -38716,7 +41233,7 @@
},
/obj/structure/lattice,
/turf/simulated/open,
-/area/operations/storage)
+/area/operations/office)
"wPF" = (
/obj/effect/floor_decal/corner/green/full{
dir = 8
@@ -38797,24 +41314,23 @@
/turf/simulated/floor/tiled,
/area/security/prison)
"wRu" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable/green{
- icon_state = "4-8"
+/obj/structure/table/reinforced/steel,
+/obj/machinery/door/window/northleft{
+ name = "Auxiliary Custodial Closet Desk Interior"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/door/window/southleft{
+ name = "Auxiliary Custodial Closet Desk Exterior"
+ },
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/corner/brown{
- dir = 5
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ name = "Auxiliary Custodial Closet Desk Shutter";
+ id = "shutters_deck2_auxcustdesk"
},
/turf/simulated/floor/tiled,
-/area/operations/lobby)
+/area/janitor/stairs)
"wSp" = (
/obj/structure/table/rack,
/obj/effect/floor_decal/industrial/outline/yellow,
@@ -38839,12 +41355,17 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/door/airlock/maintenance{
- req_access = list(12)
- },
/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
+/obj/effect/decal/cleanable/cobweb2,
+/obj/structure/plasticflaps/airtight,
+/obj/machinery/door/airlock/hatch{
+ req_access = list(12);
+ name = "Deck 2 Starboard Pod"
+ },
+/obj/item/tape/engineering{
+ icon_state = "engineering_door"
+ },
+/turf/simulated/floor/tiled/dark,
/area/maintenance/wing/starboard/far)
"wTb" = (
/obj/effect/floor_decal/industrial/warning{
@@ -38860,6 +41381,21 @@
},
/turf/simulated/floor/tiled,
/area/maintenance/wing/starboard)
+"wTh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
"wTU" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -38880,9 +41416,7 @@
/turf/simulated/floor/tiled/dark,
/area/medical/gen_treatment)
"wUS" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- req_one_access = list(12,47)
- },
+/obj/machinery/door/airlock/maintenance_hatch,
/turf/simulated/floor/tiled/dark,
/area/maintenance/research_port)
"wUT" = (
@@ -38896,9 +41430,13 @@
/turf/simulated/open,
/area/hallway/primary/central_two)
"wUU" = (
-/obj/machinery/vending/snack,
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/obj/machinery/vending/coffee,
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
-/area/hallway/primary/central_two)
+/area/security/checkpoint2)
"wVc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/white,
@@ -38916,13 +41454,18 @@
icon_state = "1-2"
},
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"wWh" = (
-/obj/structure/lattice,
-/obj/structure/cable/orange{
- icon_state = "11-2"
+/obj/effect/floor_decal/corner/blue{
+ dir = 10
},
-/turf/simulated/open,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/spline/fancy{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
/area/turret_protected/ai)
"wWI" = (
/obj/structure/girder,
@@ -39008,9 +41551,11 @@
/turf/simulated/floor/plating,
/area/engineering/engine_waste)
"wYY" = (
-/obj/effect/floor_decal/corner_wide/grey/diagonal,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
+/obj/effect/floor_decal/corner/brown{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
/area/operations/break_room)
"wZn" = (
/obj/effect/floor_decal/industrial/warning{
@@ -39056,13 +41601,6 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hos)
-"wZy" = (
-/obj/effect/floor_decal/industrial/warning,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/reinforced,
-/area/hallway/primary/central_two)
"wZJ" = (
/turf/simulated/floor/plating,
/area/engineering/aft_airlock)
@@ -39074,8 +41612,38 @@
},
/turf/simulated/floor/tiled/dark,
/area/hallway/engineering/tesla)
+"wZP" = (
+/obj/structure/closet/crate,
+/obj/random/loot,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/wing/starboard)
"xap" = (
-/obj/structure/lattice/catwalk/indoor,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/light/small/emergency{
+ dir = 1
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/aft)
"xas" = (
@@ -39102,16 +41670,16 @@
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/bar)
"xbY" = (
-/obj/structure/railing/mapped,
/obj/structure/railing/mapped{
dir = 8
},
+/obj/structure/table/rack,
+/obj/random/loot,
+/obj/effect/floor_decal/industrial/outline/yellow,
/obj/effect/floor_decal/industrial/warning{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 8
},
+/obj/effect/floor_decal/industrial/warning/corner,
/turf/simulated/floor/plating,
/area/maintenance/wing/starboard)
"xcp" = (
@@ -39120,8 +41688,14 @@
pixel_x = 28;
req_one_access = list(24,11,55)
},
-/turf/simulated/floor/tiled/ramp,
-/area/turret_protected/ai_upload)
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/structure/railing/mapped,
+/obj/machinery/porta_turret,
+/turf/simulated/floor/reinforced,
+/area/turret_protected/ai_upload_foyer)
"xcK" = (
/obj/structure/bed/stool/chair/office/dark{
dir = 8
@@ -39150,11 +41724,14 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/hallway)
"xdl" = (
-/obj/structure/extinguisher_cabinet{
- pixel_y = 30
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/central_two)
+/area/security/checkpoint2)
"xdu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -39165,11 +41742,15 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
-/obj/structure/cable/orange{
+/obj/effect/floor_decal/corner/mauve{
+ dir = 5
+ },
+/obj/structure/cable{
icon_state = "4-8"
},
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload_foyer)
+/obj/effect/floor_decal/spline/plain/corner,
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload)
"xdA" = (
/obj/structure/railing/mapped,
/obj/structure/railing/mapped{
@@ -39184,8 +41765,6 @@
/obj/structure/cable/green{
icon_state = "12-0"
},
-/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,
-/obj/machinery/atmospherics/pipe/zpipe/up/supply,
/obj/structure/railing/mapped,
/obj/structure/railing/mapped{
dir = 8
@@ -39193,22 +41772,20 @@
/turf/simulated/floor/plating,
/area/maintenance/wing/port)
"xee" = (
-/obj/effect/floor_decal/corner/mauve{
- dir = 5
- },
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/obj/machinery/light{
- dir = 8
- },
/obj/machinery/button/remote/blast_door{
id = "ai_upload";
- name = "AI Upload Entrance";
- pixel_x = -25
+ name = "AI Upload Foyer Blast Doors";
+ pixel_x = -25;
+ dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload)
+/obj/effect/floor_decal/corner/mauve/full{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload_foyer)
"xer" = (
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/reinforced,
@@ -39252,9 +41829,12 @@
/turf/simulated/floor/tiled/dark,
/area/hallway/engineering)
"xfq" = (
-/obj/machinery/atmospherics/pipe/manifold4w/visible,
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/tiled/dark,
-/area/maintenance/aux_atmospherics/deck_2/starboard)
+/area/engineering/storage/tech)
"xgG" = (
/obj/effect/floor_decal/spline/plain{
dir = 1
@@ -39318,7 +41898,7 @@
req_access = list(13)
},
/turf/simulated/floor/plating,
-/area/hallway/primary/central_two)
+/area/security/checkpoint2)
"xhW" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -39363,10 +41943,10 @@
/area/maintenance/wing/port)
"xiO" = (
/obj/effect/floor_decal/corner_wide/grey/diagonal,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/machinery/alarm{
- pixel_y = 28
+/obj/machinery/light{
+ dir = 1
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled/white,
/area/operations/break_room)
"xjC" = (
@@ -39374,7 +41954,7 @@
/area/medical/reception)
"xjH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/lino/grey,
/area/chapel/main)
"xjK" = (
/obj/structure/window/phoronreinforced{
@@ -39424,7 +42004,7 @@
/area/security/armory)
"xkH" = (
/turf/simulated/open,
-/area/turret_protected/ai_upload_foyer)
+/area/turret_protected/ai_upload)
"xlz" = (
/obj/machinery/computer/security/engineering{
name = "Drone Monitoring Cameras"
@@ -39472,31 +42052,28 @@
/turf/simulated/floor/plating,
/area/teleporter)
"xnf" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/highsecurity{
- name = "Secure Storage";
- req_access = list(41)
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/reinforced,
+/turf/simulated/wall/r_wall,
/area/storage/secure)
"xnv" = (
-/obj/effect/floor_decal/corner/blue{
- dir = 9
- },
/obj/structure/cable/green{
icon_state = "0-4"
},
-/obj/machinery/power/apc/low{
- dir = 8;
- name = "west bump";
- pixel_x = -24
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 8
},
-/turf/simulated/floor/tiled,
+/obj/item/gun/energy/mousegun/xenofauna,
+/obj/item/gun/energy/mousegun/xenofauna,
+/obj/machinery/firealarm/north,
+/obj/machinery/power/apc/critical{
+ dir = 8;
+ pixel_x = -24;
+ name = "west bump"
+ },
+/obj/structure/table/steel,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
/area/security/checkpoint2)
"xnz" = (
/obj/effect/floor_decal/corner/mauve{
@@ -39533,11 +42110,11 @@
/turf/template_noop,
/area/template_noop)
"xoj" = (
-/obj/effect/floor_decal/spline/plain,
-/obj/structure/cable/green{
- icon_state = "4-8"
+/obj/effect/floor_decal/spline/fancy/wood/cee{
+ dir = 4
},
-/turf/simulated/floor/tiled,
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/grass/alt,
/area/hallway/primary/central_two)
"xom" = (
/obj/structure/lattice/catwalk,
@@ -39568,6 +42145,7 @@
/obj/structure/railing/mapped{
dir = 4
},
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/aft)
"xpJ" = (
@@ -39615,9 +42193,15 @@
/turf/simulated/floor/tiled/white,
/area/medical/gen_treatment)
"xqX" = (
-/obj/structure/table/standard,
-/obj/item/device/hand_labeler,
-/obj/item/device/hand_labeler,
+/obj/machinery/disposal,
+/obj/machinery/firealarm/north,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/full{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/storage/primary)
"xrh" = (
@@ -39728,8 +42312,6 @@
/obj/structure/cable/green{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/wing/port)
@@ -39744,16 +42326,36 @@
/turf/simulated/floor/tiled/white,
/area/hallway/medical)
"xvC" = (
-/obj/structure/railing/mapped,
-/turf/simulated/floor/plating,
-/area/maintenance/hangar/port)
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner/green/full{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/stairwell/central)
"xvZ" = (
/obj/structure/table/standard,
/turf/simulated/floor/plating,
/area/engineering/smes/tesla)
"xwo" = (
-/turf/simulated/floor/reinforced,
-/area/engineering/storage/tech)
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/structure/bed/stool/chair/padded/brown{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"xwU" = (
/obj/structure/lattice/catwalk,
/turf/simulated/floor/plating,
@@ -39806,25 +42408,19 @@
/obj/structure/window/phoronreinforced/skrell{
dir = 4
},
-/obj/structure/window/phoronreinforced/skrell,
/obj/effect/floor_decal/industrial/warning{
dir = 6
},
-/obj/effect/floor_decal/spline/plain{
- dir = 6
- },
/obj/machinery/power/apc{
dir = 1;
is_critical = 1;
name = "north bump";
pixel_y = 24
},
-/obj/structure/cable/orange{
+/obj/structure/cable/green{
icon_state = "0-4"
},
-/obj/structure/cable/orange{
- icon_state = "0-8"
- },
+/obj/structure/window/phoronreinforced/skrell,
/turf/simulated/floor/bluegrid,
/area/turret_protected/ai)
"xxy" = (
@@ -39891,7 +42487,7 @@
name = "MedBay Lockdown Shutters";
opacity = 0
},
-/turf/simulated/floor/tiled,
+/turf/simulated/floor/tiled/white,
/area/hallway/medical)
"xzV" = (
/obj/machinery/flasher/portable,
@@ -39927,13 +42523,13 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "conpipe-c"
- },
/obj/structure/cable/green{
icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/carpet,
/area/crew_quarters/bar)
"xCx" = (
@@ -39953,6 +42549,19 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/main_storage)
+"xDe" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/corner_wide/blue/full{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/engineering/storage/tech)
"xDA" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/structure/closet/crate,
@@ -40037,25 +42646,20 @@
/turf/simulated/floor/tiled/dark,
/area/security/armory)
"xGc" = (
-/obj/structure/toilet,
-/obj/machinery/light/small{
+/obj/structure/table/stone/marble,
+/obj/effect/floor_decal/spline/fancy/wood{
dir = 8
},
-/obj/machinery/button/remote/airlock{
- dir = 8;
- id = "arrivals_unit_2";
- name = "Door Bolt Control";
- pixel_x = 24;
- specialfunctions = 4
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = -25
},
-/turf/simulated/floor/tiled/freezer,
-/area/hallway/primary/central_two)
+/turf/simulated/floor/wood,
+/area/chapel/main)
"xGl" = (
-/obj/machinery/light/small/emergency,
-/turf/simulated/floor/tiled/ramp{
- dir = 1
- },
-/area/maintenance/wing/starboard/far)
+/turf/simulated/floor/plating,
+/area/maintenance/wing/starboard)
"xGz" = (
/obj/machinery/light,
/turf/simulated/floor/carpet/rubber,
@@ -40075,22 +42679,14 @@
/turf/simulated/floor/plating,
/area/engineering/engine_room)
"xGW" = (
-/obj/effect/floor_decal/spline/plain/corner{
+/obj/structure/railing/mapped{
dir = 8
},
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
/turf/simulated/floor/tiled,
/area/hallway/primary/central_two)
"xHc" = (
-/obj/structure/table/wood,
-/obj/item/flame/candle,
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/chapel/main)
+/turf/simulated/floor/holofloor/tiled/ramp/bottom,
+/area/horizon/stairwell/central)
"xHd" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -40121,8 +42717,20 @@
},
/turf/simulated/floor/tiled,
/area/security/warden)
+"xHZ" = (
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/light/small/emergency{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/wing/starboard)
"xIo" = (
-/obj/effect/floor_decal/corner/green/diagonal,
/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
@@ -40159,27 +42767,29 @@
/turf/simulated/wall/r_wall,
/area/rnd/xenobiology/xenoflora_hazard)
"xIW" = (
-/obj/structure/curtain/black,
-/obj/structure/closet/crate/coffin,
-/obj/structure/closet/crate/coffin,
-/obj/structure/closet/crate/coffin,
-/obj/structure/closet/crate/coffin,
-/obj/structure/closet/crate/coffin,
/obj/machinery/button/remote/blast_door{
id = "massdriver";
layer = 3.2;
name = "Mass Driver Interior Blast Door";
- pixel_x = 25;
- pixel_y = 2
+ pixel_x = -5;
+ pixel_y = 27
},
/obj/machinery/button/remote/blast_door{
id = "chapel_driver";
layer = 3.2;
name = "Mass Driver Exterior Blast Door";
- pixel_x = 25;
- pixel_y = -7
+ pixel_x = -5;
+ pixel_y = 38
},
-/turf/simulated/floor/tiled,
+/obj/machinery/button/mass_driver{
+ _wifi_id = "chapel_driver";
+ id = "chapel_driver";
+ layer = 3.2;
+ pixel_x = 6;
+ pixel_y = 32
+ },
+/obj/structure/curtain/black,
+/turf/simulated/floor/carpet,
/area/chapel/office)
"xJx" = (
/obj/effect/floor_decal/spline/fancy/wood/cee{
@@ -40191,7 +42801,7 @@
},
/obj/machinery/firealarm/north,
/turf/simulated/floor/wood,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"xJK" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -40298,22 +42908,11 @@
/turf/simulated/floor/plating,
/area/medical/cryo)
"xMR" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/effect/landmark/start{
- name = "Assistant"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
+/obj/effect/floor_decal/corner/green/diagonal,
/turf/simulated/floor/tiled,
/area/storage/primary)
"xMV" = (
@@ -40364,6 +42963,16 @@
/obj/structure/window/reinforced,
/turf/simulated/floor/reinforced,
/area/rnd/telesci)
+"xPd" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/obj/machinery/camera/network/engine{
+ c_tag = "Engineering - SM Reactor External Airlock";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/engine_room)
"xPj" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
dir = 9
@@ -40491,6 +43100,24 @@
},
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
+"xSs" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/random/junk,
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/hangar/port)
"xSA" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -40532,38 +43159,26 @@
/turf/simulated/floor/tiled/white,
/area/medical/main_storage)
"xSZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/railing/mapped{
+ dir = 1
},
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/hangar/port)
-"xTa" = (
-/turf/simulated/floor/plating,
-/area/engineering/storage/tech)
"xTS" = (
+/obj/structure/foamedmetal,
/obj/structure/shuttle_part/scc_space_ship{
icon_state = "d2-2"
},
-/obj/structure/girder,
/turf/simulated/floor/plating,
-/area/maintenance/wing/starboard)
+/area/engineering/storage/tech)
"xUK" = (
/obj/structure/lattice/catwalk/indoor/grate,
/obj/machinery/door/airlock/maintenance{
- req_access = list(12)
+ req_access = list(10)
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
@@ -40594,6 +43209,12 @@
/obj/structure/reagent_dispensers/watertank,
/turf/simulated/floor/tiled/dark,
/area/maintenance/wing/port/far)
+"xVV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"xWa" = (
/obj/item/rig/medical/equipped{
pixel_y = -2
@@ -40633,13 +43254,11 @@
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
"xWz" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass,
+/obj/effect/floor_decal/corner/brown{
+ dir = 10
+ },
/turf/simulated/floor/tiled,
/area/operations/lobby)
"xWA" = (
@@ -40708,7 +43327,7 @@
icon_state = "1-2"
},
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"xYX" = (
/obj/effect/floor_decal/industrial/warning{
dir = 1
@@ -40764,6 +43383,13 @@
},
/turf/simulated/floor/tiled/dark,
/area/rnd/xenobiology)
+"xZK" = (
+/obj/structure/lattice,
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/operations/office)
"yag" = (
/obj/structure/window/phoronreinforced{
dir = 8
@@ -40957,14 +43583,21 @@
/turf/simulated/floor/tiled/dark,
/area/rnd/xenobiology)
"ydh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/engineering/storage/tech)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/operations/lobby)
"ydi" = (
-/obj/structure/bed/stool/chair/office/dark{
- dir = 8
+/obj/structure/table/standard,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/machinery/light,
+/obj/effect/floor_decal/corner/green{
+ dir = 10
},
/turf/simulated/floor/tiled,
/area/storage/primary)
@@ -41006,6 +43639,9 @@
name = "north bump";
pixel_y = 24
},
+/obj/machinery/camera/network/medbay{
+ c_tag = "Medical - Aft Treatment Room"
+ },
/turf/simulated/floor/tiled/white,
/area/medical/icu)
"yea" = (
@@ -41034,6 +43670,16 @@
},
/turf/simulated/floor/tiled/dark,
/area/hallway/primary/central_two)
+"yei" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/hallway/primary/central_two)
"yej" = (
/obj/effect/floor_decal/corner_wide/lime{
dir = 6
@@ -41055,8 +43701,11 @@
dir = 8;
pixel_x = 28
},
+/obj/effect/floor_decal/corner/brown/full{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/operations/office)
"yeT" = (
/obj/effect/floor_decal/corner/blue{
dir = 5
@@ -41083,9 +43732,13 @@
/turf/simulated/floor/tiled/dark,
/area/hydroponics)
"yfL" = (
-/obj/structure/table/standard,
-/obj/item/device/camera,
-/obj/item/device/camera_film,
+/obj/machinery/camera/network/second_deck{
+ c_tag = "Second Deck - Main Tool Storage";
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
/turf/simulated/floor/tiled,
/area/storage/primary)
"ygb" = (
@@ -41160,22 +43813,26 @@
/turf/simulated/wall/r_wall,
/area/rnd/xenobiology/xenoflora)
"yhL" = (
-/obj/structure/railing/mapped,
-/turf/simulated/open,
-/area/operations/storage)
-"yig" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
+/obj/effect/floor_decal/corner/brown{
+ dir = 4
},
+/turf/simulated/floor/tiled,
+/area/operations/office)
+"yig" = (
/obj/machinery/light{
dir = 4
},
/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/structure/window/reinforced{
+/obj/effect/floor_decal/corner/brown/full{
dir = 1
},
+/obj/machinery/computer/shuttle_control/lift/wall{
+ dir = 8;
+ pixel_x = 32;
+ shuttle_tag = "Operations Lift"
+ },
/turf/simulated/floor/tiled,
-/area/operations/storage)
+/area/operations/office)
"yiA" = (
/obj/effect/floor_decal/spline/plain{
dir = 10
@@ -41237,13 +43894,13 @@
/turf/simulated/floor/tiled/dark,
/area/turbolift/scc_ship/morgue_lift)
"ylh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/junction{
dir = 2;
icon_state = "pipe-j2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/area/hallway/primary/central_two)
"ylk" = (
/obj/machinery/power/apc/low{
dir = 8;
@@ -41274,8 +43931,11 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/turret_protected/ai_upload)
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled,
+/area/turret_protected/ai_upload_foyer)
"yme" = (
/obj/structure/shuttle_part/scc_space_ship{
icon_state = "d3-5"
@@ -45817,10 +48477,10 @@ qgN
qgN
kDC
kDC
-nsx
-nsx
+bAF
+bAF
dEz
-nox
+lHi
exw
nox
aJS
@@ -45848,8 +48508,8 @@ nox
nox
nox
dEz
-nsx
-nsx
+bAF
+bAF
kDC
kDC
qgN
@@ -46018,9 +48678,9 @@ qgN
qgN
qgN
kDC
-nsx
-nsx
-nsx
+bAF
+bAF
+bAF
dEz
ubt
uOq
@@ -46050,9 +48710,9 @@ dMK
dMK
mQi
dEz
-nsx
-nsx
-nsx
+bAF
+bAF
+bAF
kDC
qgN
qgN
@@ -46220,9 +48880,9 @@ qgN
qgN
qgN
kDC
-nsx
-nsx
-nsx
+bAF
+bAF
+bAF
dEz
ubt
uOq
@@ -46252,9 +48912,9 @@ vaL
vaL
czJ
dEz
-nsx
-nsx
-nsx
+bAF
+bAF
+bAF
kDC
qgN
qgN
@@ -46422,9 +49082,9 @@ qgN
qgN
qgN
kDC
-nsx
-nsx
-nsx
+bAF
+bAF
+bAF
dEz
ubt
uOq
@@ -46454,9 +49114,9 @@ vuI
vuI
vPt
dEz
-nsx
-nsx
-nsx
+bAF
+bAF
+bAF
kDC
qgN
qgN
@@ -46625,10 +49285,10 @@ qgN
qgN
kDC
kDC
-nsx
-nsx
+bAF
+bAF
dEz
-nox
+sdX
atB
nox
dcT
@@ -46656,8 +49316,8 @@ nox
nox
nox
dEz
-nsx
-nsx
+bAF
+bAF
kDC
kDC
qgN
@@ -46835,7 +49495,7 @@ vcH
vcH
vcH
wSG
-rPp
+dEz
dEz
dEz
rPp
@@ -46843,7 +49503,7 @@ rPp
rPp
dEz
dEz
-rPp
+dEz
dEz
dEz
dEz
@@ -47039,14 +49699,14 @@ nBn
puZ
iZg
mjb
-sem
iZg
iZg
iZg
-izy
+iZg
+iZg
mjb
vBG
-izy
+iZg
gst
dAX
sXC
@@ -47241,7 +49901,7 @@ vcH
vNK
uOq
dEz
-gwZ
+uOq
jAS
sCe
upp
@@ -47250,7 +49910,7 @@ dEz
dyg
uOq
dEz
-kFI
+wmV
xRl
gLk
oIL
@@ -47445,18 +50105,18 @@ uOq
dEz
fKH
tFf
-tFf
imC
-xGl
+izy
+hnE
dEz
gCH
sIe
dEz
-kFI
+wmV
tch
caj
oIL
-euX
+mFJ
scx
qgN
qgN
@@ -47644,17 +50304,17 @@ pcG
vcH
oyP
qNd
-ekS
-pYU
+lXo
uOq
-qNd
uOq
-cKn
-ekS
+uOq
+uOq
+uOq
+lXo
dyg
uOq
-dEz
-kFI
+glt
+wmV
kNe
oIL
oIL
@@ -47845,23 +50505,23 @@ kHx
vcH
vcH
dEz
-ekS
-dEz
+lXo
dEz
dEz
lXo
dEz
dEz
dEz
+dEz
mFc
iUr
dEz
tOE
uKi
-pWb
+oIL
pEQ
-fdF
-nhE
+pEQ
+mFJ
scx
qgN
qgN
@@ -48050,19 +50710,19 @@ uOq
uOq
nsx
nsx
-tGP
-eov
-tGP
-nsx
-nsx
uOq
-iUr
+uOq
+uOq
+uOq
+uOq
+dyg
+uYJ
dEz
-wmV
+nBD
tNU
-fdF
-iBT
-fdF
+oIL
+pEQ
+pEQ
rWp
whe
qgN
@@ -48252,20 +50912,20 @@ uOq
aWK
gmG
vOA
-kmS
-uOq
-dRJ
-rqS
-lHi
-uOq
-gvv
+eov
+dEz
dEz
-vyk
-pGX
-fdF
-iBT
fdF
fdF
+dJF
+fdF
+fdF
+wmV
+fsf
+nDK
+nDK
+nDK
+nDK
nhE
scx
qgN
@@ -48449,22 +51109,22 @@ oIL
fcF
fsf
fsf
-ekS
+lXo
uOq
-uOq
-gwZ
+ofR
+vaL
vZH
-oyP
-uOq
+ofR
dRJ
-vXp
-cil
-uOq
-hUs
-dEz
-uEg
-fsf
+hvo
fdF
+cgU
+lbq
+hUs
+fdF
+wmV
+fsf
+nDK
and
txc
hIT
@@ -48646,9 +51306,9 @@ qgN
qgN
ojK
iAB
-wWI
+pEQ
oIL
-fsf
+cKn
fsf
xLQ
dEz
@@ -48656,21 +51316,21 @@ uOq
qNd
nsx
nsx
-tGP
uOq
-tGP
-nsx
-nsx
-uOq
-dRJ
-dEz
-uEg
-fQn
+rqS
+fLu
fdF
+iZP
+oTa
+nBf
+fdF
+wmV
+fsf
+nDK
qFW
-deL
-pEt
-fdF
+vWh
+xDe
+nDK
euX
scx
qgN
@@ -48855,24 +51515,24 @@ fsf
qdY
dEz
dEz
-ekS
+lXo
dEz
dEz
-dEz
-eov
-dEz
-dEz
-dEz
-qxK
-dEz
-dEz
-uEg
+uOq
+dRJ
+gwZ
+fdF
+ryb
+bWz
+mnt
+fdF
+wZP
oKR
-fdF
+nDK
bHm
-tND
+prC
lVG
-fdF
+nDK
xTS
whe
qgN
@@ -49051,7 +51711,7 @@ qgN
dzL
ftS
oIL
-fsf
+xGl
wnA
uJk
xas
@@ -49060,23 +51720,23 @@ uOq
uOq
nsx
nsx
-tGP
-uOq
-tGP
-nsx
-nsx
-uOq
-uOq
-dEz
+eov
+fdF
+fdF
+fdF
+nFT
+uuI
+aBx
+iia
qnE
jVX
-fdF
-qxy
-uuI
-nFT
-fdF
-fdF
-nhE
+nDK
+nDK
+aCR
+nDK
+nDK
+cpl
+kLo
scx
qgN
qgN
@@ -49251,34 +51911,34 @@ qgN
qgN
ojK
iAB
-wWI
+pEQ
oIL
-fsf
+xGl
wnA
fsf
fsf
-ekS
+lXo
pYU
uOq
-dRJ
+idy
vXp
-aRu
uOq
-dRJ
-vXp
-axW
-uOq
-uOq
-dEz
-vxh
-iDK
fdF
-qxy
+boE
+dmT
+mbs
+wsw
+izg
+fdF
+egY
+qFt
+nDK
+dss
pEt
pBB
gyu
rDw
-sfk
+xhs
whe
qgN
qgN
@@ -49455,7 +52115,7 @@ aOj
nNE
oIL
oIL
-hvm
+roq
wnA
fsf
fsf
@@ -49464,23 +52124,23 @@ uOq
uOq
nsx
nsx
-tGP
-uOq
-tGP
-nsx
-nsx
-uOq
-uOq
-dEz
+ofR
+fdF
+sky
+cMk
+oTa
+cam
+pJK
+fdF
xbY
bYf
nDK
tKo
ipL
-deL
-wlJ
-uEI
-fdF
+oJT
+ipL
+mhm
+cpl
euX
scx
qgN
@@ -49660,29 +52320,29 @@ wiD
fsf
wnA
wJi
-fsf
+ogd
dEz
cGd
dLO
dEz
tGP
-dEz
-lga
-dEz
-tGP
-dEz
-bDj
-qlm
-dEz
+jgm
+fdF
+sky
+pWb
+dtt
+smh
+uAt
+fdF
lrh
-iia
-boE
+wlJ
+nDK
wCS
nKg
otw
xfq
uEI
-fdF
+cpl
xTS
whe
qgN
@@ -49869,23 +52529,23 @@ nEy
lBW
naD
dFi
-jsg
-vSd
-kKq
-mhm
-nEy
-lnO
-dEz
+fdF
+sky
+cMk
+oTa
+oTa
+aqR
+fdF
sqc
-iia
-fdF
-wCS
+dsl
+nDK
+kKq
+bDj
deL
-deL
-wlJ
-uEI
-fdF
-wWI
+ipL
+cAf
+cpl
+sbW
euX
scx
qgN
@@ -50066,28 +52726,28 @@ wnA
lpB
fsf
dEz
-iUr
+uOq
vyE
pTY
tGP
bee
-mPF
-fLu
-tGP
-mhm
-dMf
-aWK
-dEz
+fdF
+nnu
+gnm
+vOr
+lXt
+qPY
+fdF
msP
rNZ
-fdF
+nDK
voH
gUB
aiP
hLb
rYx
-fdF
-wWI
+cpl
+sbW
xTS
whe
qgN
@@ -50268,30 +52928,30 @@ cpW
lpB
fsf
dEz
+lXo
dEz
dEz
dEz
dEz
-tyq
-hNH
-pJK
-dEz
-dEz
-dEz
-dEz
-dEz
+fdF
+fdF
+fdF
+fdF
+fdF
+fdF
+fdF
ckc
dsl
-fdF
-sgW
-fdF
-fdF
-fdF
-fdF
-fdF
-wWI
-wWI
-nhE
+nDK
+cpl
+ggz
+cpl
+cpl
+cpl
+cpl
+cpl
+cpl
+kLo
scx
qgN
qgN
@@ -50465,7 +53125,7 @@ oIL
oIL
oIL
oIL
-glt
+fsf
rhT
iYH
fsf
@@ -50473,27 +53133,27 @@ fsf
fsf
fsf
fsf
-dEz
-dEz
-dEz
-dEz
-dEz
+fsf
+gSh
+xHZ
+gqd
fsf
fsf
fsf
+tyq
fsf
fsf
lWf
oIL
-fsf
dLX
-qVb
+gJM
+qxy
+tAX
+rCR
+vJR
+ozs
ukM
-ukM
-ukM
-ukM
-ukM
-rWp
+aRu
whe
qgN
qgN
@@ -50668,35 +53328,35 @@ qLA
qrz
bci
ijb
-maq
+rwe
iYH
-fsf
+uWx
eAU
sdi
aLc
fsf
fsf
-fsf
-fsf
-fsf
-fsf
-fsf
-wBh
-bWz
-bWz
-jJN
-lWf
-oIL
-fsf
-dLX
-qVb
-ukM
+qaI
+dMG
+weh
+uOy
+uOy
+sem
+pGX
+rbO
+uOy
+sYy
+qlm
+eoK
+jaD
+rgU
+vyk
uzr
qwk
wsV
-ukM
-oIL
-euX
+jZB
+rCR
+tSl
scx
qgN
qgN
@@ -50872,33 +53532,33 @@ atK
uEl
ycb
oAX
-fsf
+nqm
rqA
rqA
rqA
rqA
rqA
-oDl
-giP
-hfR
-iGE
-iGE
-iGE
-iGE
-iGE
-pFe
-lWf
+rqA
+rqA
+rqA
+xnf
+xnf
+xnf
+xnf
+xnf
+fMp
+bHG
oIL
-fsf
-fOm
-iZP
-ukM
-wsw
+iMo
+mep
+niM
+mGi
+rCR
xwo
-xwo
-ukM
-oIL
-xTS
+ydh
+gfI
+tSL
+aRu
whe
qgN
qgN
@@ -51077,31 +53737,31 @@ rlv
xpJ
rqA
qKi
+gAp
+vJu
rqA
-qKi
+rLF
rqA
-rqA
-rqA
-rqA
-iGE
+pfi
+xnf
+wmz
tHZ
-tHZ
-tHZ
-iGE
-hvm
+frS
+xnf
+axW
ajt
fTo
-fsf
-fsf
-fsf
-ukM
-lCL
+fTo
+lnO
+fTo
+fTo
+fTo
pgg
-eUZ
-ukM
-oIL
-oIL
-nhE
+ydh
+gfI
+cOU
+rCR
+bYl
scx
qgN
qgN
@@ -51278,32 +53938,32 @@ uLC
sDy
pRA
rqA
-usP
-rqA
+hgK
+kXm
usP
rqA
eIE
-obJ
+rqA
dJs
-iGE
+xnf
dBX
dlZ
bNd
-iGE
-ciP
+xnf
+rVg
aSB
-oIL
-glt
-oIL
+fTo
+mLM
+slS
uRo
-oIL
-ryb
-xTa
-nBD
+nlL
+fTo
+jRN
+ydh
gfI
bVw
-rbO
-xhs
+rCR
+mLw
whe
qgN
qgN
@@ -51481,32 +54141,32 @@ aob
aob
rqA
xiO
-hKh
-skq
+fPk
+hhY
krl
-pew
-cgP
-dJs
-iGE
+mQy
+tFL
+hhY
+xnf
jNA
aZK
dkh
-iGE
+xnf
qgL
fli
-oIL
-fsf
-fsf
-fQn
-oIL
-xTa
+fTo
+cil
+usr
+dMf
+lLJ
+wRu
+lWB
ydh
bQd
-bQd
-uHF
-xTa
-nnu
-kLo
+rCR
+rCR
+rCR
+tSl
scx
qgN
qgN
@@ -51671,7 +54331,7 @@ qgN
qgN
ojK
iAB
-wWI
+pEQ
oIL
oIL
oIL
@@ -51682,33 +54342,33 @@ fsf
fsf
fQn
rqA
-aBq
-qNo
muO
-rLF
cgP
+jpi
+rqA
+awH
cgP
-dJs
-iGE
-rwe
+vYK
+xnf
+xnf
wGT
-uOy
+xnf
xnf
aqV
uRJ
-oIL
-fsf
+fTo
+ngg
bQW
-fQn
-oIL
-lXt
-tNu
+eUZ
+uEg
+fhq
+vSd
eZN
-tXc
plH
-mnt
+rCR
+uvB
sAT
-xhs
+aRu
whe
qgN
qgN
@@ -51873,11 +54533,11 @@ qgN
qgN
aOj
ugZ
-wWI
-wWI
-wWI
-wWI
-wWI
+pEQ
+pEQ
+pEQ
+pEQ
+pEQ
oIL
mMf
uJk
@@ -51889,13 +54549,13 @@ hlM
rqA
rqA
rqA
-dLD
+qPn
rqA
+xnf
+obJ
iGE
-iGE
-iGE
-iGE
-iGE
+obJ
+xnf
iDj
gdQ
kmc
@@ -51903,14 +54563,14 @@ kmc
kmc
kmc
kmc
-xTa
-mpV
-kJw
+kmc
+ubX
+eau
kJw
hFg
-xTa
+wBh
ibE
-cpl
+rCR
bYl
scx
qgN
@@ -52089,30 +54749,30 @@ aMl
hvH
rrq
rqA
-qEQ
-qEQ
-wmT
-qEQ
-qEQ
-qEQ
-qEQ
-wmT
-eGl
-yhL
-vwg
+rSG
+oIG
+day
+gvB
+hUP
+bpY
+rju
+qNo
+qvZ
+kRZ
+aoC
kmc
epw
oVk
coa
+eEB
kmc
-xTa
-oGI
+eim
nFO
aTa
-smh
+rCR
tCG
oeF
-cpl
+rCR
mLw
whe
qgN
@@ -52283,7 +54943,7 @@ uya
uya
maq
hcT
-mMf
+prk
fsf
rqA
gOq
@@ -52292,31 +54952,31 @@ kCV
taG
dLD
qEQ
-qEQ
-wmT
-qEQ
-qEQ
-qEQ
-qEQ
-wmT
+hKh
+qhF
+iWz
+iWz
+iWz
+lSe
+nES
eGl
-yhL
+kRZ
ngA
oZI
njF
ens
tFX
+qxK
kmc
-kmc
-oAc
-cpl
-cpl
-cpl
-cpl
-cpl
-cpl
-cpl
-aCe
+qTC
+mpV
+qTC
+rCR
+rCR
+rCR
+rCR
+rCR
+tSl
scx
qgN
qgN
@@ -52478,46 +55138,46 @@ uYW
gGB
gGB
gGB
-oXY
+byZ
oXY
gGB
-uya
+vNI
uya
jJW
uya
-mMf
-fsf
+deH
+ogd
rqA
jXv
-kIp
+gwe
gwe
enz
-rqA
-qEQ
-qEQ
+dLD
+rSG
+rSG
+xZK
+lSK
+lSK
+qpB
+rju
+gvB
wmT
-qEQ
-qEQ
-qEQ
-qEQ
-wmT
-qEQ
-yhL
-vwg
+kRZ
+rtF
rew
nZZ
gHo
kmr
nry
rew
-ngg
+vua
dZG
+hEP
fzh
myG
-myG
jUU
-myG
-myG
+mnm
+qra
dGz
whe
qgN
@@ -52674,9 +55334,9 @@ qgN
qgN
qgN
qgN
-gGB
+lCL
tsk
-vcM
+fDE
vcM
pep
oXY
@@ -52690,20 +55350,20 @@ gBM
vQs
fsf
dyU
-nqm
+jXv
cNh
wGf
epN
rqA
tEE
+rSG
+qEQ
+rSG
wmT
-wmT
-wmT
-wmT
-wmT
-wmT
-wmT
-wmT
+pew
+gYc
+skq
+skq
qXx
vwg
rew
@@ -52714,11 +55374,11 @@ oXw
qCF
uGL
rbF
+uHF
fzh
-pqE
sIp
rnO
-vQQ
+kzO
ydi
fzh
vfi
@@ -52887,39 +55547,39 @@ oXY
gGB
eRC
fqg
-fqg
+uya
qRe
-pFe
+vQs
fsf
rqA
tOS
-kIp
+uwP
uwP
ovI
-rqA
-qEQ
-qEQ
-wmT
-qEQ
-qEQ
-qEQ
-qEQ
-wmT
+dLD
+rSG
+rSG
qEQ
+rkq
+lhP
+kRZ
+rHW
+oDl
+oDl
yhL
-vwg
+rtF
rew
qHq
fkZ
lgm
qqs
rew
-wvK
+vua
ggy
+liv
fzh
-ikb
vQQ
-hmK
+rnO
kzO
jSP
fzh
@@ -53089,26 +55749,26 @@ gGB
gGB
hGK
ceU
-ceU
+hcT
qSn
-prk
+iMf
fsf
rqA
unJ
gbU
-gbU
+fvQ
qfw
dLD
qEQ
qEQ
-wmT
qEQ
-qEQ
-qEQ
-qEQ
-wmT
-qEQ
-yhL
+hKh
+ecx
+kRZ
+kEY
+lSK
+giP
+kRZ
mUW
kmc
kmc
@@ -53118,12 +55778,12 @@ kmc
kmc
ohc
uci
+pfB
fzh
-liv
-vQQ
+pqE
pxh
-vQQ
-hEP
+kzO
+jSP
fzh
qvF
vfi
@@ -53297,20 +55957,20 @@ oIL
nqs
rqA
isy
-kXm
-kXm
+ptJ
+jXv
hLP
rqA
-nTB
-nTB
+hUP
+hUP
wPj
nTB
-nTB
-nTB
-nTB
+ciP
+kRZ
+kEY
hUP
nTB
-iWz
+kRZ
mGc
rVg
sTu
@@ -53319,12 +55979,12 @@ pHu
fjg
rVg
het
-vte
+dJE
+lGf
fzh
-psH
-vQQ
+pOl
pxh
-vQQ
+kzO
yfL
fzh
fzh
@@ -53499,7 +56159,7 @@ xYX
iHH
rqA
jck
-mQy
+pFe
wYY
pMJ
dcI
@@ -53509,7 +56169,7 @@ gwv
gwv
rVV
qSE
-tae
+hym
tae
oaz
cqS
@@ -53712,26 +56372,26 @@ eDW
ewb
mKA
nOS
-lSK
+nOS
rHw
kOE
tsA
gFx
kRZ
-fVo
+dum
aZA
udv
-qra
+gFx
jVR
iap
+ldT
fzh
-bPh
xqX
qNy
sJi
ayM
fzh
-jLM
+wvK
aEN
xhP
uBf
@@ -53907,16 +56567,16 @@ rqA
rqA
rqA
rqA
-ciP
-ciP
-ciP
-ciP
+rVg
+rVg
+rVg
+rVg
kXS
-ciP
+rVg
+fRi
arK
-hzm
-hzm
-bpY
+ubZ
+kRZ
rtF
rVg
pNw
@@ -53926,7 +56586,7 @@ qzR
rVg
vua
sjv
-jWV
+oAc
jWV
jWV
jWV
@@ -53934,7 +56594,7 @@ jWV
jWV
jWV
haK
-aFJ
+aQb
wFj
wFj
wFj
@@ -54114,31 +56774,31 @@ cAb
cAb
cAb
sUj
-ciP
+rVg
hzm
hQE
-hzm
-bpY
+ryq
+kRZ
rtF
rVg
gVs
dum
-dum
+fVo
tBS
tBZ
-uzU
-vte
-jWV
+vua
+tXc
+trC
iXv
xnv
qlp
dwy
jsS
-jWV
+hfR
xdl
-aFJ
+iWN
wFj
-wZy
+xer
qgN
qgN
qgN
@@ -54286,7 +56946,7 @@ aVo
sSY
vDc
cZw
-wFX
+xPd
nlr
nlr
nlr
@@ -54316,10 +56976,10 @@ aML
xLQ
gLL
bgS
-ciP
-hzm
-hzm
-hzm
+rVg
+aBq
+llp
+iku
yig
eUa
rVg
@@ -54328,17 +56988,17 @@ nCo
rqG
iNS
oOK
-uzU
-uci
-jWV
+vua
+bPh
+ojd
snB
gHn
dsj
nLC
nkM
-bCv
-gOH
-aFJ
+hfR
+ieM
+aQb
udR
xer
qgN
@@ -54502,7 +57162,7 @@ nlr
sjT
wOd
oIL
-cgw
+oIL
oIL
nKK
dKR
@@ -54529,18 +57189,18 @@ rVg
nju
ksC
ksC
-ksC
-wRu
-cUh
+uXd
+vua
+tXc
+ldT
jWV
-dVt
chj
ijD
uNl
win
-bCv
-gOH
-aFJ
+hfR
+bbI
+bzO
udR
xer
qgN
@@ -54728,21 +57388,21 @@ wnW
kaP
rCR
ien
-rSG
+rZh
gvG
rZh
rZh
-uzU
-vte
-jWV
-jWV
-ldT
+vua
+tXc
+nsn
jWV
+bCv
+bCv
swi
bCv
-bCv
-gOH
-aQb
+hfR
+eWm
+tAN
udR
xer
qgN
@@ -54933,7 +57593,7 @@ gbk
oad
hDg
wfK
-ubX
+mYx
qRE
bXB
xWz
@@ -54941,10 +57601,10 @@ gkB
wIA
lMB
tXJ
-tXJ
+pNX
ojV
veP
-aFJ
+vbH
udR
xer
qgN
@@ -55135,17 +57795,17 @@ kkb
kkb
usk
vte
-mnm
+xVV
noS
-hEo
-fhD
-gOH
-gOH
+vte
+ldT
+uzU
+frL
fGJ
-gOH
-gOH
+rWW
+rWW
saJ
-sXT
+dVt
aFJ
udR
xer
@@ -55303,7 +57963,7 @@ pZu
qUL
oiX
doE
-fYh
+ikb
urs
urs
nlr
@@ -55334,21 +57994,21 @@ eMi
jhZ
rCR
dzc
-dBB
+dDq
kbc
sDc
-ayF
-ayF
-ayF
-ayF
-ayF
-ayF
-ayF
-syk
-ljF
-gVn
+aCe
+bQv
+dBB
+psH
+jWV
+jWV
+jWV
+bCv
+bCv
+bCv
sXT
-aFJ
+aQb
udR
xer
qgN
@@ -55539,20 +58199,20 @@ rCR
rCR
jUP
fhD
-ayF
-pOl
-ayF
-pfB
-bQv
-qvd
-ayF
+jNk
+jNk
+jNk
+jNk
+jNk
+jNk
+jNk
jLM
cne
hUe
oGp
ebR
wFj
-wZy
+xer
qgN
qgN
qgN
@@ -55711,9 +58371,9 @@ nlr
nlr
nlr
uyP
-hfh
+laB
mUy
-hfh
+laB
laB
oIL
nKK
@@ -55741,18 +58401,18 @@ aXX
dWk
hfI
ffT
-mwH
-gOH
-ayF
-ayF
-ayF
+jNk
+oLE
+unn
+xGc
+wjZ
aal
+jNk
+rCH
pkH
-gOH
-eWm
-gOH
-ojd
-aFJ
+pkH
+pkH
+aQb
wFj
wFj
wFj
@@ -55942,18 +58602,18 @@ bdj
gOH
gOH
ohQ
-fqr
-trC
-oLE
-ayF
-xGc
-aKv
-pjQ
-ayF
-mYx
+gtw
+jNk
+hsA
+hEd
+itX
+rjK
+mgC
+jNk
+mwH
dmD
wUU
-vvS
+hmK
aSd
qqK
hoZ
@@ -56144,19 +58804,19 @@ pvy
sQj
sQj
lKD
-fqr
+ljF
jNk
+qIA
+pLI
+kYK
+lXO
+fyV
jNk
-jNk
-jNk
-jNk
-jNk
-ayF
-ayF
-ayF
-ayF
-ayF
-ayF
+jWV
+jWV
+jWV
+jWV
+jWV
wFj
wFj
wFj
@@ -56344,14 +59004,14 @@ tZL
veq
lUE
fSK
-mLk
-vhU
-bAF
-jNk
-bQB
-unn
-pQj
-wjZ
+gOH
+fdV
+fqr
+rjP
+vHy
+fWI
+fWI
+fWI
bZj
lBE
ccD
@@ -56359,7 +59019,7 @@ cOC
bGI
hwM
spn
-lCF
+lNQ
hUK
kgp
eTQ
@@ -56544,17 +59204,17 @@ hOU
hOU
nUT
bmT
-ygw
-xoj
-cfz
-pjL
mfA
-jNk
+pjL
+cfz
+fdV
+fqr
+rjP
vHy
-hEd
-itX
-rjK
-mgC
+bQB
+jQg
+aKv
+bZj
lBE
lLn
qSO
@@ -56746,21 +59406,21 @@ cLV
pQL
hzY
iec
-ygw
-xoj
-bJp
-fdV
mfA
+vhU
+cfz
+fdV
+fqr
gJj
-sCE
-pLI
-kYK
+vHy
+hEi
+kvs
oWQ
-fyV
+bZj
fol
vKg
lHB
-eTf
+jEL
jEL
oWC
lCF
@@ -56948,13 +59608,13 @@ lxI
snt
fuA
iWt
-ygw
-xoj
-luT
-vMH
mfA
+xoj
+cfz
+fdV
+fqr
gJj
-fWI
+aJp
sBE
gYP
qjl
@@ -57154,13 +59814,13 @@ ygw
xGW
dRk
kXU
-ixQ
-gJj
-pSP
-pSP
+fqr
+rjP
+jQg
+aKv
oBv
-pSP
-pSP
+bQB
+jQg
fol
bsM
uEu
@@ -57356,18 +60016,18 @@ ygw
gOH
lIH
mHa
-hWE
-jNk
+fqr
+rjP
+kvs
+oWQ
+vqe
+hEi
kvs
-pSP
-oBv
-pSP
-pSP
fol
fol
aMa
fol
-wLp
+fol
xIW
lCF
hUK
@@ -57558,20 +60218,20 @@ phF
kcy
hEF
hBL
-fqr
-gJj
-pSP
-pSP
-oBv
-pSP
-dit
+wbP
jNk
+idS
+fWI
+oBv
+fWI
+hfh
+fol
cKc
aYE
+lMi
fol
pgi
-aoC
-lCF
+lNQ
hUK
hUK
hUK
@@ -57758,20 +60418,20 @@ seZ
seZ
seZ
seZ
-lBh
-sNJ
-idS
-gJj
-pSP
-pSP
-oBv
+lvH
+hBL
+fqr
+auG
+dPP
pSP
+uiL
+xjH
oCz
-jNk
+tDl
lQn
-qOM
-fol
+nfL
axL
+fol
aCS
fRc
hUK
@@ -57963,16 +60623,16 @@ wEc
dKH
ksL
fqr
-gJj
-pSP
-pSP
-oBv
-pSP
-pSP
jNk
+qff
+buM
+bKR
+ukz
+lBh
+fol
toe
tWF
-fol
+dqs
fol
fol
lNQ
@@ -58164,20 +60824,20 @@ sxl
wEc
dKH
hBL
-fqr
-uot
-lXO
-xjH
-ccl
-hEi
-nfL
+ljF
jNk
-toe
-qOM
-vWX
-qOM
-qOM
-aMd
+jNk
+jNk
+jNk
+jNk
+jNk
+fol
+fol
+sCE
+fol
+fol
+uot
+eeQ
gBp
gBp
gBp
@@ -58364,22 +61024,22 @@ uyb
djj
aYf
seZ
-dKH
+aoh
mYK
-fqr
-gJj
+dit
+gVn
vYE
xHc
dIk
-xHc
-jQg
-jNk
+mgI
+gVn
+eTf
hvL
pGb
wmp
-mgI
+wmp
gUn
-eeQ
+sKJ
vGd
gBK
uZH
@@ -58567,15 +61227,15 @@ aIo
mCC
wEc
dKH
-hBL
-fqr
-jNk
-jNk
-jNk
-jNk
-jNk
-jNk
-jNk
+wTh
+soA
+gVn
+vYE
+xHc
+ccl
+khK
+gVn
+eTf
iBa
kYw
gun
@@ -58770,13 +61430,13 @@ xeR
wEc
dKH
uLz
-jRA
+fqr
pef
kyO
kyO
-kyO
-khK
-kyO
+ief
+qUS
+gVn
rvT
sXb
uhi
@@ -58971,19 +61631,19 @@ dDp
mrq
seZ
tKC
-fjI
-rCH
-ayF
-gOL
-gOL
-gOL
+hBL
+fqr
+pef
+oMC
+oMC
+akX
mIS
-mIS
-mIS
-mIS
-oHI
+gVn
wmp
-gOL
+wmp
+oHI
+wzW
+xSs
bOI
eBZ
nuD
@@ -59175,17 +61835,17 @@ vIY
dKH
fjI
qtR
-ayF
+fYC
xvC
-iRM
-gOL
+sNJ
+vMl
+jRA
oTK
-oTK
-oTK
-gOL
+pQj
+pQj
lJX
-bFA
-bFA
+hUC
+byC
kHj
sKJ
tki
@@ -59193,7 +61853,7 @@ ePs
dHL
vhe
sKJ
-hSY
+sRG
hSY
hSY
hSY
@@ -59376,14 +62036,14 @@ ufG
wdw
iBw
mdp
-hWE
-ayF
+fqr
+mHO
cxc
-iSi
-iRM
-iRM
iRM
iRM
+gos
+gVn
+vAD
iSi
vhu
sKJ
@@ -59578,15 +62238,15 @@ fOp
jrH
dKH
jxz
-fqr
+lcy
lWg
+wMP
+vvS
+wMP
lWg
-lWg
-lWg
-lWg
-gOL
-gOL
-gOL
+ayF
+ayF
+ayF
feo
sKJ
agU
@@ -59789,7 +62449,7 @@ lWg
mqN
bpC
qvd
-qlX
+vWX
sKJ
bYY
aas
@@ -59802,7 +62462,7 @@ xPY
nUh
gHR
gHV
-gHV
+rQO
iIx
sKJ
wRk
@@ -59991,7 +62651,7 @@ lWg
ayF
ayF
luo
-qlX
+yei
sKJ
uhw
nxW
@@ -60132,7 +62792,7 @@ lJE
rMw
gmo
xPj
-cEG
+beY
kUf
rBh
nNe
@@ -60184,9 +62844,9 @@ nLG
xjC
dKH
ghX
-fqr
+fyH
lWg
-iKF
+lJi
jCL
fak
lWg
@@ -60206,15 +62866,15 @@ xPY
nUh
oSp
jes
-jes
+gFX
sUD
ulp
uZh
vGT
-thy
+ncN
mZI
dfZ
-dfZ
+etT
nts
qgN
qgN
@@ -60334,7 +62994,7 @@ lJE
lJE
lJE
lJE
-lJE
+beY
kUf
ydI
fRg
@@ -60385,8 +63045,8 @@ fOp
rEC
xjC
kra
-ghX
-gtw
+aDR
+hEo
lWg
piE
oKH
@@ -60413,7 +63073,7 @@ eBy
ycL
kAo
kAo
-thy
+ncN
mZI
kRB
ehU
@@ -60536,7 +63196,7 @@ dpj
dpj
dpj
dpj
-dpj
+avu
kUf
vbc
qWJ
@@ -60588,11 +63248,11 @@ njl
uyd
dKH
ghX
-fqr
+gtw
lWg
-lJi
+wMP
obi
-lJi
+wMP
lWg
dHV
oHX
@@ -60615,7 +63275,7 @@ ycL
jFo
tfl
kAo
-thy
+ncN
mZI
foz
tju
@@ -60738,11 +63398,11 @@ qgN
qgN
qgN
qgN
-qgN
+beY
kUf
-vbc
-qWJ
-cFw
+rWg
+hBN
+hBN
hBN
cFw
mGY
@@ -60803,12 +63463,12 @@ vDq
wDG
pac
qhf
-txq
+ayF
xJx
fKe
cMF
eSd
-txq
+ayF
mDD
tfl
tfl
@@ -60818,9 +63478,9 @@ tfl
kAo
kAo
vRV
-txq
-txq
-txq
+ayF
+ayF
+ayF
nEC
qgN
qgN
@@ -60940,7 +63600,7 @@ qgN
qgN
qgN
qgN
-qgN
+beY
kUf
vbc
qWJ
@@ -61010,19 +63670,19 @@ xYK
wVT
wNk
hPM
-leh
-juS
-juS
-juS
+uwe
+gBE
+gBE
+gBE
lbO
dBM
-juS
-juS
-juS
-thy
+gBE
+gBE
+gBE
+ncN
mZI
sGq
-dfZ
+pYK
nts
qgN
qgN
@@ -61142,7 +63802,7 @@ qgN
qgN
qgN
qgN
-qgN
+beY
kUf
ydI
hDE
@@ -61208,9 +63868,9 @@ kdK
whr
fyi
hwI
-juS
-juS
-vfm
+gBE
+gBE
+jgb
kEK
tQQ
iYu
@@ -61344,7 +64004,7 @@ qgN
qgN
qgN
qgN
-qgN
+beY
kUf
vbc
dUw
@@ -61410,21 +64070,21 @@ mnc
jUu
hww
hwI
-juS
-juS
-juS
-juS
+gBE
+gBE
+gBE
+gBE
uwe
gAP
jPj
-juS
+gBE
bGg
izV
kKM
-vfm
-juS
-juS
-eVu
+jgb
+gBE
+gBE
+mZI
tju
tju
nts
@@ -61546,7 +64206,7 @@ qgN
qgN
qgN
qgN
-qgN
+beY
kUf
ydI
fRg
@@ -61561,7 +64221,7 @@ gci
xPv
fnn
npL
-mkb
+aFm
bwU
bwU
nvW
@@ -61611,13 +64271,13 @@ gfB
gBE
gBE
hFM
-txq
+ayF
fuX
cMF
cMF
eSd
-txq
-txq
+ayF
+ayF
pED
oRn
xtu
@@ -61629,7 +64289,7 @@ dQZ
pED
pED
mPl
-nEC
+mPl
qgN
qgN
qgN
@@ -61748,7 +64408,7 @@ qgN
qgN
qgN
qgN
-qgN
+beY
kUf
vbc
qWJ
@@ -61764,7 +64424,7 @@ iKg
fnn
tUR
aFm
-pOb
+bwU
bwU
jkb
fnn
@@ -61818,9 +64478,9 @@ tje
cNX
tje
fdZ
-txq
-txq
-trX
+dvw
+dvw
+pED
vXn
rnN
oRn
@@ -61950,11 +64610,11 @@ qgN
qgN
qgN
qgN
-qgN
-aiv
-vbc
-qWJ
-cFw
+wkw
+kUf
+rWg
+hBN
+hBN
hBN
cFw
mGY
@@ -62152,14 +64812,14 @@ qgN
qgN
qgN
qgN
-qgN
+beY
kUf
vbc
qWJ
cFw
hBN
cFw
-mGY
+bmH
vbc
lMD
mMz
@@ -62354,11 +65014,11 @@ qgN
qgN
qgN
qgN
-qgN
+beY
kUf
ydI
-hDE
-qjS
+veu
+hBN
hBN
hBN
hBN
@@ -62556,7 +65216,7 @@ qgN
qgN
qgN
qgN
-qgN
+beY
kUf
rou
qar
@@ -62755,14 +65415,14 @@ qgN
qgN
qgN
qgN
-qgN
-qgN
-qgN
-bBO
-bBO
-bBO
-bBO
-bBO
+gXy
+gXy
+gXy
+gXy
+gXy
+gXy
+gXy
+gXy
wZJ
nZj
bBO
@@ -62956,16 +65616,16 @@ qgN
qgN
qgN
qgN
-qgN
-qgN
-qgN
-qgN
-bBO
-cQS
-cQS
-cQS
-cQS
-wZJ
+gXy
+gXy
+pXV
+pXV
+pXV
+jeT
+jeT
+jeT
+jeT
+tyZ
cQS
xOA
isD
@@ -62982,9 +65642,9 @@ fnn
fnn
rls
kpC
-wFh
kpC
-elm
+kpC
+hDr
hDr
hDr
xuv
@@ -63158,15 +65818,15 @@ qgN
qgN
qgN
qgN
-qgN
-qgN
-qgN
-bBO
-bBO
-mzh
-mzh
-mzh
-cQS
+gXy
+jeT
+jeT
+uxi
+jeT
+jeT
+vWE
+jeT
+jeT
wZJ
cQS
tOk
@@ -63184,7 +65844,7 @@ idU
fnn
ybl
opF
-uxE
+wzl
eVf
xuv
uzh
@@ -63359,18 +66019,18 @@ qgN
qgN
qgN
qgN
-qgN
-qgN
-qgN
-qgN
-bBO
-mzh
-mzh
-wZJ
-wZJ
-cQS
+jMJ
+gXy
+dcU
+fgh
+jeT
+wqn
+pyo
+otv
+jeT
+jeT
cZq
-tfr
+lqM
tfr
lbP
cQS
@@ -63387,8 +66047,8 @@ fnn
lSn
qFs
kaz
-kaz
pXP
+xuv
hUB
kfE
bJA
@@ -63561,16 +66221,16 @@ qgN
qgN
qgN
qgN
-qgN
-qgN
-qgN
-bBO
-bBO
+jMJ
+fgh
+fgh
+fgh
mzh
-wZJ
-wZJ
-wZJ
-cQS
+iND
+hOA
+hJj
+jeT
+jeT
uaM
rLn
rLn
@@ -63589,7 +66249,7 @@ fnn
egf
vmv
uxE
-uxE
+bQx
dNz
ktC
xeF
@@ -63763,16 +66423,16 @@ qgN
qgN
qgN
qgN
-qgN
-qgN
-qgN
-bBO
-bBO
-mzh
-wZJ
-wZJ
-wZJ
-cQS
+uHb
+gXy
+fgh
+fgh
+jeT
+leh
+fto
+rXj
+jeT
+jeT
qwq
kga
kga
@@ -63783,10 +66443,10 @@ nGm
bWB
nlG
nlG
-nlG
-wzl
-wzl
-wzl
+fnn
+fnn
+fnn
+fnn
fnn
nAz
lOH
@@ -63839,11 +66499,11 @@ cOE
muz
sYq
myE
-pED
-pED
-pED
-pED
-pED
+eVu
+eVu
+eVu
+eVu
+eVu
upP
upP
xzE
@@ -63966,15 +66626,15 @@ qgN
qgN
qgN
qgN
-qgN
-qgN
-bBO
-bBO
-mzh
-mzh
-mzh
-mzh
-cQS
+gXy
+jeT
+jeT
+jeT
+jeT
+jeT
+jeT
+jeT
+jeT
dcX
lbf
jnV
@@ -64009,9 +66669,9 @@ ayF
gBk
gBE
gBE
-gBE
jHX
dza
+ayF
uXq
eNj
gGI
@@ -64041,7 +66701,7 @@ cOE
mjl
oTR
gYj
-cam
+eVu
sGn
sGn
lYZ
@@ -64050,7 +66710,7 @@ uUn
jDa
ulV
sSZ
-qFX
+upO
hPC
uPW
xer
@@ -64168,15 +66828,15 @@ qgN
qgN
qgN
qgN
-qgN
-bBO
-bBO
-bBO
-cQS
-cQS
-cQS
-cQS
-cQS
+gXy
+pXV
+jeT
+jeT
+jeT
+jeT
+jeT
+jeT
+jeT
cQS
mte
mte
@@ -64370,8 +67030,8 @@ qgN
qgN
qgN
qgN
-qgN
fJv
+pRd
fJv
pRf
rwW
@@ -64389,7 +67049,7 @@ cKB
sve
xvZ
wfD
-uxE
+ngE
bGh
bGh
bGh
@@ -64591,7 +67251,7 @@ uZt
iwu
xvZ
wfD
-uxE
+kvZ
bGh
fFx
vBy
@@ -64793,7 +67453,7 @@ wfD
vZr
wfD
wfD
-uxE
+kvZ
bGh
pbS
pbS
@@ -64995,7 +67655,7 @@ bLB
lFU
ssK
uEq
-uxE
+kvZ
bGh
ihe
ejw
@@ -65197,7 +67857,7 @@ tPU
wQS
fWp
uEq
-uxE
+kvZ
bGh
sDQ
sDQ
@@ -65399,7 +68059,7 @@ ecV
eOs
pOV
uEq
-uxE
+kvZ
bGh
fsL
vBy
@@ -65601,16 +68261,16 @@ ecV
ecV
ecV
uEq
-uxE
-mBB
-mBB
-mBB
-mBB
-mBB
-mBB
-mBB
-mBB
-mBB
+kvZ
+cyZ
+cyZ
+cyZ
+cyZ
+cyZ
+cyZ
+cyZ
+cyZ
+cyZ
pkK
eUT
rgc
@@ -65803,16 +68463,16 @@ uLJ
yaT
gAs
uEq
-uxE
-mBB
+kvZ
+cyZ
dOP
gcS
-kEL
+lHx
sVn
xee
fan
-wpz
-mBB
+iSn
+cyZ
fGi
fnh
qLj
@@ -66005,15 +68665,15 @@ uUa
ecV
fhh
uEq
-uxE
-mBB
-fmV
+upt
+cyZ
+dOP
gFs
lHx
-tsf
+uXX
jEM
jDU
-pEu
+tCP
obZ
vQd
aVO
@@ -66207,8 +68867,8 @@ ecV
ecV
uQQ
uEq
-uxE
-mBB
+xap
+mQe
drB
hoo
kEL
@@ -66218,7 +68878,7 @@ shi
pgj
mYp
ndn
-nXQ
+jSY
uTw
cNU
tJP
@@ -66409,19 +69069,19 @@ iKV
ecV
ecV
uEq
-xap
-mBB
+vHl
+cyZ
cpi
jZT
qcc
uXX
vJw
uDs
-tyZ
-upm
+pEu
+obZ
bTo
-tCP
aXf
+shi
eBj
qAF
bmq
@@ -66611,21 +69271,21 @@ qVS
ecV
ecV
uEq
-gax
-iXI
-hYk
+kpC
+hst
+cRs
osY
sHR
xcp
-tLc
+ahm
rez
wpz
-mBB
+cyZ
otf
kgT
-iJH
-jIL
-jIL
+gce
+bhT
+gax
jko
jIL
umH
@@ -66811,17 +69471,17 @@ uEq
uEq
uEq
uje
-iXI
-iXI
-iXI
-iXI
+hst
+hst
+hst
+hst
hRY
-iXI
-iXI
-iXI
+hst
+hst
+hst
eyI
-cyZ
-cyZ
+gxa
+mBB
cer
cer
cer
@@ -67012,18 +69672,18 @@ iIB
avb
hdU
lnA
-csA
-iXI
-iXI
-imA
-iXI
+pUT
+hst
+hst
+bkQ
+hst
eyY
-iXI
-juY
-iXI
+hst
+imA
+hst
asB
jsI
-cyZ
+mBB
hzU
pxY
mTY
@@ -67214,18 +69874,18 @@ jKV
ikT
nAO
seQ
-pUT
-iXI
-jSY
-qnb
+ecV
+hst
+bkQ
+bqe
ool
hEs
+krk
rfG
-qnb
-iXI
+hst
xdu
rAi
-cyZ
+mBB
iUg
wHs
iSG
@@ -67413,21 +70073,21 @@ ntt
gkh
gkh
gkh
+uEq
+uEq
+uEq
+uEq
hst
hst
-hst
-hst
-iXI
-iXI
aSV
-iXI
-iXI
+hst
+hst
lYP
-qnb
+wWh
cyG
-kxt
+iBG
gsQ
-cyZ
+mBB
eKP
wHs
xEF
@@ -67615,21 +70275,21 @@ ntt
kiT
kiT
kiT
+uEq
+hoe
+hoe
+hoe
hst
-hst
-hst
-hst
-iXI
-rgF
+pch
hHM
-iXI
+hst
wLz
spR
-qnb
-cyG
-lxN
+upm
+omD
+vVD
iYw
-cyZ
+mBB
fer
tzR
tiV
@@ -67817,21 +70477,21 @@ ntt
kiT
aCU
kiT
-iXI
-iXI
-iXI
-iXI
-iXI
-iXI
-qnb
-iXI
+uEq
+hoe
+hoe
+hoe
+hst
+hst
+aSV
+hst
iXI
xxw
-mQe
-mHH
-cZT
+wWh
+cyG
+iBG
gfN
-cyZ
+mBB
lJp
fZk
xFR
@@ -68019,21 +70679,21 @@ fJv
fJv
fJv
fJv
-bmk
-cRs
-bqe
-bqe
-iXI
-jSY
+jTA
+jTA
+jTA
+jTA
+hst
+bkQ
qnb
+ntn
+cZT
qwD
-wWh
-gps
sYA
-iXI
+hst
gil
-gfN
-cyZ
+bfF
+mBB
cer
sFk
lpu
@@ -68221,21 +70881,21 @@ fJv
fJv
fJv
fJv
-bmk
-ntn
-que
-gfN
-iXI
-iXI
+jTA
+jTA
+jTA
+jTA
+hst
+hst
+juY
+hst
+bkQ
+hst
qvl
-iXI
-pch
-iXI
-bhT
-iXI
-gfN
-wsn
-cyZ
+hst
+gps
+jsI
+mBB
cer
cer
cer
@@ -68424,20 +71084,20 @@ qgN
qgN
qgN
qgN
-qgN
-dAu
-gfN
-iXI
-iXI
-iXI
-iXI
-iXI
-bkQ
-iXI
-iXI
+hGJ
+fTd
+ifm
+hst
+hst
+mHH
+hst
+hst
+hst
+hst
+hst
fhd
cOs
-cyZ
+mBB
sig
str
tME
@@ -68626,17 +71286,17 @@ qgN
qgN
qgN
qgN
-qgN
-bQx
-gfN
-naN
-gfN
-gfN
-gfN
+wsn
+bff
+ifm
+ifm
+mBB
+iEB
+fyU
gxa
nFm
-jTA
-iSn
+fDA
+gxa
azO
rtH
xkH
@@ -68828,19 +71488,19 @@ qgN
qgN
qgN
qgN
-qgN
-bmk
-cZA
+dAu
+kxt
+kxt
ifm
-mgJ
+mBB
mgJ
bmk
mHM
-bmk
-cyZ
+dvf
+fmV
bgN
dpE
-rtH
+kXO
xkH
sig
hqi
@@ -69030,18 +71690,18 @@ qgN
qgN
qgN
qgN
-qgN
-qgN
-qgN
-qgN
-qgN
-qgN
-qgN
-qgN
-vnz
-jri
-fTd
+dAu
+kxt
+kxt
+ifm
+mBB
+tau
+mBB
+mBB
+wrW
nPA
+gxa
+fDA
ntV
mjW
cQw
@@ -69232,20 +71892,20 @@ qgN
qgN
qgN
qgN
-qgN
-qgN
-qgN
-qgN
-qgN
-qgN
-qgN
-qgN
-iox
-tau
-cyZ
-cyZ
-cyZ
-cyZ
+oby
+kxt
+kxt
+jri
+nXQ
+que
+hYk
+hYk
+naN
+cZA
+mBB
+mBB
+mBB
+mBB
cQw
sVB
weq
@@ -69434,17 +72094,17 @@ qgN
qgN
qgN
qgN
-qgN
-qgN
-qgN
-qgN
-qgN
-qgN
-qgN
-qgN
-dmK
-qvb
-emN
+ifm
+iJH
+sMS
+ifm
+ifm
+ifm
+ifm
+ifm
+ifm
+ifm
+cQw
bpa
fwf
fwf
@@ -70679,7 +73339,7 @@ sci
cXh
cXh
cXh
-cXh
+elm
hjT
gyC
xsY
@@ -76137,7 +78797,7 @@ vOd
vOd
vOd
fuu
-hnN
+lno
fuu
fuu
fuu
diff --git a/maps/sccv_horizon/sccv_horizon-3_deck_3.dmm b/maps/sccv_horizon/sccv_horizon-3_deck_3.dmm
index 728ed3321a0..2aa96a1e52a 100644
--- a/maps/sccv_horizon/sccv_horizon-3_deck_3.dmm
+++ b/maps/sccv_horizon/sccv_horizon-3_deck_3.dmm
@@ -11,6 +11,15 @@
"ac" = (
/turf/simulated/wall/r_wall,
/area/storage/shields)
+"ad" = (
+/obj/effect/floor_decal/corner_wide/blue{
+ dir = 6
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/pool)
"ae" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -22,42 +31,39 @@
dir = 4
},
/obj/machinery/firealarm/south,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/tiled/white,
/area/hallway/medical/upper)
"af" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance_hatch{
- req_one_access = list(12,61)
- },
/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ req_one_access = list(12)
+ },
/turf/simulated/floor,
/area/maintenance/engineering_ladder)
-"ah" = (
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 6
+"ag" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/hallway/deck_three/primary/starboard)
+"ah" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/horizon/crew_quarters/fitness/hallway)
"ai" = (
/obj/structure/railing/mapped,
-/obj/structure/lattice/catwalk/indoor/grate,
/obj/structure/cable{
icon_state = "4-8"
},
@@ -70,6 +76,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor,
/area/maintenance/engineering_ladder)
"aj" = (
@@ -93,7 +100,6 @@
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/structure/lattice/catwalk/indoor/grate,
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -106,18 +112,11 @@
/obj/structure/cable/green{
icon_state = "2-4"
},
-/obj/structure/table/reinforced,
-/obj/item/flag/scc/l{
- pixel_y = 15
+/obj/effect/floor_decal/corner/blue{
+ dir = 10
},
-/obj/item/flag/scc/l{
- pixel_y = 10
- },
-/obj/item/flag/scc/l{
- pixel_y = 4
- },
-/turf/simulated/floor,
-/area/bridge/aibunker)
+/turf/simulated/floor/tiled,
+/area/bridge)
"am" = (
/obj/structure/table/reinforced,
/obj/machinery/photocopier/faxmachine{
@@ -130,30 +129,41 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
+"an" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
+ },
+/obj/structure/closet/walllocker/medical{
+ pixel_y = 32
+ },
+/obj/item/stack/medical/bruise_pack,
+/obj/item/stack/medical/ointment,
+/obj/item/storage/firstaid,
+/turf/simulated/floor/tiled,
+/area/bridge)
"ao" = (
/obj/effect/floor_decal/spline/fancy/wood,
/obj/effect/floor_decal/spline/fancy/wood{
dir = 1
},
-/obj/machinery/firealarm/north,
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
+ },
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
"ap" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/pen,
-/obj/machinery/light_switch{
- pixel_y = 28
- },
/obj/effect/floor_decal/spline/fancy/wood/corner{
dir = 8
},
/obj/effect/floor_decal/spline/fancy/wood{
dir = 5
},
+/obj/machinery/light_switch{
+ pixel_y = 24;
+ pixel_x = -9
+ },
+/obj/machinery/firealarm/east,
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
"aq" = (
@@ -172,54 +182,68 @@
/turf/simulated/floor/tiled/white,
/area/crew_quarters/heads/cmo)
"ar" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 9
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/highsecurity{
+ name = "Shield Generator Room";
+ req_one_access = list(11, 24)
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
},
/turf/simulated/floor/tiled/dark,
/area/storage/shields)
"as" = (
-/obj/machinery/camera/network/third_deck{
- c_tag = "Third Deck - Lounge Entrance";
+/obj/machinery/power/apc/low{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
dir = 1
},
-/obj/effect/floor_decal/corner/paleblue{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/turf/simulated/floor/wood,
+/area/crew_quarters/lounge/secondary)
"at" = (
/turf/simulated/floor/reinforced,
/area/template_noop)
"au" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 5
+/obj/random/junk,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
},
-/obj/item/modular_computer/console/preset/engineering,
-/turf/simulated/floor/tiled/dark,
-/area/storage/shields)
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/maintenance/engineering_ladder)
"av" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 8
- },
-/obj/machinery/shield_capacitor/multiz{
- anchored = 1
+/obj/structure/cable{
+ icon_state = "1-2"
},
/obj/structure/cable/cyan{
- d2 = 4;
- icon_state = "0-4"
+ icon_state = "4-8"
},
-/obj/machinery/power/sensor{
- long_range = 1;
- name = "Powernet Sensor - Shields Subgrid";
- name_tag = "Shields Subgrid"
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/corner/yellow{
+ dir = 5
},
/turf/simulated/floor/tiled/dark,
/area/storage/shields)
"aw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/floor_decal/corner/blue/diagonal,
/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/white,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
/area/bridge)
"ax" = (
/obj/effect/floor_decal/corner/paleblue/diagonal,
@@ -231,9 +255,15 @@
/turf/simulated/floor/tiled/white,
/area/crew_quarters/heads/cmo)
"ay" = (
-/obj/structure/table/standard,
-/obj/item/device/flashlight/lamp,
-/turf/simulated/floor/tiled/dark,
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck - Vacant Office";
+ dir = 8
+ },
+/obj/machinery/photocopier,
+/obj/effect/floor_decal/corner/beige{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
/area/security/vacantoffice)
"az" = (
/obj/effect/floor_decal/corner/paleblue/diagonal,
@@ -300,34 +330,54 @@
/turf/simulated/floor/tiled,
/area/bridge)
"aH" = (
+/obj/machinery/door/firedoor,
+/obj/effect/map_effect/door_helper/unres,
/obj/machinery/door/airlock/glass_command{
id_tag = "sbridgedoor";
name = "Bridge";
- req_one_access = list(19,38)
+ req_one_access = list(19, 38)
},
-/obj/machinery/door/firedoor,
-/obj/effect/map_effect/door_helper/unres,
/turf/simulated/floor/tiled,
/area/bridge)
"aI" = (
-/obj/effect/floor_decal/industrial/warning/corner,
-/obj/machinery/power/terminal{
- dir = 1
+/obj/structure/trash_pile,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
},
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/simulated/floor/bluegrid,
-/area/storage/shields)
-"aK" = (
-/obj/structure/grille,
-/obj/structure/window/shuttle/scc_space_ship,
-/obj/machinery/door/firedoor,
/turf/simulated/floor,
/area/maintenance/engineering_ladder)
+"aJ" = (
+/obj/structure/cable/cyan{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/sensor{
+ long_range = 1;
+ name = "Powernet Sensor - Shields Subgrid";
+ name_tag = "Shields Subgrid"
+ },
+/obj/machinery/shield_capacitor/multiz{
+ anchored = 1
+ },
+/obj/structure/cable/cyan{
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/corner/yellow/full{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/storage/shields)
+"aK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"aL" = (
/obj/structure/railing/mapped{
dir = 1
@@ -364,74 +414,75 @@
/turf/simulated/floor/tiled/white,
/area/crew_quarters/heads/cmo)
"aO" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 4
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 8
},
-/obj/structure/bed/stool/chair/office/dark{
- dir = 1
+/obj/machinery/newscaster/security_unit{
+ pixel_x = -32
},
-/turf/simulated/floor/tiled/dark,
-/area/storage/shields)
-"aP" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "bridge blast";
- name = "Bridge Blast Doors";
- opacity = 0
- },
-/obj/machinery/door/airlock/command{
- id_tag = "hopdoor";
- name = "Executive Officer's Office";
- req_access = list(57)
- },
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
icon_state = "1-2"
},
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hop/xo)
+/area/crew_armory)
+"aP" = (
+/obj/machinery/door/firedoor,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"aQ" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 10
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/storage/shields)
+"aR" = (
+/obj/machinery/light{
+ dir = 4
},
/obj/machinery/shield_gen/external{
anchored = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/storage/shields)
-"aR" = (
-/obj/effect/floor_decal/spline/plain,
/obj/structure/cable/cyan{
- icon_state = "1-4"
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner/yellow{
+ dir = 6
},
/turf/simulated/floor/tiled/dark,
/area/storage/shields)
"aS" = (
-/obj/machinery/lapvend,
/obj/effect/floor_decal/spline/fancy/wood{
- dir = 8
+ dir = 10
},
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
"aT" = (
-/obj/structure/table/reinforced/steel,
-/obj/item/material/ashtray,
-/turf/simulated/floor/carpet/rubber,
-/area/engineering/break_room)
-"aU" = (
-/obj/effect/floor_decal/spline/plain{
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
-/obj/structure/cable/cyan{
- icon_state = "4-8"
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor,
+/area/maintenance/engineering_ladder)
+"aU" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
},
-/turf/simulated/floor/tiled/dark,
-/area/storage/shields)
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/maintenance/engineering_ladder)
"aV" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -444,15 +495,13 @@
req_one_access = list(12)
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/maintenance/engineering_ladder)
"aW" = (
-/obj/machinery/door/airlock/highsecurity{
- name = "Shield Generator Room";
- req_one_access = list(11,24)
+/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
+/obj/structure/cable/cyan,
+/obj/structure/cable/cyan{
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
/area/storage/shields)
"aX" = (
@@ -546,18 +595,31 @@
/turf/simulated/floor/tiled/dark,
/area/medical/ward/isolation)
"be" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
+/obj/structure/lattice/catwalk/indoor/grate,
/obj/machinery/door/airlock/maintenance{
req_one_access = list(12)
},
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
/turf/simulated/floor,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
+"bf" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 10
+ },
+/obj/machinery/disposal/small/north,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
"bg" = (
-/obj/structure/closet/secure_closet/xo2,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop/xo)
+/obj/structure/bed/stool/chair/padded/brown{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/lawoffice/representative)
"bh" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -575,34 +637,47 @@
/obj/effect/floor_decal/corner/green{
dir = 9
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = -32
+/obj/machinery/light{
+ dir = 8
},
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"bj" = (
-/obj/effect/floor_decal/industrial/warning,
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/alarm{
+ pixel_x = -28;
+ dir = 4
},
-/turf/simulated/floor/bluegrid,
-/area/storage/shields)
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/engineering_ladder)
"bk" = (
-/obj/effect/floor_decal/industrial/warning{
+/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
+/area/bridge/aibunker)
+"bl" = (
+/obj/effect/floor_decal/corner/blue{
dir = 6
},
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai)
-"bl" = (
-/obj/structure/ladder{
- pixel_y = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 8
},
-/turf/simulated/open,
-/area/turret_protected/ai)
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
"bm" = (
-/obj/structure/bed/stool/chair,
+/obj/effect/floor_decal/spline/fancy/wood/cee{
+ dir = 1
+ },
+/obj/structure/bed/stool/chair/padded/brown{
+ dir = 4
+ },
/turf/simulated/floor/wood,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"bn" = (
/obj/machinery/power/apc/low{
dir = 4;
@@ -619,20 +694,35 @@
/turf/simulated/floor/tiled/dark,
/area/medical/smoking)
"bo" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 10
- },
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai)
-"bp" = (
-/obj/effect/floor_decal/industrial/warning/corner{
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/camera/network/command{
+ c_tag = "Bridge - Deck 3 - Bunker Entrance";
+ network = list("Command","Bunker");
+ alarm_on = 1;
dir = 8
},
-/obj/structure/cable/cyan{
- icon_state = "1-2"
+/obj/effect/floor_decal/industrial/hatch/red,
+/obj/machinery/turretid/lethal{
+ ailock = 1;
+ check_synth = 1;
+ name = "\improper Command Bunker Turret Control Console";
+ req_access = list(19);
+ pixel_y = 32
},
-/turf/simulated/floor/bluegrid,
-/area/storage/shields)
+/obj/machinery/alarm{
+ req_one_access = list(24,11,55);
+ pixel_y = -28;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
+"bp" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/crew_armory)
"bq" = (
/turf/simulated/floor/wood,
/area/lawoffice/consular)
@@ -646,22 +736,23 @@
/turf/simulated/floor/tiled/white,
/area/crew_quarters/heads/cmo)
"bs" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/status_display{
- pixel_x = -32
- },
-/obj/structure/filingcabinet/filingcabinet,
-/turf/simulated/floor/carpet/rubber,
-/area/lawoffice/representative)
+/obj/structure/window/reinforced,
+/obj/structure/table/reinforced/wood,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hop/xo)
"bt" = (
-/obj/effect/floor_decal/corner/red/diagonal,
-/obj/machinery/vending/dinnerware{
- pixel_y = 10
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Nature Showcase Maintenance";
+ req_access = list(26)
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
+/area/horizon/deck_three/nature_showcase)
"bu" = (
/obj/effect/floor_decal/corner_wide/paleblue/full{
dir = 4
@@ -672,20 +763,50 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/heads/cmo)
+"bv" = (
+/turf/simulated/wall,
+/area/horizon/crew_quarters/fitness/gym)
"bw" = (
-/obj/structure/lattice,
-/turf/simulated/open/airless,
-/area/template_noop)
-"by" = (
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/effect/floor_decal/corner/blue/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
+"bx" = (
+/obj/structure/railing/mapped{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"by" = (
+/obj/machinery/camera/network/engineering{
+ c_tag = "Engineering - Meeting Room";
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/full,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
/area/engineering/break_room)
"bz" = (
/obj/structure/railing/mapped,
-/obj/structure/lattice/catwalk/indoor/grate,
/obj/structure/cable{
icon_state = "4-8"
},
@@ -701,6 +822,7 @@
/obj/machinery/light/small/emergency{
dir = 1
},
+/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/engineering_ladder)
"bA" = (
@@ -711,60 +833,55 @@
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
"bB" = (
-/obj/structure/table/wood,
-/obj/item/stamp{
- layer = 3.1;
- name = "representative stamp";
- pixel_x = -8;
- pixel_y = 4
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
-/obj/item/stamp/denied{
- pixel_x = 1;
- pixel_y = 1
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/carpet/rubber,
-/area/lawoffice/representative)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop/xo)
"bC" = (
/obj/structure/lattice,
/obj/machinery/light{
dir = 8
},
/turf/simulated/open,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"bD" = (
-/obj/machinery/door/window/northright,
-/obj/effect/floor_decal/spline/plain{
- dir = 1
+/obj/effect/floor_decal/corner/green/full{
+ dir = 4
},
-/obj/effect/floor_decal/corner/grey/diagonal{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
-"bE" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/floor_decal/corner/red/diagonal,
-/obj/machinery/disposal/small/north,
-/obj/structure/disposalpipe/trunk{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/fitness/changing)
+"bE" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"bF" = (
+/obj/machinery/telecomms/broadcaster/preset_right,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
"bG" = (
/obj/structure/cable/green{
icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/floor_decal/corner/blue{
@@ -774,51 +891,17 @@
layer = 4;
pixel_x = -32
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/security/investigations)
"bH" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/cryo)
+/area/horizon/crew_quarters/cryo)
"bI" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/lawoffice/consular)
-"bJ" = (
-/obj/machinery/power/apc/low{
- dir = 4;
- name = "east bump";
- pixel_x = 24
- },
-/obj/structure/cable/green,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/wood,
-/area/lawoffice/representative)
-"bK" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/hatch{
- name = "Telecomms Access";
- req_access = list(12)
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor,
-/area/maintenance/bridge)
-"bL" = (
-/obj/effect/floor_decal/corner/red/diagonal,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
-"bM" = (
/obj/machinery/door/airlock/highsecurity{
icon_state = "door_locked";
id_tag = "sat2";
@@ -826,17 +909,70 @@
name = "Scuttling Device Chamber";
req_access = list(20)
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
/obj/machinery/door/blast/regular{
- id = "sat_blast"
+ id = "sat_blast";
+ name = "Scuttling Device Chamber Blast Door"
},
/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/dark,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
/area/bridge/selfdestruct)
+"bJ" = (
+/obj/machinery/papershredder,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ is_critical = 1;
+ name = "east bump";
+ pixel_x = 24;
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop/xo)
+"bK" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor,
+/area/maintenance/substation/command)
+"bL" = (
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/lino/grey,
+/area/horizon/deck_three/cafeteria)
+"bM" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Deck 3 Starboard Hallway"
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"bN" = (
/obj/structure/cable{
icon_state = "1-4"
@@ -846,6 +982,10 @@
icon_state = "pipe-c"
},
/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/alarm{
+ pixel_x = -28;
+ dir = 4
+ },
/turf/simulated/floor,
/area/maintenance/engineering_ladder)
"bO" = (
@@ -858,23 +998,50 @@
/obj/item/device/taperecorder,
/turf/simulated/floor/tiled/dark,
/area/bridge)
-"bQ" = (
-/obj/effect/floor_decal/corner/paleblue{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/port)
-"bR" = (
-/obj/structure/window/reinforced,
-/obj/effect/floor_decal/corner/red/diagonal,
-/obj/structure/table/reinforced/wood,
-/obj/item/reagent_containers/food/drinks/shaker,
+"bP" = (
+/obj/structure/table/rack,
+/obj/effect/floor_decal/corner/blue/diagonal,
+/obj/item/clothing/gloves/boxing/blue,
+/obj/item/clothing/gloves/boxing/blue,
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/area/horizon/crew_quarters/fitness/gym)
+"bQ" = (
+/obj/structure/bed/stool/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue{
+ dir = 6
+ },
+/obj/structure/railing/mapped,
+/turf/simulated/floor/tiled/dark,
+/area/crew_armory)
+"bR" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -28
+ },
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/stalkybush,
+/turf/simulated/floor/grass/alt,
+/area/horizon/deck_three/nature_showcase)
"bS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/carpet/rubber,
-/area/lawoffice/representative)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop/xo)
"bT" = (
/obj/effect/floor_decal/corner/blue{
dir = 5
@@ -889,18 +1056,12 @@
/turf/simulated/floor/reinforced,
/area/template_noop)
"bV" = (
-/obj/machinery/door/window/southleft{
- name = "Bar";
- req_access = list(25)
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
},
-/obj/effect/floor_decal/corner/red/diagonal,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/obj/machinery/light,
+/turf/simulated/floor/beach/water/alt,
+/area/horizon/deck_three/nature_showcase)
"bW" = (
/obj/structure/bed/stool/chair{
dir = 1
@@ -911,73 +1072,71 @@
/turf/simulated/floor/tiled/dark,
/area/security/vacantoffice2)
"bX" = (
-/obj/structure/window/reinforced,
-/obj/effect/floor_decal/corner/red/diagonal,
-/obj/machinery/door/blast/shutters/open{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/structure/table/reinforced/wood,
-/obj/item/glass_jar{
- desc = "A small empty jar that is mostly used for giving a tip.";
- name = "tip jar"
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/obj/effect/map_effect/wingrille_spawn/reinforced,
+/turf/simulated/floor,
+/area/horizon/deck_three/nature_showcase)
"bY" = (
/obj/machinery/alarm{
pixel_y = 28
},
/turf/simulated/floor/tiled/dark,
/area/bridge/selfdestruct)
-"bZ" = (
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/effect/floor_decal/corner/blue{
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
"ca" = (
-/obj/machinery/photocopier,
/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Executive Officer's Desk";
+ department = "Consular's Office";
departmentType = 5;
- name = "Executive Officer RC";
pixel_x = -32
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hop/xo)
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/lawoffice/consular)
"cb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
+"cc" = (
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck - Fitness Center Pool Fore";
+ dir = 1
+ },
+/obj/effect/floor_decal/corner_wide/blue{
+ dir = 10
+ },
+/obj/structure/sign/drop{
+ pixel_y = -32;
+ desc = "A warning sign which reads 'CAUTION: SLIP HAZARD'.";
+ name = "\improper CAUTION: SLIP HAZARD sign"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/pool)
+"cd" = (
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/button/remote/airlock{
+ specialfunctions = 4;
+ pixel_y = 25;
+ name = "Airlock Bolts";
+ id = "bolts_bunker_entrance";
+ req_access = list(19)
+ },
+/turf/simulated/floor,
+/area/maintenance/engineering_ladder)
"ce" = (
-/obj/machinery/bluespacerelay,
-/obj/effect/floor_decal/spline/plain{
- dir = 9
+/obj/machinery/light,
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = -32
},
-/turf/simulated/floor/bluegrid{
- name = "Mainframe Base";
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
+/turf/simulated/floor/holofloor/tiled/ramp{
+ dir = 4
},
-/area/tcommsat/chamber)
+/area/bridge)
"cf" = (
/obj/structure/bed/stool/chair/office/bridge{
dir = 8
@@ -985,6 +1144,7 @@
/obj/effect/floor_decal/corner/blue{
dir = 6
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/dark,
/area/bridge/meeting_room)
"cg" = (
@@ -995,24 +1155,30 @@
/turf/simulated/floor/tiled,
/area/security/investigations)
"ch" = (
-/obj/structure/banner/scc,
-/turf/simulated/floor/tiled/dark,
-/area/bridge/selfdestruct)
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Deck 3 Central Stairwell"
+ },
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/horizon/stairwell/central)
"ci" = (
/obj/structure/table/wood,
-/obj/effect/floor_decal/industrial/outline/blue,
/turf/simulated/floor/tiled/dark,
/area/bridge/meeting_room)
"cj" = (
-/obj/machinery/photocopier/faxmachine{
- anchored = 0;
- department = "Consular's Office";
- pixel_y = 4;
- req_one_access = list(38,19,72)
+/obj/machinery/porta_turret/stationary,
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/sign/nosmoking_1{
+ pixel_y = 32
},
-/obj/structure/table/wood,
-/turf/simulated/floor/carpet,
-/area/lawoffice/consular)
+/turf/simulated/floor/reinforced,
+/area/bridge/selfdestruct)
"ck" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/corner/paleblue{
@@ -1026,81 +1192,80 @@
/obj/machinery/firealarm/west,
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
+"cl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/carpet/rubber,
+/area/tcommsat/entrance)
"cm" = (
-/obj/structure/flora/pottedplant/random{
- pixel_x = -5
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
},
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/structure/bed/stool/chair/sofa/left/red,
+/turf/simulated/floor/wood,
+/area/horizon/deck_three/cafeteria)
+"cn" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/alarm{
dir = 4;
pixel_x = -28
},
-/obj/effect/floor_decal/corner/red/full{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
/obj/machinery/camera/network/third_deck{
- c_tag = "Third Deck - Hallway 1";
+ c_tag = "Third Deck - Central Ring Starboard";
dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
-"cn" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/obj/effect/floor_decal/corner/red/full{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
-"co" = (
-/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
-/turf/simulated/floor,
-/area/hallway/primary/starboard)
-"cp" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/structure/cable{
icon_state = "1-2"
},
-/obj/machinery/firealarm/west,
-/turf/simulated/floor/bluegrid,
-/area/storage/shields)
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"co" = (
+/obj/structure/bed/stool/chair/padded/brown{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/turf/simulated/floor/wood,
+/area/horizon/hallway/deck_three/primary/starboard)
+"cp" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"cq" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/reagent_dispensers/fueltank,
-/turf/simulated/floor,
-/area/maintenance/bridge)
+/turf/simulated/floor/reinforced,
+/area/template_noop)
"cr" = (
/obj/structure/bookcase,
/obj/item/book/manual/robotics_cyborgs,
/obj/item/book/manual/medical_diagnostics_manual,
/obj/item/book/manual/chef_recipes,
/obj/item/book/manual/anomaly_spectroscopy,
-/turf/simulated/floor/carpet/rubber,
+/turf/simulated/floor/tiled,
/area/crew_quarters/captain)
"cs" = (
-/obj/structure/window/shuttle/scc_space_ship,
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
+/obj/structure/table/steel,
+/obj/effect/floor_decal/corner/yellow{
+ dir = 6
+ },
+/obj/item/storage/box/fancy/donut{
+ pixel_y = 5
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
/area/engineering/break_room)
"ct" = (
/obj/machinery/door/firedoor,
@@ -1114,14 +1279,21 @@
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
"cv" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
+/obj/structure/table/reinforced/steel,
+/obj/structure/window/reinforced,
+/obj/machinery/door/window/brigdoor/westright{
+ req_access = list(1, 19)
},
-/obj/structure/cable/cyan{
- icon_state = "1-2"
+/obj/machinery/door/window/brigdoor/eastleft{
+ req_access = list(1, 19)
},
-/turf/simulated/floor/bluegrid,
-/area/storage/shields)
+/obj/machinery/door/blast/regular{
+ id = "crew_armoury_desk";
+ name = "Crew Armoury Desk"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
+/area/crew_armory)
"cw" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -1137,24 +1309,52 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/heads/cmo)
+"cx" = (
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = 24
+ },
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck - Cryogenic Storage Dormitory";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo/dormitories)
"cy" = (
-/obj/structure/table/standard,
-/obj/item/device/camera_film,
-/obj/item/device/camera,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/grass/alt,
+/area/horizon/deck_three/nature_showcase)
+"cz" = (
+/obj/effect/floor_decal/corner/blue/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/dark,
-/area/security/vacantoffice)
+/area/horizon/crew_quarters/fitness/pool)
"cA" = (
-/obj/machinery/alarm{
+/obj/effect/map_effect/door_helper/unres,
+/obj/machinery/door/blast/regular{
+ density = 0;
dir = 4;
- pixel_x = -28
+ icon_state = "pdoor0";
+ id = "bridge blast";
+ name = "Bridge Blast Doors";
+ opacity = 0
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/command{
+ id_tag = "conference_room";
+ name = "Conference Room";
+ req_one_access = list(19, 38)
},
-/turf/simulated/floor/carpet,
-/area/lawoffice/consular)
+/turf/simulated/floor/tiled,
+/area/bridge/meeting_room)
"cB" = (
-/obj/structure/lattice/catwalk/indoor/grate,
/obj/structure/cable{
icon_state = "4-8"
},
@@ -1168,22 +1368,37 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor,
/area/maintenance/engineering_ladder)
"cC" = (
/obj/structure/cable/green{
icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/security/investigations)
"cD" = (
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/button/remote/airlock{
+ id = "main_unit_1";
+ name = "Door Bolt Control";
+ pixel_y = 32;
+ req_access = null;
+ specialfunctions = 4
+ },
+/obj/effect/floor_decal/corner/green/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/fitness/washroom)
"cE" = (
/obj/machinery/light{
dir = 8
@@ -1193,7 +1408,7 @@
},
/obj/structure/closet/emcloset,
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"cF" = (
/obj/structure/table/reinforced/wood,
/obj/effect/floor_decal/spline/plain{
@@ -1204,6 +1419,9 @@
"cG" = (
/obj/structure/table/rack,
/obj/random/loot,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
/turf/simulated/floor,
/area/maintenance/security_starboard)
"cH" = (
@@ -1246,74 +1464,64 @@
/area/hallway/medical/upper)
"cJ" = (
/obj/effect/floor_decal/corner/paleblue/full,
-/obj/machinery/atmospherics/pipe/manifold/hidden{
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/light{
dir = 8
},
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"cK" = (
-/obj/machinery/button/switch/windowtint{
- id = "consular";
- pixel_x = -5;
- pixel_y = -25
+/obj/machinery/nuclearbomb/station,
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/reinforced,
+/area/bridge/selfdestruct)
+"cL" = (
+/obj/machinery/atmospherics/pipe/tank/air,
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 1
},
-/obj/machinery/button/remote/airlock{
- dir = 1;
- id = "consular_office";
- name = "consular door control";
- pixel_x = 5;
- pixel_y = -25;
- req_access = null
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/machinery/button/remote/airlock{
- dir = 1;
- id = "consular_office";
- name = "consular door bolts";
- pixel_x = 5;
- pixel_y = -34;
- req_access = null;
- specialfunctions = 4
- },
-/obj/structure/bed/stool/chair/office/bridge/generic{
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
+"cN" = (
+/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
+/turf/simulated/floor/plating,
+/area/horizon/crew_quarters/fitness/gym)
+"cO" = (
+/obj/structure/table/wood,
+/obj/effect/floor_decal/spline/fancy/wood{
dir = 4
},
-/obj/effect/landmark/start{
- name = "Consular Officer"
- },
/turf/simulated/floor/carpet,
-/area/lawoffice/consular)
-"cL" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
+/area/bridge/meeting_room)
+"cP" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -28
},
-/obj/machinery/camera/network/command{
- c_tag = "AI Core - Third Deck Chamber Port";
- dir = 8
+/obj/structure/table/steel,
+/obj/item/folder/blue,
+/obj/item/folder/blue,
+/obj/effect/floor_decal/corner/yellow{
+ dir = 9
},
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai)
-"cN" = (
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
+"cQ" = (
/obj/machinery/newscaster{
pixel_y = 32
},
/obj/effect/floor_decal/corner_wide/blue{
dir = 5
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
-"cO" = (
-/obj/structure/table/wood,
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 4
+/obj/machinery/light{
+ dir = 1
},
-/obj/item/folder/blue,
-/turf/simulated/floor/carpet,
-/area/bridge/meeting_room)
-"cP" = (
-/obj/item/device/flashlight/lamp,
-/obj/structure/table/steel,
/turf/simulated/floor/tiled/dark,
-/area/engineering/break_room)
+/area/horizon/crew_quarters/fitness/pool)
"cR" = (
/obj/structure/cable/green{
icon_state = "11-4"
@@ -1325,39 +1533,40 @@
dir = 4
},
/turf/simulated/open,
-/area/maintenance/wing/starboard)
+/area/medical/ward/isolation)
"cS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/effect/floor_decal/corner/red/full{
+/obj/structure/flora/pottedplant/random,
+/obj/effect/floor_decal/corner/paleblue/full{
dir = 1
},
-/obj/effect/floor_decal/spline/plain{
- dir = 4
+/turf/simulated/floor/tiled/dark,
+/area/horizon/hallway/deck_three/primary/starboard)
+"cT" = (
+/obj/machinery/door/airlock/highsecurity{
+ name = "Shield Generator Room";
+ req_one_access = list(11, 24)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor,
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
},
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
-"cT" = (
-/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
-/turf/simulated/floor/tiled,
/area/storage/shields)
"cU" = (
-/obj/effect/floor_decal/corner_wide/blue/full{
- dir = 8
- },
-/obj/structure/flora/pottedplant{
- icon_state = "plant-28"
- },
-/obj/machinery/light{
- dir = 1
+/obj/effect/floor_decal/corner_wide/blue{
+ dir = 6
},
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
-"cV" = (
-/obj/structure/railing/mapped,
-/turf/simulated/open,
-/area/hallway/primary/starboard)
+/area/horizon/crew_quarters/fitness/pool)
+"cW" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-33"
+ },
+/obj/effect/floor_decal/corner/green/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo/showers)
"cX" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -1384,6 +1593,14 @@
/obj/machinery/hologram/holopad/long_range,
/turf/simulated/floor/tiled/dark,
/area/bridge/meeting_room)
+"da" = (
+/obj/effect/floor_decal/corner/blue/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
"db" = (
/obj/structure/lattice,
/obj/structure/railing/mapped{
@@ -1397,50 +1614,66 @@
},
/turf/simulated/floor/tiled/dark,
/area/bridge/selfdestruct)
+"dd" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 10
+ },
+/obj/structure/railing/mapped,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
"de" = (
-/obj/structure/cable{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/disposalpipe/junction{
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"df" = (
+/obj/random/junk,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor,
+/area/maintenance/engineering_ladder)
+"dg" = (
+/obj/machinery/light{
dir = 4
},
+/obj/structure/filingcabinet/filingcabinet{
+ pixel_x = 10;
+ pixel_y = 1
+ },
+/obj/structure/filingcabinet/chestdrawer{
+ pixel_x = -6;
+ pixel_y = 1
+ },
+/obj/item/device/flashlight/lamp/lava/red{
+ pixel_y = 14;
+ pixel_x = -7
+ },
+/obj/effect/floor_decal/corner/beige/full{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"df" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/low{
- dir = 1;
- name = "north bump";
- pixel_y = 24
- },
-/turf/simulated/floor/tiled/dark,
-/area/engineering/break_room)
-"dg" = (
-/obj/structure/coatrack{
- pixel_x = -6
- },
-/obj/item/storage/secure/safe{
- pixel_x = -32
- },
-/turf/simulated/floor/carpet,
-/area/lawoffice/consular)
+/area/security/vacantoffice)
"dh" = (
/obj/effect/floor_decal/corner/paleblue{
dir = 10
},
-/obj/machinery/atm{
- pixel_y = -32
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -28
},
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"di" = (
/obj/structure/railing/mapped{
dir = 8
@@ -1479,15 +1712,19 @@
/turf/simulated/floor/tiled/white,
/area/medical/equipment)
"dl" = (
+/obj/structure/table/steel,
+/obj/machinery/newscaster{
+ pixel_x = 29
+ },
+/obj/effect/floor_decal/corner/yellow{
+ dir = 6
+ },
/obj/item/storage/box/snack{
desc = "A box full of snack foods. A label is attached that reads, 'Sorry about the microwaves.'";
name = "corporate care package"
},
-/obj/structure/table/steel,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
+/obj/item/storage/box/cups,
+/turf/simulated/floor/tiled,
/area/engineering/break_room)
"dm" = (
/obj/structure/table/wood,
@@ -1500,6 +1737,12 @@
/area/security/forensics_office{
name = "Security - Investigations Office"
})
+"dn" = (
+/obj/effect/floor_decal/corner/purple{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/deck_three/nature_showcase)
"do" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -1513,25 +1756,23 @@
/turf/simulated/floor/tiled/white,
/area/hallway/medical/upper)
"dp" = (
-/obj/structure/table/wood,
-/obj/item/modular_computer/laptop/preset/representative{
- pixel_x = -1;
- pixel_y = 5
+/obj/structure/cable/green{
+ icon_state = "1-8"
},
-/obj/item/material/ashtray/bronze{
- pixel_y = 10
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/reinforced,
+/area/bridge/selfdestruct)
+"dq" = (
+/obj/machinery/firealarm/west,
+/obj/effect/floor_decal/corner/blue{
+ dir = 9
},
-/turf/simulated/floor/carpet,
-/area/lawoffice/consular)
-"dr" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
+/obj/structure/railing/mapped{
+ dir = 4
},
-/obj/structure/cable/white{
- icon_state = "1-2"
- },
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai)
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/bridge)
"ds" = (
/obj/effect/floor_decal/corner/green/diagonal{
dir = 8
@@ -1585,6 +1826,21 @@
},
/turf/simulated/floor/tiled,
/area/bridge/bridge_crew)
+"dx" = (
+/obj/effect/floor_decal/corner_wide/blue/full{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = 24
+ },
+/obj/machinery/disposal/small/west,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/pool)
"dy" = (
/obj/machinery/light{
dir = 8
@@ -1732,7 +1988,7 @@
},
/obj/structure/lattice,
/turf/simulated/open,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"dH" = (
/obj/machinery/alarm{
dir = 1;
@@ -1840,25 +2096,33 @@
/turf/simulated/floor/tiled/white,
/area/hallway/medical/upper)
"dL" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/shutters/open{
+ dir = 8;
+ id = "shutters_deck3_cafedesk";
+ name = "Cafe Desk Shutter"
},
-/obj/structure/railing/mapped,
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 10
- },
-/turf/simulated/floor/wood,
-/area/hallway/primary/starboard)
+/obj/structure/table/stone/marble,
+/turf/simulated/floor/tiled,
+/area/horizon/deck_three/cafeteria)
"dM" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 6
+ },
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/effect/floor_decal/corner/paleblue{
- dir = 10
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/light,
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/horizon/crew_quarters/fitness/hallway)
"dN" = (
/obj/machinery/light,
/turf/simulated/open,
@@ -1871,17 +2135,28 @@
/turf/simulated/open,
/area/hallway/medical/upper)
"dP" = (
-/obj/machinery/door/window/westright,
-/obj/structure/mirror{
- pixel_x = 8;
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
+ },
+/obj/structure/sign/nosmoking_2{
pixel_y = 32
},
-/obj/structure/sink{
- pixel_x = 8;
- pixel_y = 23
+/obj/machinery/light{
+ dir = 8
},
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice/representative)
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/coatrack{
+ pixel_x = -10;
+ pixel_y = 24
+ },
+/obj/machinery/disposal/small/east,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop/xo)
"dQ" = (
/obj/effect/floor_decal/corner_wide/paleblue{
dir = 5
@@ -1889,12 +2164,16 @@
/turf/simulated/floor/tiled/white,
/area/hallway/medical/upper)
"dR" = (
-/obj/machinery/telecomms/relay/preset/station,
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+/obj/machinery/atmospherics/portables_connector,
+/obj/machinery/door/window/southleft{
+ name = "Canister Access"
},
-/area/tcommsat/chamber)
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor,
+/area/maintenance/bridge)
"dS" = (
/obj/structure/bed/stool/chair/plastic{
dir = 8
@@ -1908,100 +2187,118 @@
/turf/simulated/floor/tiled/white,
/area/hallway/medical/upper)
"dT" = (
-/obj/structure/toilet{
- dir = 8;
- pixel_y = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/obj/machinery/light/small{
+/obj/effect/floor_decal/spline/fancy/wood{
dir = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice/representative)
-"dU" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/random/junk,
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor,
-/area/maintenance/bridge)
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop/xo)
+"dU" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 28
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo/showers)
"dV" = (
/obj/effect/shuttle_landmark/merc_ship/third_deck,
/turf/template_noop,
/area/template_noop)
+"dW" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/mop,
+/turf/simulated/floor/reinforced,
+/area/template_noop)
"dX" = (
-/obj/structure/table/wood,
-/obj/item/device/flashlight/lamp,
-/obj/structure/noticeboard{
- pixel_x = -32
+/obj/structure/table/reinforced/wood,
+/obj/machinery/computer/guestpass{
+ pixel_y = 32
},
-/turf/simulated/floor/carpet/rubber,
-/area/lawoffice/representative)
+/obj/item/paper_bin,
+/obj/item/pen/blue{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/pen,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hop/xo)
"dY" = (
-/obj/effect/floor_decal/corner/grey/diagonal{
+/obj/effect/floor_decal/corner/green/full{
dir = 8
},
-/obj/item/reagent_containers/toothpaste{
- pixel_x = -3
- },
-/obj/item/reagent_containers/toothpaste{
- pixel_x = -2
- },
-/obj/item/reagent_containers/toothbrush{
- name = "disposable toothbrush";
- pixel_y = 8
- },
-/obj/item/reagent_containers/toothbrush{
- name = "disposable toothbrush";
- pixel_y = 8
- },
-/obj/item/reagent_containers/toothbrush/red{
- name = "disposable toothbrush";
- pixel_y = 8
- },
-/obj/item/reagent_containers/toothbrush/red{
- name = "disposable toothbrush";
- pixel_y = 8
- },
-/obj/item/reagent_containers/toothbrush{
- name = "disposable toothbrush";
- pixel_y = 8
- },
-/obj/item/reagent_containers/toothbrush{
- name = "disposable toothbrush";
- pixel_y = 8
- },
-/obj/structure/table/rack,
/obj/machinery/alarm{
dir = 4;
- pixel_x = -28
+ pixel_x = -28;
+ req_one_access = list(24,11,55)
},
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/closet/emcloset,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
+"dZ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Recreational Area"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
"ea" = (
-/obj/structure/curtain/open/shower,
-/obj/random/soap,
-/obj/machinery/shower{
- pixel_y = 21
+/obj/structure/lattice/catwalk,
+/obj/structure/railing/mapped{
+ dir = 4
},
-/turf/simulated/floor/tiled/freezer,
-/area/medical/washroom)
-"eb" = (
-/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
-/area/hallway/crew_area)
-"ec" = (
-/obj/effect/floor_decal/corner/paleblue/full{
+/obj/structure/railing/mapped{
dir = 8
},
+/turf/simulated/open/airless,
+/area/template_noop)
+"eb" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal,
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/light/small/emergency{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/engineering_ladder)
+"ec" = (
/obj/machinery/vending/zora,
/obj/machinery/status_display{
layer = 4;
pixel_y = 32
},
+/obj/effect/floor_decal/corner/green/full{
+ dir = 8
+ },
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
+"ed" = (
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 1
+ },
+/obj/machinery/stargazer,
+/turf/simulated/floor/carpet/rubber,
+/area/bridge)
"ee" = (
/obj/effect/map_effect/wingrille_spawn/reinforced/polarized{
id = "cap"
@@ -2016,91 +2313,117 @@
/turf/simulated/floor,
/area/crew_quarters/captain)
"ef" = (
-/obj/machinery/light{
+/obj/effect/floor_decal/corner/blue/full{
dir = 8
},
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai)
-"eg" = (
-/obj/structure/bed/stool/chair/padded/brown{
- dir = 8
- },
-/turf/simulated/floor/carpet/rubber,
-/area/lawoffice/representative)
-"eh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/item/modular_computer/console/preset/security{
dir = 4
},
-/obj/effect/floor_decal/corner/blue{
- dir = 6
- },
/turf/simulated/floor/tiled/dark,
/area/bridge/aibunker)
+"eg" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/cryo/dormitories)
+"eh" = (
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/structure/sign/securearea{
+ pixel_x = -32
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/command)
"ei" = (
/obj/structure/bed/stool/chair/padded/brown,
/turf/simulated/floor/tiled/dark,
/area/medical/smoking)
"ej" = (
-/obj/machinery/button/switch/windowtint{
- id = "rep_inner";
- pixel_x = 7;
- pixel_y = 30;
- req_access = list(38)
- },
/obj/structure/bed/stool/chair/office/bridge/generic{
- dir = 4
+ dir = 8
},
-/obj/machinery/button/remote/airlock{
- id = "rep_office";
- name = "representative door control";
- pixel_x = -3;
- pixel_y = 37;
- req_access = null
- },
-/obj/machinery/button/remote/airlock{
- id = "rep_office";
- name = "representative door bolts";
- pixel_x = -3;
- pixel_y = 28;
- req_access = null;
- specialfunctions = 4
- },
-/obj/effect/landmark/start{
- name = "Corporate Liaison"
- },
-/turf/simulated/floor/carpet/rubber,
-/area/lawoffice/representative)
-"ek" = (
-/obj/item/modular_computer/console/preset/command/account,
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop/xo)
+"ek" = (
+/obj/structure/coatrack{
+ pixel_y = 24;
+ pixel_x = 10
+ },
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/obj/machinery/firealarm/east,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/lawoffice/consular)
"el" = (
-/obj/structure/bed/stool/chair/sofa/left/brown,
-/obj/structure/window/reinforced{
- dir = 1
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/landmark{
+ name = "JoinLateCryoCommand"
},
-/obj/machinery/alarm{
- pixel_y = 28
- },
-/obj/effect/landmark/start{
- name = "Passenger"
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/lounge)
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo)
"em" = (
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
/area/maintenance/engineering_ladder)
+"en" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/obj/machinery/light,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"eo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/dark,
/area/security/investigations)
"ep" = (
-/obj/machinery/door/airlock/freezer{
- id_tag = "main_unit_1";
- name = "Unit 1"
+/obj/effect/floor_decal/corner/green{
+ dir = 6
},
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/toilet)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/fitness/washroom)
+"eq" = (
+/obj/effect/floor_decal/corner/red/full,
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/structure/railing/mapped,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
"er" = (
/obj/structure/bed/stool/chair/office/bridge{
dir = 8
@@ -2111,35 +2434,60 @@
/obj/effect/landmark/start{
name = "Bridge Crew"
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/dark,
/area/bridge/meeting_room)
"es" = (
-/obj/structure/lattice/catwalk,
-/turf/simulated/open,
-/area/turret_protected/ai)
-"et" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
+/obj/machinery/door/airlock/highsecurity{
+ name = "Decrepit Maintenance Airlock";
+ locked = 1;
+ icon_state = "door_locked";
+ req_access = list(19);
+ id_tag = "bolts_bunker_entrance"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/bluegrid,
-/area/storage/shields)
-"eu" = (
-/obj/structure/bed/stool/chair/office/bridge{
- dir = 1
- },
-/obj/effect/floor_decal/corner/blue{
- dir = 10
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/decal/cleanable/cobweb2,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/curtain/black,
+/obj/machinery/door/firedoor,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
/turf/simulated/floor/tiled/dark,
/area/bridge/aibunker)
+"et" = (
+/obj/machinery/power/apc/super{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/corner/yellow/full,
+/turf/simulated/floor/tiled/dark,
+/area/storage/shields)
+"eu" = (
+/obj/machinery/camera/network/command{
+ c_tag = "Bridge - Corridor Camera 2";
+ dir = 4;
+ network = list("Command","Capt_Office")
+ },
+/obj/structure/bed/stool/chair/padded/brown{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/bridge)
"ev" = (
-/obj/machinery/door/airlock{
+/obj/machinery/door/airlock/glass{
name = "Lounge"
},
-/turf/simulated/floor/wood,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
/area/crew_quarters/lounge)
"ew" = (
/obj/effect/floor_decal/corner/blue{
@@ -2151,63 +2499,84 @@
/turf/simulated/floor/tiled/dark,
/area/bridge)
"ex" = (
-/obj/effect/floor_decal/spline/plain,
-/turf/simulated/floor/beach/water/pool,
-/area/crew_quarters/fitness/pool)
-"ey" = (
-/obj/effect/floor_decal/industrial/warning{
+/obj/effect/floor_decal/corner/green/full,
+/obj/machinery/alarm{
+ pixel_y = -28;
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/fitness/washroom)
+"ey" = (
+/obj/structure/cable{
+ icon_state = "1-8"
},
-/turf/simulated/floor/bluegrid,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/corner/yellow{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
/area/storage/shields)
"ez" = (
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 5
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
-/obj/structure/bed/stool/padded,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
+/area/horizon/crew_quarters/fitness/hallway)
"eA" = (
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
/area/crew_quarters/lounge)
-"eC" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
+"eB" = (
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 1
},
+/obj/effect/floor_decal/industrial/loading/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/chamber)
+"eC" = (
/obj/structure/table/wood,
/obj/effect/floor_decal/spline/fancy/wood{
dir = 6
},
-/obj/item/paper_bin{
- pixel_x = -3;
- pixel_y = 7
+/obj/machinery/button/remote/airlock{
+ id = "conference_room";
+ name = "Conference Room Bolts";
+ specialfunctions = 4;
+ dir = 8
},
-/obj/item/pen,
/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
"eD" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
+/obj/machinery/turretid/lethal{
+ ailock = 1;
+ check_synth = 1;
+ desc = "A firewall prevents AIs from interacting with this device.";
+ name = "Scuttling Device Chamber turrets control";
+ req_access = list(20);
+ dir = 4;
+ pixel_x = -32
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/light/small/emergency{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/hatch/red,
+/obj/structure/sign/securearea{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/industrial/warning{
dir = 4
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/turf/simulated/floor,
-/area/maintenance/bridge)
+/turf/simulated/floor/tiled/dark,
+/area/bridge/selfdestruct)
"eE" = (
/turf/simulated/floor,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"eF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -2216,16 +2585,13 @@
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"eG" = (
-/obj/structure/bed/stool/chair/padded/brown{
+/obj/structure/railing/mapped{
dir = 8
},
-/obj/effect/landmark/start{
- name = "Off-Duty Crew Member"
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/lounge/secondary)
+/turf/simulated/floor/wood,
+/area/crew_quarters/lounge)
"eH" = (
/obj/machinery/status_display{
layer = 4;
@@ -2234,36 +2600,38 @@
/turf/simulated/floor/wood,
/area/security/vacantoffice2)
"eI" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/bluegrid,
-/area/storage/shields)
-"eJ" = (
-/obj/structure/bed/stool/chair/office/dark{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Engineering Apprentice"
- },
-/turf/simulated/floor/tiled/dark,
-/area/engineering/break_room)
-"eK" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable{
+ icon_state = "1-2"
},
/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor,
-/area/maintenance/bridge)
+/area/maintenance/engineering_ladder)
+"eJ" = (
+/obj/machinery/power/apc/low{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/table/steel,
+/obj/item/storage/box/fancy/crayons/chalkbox,
+/obj/item/storage/box/fancy/crayons/chalkbox,
+/obj/effect/floor_decal/corner/yellow{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
+"eK" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/obj/structure/sign/staff_only{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"eL" = (
/obj/structure/cable/green{
icon_state = "1-8"
@@ -2277,24 +2645,30 @@
/obj/effect/floor_decal/spline/fancy/wood/corner{
dir = 4
},
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
+"eN" = (
+/obj/structure/table/steel,
+/obj/item/stock_parts/subspace/ansible,
+/obj/item/stock_parts/subspace/ansible,
+/obj/item/stock_parts/subspace/ansible,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/rubber,
+/area/tcommsat/entrance)
"eO" = (
/obj/structure/cable/green{
- icon_state = "4-8"
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/light/small/emergency{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance{
- req_one_access = list(12)
- },
/turf/simulated/floor,
/area/maintenance/bridge)
"eP" = (
@@ -2302,13 +2676,18 @@
dir = 4
},
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"eQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
-/turf/simulated/floor/carpet/rubber,
-/area/engineering/break_room)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/corner/lime{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"eR" = (
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
/area/medical/smoking)
@@ -2322,52 +2701,70 @@
/turf/simulated/floor/tiled,
/area/hallway/secondary/entry/emergency)
"eT" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
+/obj/effect/floor_decal/spline/fancy/wood/cee,
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/grass/alt,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
+"eU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
},
-/obj/structure/lattice,
-/turf/simulated/open,
-/area/hallway/crew_area)
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/security_starboard)
"eV" = (
-/obj/structure/table/wood,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
+/obj/structure/bed/stool/chair/padded/brown{
+ dir = 4
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/carpet,
-/area/crew_quarters/lounge)
+/area/crew_quarters/heads/hop/xo)
"eW" = (
-/turf/simulated/floor/tiled/dark,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
/area/security/vacantoffice)
"eX" = (
/turf/simulated/wall,
/area/medical/ward/isolation)
"eY" = (
-/obj/structure/bed/stool/chair/padded/black,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Chief Engineer"
- },
-/turf/simulated/floor/carpet/rubber,
+/obj/item/material/ashtray/bronze,
+/obj/structure/table/steel,
+/turf/simulated/floor/tiled/dark,
/area/engineering/break_room)
"eZ" = (
/obj/structure/cable/green{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/lattice/catwalk/indoor/grate,
/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor,
/area/maintenance/security_starboard)
-"fb" = (
-/obj/machinery/recharger{
- pixel_y = 3
- },
-/obj/structure/table/steel,
+"fa" = (
+/obj/effect/floor_decal/corner/blue/diagonal,
+/obj/structure/table/rack,
+/obj/item/beach_ball/holoball,
+/obj/item/beach_ball/holoball,
/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
+"fb" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 28
+ },
+/obj/effect/floor_decal/corner/yellow{
+ dir = 6
+ },
+/obj/structure/reagent_dispensers/water_cooler,
+/turf/simulated/floor/tiled,
/area/engineering/break_room)
"fc" = (
/turf/simulated/wall/r_wall,
@@ -2378,12 +2775,31 @@
},
/turf/simulated/floor/wood,
/area/bridge/minibar)
-"fg" = (
+"fe" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
+"ff" = (
+/obj/structure/railing/mapped{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/lounge)
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
+"fg" = (
+/turf/simulated/open,
+/area/horizon/stairwell/central)
"fh" = (
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/reinforced,
@@ -2404,22 +2820,36 @@
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
"fj" = (
-/obj/structure/table/wood,
-/obj/item/modular_computer/laptop/preset/representative{
- pixel_x = -1;
- pixel_y = 5
+/obj/effect/map_effect/wingrille_spawn/reinforced/polarized{
+ id = "hop"
},
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/item/material/ashtray/bronze{
- pixel_y = 10
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "bridge blast";
+ name = "Bridge Blast Doors";
+ opacity = 0
},
-/turf/simulated/floor/carpet/rubber,
-/area/lawoffice/representative)
+/turf/simulated/floor,
+/area/crew_quarters/heads/hop/xo)
"fk" = (
-/obj/structure/railing/mapped,
-/obj/structure/lattice,
-/turf/simulated/open,
-/area/hallway/crew_area)
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"fl" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/wood,
@@ -2434,6 +2864,13 @@
/obj/effect/floor_decal/corner/blue/full{
dir = 4
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/tiled/dark,
/area/bridge/meeting_room)
"fo" = (
@@ -2456,7 +2893,7 @@
/area/maintenance/engineering_ladder)
"fq" = (
/turf/simulated/wall,
-/area/crew_quarters/cafeteria)
+/area/horizon/deck_three/cafeteria)
"fr" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
@@ -2469,6 +2906,13 @@
},
/turf/simulated/floor/tiled/white,
/area/hallway/medical/upper)
+"fs" = (
+/obj/effect/floor_decal/corner/red/full{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
"ft" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -2494,6 +2938,18 @@
},
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
+"fv" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"fw" = (
+/obj/machinery/vending/coffee,
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck - Fitness Center Lounge";
+ dir = 8
+ },
+/turf/simulated/floor/carpet/art,
+/area/horizon/crew_quarters/fitness/lounge)
"fx" = (
/turf/simulated/wall/r_wall,
/area/bridge/bridge_crew)
@@ -2506,11 +2962,22 @@
name = "Security - Investigations Office"
})
"fz" = (
-/obj/item/storage/box/fancy/donut{
- pixel_y = 5
+/obj/machinery/requests_console{
+ department = "Engineering";
+ departmentType = 1;
+ name = "Engineering RC";
+ pixel_x = 32
},
-/obj/structure/table/steel,
-/turf/simulated/floor/tiled/dark,
+/obj/effect/floor_decal/corner/yellow{
+ dir = 6
+ },
+/obj/structure/bed/stool/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Engineering Apprentice"
+ },
+/turf/simulated/floor/tiled,
/area/engineering/break_room)
"fA" = (
/obj/structure/cable/green{
@@ -2525,26 +2992,19 @@
/turf/simulated/floor/tiled,
/area/security/investigations_storage)
"fB" = (
-/obj/machinery/light/small/emergency,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/table/wood,
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
-/turf/simulated/floor/tiled/dark,
-/area/bridge/selfdestruct)
+/turf/simulated/floor/carpet,
+/area/lawoffice/consular)
"fC" = (
-/obj/structure/railing/mapped{
- dir = 1
- },
-/obj/structure/lattice,
/turf/simulated/open,
/area/engineering/break_room)
-"fE" = (
-/obj/machinery/light/small/emergency{
- dir = 1
- },
-/obj/machinery/anti_bluespace,
-/turf/simulated/floor/tiled/dark,
-/area/bridge/selfdestruct)
+"fD" = (
+/obj/machinery/telecomms/server/presets/command,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
"fF" = (
/obj/effect/floor_decal/corner/paleblue/diagonal,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -2560,44 +3020,42 @@
dir = 10
},
/obj/machinery/light,
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"fH" = (
+/obj/machinery/hologram/holopad,
/obj/structure/cable/green{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/maintenance{
- req_access = null;
- req_one_access = list(12,66)
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor,
-/area/maintenance/bridge)
+/turf/simulated/floor/carpet,
+/area/lawoffice/consular)
"fI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"fJ" = (
/turf/simulated/open,
/area/turbolift/primary/deck_3)
"fK" = (
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 5
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 2
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ name = "Pool"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/structure/table/standard,
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
+/area/horizon/crew_quarters/fitness/pool)
"fL" = (
/obj/machinery/atmospherics/binary/pump{
dir = 8
},
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark,
/area/maintenance/aux_atmospherics/deck_3)
"fM" = (
@@ -2616,37 +3074,52 @@
/turf/simulated/floor/tiled,
/area/security/investigations)
"fN" = (
-/obj/structure/lattice,
-/obj/machinery/light{
- dir = 8
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
},
-/turf/simulated/open,
-/area/engineering/break_room)
+/obj/structure/table/rack,
+/obj/random/loot,
+/turf/simulated/floor,
+/area/maintenance/bridge)
"fO" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_x = -24;
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/industrial/loading/yellow,
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark,
/area/crew_armory)
"fP" = (
-/obj/effect/floor_decal/corner_wide/blue/full{
- dir = 1
- },
-/obj/structure/flora/pottedplant{
- icon_state = "plant-29"
- },
-/obj/machinery/light{
- dir = 1
+/obj/machinery/vending/cola,
+/obj/effect/floor_decal/corner/green{
+ dir = 6
},
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
-"fR" = (
-/obj/machinery/light{
+/area/horizon/crew_quarters/fitness/hallway)
+"fQ" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/tiled/dark,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"fR" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle/scc_space_ship,
+/obj/machinery/door/blast/shutters/open{
+ name = "Viewing Shutter";
+ id = "shutters_deck3_engibreakwindows"
+ },
+/turf/simulated/floor/plating,
/area/engineering/break_room)
"fS" = (
/obj/effect/floor_decal/spline/fancy/wood/corner{
@@ -2655,26 +3128,37 @@
/obj/effect/floor_decal/spline/fancy/wood{
dir = 6
},
-/obj/structure/flora/pottedplant/random,
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
"fT" = (
/obj/structure/table/wood,
-/obj/effect/floor_decal/industrial/outline/blue,
/obj/item/folder/blue,
/obj/item/pen,
/turf/simulated/floor/tiled/dark,
/area/bridge/meeting_room)
"fU" = (
-/obj/effect/floor_decal/corner/red/diagonal,
/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/lattice,
+/obj/structure/railing/mapped,
+/turf/simulated/open,
+/area/horizon/hallway/deck_three/primary/starboard)
+"fV" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = list(11, 24)
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 1
},
-/obj/structure/table/reinforced/wood,
-/obj/item/storage/box/fancy/cigarettes/cigar,
-/obj/item/storage/box/fancy/cigarettes/cigar,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
"fW" = (
/obj/structure/railing/mapped,
/obj/effect/floor_decal/corner/blue{
@@ -2689,28 +3173,20 @@
/turf/simulated/floor/tiled/dark,
/area/bridge)
"fX" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 8
- },
-/turf/simulated/floor/bluegrid{
- name = "Mainframe Base";
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
- },
+/obj/machinery/telecomms/bus/preset_two,
+/turf/simulated/floor/bluegrid,
/area/tcommsat/chamber)
"fY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/effect/floor_decal/corner/red/full{
- dir = 1
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
},
/obj/effect/floor_decal/spline/plain{
dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/turf/simulated/floor/lino/grey,
+/area/horizon/deck_three/cafeteria)
"fZ" = (
/obj/structure/table/standard,
/obj/item/device/flashlight/lamp{
@@ -2727,6 +3203,19 @@
},
/turf/simulated/floor/tiled,
/area/security/investigations_storage)
+"ga" = (
+/obj/machinery/door/airlock/glass_security{
+ req_one_access = list(1, 19);
+ name = "Crew Armoury"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_armory)
"gb" = (
/obj/structure/bed/stool/chair/office/bridge,
/obj/item/device/radio/intercom{
@@ -2737,38 +3226,59 @@
/turf/simulated/floor/carpet/rubber,
/area/bridge)
"gc" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/effect/floor_decal/corner/green{
+ dir = 10
},
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck - Auxiliary Medical Entrance";
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"gd" = (
-/obj/machinery/telecomms/processor/preset_three,
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
- },
+/obj/machinery/telecomms/server/presets/service,
+/turf/simulated/floor/bluegrid,
/area/tcommsat/chamber)
"ge" = (
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/structure/closet/crate{
+ name = "Emergency Fuel"
+ },
+/obj/item/stack/material/phoron,
+/obj/item/stack/material/phoron,
+/obj/item/stack/material/phoron,
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 32
+ },
+/obj/machinery/vending/wallmed1{
+ pixel_x = 32
+ },
+/obj/item/clothing/gloves/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
+"gf" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access = null;
+ req_one_access = list(11, 24)
},
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering{
- name = "Command Substation";
- req_access = list(11,24)
- },
-/turf/simulated/floor,
-/area/maintenance/substation/command)
-"gf" = (
-/obj/structure/railing/mapped,
-/obj/structure/lattice,
-/turf/simulated/open,
+/turf/simulated/floor/tiled,
/area/engineering/break_room)
"gg" = (
/obj/structure/bed/stool/chair/office/dark{
@@ -2777,21 +3287,39 @@
/obj/effect/landmark/start{
name = "Engineer"
},
-/turf/simulated/floor/carpet/rubber,
+/turf/simulated/floor/tiled/dark,
/area/engineering/break_room)
+"gh" = (
+/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;
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/shutters{
+ dir = 8;
+ id = "shutters_deck3_tcom";
+ name = "Viewing Shutter"
+ },
+/turf/simulated/floor,
+/area/tcommsat/entrance)
"gi" = (
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
/area/tcommsat/chamber)
"gj" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/canister/air/airlock,
/obj/machinery/door/window{
dir = 1
},
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
/turf/simulated/floor,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"gk" = (
/obj/effect/floor_decal/spline/fancy/wood{
dir = 8
@@ -2807,16 +3335,25 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"gm" = (
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 9
- },
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
+/area/horizon/crew_quarters/fitness/hallway)
+"gn" = (
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/obj/structure/railing/mapped{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/horizon/hallway/deck_three/primary/starboard)
"go" = (
/obj/effect/floor_decal/corner_wide/paleblue{
dir = 5
@@ -2837,6 +3374,16 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/investigations)
+"gr" = (
+/obj/machinery/door/firedoor,
+/obj/structure/grille,
+/obj/structure/window/shuttle/scc_space_ship,
+/obj/machinery/door/blast/shutters/open{
+ id = "shutters_deck3_lounge";
+ name = "Viewing Shutters"
+ },
+/turf/simulated/floor/plating,
+/area/horizon/crew_quarters/fitness/lounge)
"gs" = (
/obj/effect/floor_decal/corner/blue/diagonal,
/obj/structure/disposalpipe/segment{
@@ -2852,23 +3399,30 @@
/obj/structure/cable/green{
icon_state = "1-8"
},
-/obj/machinery/status_display{
- pixel_y = -32
- },
-/turf/simulated/floor/tiled/white,
+/turf/simulated/floor/tiled,
/area/bridge)
+"gt" = (
+/obj/structure/bed/stool/chair/padded/brown{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Passenger"
+ },
+/turf/simulated/floor/carpet/art,
+/area/crew_quarters/lounge)
"gu" = (
-/obj/machinery/door/airlock/maintenance{
- req_one_access = list(12)
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 1
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor,
-/area/maintenance/security_starboard)
+/obj/structure/table/wood,
+/obj/machinery/newscaster{
+ pixel_x = -32
+ },
+/turf/simulated/floor/wood,
+/area/horizon/hallway/deck_three/primary/starboard)
"gv" = (
/obj/machinery/door/airlock/medical{
name = "Staff Facilities";
@@ -2903,24 +3457,25 @@
/turf/simulated/floor,
/area/crew_quarters/captain)
"gy" = (
-/obj/machinery/atmospherics/unary/freezer{
- dir = 8;
- icon_state = "freezer_1";
- set_temperature = 73;
- use_power = 1
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
},
-/turf/simulated/floor/carpet/rubber,
-/area/tcommsat/entrance)
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"gz" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner/paleblue/diagonal,
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"gA" = (
/obj/structure/railing/mapped{
dir = 8
@@ -2936,6 +3491,15 @@
},
/turf/simulated/floor/tiled/dark,
/area/bridge/meeting_room)
+"gC" = (
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
"gD" = (
/obj/structure/table/standard,
/obj/item/device/flashlight/lamp,
@@ -2952,25 +3516,15 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
-"gF" = (
-/obj/structure/railing/mapped{
- dir = 4
- },
-/obj/effect/floor_decal/spline/plain{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/ramp,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"gG" = (
-/obj/machinery/atmospherics/pipe/simple/visible/universal{
- dir = 4
+/obj/structure/cable/green{
+ icon_state = "2-8"
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
/area/maintenance/aux_atmospherics/deck_3)
"gH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -2983,10 +3537,31 @@
icon_state = "4-8"
},
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"gI" = (
/turf/simulated/wall,
/area/bridge/bridge_crew)
+"gJ" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -28
+ },
+/turf/simulated/floor/carpet/rubber,
+/area/horizon/crew_quarters/fitness/gym)
+"gK" = (
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light/small/emergency,
+/turf/simulated/floor,
+/area/maintenance/engineering_ladder)
"gL" = (
/obj/effect/floor_decal/spline/plain{
dir = 4
@@ -3001,44 +3576,51 @@
/turf/simulated/floor/tiled,
/area/bridge)
"gM" = (
-/obj/structure/closet/athletic_mixed,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/locker)
+/obj/structure/closet/secure_closet/personal,
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/fitness/changing)
"gN" = (
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/effect/floor_decal/corner/paleblue,
-/obj/effect/floor_decal/corner/paleblue{
+/obj/effect/floor_decal/corner/green/full{
dir = 4
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"gO" = (
/obj/effect/floor_decal/corner/paleblue{
dir = 10
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 6
},
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/hallway/secondary/entry/emergency)
"gP" = (
-/obj/effect/floor_decal/corner/paleblue{
- dir = 5
- },
-/obj/machinery/vending/coffee,
/obj/machinery/light{
dir = 1
},
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"gQ" = (
/obj/effect/floor_decal/spline/fancy/wood,
/obj/machinery/alarm{
@@ -3049,11 +3631,8 @@
/turf/simulated/floor/wood,
/area/security/vacantoffice2)
"gR" = (
-/obj/structure/bed/stool/chair/padded/black,
-/obj/effect/landmark/start{
- name = "Engineering Apprentice"
- },
-/turf/simulated/floor/tiled/dark,
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/turf/simulated/floor/tiled,
/area/engineering/break_room)
"gS" = (
/obj/structure/window/shuttle/scc_space_ship,
@@ -3069,14 +3648,34 @@
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
"gT" = (
-/obj/structure/bookcase/manuals/engineering{
- opacity = 0
+/obj/effect/floor_decal/corner/green{
+ dir = 5
},
-/obj/item/book/manual/atmospipes,
-/obj/item/book/manual/wiki/engineering_guide,
-/obj/item/book/manual/supermatter_engine,
-/turf/simulated/floor/tiled/dark,
-/area/engineering/break_room)
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/sign/directions/cryo{
+ dir = 1;
+ pixel_y = 36
+ },
+/obj/structure/sign/directions/com{
+ pixel_y = 28;
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"gU" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet/art,
+/area/horizon/crew_quarters/fitness/lounge)
"gV" = (
/obj/effect/floor_decal/spline/plain,
/obj/effect/floor_decal/corner/blue{
@@ -3105,57 +3704,78 @@
/turf/simulated/floor/plating,
/area/crew_quarters/lounge)
"gX" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/machinery/light{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/table/standard,
+/obj/structure/bedsheetbin{
+ pixel_y = 7
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo/dormitories)
+"gY" = (
+/obj/machinery/light/small/emergency{
dir = 1
},
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"gY" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
- },
-/area/tcommsat/chamber)
+/turf/simulated/floor,
+/area/maintenance/bridge)
"gZ" = (
-/obj/machinery/telecomms/server/presets/common,
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
- },
-/area/tcommsat/chamber)
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/maintenance/aux_atmospherics/deck_3)
"ha" = (
-/obj/structure/bed/stool/chair/office/light{
- dir = 8
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner/blue/diagonal,
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/carpet/rubber,
-/area/tcommsat/entrance)
-"hb" = (
-/obj/structure/railing/mapped{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
-/turf/simulated/open,
-/area/engineering/break_room)
-"hd" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"hb" = (
+/obj/structure/railing/mapped{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
+"hc" = (
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/structure/punching_bag,
+/obj/effect/floor_decal/corner/red/full{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = 25
+ },
/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
+"hd" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
/area/security/vacantoffice)
"he" = (
/obj/effect/floor_decal/corner/paleblue{
@@ -3164,11 +3784,16 @@
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
"hf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
-/turf/simulated/floor/tiled/dark,
-/area/engineering/break_room)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor,
+/area/maintenance/engineering_ladder)
"hg" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/corner/paleblue{
@@ -3186,12 +3811,12 @@
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
"hh" = (
-/obj/machinery/telecomms/relay/preset/telecomms,
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+/obj/machinery/atmospherics/binary/pump/on{
+ name = "Distro to Airlock";
+ target_pressure = 200
},
-/area/tcommsat/chamber)
+/turf/simulated/floor,
+/area/maintenance/bridge)
"hi" = (
/obj/item/modular_computer/console/preset/medical,
/obj/effect/floor_decal/corner_wide/green{
@@ -3210,15 +3835,23 @@
/turf/simulated/floor/tiled/white,
/area/hallway/medical/upper)
"hk" = (
-/obj/item/pen,
-/obj/item/paper_bin,
-/obj/structure/table/steel,
-/obj/machinery/camera/network/engineering{
- c_tag = "Engineering - Meeting Room";
- dir = 1
+/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
+/obj/machinery/door/blast/shutters{
+ name = "Viewing Shutter";
+ id = "shutters_deck3_engibreak"
},
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor,
/area/engineering/break_room)
+"hl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance_hatch{
+ req_one_access = list(12)
+ },
+/turf/simulated/floor,
+/area/maintenance/engineering_ladder)
"hm" = (
/obj/effect/floor_decal/spline/fancy/wood{
dir = 1
@@ -3226,27 +3859,26 @@
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
"hn" = (
-/obj/item/folder/yellow,
-/obj/structure/table/steel,
-/turf/simulated/floor/tiled/dark,
-/area/engineering/break_room)
-"hp" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/effect/floor_decal/corner/yellow{
+ dir = 8
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/effect/floor_decal/spline/plain{
dir = 4
},
/obj/structure/cable/green{
- icon_state = "4-8"
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
+"hp" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor,
/area/maintenance/security_starboard)
"hq" = (
@@ -3259,7 +3891,7 @@
/obj/machinery/door/airlock/glass_command{
id_tag = "";
name = "Bridge Officer Preparation";
- req_one_access = list(19,38,72)
+ req_access = list(19)
},
/turf/simulated/floor/tiled,
/area/bridge/bridge_crew)
@@ -3279,13 +3911,13 @@
/obj/structure/cable/green{
icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/maintenance{
name = "Security Maintenance";
req_access = list(63)
},
-/turf/simulated/floor,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
/area/security/investigations)
"hu" = (
/obj/structure/cable/green{
@@ -3294,13 +3926,22 @@
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
/area/bridge)
"hv" = (
-/obj/structure/table/steel,
-/obj/item/storage/box/fancy/crayons/chalkbox,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 32
+/obj/machinery/door/airlock/engineering{
+ name = "Deck 3 Civilian Substation";
+ req_one_access = list(11, 24)
},
-/turf/simulated/floor/tiled/dark,
-/area/engineering/break_room)
+/obj/machinery/door/firedoor,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/civilian_east)
+"hw" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"hx" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -3316,6 +3957,12 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/investigations)
+"hy" = (
+/obj/machinery/deployable/barrier,
+/obj/effect/floor_decal/corner/blue/diagonal,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/crew_armory)
"hz" = (
/obj/structure/bed/stool/chair/padded/black{
dir = 8
@@ -3326,28 +3973,34 @@
/turf/simulated/floor/tiled,
/area/bridge)
"hA" = (
-/obj/machinery/newscaster{
+/obj/machinery/power/apc/hyper{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/tiled/dark,
+/area/bridge/selfdestruct)
+"hB" = (
+/obj/machinery/button/remote/airlock{
+ id = "sat2";
+ name = "Scuttling Device Bolts";
+ req_access = list(20);
+ specialfunctions = 4;
+ pixel_x = -32;
+ dir = 4
+ },
+/obj/machinery/light/small/emergency{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/hatch/red,
+/obj/structure/sign/securearea{
pixel_y = -32
},
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/wood,
-/area/lawoffice/consular)
-"hB" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
},
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/bridge/selfdestruct)
"hC" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/corner/paleblue{
@@ -3361,17 +4014,28 @@
pixel_x = -24
},
/obj/structure/cable/green{
- d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
icon_state = "0-2"
},
-/obj/structure/cable/green,
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
+"hD" = (
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/structure/punching_bag,
+/obj/effect/floor_decal/corner/red{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
"hE" = (
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -3381,26 +4045,15 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/door/airlock/hatch{
- desc = "It opens and closes. It has a small sign engraved: Bunker capacity: 6. Only facility's Command Staff is permitted.";
- name = "Rear Bunker Access";
- req_access = list(20);
- secured_wires = 1
+/obj/effect/floor_decal/corner/blue/full,
+/turf/simulated/floor/tiled,
+/area/bridge)
+"hF" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 4
},
/turf/simulated/floor/tiled,
-/area/crew_quarters/captain)
-"hF" = (
-/obj/structure/bed/stool/chair/office/bridge{
- dir = 8
- },
-/obj/effect/floor_decal/corner/blue{
- dir = 6
- },
-/obj/effect/landmark/start{
- name = "Executive Officer"
- },
-/turf/simulated/floor/tiled/dark,
-/area/bridge/meeting_room)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"hG" = (
/obj/effect/floor_decal/spline/fancy/wood{
dir = 10
@@ -3414,59 +4067,93 @@
/area/security/forensics_office{
name = "Security - Investigations Office"
})
+"hI" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor,
+/area/maintenance/security_starboard)
"hK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
+/area/horizon/crew_quarters/fitness/hallway)
"hL" = (
/obj/machinery/door/firedoor,
+/obj/structure/lattice/catwalk/indoor/grate,
/obj/machinery/door/airlock/maintenance{
req_one_access = list(12)
},
/turf/simulated/floor,
-/area/hallway/primary/starboard)
+/area/maintenance/engineering_ladder)
"hM" = (
-/obj/machinery/computer/telecomms/server{
- dir = 4;
- network = "tcommsat"
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
},
-/turf/simulated/floor/carpet/rubber,
-/area/tcommsat/entrance)
-"hN" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/light/small/emergency{
- dir = 8
- },
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor,
-/area/maintenance/security_starboard)
-"hP" = (
-/obj/structure/closet/secure_closet/personal,
-/obj/machinery/newscaster{
- pixel_x = -32
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/locker)
-"hQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/effect/floor_decal/spline/plain/corner{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 5
+ },
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/locker)
+/area/tcommsat/chamber)
+"hN" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/lino/grey,
+/area/horizon/deck_three/cafeteria)
+"hP" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/fitness/changing)
+"hQ" = (
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/fitness/changing)
"hR" = (
/obj/structure/window/shuttle/scc_space_ship,
/obj/structure/grille,
@@ -3481,26 +4168,28 @@
/turf/simulated/floor/plating,
/area/bridge/minibar)
"hS" = (
+/obj/machinery/light/small/emergency{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
/obj/structure/cable/green{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/light/small/emergency{
- dir = 1
- },
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor,
/area/maintenance/security_starboard)
"hT" = (
-/obj/machinery/firealarm/east,
-/obj/item/modular_computer/console/preset/security{
- dir = 8
+/obj/machinery/door/airlock/glass{
+ name = "Holodeck"
},
+/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
+/area/horizon/crew_quarters/fitness/hallway)
"hU" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -3510,22 +4199,15 @@
/obj/machinery/door/firedoor/multi_tile,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/tiled,
/area/hallway/primary/port)
-"hV" = (
-/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
- dir = 9
- },
-/turf/simulated/floor,
-/area/tcommsat/entrance)
"hW" = (
/obj/effect/floor_decal/corner/paleblue{
dir = 10
},
/obj/machinery/atmospherics/pipe/manifold/hidden,
/obj/machinery/camera/network/third_deck{
- c_tag = "Third Deck - Emergency Service Dock";
+ c_tag = "Third Deck - Emergency Service Dock Port";
dir = 1
},
/turf/simulated/floor/tiled,
@@ -3554,20 +4236,25 @@
dir = 6
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"hZ" = (
-/obj/structure/table/standard,
-/obj/item/stock_parts/micro_laser,
-/obj/item/stock_parts/manipulator,
-/obj/item/stock_parts/manipulator,
-/obj/item/stock_parts/manipulator,
-/obj/item/stock_parts/manipulator,
-/obj/item/stock_parts/capacitor,
-/obj/item/stock_parts/micro_laser/high,
-/obj/item/stock_parts/micro_laser/high,
-/obj/item/stock_parts/micro_laser/high,
-/obj/item/stock_parts/micro_laser/high,
-/turf/simulated/floor,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 5
+ },
+/obj/structure/sign/nosmoking_2{
+ pixel_y = 32
+ },
+/obj/structure/coatrack{
+ pixel_y = 25;
+ pixel_x = -10
+ },
+/obj/machinery/computer/arcade/battle,
+/turf/simulated/floor/carpet/rubber,
/area/tcommsat/entrance)
"ia" = (
/obj/structure/table/wood,
@@ -3582,18 +4269,12 @@
name = "Security - Investigations Office"
})
"ib" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/locker)
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/fitness/changing)
"ic" = (
/obj/machinery/ringer_button{
id = "investigation_ringer";
@@ -3610,79 +4291,103 @@
/turf/simulated/floor/tiled,
/area/security/investigations)
"id" = (
-/obj/structure/cable/green{
- icon_state = "2-8"
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
},
-/turf/simulated/floor/tiled/dark,
+/obj/structure/cable/green,
+/obj/structure/table/standard,
+/obj/item/paper_scanner,
+/obj/item/pen,
+/obj/item/folder/white,
+/obj/item/folder/blue,
+/obj/effect/floor_decal/corner/beige{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
/area/security/vacantoffice)
"ie" = (
/obj/effect/floor_decal/corner/paleblue{
- dir = 4
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
},
-/obj/effect/floor_decal/corner/paleblue,
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/hallway/secondary/entry/emergency)
"if" = (
/obj/structure/cable/green{
icon_state = "2-4"
},
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor,
/area/maintenance/security_starboard)
"ig" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
+/obj/structure/railing/mapped,
+/obj/effect/floor_decal/corner/green/diagonal,
/obj/effect/floor_decal/spline/plain{
- dir = 1
+ dir = 10
},
-/obj/effect/floor_decal/corner/grey/diagonal{
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/fitness/changing)
+"ih" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/light/small/emergency{
dir = 8
},
-/obj/machinery/recharge_station,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
-"ih" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor,
/area/maintenance/substation/command)
-"ik" = (
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 6
+"ii" = (
+/obj/machinery/disposal/small/north,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
},
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 1
+/obj/effect/floor_decal/corner/green/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo/dormitories)
+"ij" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 9
},
-/obj/machinery/light{
+/obj/machinery/disposal/small/east,
+/obj/structure/disposalpipe/trunk{
dir = 4
},
+/obj/machinery/firealarm/west,
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
+/area/horizon/crew_quarters/fitness/hallway)
+"ik" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/obj/structure/bed/stool/chair{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
"il" = (
/obj/effect/floor_decal/corner/green/diagonal,
/obj/structure/cable/green{
@@ -3709,36 +4414,29 @@
/turf/simulated/floor/tiled/white,
/area/medical/ward/isolation)
"im" = (
-/obj/effect/floor_decal/corner/paleblue{
- dir = 5
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Deck 3 Port Docks"
},
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"in" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/door/window/southleft,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 1
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor,
-/area/hallway/primary/starboard)
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"in" = (
+/obj/structure/railing/mapped,
+/turf/simulated/open,
+/area/horizon/hallway/deck_three/primary/starboard)
"io" = (
-/obj/effect/floor_decal/corner/paleblue{
+/obj/machinery/vending/cola,
+/obj/effect/floor_decal/corner/green{
dir = 9
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = -25
- },
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"ip" = (
/obj/structure/window/shuttle/scc_space_ship,
/obj/structure/grille,
@@ -3762,25 +4460,52 @@
/turf/simulated/wall/r_wall,
/area/security/investigations)
"ir" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -28
+/obj/effect/floor_decal/corner/green{
+ dir = 9
},
+/obj/effect/floor_decal/industrial/outline/yellow,
/obj/structure/closet/emcloset,
-/obj/item/crowbar/red,
/obj/item/storage/toolbox/emergency,
+/obj/item/crowbar/red,
/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/cryo)
+/area/horizon/crew_quarters/cryo)
"is" = (
-/turf/simulated/floor/carpet/rubber,
-/area/lawoffice/representative)
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop/xo)
"it" = (
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
+/area/horizon/crew_quarters/fitness/hallway)
"iu" = (
/obj/structure/table/rack,
/obj/item/circuitboard/telecomms/processor,
@@ -3791,44 +4516,52 @@
/obj/item/circuitboard/telecomms/bus,
/obj/item/circuitboard/telecomms/bus,
/obj/item/circuitboard/telecomms/broadcaster,
-/turf/simulated/floor,
+/obj/effect/floor_decal/spline/plain{
+ dir = 9
+ },
+/obj/machinery/button/remote/blast_door{
+ name = "Viewing Shutter";
+ pixel_x = -32;
+ dir = 4;
+ id = "shutters_deck3_tcom"
+ },
+/obj/item/circuitboard/telecomms/relay,
+/obj/item/circuitboard/ntnet_relay,
+/turf/simulated/floor/carpet/rubber,
/area/tcommsat/entrance)
"iv" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/structure/cable/green{
- icon_state = "2-8"
+/obj/structure/flora/pottedplant/random,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
},
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
- },
-/area/tcommsat/chamber)
+/obj/machinery/firealarm/east,
+/obj/machinery/light,
+/turf/simulated/floor/wood,
+/area/crew_quarters/lounge)
"iw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
/obj/structure/cable/green{
- icon_state = "2-4"
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/structure/lattice/catwalk,
-/turf/simulated/open,
-/area/hallway/crew_area)
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"ix" = (
/obj/machinery/light{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/effect/floor_decal/corner/blue{
dir = 8
},
/obj/structure/closet/emcloset,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
+ },
/turf/simulated/floor/tiled,
/area/bridge)
"iy" = (
@@ -3839,11 +4572,8 @@
dir = 8
},
/turf/simulated/open,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"iz" = (
-/obj/machinery/light{
- dir = 4
- },
/obj/structure/flora/pottedplant/random,
/obj/effect/floor_decal/corner_wide/green/full{
dir = 4
@@ -3893,8 +4623,17 @@
/turf/simulated/floor/tiled/dark,
/area/bridge)
"iD" = (
-/obj/structure/closet/malf/suits,
-/turf/simulated/floor,
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/obj/item/toy/figure/janitor{
+ pixel_x = -6
+ },
+/obj/item/toy/figure/dsquad{
+ pixel_x = 5
+ },
+/obj/structure/table/standard,
+/turf/simulated/floor/carpet/rubber,
/area/tcommsat/entrance)
"iE" = (
/obj/structure/cable/green{
@@ -3903,25 +4642,46 @@
/obj/structure/cable/green{
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -28;
+ req_one_access = list(24,11,55)
+ },
/turf/simulated/floor,
/area/maintenance/bridge)
"iF" = (
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
/area/bridge/third_deck_stairs)
"iG" = (
-/obj/structure/table/standard,
/obj/item/stock_parts/subspace/treatment,
/obj/item/stock_parts/subspace/treatment,
/obj/item/stock_parts/subspace/treatment,
-/turf/simulated/floor,
+/obj/structure/table/steel,
+/obj/structure/sign/electricshock{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/camera/network/telecom{
+ c_tag = "Telecomms - Spare Parts Room"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/carpet/rubber,
/area/tcommsat/entrance)
+"iH" = (
+/obj/effect/floor_decal/corner_wide/blue{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/pool)
"iI" = (
/obj/effect/floor_decal/spline/plain,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -3955,71 +4715,131 @@
/turf/simulated/floor/tiled/dark,
/area/security/vacantoffice2)
"iL" = (
-/obj/machinery/status_display{
- layer = 4;
- pixel_y = 32
+/obj/machinery/light{
+ dir = 8
},
-/obj/machinery/computer/robotics,
-/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
-"iM" = (
/obj/structure/table/standard,
+/obj/structure/flora/pottedplant/random{
+ pixel_y = 12
+ },
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"iM" = (
/obj/item/stock_parts/subspace/transmitter,
/obj/item/stock_parts/subspace/transmitter,
-/turf/simulated/floor,
+/obj/structure/table/steel,
+/obj/machinery/light,
+/obj/effect/floor_decal/spline/plain,
+/obj/item/stock_parts/subspace/analyzer,
+/obj/item/stock_parts/subspace/analyzer,
+/obj/item/stock_parts/subspace/analyzer,
+/obj/item/stock_parts/subspace/transmitter,
+/turf/simulated/floor/carpet/rubber,
/area/tcommsat/entrance)
"iN" = (
-/obj/structure/table/standard,
-/obj/item/stock_parts/subspace/analyzer,
-/obj/item/stock_parts/subspace/analyzer,
-/obj/item/stock_parts/subspace/analyzer,
-/turf/simulated/floor,
+/obj/structure/table/steel,
+/obj/effect/floor_decal/spline/plain,
+/obj/item/stock_parts/subspace/filter,
+/obj/item/stock_parts/subspace/filter,
+/obj/item/stock_parts/subspace/filter,
+/obj/item/stock_parts/subspace/crystal,
+/obj/item/stock_parts/subspace/crystal,
+/obj/item/stock_parts/subspace/crystal,
+/turf/simulated/floor/carpet/rubber,
/area/tcommsat/entrance)
"iO" = (
-/obj/structure/table/standard,
-/obj/item/stock_parts/subspace/crystal,
-/obj/item/stock_parts/subspace/crystal,
-/obj/item/stock_parts/subspace/crystal,
-/obj/machinery/light,
-/turf/simulated/floor,
-/area/tcommsat/entrance)
-"iP" = (
-/obj/structure/table/standard,
-/obj/item/stock_parts/subspace/amplifier,
-/obj/item/stock_parts/subspace/amplifier,
-/obj/item/stock_parts/subspace/amplifier,
-/turf/simulated/floor,
-/area/tcommsat/entrance)
-"iQ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table/rack,
-/turf/simulated/floor,
-/area/maintenance/bridge)
-"iR" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/corner/green{
+/obj/structure/table/steel,
+/obj/effect/floor_decal/spline/plain,
+/obj/item/stock_parts/micro_laser,
+/obj/item/stock_parts/manipulator,
+/obj/item/stock_parts/manipulator,
+/obj/item/stock_parts/manipulator,
+/obj/item/stock_parts/manipulator,
+/obj/item/stock_parts/capacitor,
+/obj/item/stock_parts/micro_laser/high,
+/obj/item/stock_parts/micro_laser/high,
+/obj/item/stock_parts/micro_laser/high,
+/obj/item/stock_parts/micro_laser/high,
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
dir = 5
},
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/turf/simulated/floor/carpet/rubber,
+/area/tcommsat/entrance)
+"iP" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/table/steel,
+/obj/item/device/multitool,
+/obj/item/device/multitool,
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 8;
+ name = "Canister to Telecommunications Server Hall"
+ },
+/turf/simulated/floor/carpet/rubber,
+/area/tcommsat/entrance)
+"iQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/bed/stool/chair/padded/brown,
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/carpet,
+/area/lawoffice/consular)
+"iR" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Deck 3 Civilian Substation";
+ req_one_access = list(11, 24)
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/civilian_east)
"iS" = (
-/obj/effect/floor_decal/corner/blue/diagonal,
-/obj/structure/railing/mapped,
-/turf/simulated/floor/tiled,
-/area/bridge/aibunker)
-"iU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/effect/floor_decal/corner/blue{
dir = 9
},
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/bridge)
+"iT" = (
+/obj/machinery/alarm{
+ req_one_access = list(24,11,55);
+ pixel_y = -28;
+ dir = 1
+ },
+/obj/structure/bed/stool/chair/padded/brown{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/full{
+ dir = 4
+ },
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck - Starboard Aft Lounge";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/port)
+"iU" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+ dir = 4
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop/xo)
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"iV" = (
/obj/effect/floor_decal/spline/plain/corner{
dir = 8
@@ -4039,15 +4859,20 @@
/turf/simulated/floor/tiled,
/area/bridge)
"iW" = (
-/obj/structure/table/wood,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/item/material/ashtray/bronze,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/lounge/secondary)
+/obj/effect/floor_decal/spline/fancy/wood/full,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/sunnybush,
+/turf/simulated/floor/grass/alt,
+/area/crew_quarters/lounge)
"iX" = (
-/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
+/obj/structure/window/shuttle/scc_space_ship,
+/obj/structure/grille,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/shutters/open{
+ name = "Viewing Shutter";
+ id = "shutters_deck3_engibreakwindows"
+ },
+/turf/simulated/floor/plating,
/area/engineering/break_room)
"iY" = (
/obj/structure/cable/green{
@@ -4057,25 +4882,57 @@
dir = 10
},
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"ja" = (
-/obj/structure/table/standard,
-/obj/item/stock_parts/subspace/ansible,
-/obj/item/stock_parts/subspace/ansible,
-/obj/item/stock_parts/subspace/ansible,
-/turf/simulated/floor,
-/area/tcommsat/entrance)
-"jb" = (
-/obj/structure/table/standard,
-/obj/machinery/camera/network/telecom{
- c_tag = "Telecomms - Computer Room";
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 28
+ },
+/obj/machinery/atmospherics/portables_connector{
dir = 8
},
-/obj/item/book/manual/wiki/ntsl2,
-/obj/item/paper_bin,
-/obj/item/pen,
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
/turf/simulated/floor/carpet/rubber,
/area/tcommsat/entrance)
+"jb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/obj/effect/floor_decal/sign/d,
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -24;
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/chamber)
+"jc" = (
+/obj/effect/floor_decal/corner_wide/blue,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/pool)
+"jd" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 9
+ },
+/obj/effect/floor_decal/spline/plain/corner,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/rubber,
+/area/horizon/crew_quarters/fitness/gym)
"je" = (
/obj/effect/shuttle_landmark/burglar_ship/third_deck,
/turf/template_noop,
@@ -4089,20 +4946,22 @@
/turf/simulated/floor/carpet/rubber,
/area/bridge)
"jg" = (
-/obj/effect/floor_decal/corner/grey/diagonal{
- dir = 8
+/obj/effect/floor_decal/corner/green/full{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 12
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/machinery/light/small,
+/obj/structure/mirror{
+ pixel_x = 25
},
/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
+/area/horizon/crew_quarters/fitness/showers)
"jh" = (
/obj/structure/curtain/open/shower,
/obj/machinery/shower{
@@ -4143,11 +5002,11 @@
/turf/simulated/floor/tiled/white,
/area/hallway/medical/upper)
"jl" = (
-/obj/effect/floor_decal/corner_wide/blue/full{
+/obj/effect/floor_decal/corner/green/full{
dir = 4
},
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
+/area/horizon/crew_quarters/fitness/hallway)
"jm" = (
/obj/effect/floor_decal/corner/beige/diagonal,
/obj/structure/table/glass,
@@ -4162,45 +5021,91 @@
/turf/simulated/floor/tiled/white,
/area/security/forensics_office)
"jn" = (
-/obj/effect/floor_decal/corner_wide/blue,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/simulated/floor/carpet/rubber,
+/area/horizon/crew_quarters/fitness/gym)
"jo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
-/obj/structure/cable/green{
- icon_state = "2-8"
+/obj/structure/disposalpipe/sortjunction/flipped{
+ name = "Deck 3 Cafe";
+ sortType = "Deck 3 Cafe"
},
-/obj/effect/floor_decal/corner/red{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/turf/simulated/floor/lino/grey,
+/area/horizon/deck_three/cafeteria)
"jp" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled/white,
/area/hallway/medical/upper)
"jq" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable/green{
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/railing/mapped{
+ dir = 1
},
-/obj/structure/disposalpipe/sortjunction/flipped{
- dir = 8;
- name = "XO Office";
- sortType = "XO Office"
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
+"jr" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/purple/full{
+ dir = 8
+ },
+/obj/structure/closet/crate/hydroponics,
+/obj/item/storage/bag/plants,
+/obj/item/wirecutters/clippers,
+/obj/item/material/minihoe,
+/obj/item/material/hatchet,
+/obj/item/reagent_containers/glass/bucket,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/deck_three/nature_showcase)
"js" = (
-/turf/simulated/open,
-/area/hallway/crew_area)
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Cryogenic Storage"
+ },
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/cryo)
+"jt" = (
+/obj/machinery/telecomms/bus/preset_four,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"ju" = (
+/obj/effect/floor_decal/corner/green/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo/dormitories)
"jv" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -4217,20 +5122,25 @@
/turf/simulated/floor/tiled,
/area/security/investigations)
"jw" = (
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 10
+/obj/structure/bed/stool/chair/padded/brown{
+ dir = 8
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 28
+ },
+/turf/simulated/floor/carpet/art,
+/area/horizon/crew_quarters/fitness/lounge)
"jx" = (
+/obj/effect/floor_decal/corner/paleblue/full{
+ dir = 8
+ },
/obj/effect/floor_decal/industrial/warning{
- dir = 1
+ dir = 9
},
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
"jy" = (
@@ -4247,51 +5157,54 @@
/turf/simulated/floor/tiled/white,
/area/security/forensics_office)
"jz" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/structure/lattice/catwalk/indoor/grate,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/cable/green{
+ icon_state = "1-4"
},
-/obj/structure/lattice/catwalk,
-/turf/simulated/open,
-/area/hallway/crew_area)
+/turf/simulated/floor,
+/area/maintenance/engineering_ladder)
"jA" = (
/obj/machinery/newscaster{
pixel_x = 32
},
/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/wood,
-/area/crew_quarters/lounge/secondary)
-"jB" = (
-/obj/structure/bed/stool/chair{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
/obj/effect/floor_decal/spline/fancy/wood{
- dir = 5
+ dir = 4
},
/turf/simulated/floor/wood,
-/area/hallway/primary/starboard)
+/area/crew_quarters/lounge)
+"jB" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/maintenance/aux_atmospherics/deck_3)
"jC" = (
/obj/structure/cable/green{
icon_state = "4-8"
},
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -28
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/light/small/emergency,
-/turf/simulated/floor,
-/area/maintenance/bridge)
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo)
"jD" = (
/obj/structure/railing/mapped{
dir = 4
@@ -4320,7 +5233,7 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"jF" = (
/obj/structure/sign/nosmoking_1,
/turf/simulated/wall,
@@ -4334,18 +5247,14 @@
req_access = list(66)
},
/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/white,
/area/medical/washroom)
"jH" = (
/obj/effect/floor_decal/corner/paleblue{
dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 10
- },
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"jI" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green,
@@ -4358,25 +5267,31 @@
name = "Security - Investigations Office"
})
"jJ" = (
-/obj/structure/table/wood,
-/obj/machinery/recharger,
-/obj/machinery/ringer{
- department = "Consular";
- id = "Consular";
- pixel_y = 32
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/door/firedoor,
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/door/airlock/maintenance{
+ req_one_access = list(12)
},
-/turf/simulated/floor/carpet,
-/area/lawoffice/consular)
-"jK" = (
/obj/structure/cable/green{
icon_state = "1-2"
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/light/small{
- dir = 8
- },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor,
-/area/tcommsat/entrance)
+/area/maintenance/security_starboard)
+"jL" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 6
+ },
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
"jM" = (
/obj/effect/floor_decal/corner/green/diagonal,
/obj/structure/table/standard,
@@ -4387,22 +5302,24 @@
/turf/simulated/floor/tiled/white,
/area/medical/ward/isolation)
"jN" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/structure/filingcabinet/chestdrawer,
-/obj/machinery/status_display{
+/obj/structure/sign/flag/heph{
pixel_y = 32
},
-/turf/simulated/floor/carpet,
-/area/lawoffice/consular)
+/obj/structure/sign/flag/blank{
+ pixel_x = -32;
+ name = "Orion Express flag";
+ desc = "The logo of Orion Express on a flag."
+ },
+/obj/machinery/porta_turret/stationary,
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/reinforced,
+/area/bridge/selfdestruct)
"jO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hop/xo)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"jP" = (
/obj/structure/bed/stool/chair/padded/black,
/turf/simulated/floor/tiled,
@@ -4439,45 +5356,51 @@
name = "Security - Investigations Office"
})
"jT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
/obj/structure/cable/green{
icon_state = "1-2"
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor,
+/obj/machinery/meter,
+/turf/simulated/floor/carpet/rubber,
/area/tcommsat/entrance)
-"jU" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+"jV" = (
+/obj/structure/bed/stool/chair/sofa/brown{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/lattice/catwalk,
-/turf/simulated/open,
-/area/hallway/crew_area)
+/turf/simulated/floor/carpet/art,
+/area/horizon/crew_quarters/fitness/lounge)
"jW" = (
/obj/structure/cryofeed{
dir = 4
},
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
},
/obj/structure/lattice/catwalk/indoor/grate,
+/obj/structure/railing/mapped{
+ dir = 4
+ },
/turf/simulated/floor,
-/area/crew_quarters/sleep/cryo)
+/area/horizon/crew_quarters/cryo)
+"jX" = (
+/obj/effect/floor_decal/corner/paleblue/full,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"jY" = (
-/obj/effect/map_effect/wingrille_spawn/reinforced,
-/turf/simulated/floor,
-/area/hallway/primary/starboard)
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/obj/structure/bed/stool/chair{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/horizon/deck_three/cafeteria)
"jZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -4488,40 +5411,31 @@
/turf/simulated/floor/tiled/white,
/area/hallway/medical/upper)
"ka" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/bed/stool/bar/padded/red,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/corner/red/full{
+/obj/effect/floor_decal/corner/paleblue{
dir = 8
},
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
-"kb" = (
-/obj/effect/floor_decal/corner/red{
- dir = 5
+/obj/structure/cable/green{
+ icon_state = "2-4"
},
-/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "1-8"
+/obj/structure/cable/green{
+ icon_state = "2-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
+"kb" = (
+/obj/structure/flora/pottedplant/random,
+/obj/effect/floor_decal/corner/paleblue/full{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/hallway/deck_three/primary/starboard)
"kc" = (
/obj/effect/floor_decal/corner/paleblue{
dir = 5
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/machinery/light{
dir = 1
@@ -4529,11 +5443,23 @@
/turf/simulated/floor/tiled,
/area/hallway/secondary/entry/emergency)
"kd" = (
-/obj/machinery/newscaster{
- pixel_x = 32
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 10
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hop/xo)
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"ke" = (
+/obj/effect/floor_decal/corner/blue/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
"kf" = (
/obj/structure/cable/green{
icon_state = "2-4"
@@ -4564,13 +5490,28 @@
/obj/effect/shuttle_landmark/merc_ship/dock,
/turf/simulated/floor/reinforced,
/area/template_noop)
-"kj" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 1
+"ki" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 6
},
-/turf/simulated/floor/wood,
-/area/lawoffice/representative)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
+"kj" = (
+/obj/effect/map_effect/wingrille_spawn/reinforced,
+/turf/simulated/floor,
+/area/crew_quarters/heads/hop/xo)
"kk" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -4583,14 +5524,23 @@
},
/turf/simulated/floor/tiled/white,
/area/hallway/medical/upper)
+"kl" = (
+/obj/structure/table/wood,
+/obj/item/material/ashtray/bronze{
+ pixel_y = 7;
+ pixel_x = 5
+ },
+/turf/simulated/floor/carpet/art,
+/area/horizon/crew_quarters/fitness/lounge)
"km" = (
/obj/effect/floor_decal/corner_wide/blue{
- dir = 10
+ dir = 5
+ },
+/obj/machinery/alarm{
+ pixel_y = 28
},
-/obj/item/beach_ball,
-/obj/machinery/light,
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
+/area/horizon/crew_quarters/fitness/pool)
"kn" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
@@ -4611,11 +5561,13 @@
/turf/simulated/floor/tiled/white,
/area/medical/ward)
"ko" = (
-/obj/structure/railing/mapped{
+/obj/effect/floor_decal/spline/fancy/wood/cee{
dir = 1
},
-/turf/simulated/open,
-/area/hallway/crew_area)
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/palebush,
+/turf/simulated/floor/grass/alt,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"kp" = (
/obj/machinery/door/blast/regular{
density = 0;
@@ -4638,6 +5590,21 @@
/area/security/forensics_office{
name = "Security - Investigations Office"
})
+"kq" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
"kr" = (
/obj/structure/bed/stool/chair/plastic{
dir = 8
@@ -4663,6 +5630,13 @@
},
/turf/simulated/floor/tiled/white,
/area/hallway/medical/upper)
+"kt" = (
+/obj/structure/lattice,
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/horizon/hallway/deck_three/primary/starboard)
"ku" = (
/obj/effect/floor_decal/corner/paleblue/diagonal,
/obj/structure/cable/green{
@@ -4685,10 +5659,9 @@
/turf/simulated/floor/carpet/rubber,
/area/crew_quarters/captain)
"kw" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/stargazer,
-/turf/simulated/floor,
-/area/bridge/aibunker)
+/obj/machinery/telecomms/bus/preset_one,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
"kx" = (
/obj/effect/floor_decal/spline/fancy/wood{
dir = 1
@@ -4699,24 +5672,52 @@
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
"ky" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
-/obj/structure/cable{
- icon_state = "0-2"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/obj/structure/lattice/catwalk/indoor/grate,
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
/turf/simulated/floor,
/area/maintenance/engineering_ladder)
"kz" = (
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 9
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck - Hallway 8"
+ },
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
+ },
+/obj/structure/sign/meeting_point{
+ pixel_y = 32
},
-/obj/item/inflatable_duck,
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
+/area/horizon/crew_quarters/fitness/hallway)
+"kA" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"kB" = (
/obj/effect/floor_decal/spline/fancy/wood{
dir = 4
@@ -4745,17 +5746,14 @@
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
"kD" = (
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 10
+/obj/structure/bed/stool/chair{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/effect/floor_decal/spline/fancy/wood/cee{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/turf/simulated/floor/wood,
+/area/horizon/crew_quarters/fitness/pool)
"kE" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -4772,15 +5770,22 @@
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"kH" = (
-/obj/machinery/computer/guestpass{
- pixel_x = -28
- },
/obj/effect/floor_decal/corner/blue{
dir = 6
},
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled,
/area/bridge)
"kI" = (
@@ -4790,51 +5795,55 @@
/turf/simulated/floor/tiled,
/area/hallway/secondary/entry/emergency)
"kJ" = (
-/obj/machinery/light{
- dir = 8
+/obj/structure/closet/secure_closet/guncabinet{
+ name = "Weaponry (Ammo)"
},
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/table/rack,
-/obj/machinery/door/window/brigdoor{
- dir = 4
- },
-/obj/item/clothing/suit/armor/carrier/officer,
-/obj/item/clothing/suit/armor/carrier/officer,
-/obj/item/clothing/head/helmet/security,
-/obj/item/clothing/head/helmet/security,
+/obj/structure/railing/mapped,
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/storage/box/tungstenslugs,
+/obj/item/storage/box/tungstenslugs,
+/obj/item/storage/box/tungstenslugs,
+/obj/item/storage/box/tungstenslugs,
+/obj/item/storage/box/tungstenslugs,
+/obj/item/storage/box/tungstenslugs,
/turf/simulated/floor/tiled/dark,
/area/crew_armory)
-"kL" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 9
+"kK" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
},
-/obj/machinery/button/remote/airlock{
- id = "sat2";
- name = "Scuttling Device Bolts";
- pixel_y = 28;
- req_access = list(20);
- specialfunctions = 4
- },
-/turf/simulated/floor,
-/area/bridge/selfdestruct)
-"kM" = (
-/obj/structure/bed/stool/chair/padded/brown{
+/obj/effect/floor_decal/spline/plain/corner{
dir = 8
},
-/obj/effect/landmark/start{
- name = "Passenger"
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/lounge)
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/chamber)
+"kL" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/wood,
+/area/lawoffice/representative)
+"kM" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"kN" = (
-/obj/machinery/light,
-/obj/machinery/deployable/barrier,
+/obj/effect/floor_decal/industrial/loading/yellow{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark,
/area/crew_armory)
"kO" = (
@@ -4863,13 +5872,55 @@
/turf/simulated/floor/tiled,
/area/bridge/bridge_crew)
"kQ" = (
-/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/carpet/rubber,
+/area/tcommsat/entrance)
"kR" = (
-/obj/structure/bed/padded,
-/obj/item/bedsheet/xo,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hop/xo)
+/obj/item/device/taperecorder{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/briefcase,
+/obj/item/device/flash,
+/obj/item/storage/secure/briefcase,
+/obj/item/device/eftpos{
+ eftpos_name = "Internal Affairs EFTPOS scanner"
+ },
+/obj/item/clothing/under/suit_jacket/really_black,
+/obj/item/clothing/shoes/laceup,
+/obj/item/clothing/shoes/laceup,
+/obj/item/clipboard,
+/obj/item/pen/multi,
+/obj/item/device/camera,
+/obj/structure/closet/lawcloset,
+/obj/item/stamp/denied,
+/obj/item/stamp{
+ layer = 3.1;
+ name = "representative stamp"
+ },
+/obj/item/paper_scanner,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/lawoffice/representative)
"kT" = (
/obj/structure/table/standard,
/obj/item/device/hand_labeler{
@@ -4892,36 +5943,67 @@
},
/turf/simulated/floor/tiled,
/area/security/investigations_storage)
+"kV" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor,
+/area/maintenance/bridge)
"kW" = (
+/obj/effect/floor_decal/corner/blue/diagonal,
+/obj/structure/holohoop{
+ dir = 1
+ },
+/obj/structure/railing/mapped,
+/obj/effect/floor_decal/industrial/outline/blue,
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
+/area/horizon/crew_quarters/fitness/gym)
"kX" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
+/obj/structure/railing/mapped{
+ dir = 8
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/effect/floor_decal/corner/green{
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"kY" = (
/obj/structure/cable/green{
icon_state = "4-8"
},
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
/area/crew_quarters/captain)
+"kZ" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/rubber,
+/area/horizon/crew_quarters/fitness/gym)
"la" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
/turf/simulated/floor/wood,
/area/journalistoffice)
+"lb" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/lounge)
"lc" = (
/obj/structure/table/standard,
/obj/item/paper_bin{
@@ -4936,22 +6018,28 @@
/turf/simulated/floor/tiled,
/area/security/investigations_storage)
"ld" = (
-/obj/effect/floor_decal/industrial/warning,
-/obj/structure/cable{
- icon_state = "1-8"
+/obj/machinery/light/small/emergency,
+/obj/random/junk,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
},
-/turf/simulated/floor/bluegrid,
-/area/storage/shields)
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/maintenance/engineering_ladder)
"le" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/structure/cable/green{
- icon_state = "4-8"
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
},
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+/obj/machinery/light/small/emergency{
+ dir = 4
},
-/area/tcommsat/chamber)
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/flag/sol/left{
+ pixel_x = 32;
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/bridge)
"lf" = (
/obj/effect/floor_decal/industrial/outline/grey,
/obj/structure/closet{
@@ -4980,41 +6068,69 @@
/obj/structure/banner/scc,
/turf/simulated/floor/wood,
/area/security/vacantoffice2)
-"lj" = (
+"li" = (
/obj/effect/floor_decal/spline/plain{
- dir = 9
+ dir = 5
},
-/turf/simulated/floor/beach/water/pool,
-/area/crew_quarters/fitness/pool)
-"lk" = (
-/obj/structure/window/reinforced,
-/obj/structure/lattice,
-/obj/structure/railing/mapped{
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/obj/machinery/light{
dir = 1
},
-/obj/structure/railing/mapped{
- dir = 8
+/obj/machinery/firealarm/east,
+/turf/simulated/floor/carpet/rubber,
+/area/horizon/crew_quarters/fitness/gym)
+"lj" = (
+/obj/effect/floor_decal/corner/green/full{
+ dir = 1
},
-/turf/simulated/open,
-/area/hallway/crew_area)
-"ll" = (
-/obj/effect/floor_decal/corner/paleblue{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"lo" = (
-/obj/effect/floor_decal/corner/paleblue,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/horizon/crew_quarters/fitness/changing)
+"lk" = (
+/obj/structure/sign/electricshock{
+ pixel_x = -32
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/camera/network/telecom{
+ c_tag = "Telecomms - Aft Airlock";
dir = 4
},
/turf/simulated/floor/tiled,
+/area/tcommsat/chamber)
+"ll" = (
+/turf/simulated/wall,
+/area/maintenance/security_starboard)
+"lm" = (
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/structure/railing/mapped,
+/obj/structure/closet/secure_closet/personal,
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo/dormitories)
+"ln" = (
+/obj/effect/floor_decal/corner/yellow{
+ dir = 10
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ pixel_y = -32;
+ dir = 1;
+ name = "Viewing Shutters";
+ id = "shutters_deck3_engibreak"
+ },
+/obj/machinery/disposal/small/north,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
+"lo" = (
+/obj/effect/floor_decal/corner/paleblue,
+/turf/simulated/floor/tiled,
/area/hallway/primary/port)
"lp" = (
/obj/structure/railing/mapped,
@@ -5035,6 +6151,16 @@
},
/turf/simulated/floor/tiled,
/area/security/investigations)
+"lr" = (
+/obj/effect/floor_decal/corner/blue/diagonal,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
"ls" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green,
@@ -5056,11 +6182,18 @@
/turf/simulated/floor/wood,
/area/journalistoffice)
"lu" = (
-/obj/structure/railing/mapped{
- dir = 1
+/obj/effect/floor_decal/corner/blue/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 8
},
-/turf/simulated/open,
-/area/hallway/primary/starboard)
+/obj/machinery/meter{
+ name = "Air Reserve"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
"lv" = (
/obj/effect/floor_decal/corner_wide/green{
dir = 9
@@ -5072,14 +6205,22 @@
/turf/simulated/floor/tiled/white,
/area/hallway/medical/upper)
"lw" = (
-/obj/structure/table/wood,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/item/storage/box/fancy/cigarettes,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/lounge/secondary)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/railing/mapped,
+/turf/simulated/floor/wood,
+/area/crew_quarters/lounge)
+"lx" = (
+/obj/machinery/atmospherics/pipe/tank/air{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/maintenance/aux_atmospherics/deck_3)
"ly" = (
/obj/structure/table/wood,
/obj/item/folder/sec{
@@ -5091,18 +6232,15 @@
/turf/simulated/floor/wood,
/area/security/vacantoffice2)
"lz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/tiled,
/area/security/vacantoffice)
"lA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
},
/turf/simulated/floor/wood,
/area/lawoffice/representative)
@@ -5149,29 +6287,49 @@
dir = 1
},
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"lE" = (
-/obj/machinery/light,
-/obj/item/storage/secure/safe{
- pixel_x = 5;
+/obj/structure/table/wood,
+/obj/machinery/photocopier/faxmachine{
+ anchored = 0;
+ department = "Consular's Office";
+ pixel_y = 4;
+ req_one_access = list(38,19,72)
+ },
+/obj/machinery/alarm{
+ dir = 1;
pixel_y = -28
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hop/xo)
+/obj/effect/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/wood,
+/area/lawoffice/consular)
"lF" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/area/lawoffice/representative)
+"lG" = (
+/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
+/area/horizon/crew_quarters/fitness/gym)
+"lH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/airlock/command{
- name = "Executive Officer's Quarters";
- req_access = list(57)
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
},
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop/xo)
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"lI" = (
/obj/structure/table/rack,
/obj/random/loot,
@@ -5192,19 +6350,22 @@
/turf/simulated/floor/tiled/white,
/area/medical/equipment)
"lK" = (
-/turf/simulated/floor/tiled/dark,
-/area/engineering/break_room)
-"lL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/effect/floor_decal/corner/blue/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 8
},
-/obj/structure/disposalpipe/segment,
-/obj/structure/lattice/catwalk,
-/obj/machinery/door/window,
-/turf/simulated/open,
-/area/hallway/crew_area)
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
+"lL" = (
+/obj/effect/floor_decal/spline/fancy/wood/cee{
+ dir = 1
+ },
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/grass/alt,
+/area/horizon/hallway/deck_three/primary/starboard)
"lM" = (
/obj/structure/window/reinforced,
/turf/simulated/floor/tiled/freezer,
@@ -5235,10 +6396,8 @@
/obj/effect/floor_decal/corner_wide/blue{
dir = 10
},
-/obj/structure/bed/stool/padded,
-/obj/machinery/firealarm/south,
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
+/area/horizon/crew_quarters/fitness/pool)
"lR" = (
/obj/structure/cable/green{
icon_state = "1-8"
@@ -5249,25 +6408,40 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
},
-/obj/structure/disposalpipe/junction{
- dir = 1;
- icon_state = "pipe-j2"
- },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/white,
/area/hallway/medical/upper)
-"lT" = (
-/obj/effect/floor_decal/corner/red/diagonal,
-/obj/machinery/door/blast/shutters/open{
+"lS" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 9
+ },
+/obj/machinery/button/remote/airlock{
+ specialfunctions = 4;
+ name = "Command Bunker Escape Route Bolts";
+ id = "bolts_bunker_escape";
+ req_access = list(19);
+ pixel_x = -25;
+ pixel_y = -25;
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/structure/table/reinforced/wood,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
dir = 8
},
-/obj/item/reagent_containers/glass/rag,
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/area/bridge/aibunker)
+"lT" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/emergency)
"lU" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -5350,11 +6524,16 @@
name = "Security - Investigations Office"
})
"lZ" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 1
+/obj/effect/decal{
+ anchored = 1;
+ desc = "Slippery when wet.";
+ icon = 'icons/obj/structures.dmi';
+ icon_state = "ladderdown";
+ name = "Pool ladder";
+ pixel_y = 14
},
/turf/simulated/floor/beach/water/pool,
-/area/crew_quarters/fitness/pool)
+/area/horizon/crew_quarters/fitness/pool)
"ma" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
@@ -5364,75 +6543,95 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/vacantoffice2)
+"mb" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/full{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/stairwell/central)
"md" = (
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
/area/crew_quarters/captain)
"me" = (
-/obj/effect/floor_decal/corner/paleblue{
- dir = 10
- },
-/obj/effect/floor_decal/corner/paleblue{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"mf" = (
-/obj/structure/sink{
- dir = 8;
- pixel_x = -12
- },
-/obj/effect/floor_decal/corner/grey/diagonal{
- dir = 8
- },
-/obj/structure/mirror{
- pixel_x = -26;
- pixel_y = 3
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
-"mh" = (
-/obj/effect/floor_decal/corner/red/full{
- dir = 1
- },
-/obj/effect/floor_decal/spline/plain{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
-"mi" = (
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 10
- },
-/obj/structure/bed/stool/padded,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
-"mj" = (
-/obj/structure/table/wood,
+/obj/structure/lattice,
/obj/machinery/light{
dir = 1
},
-/turf/simulated/floor/carpet/rubber,
-/area/lawoffice/representative)
+/turf/simulated/open,
+/area/horizon/hallway/deck_three/primary/starboard)
+"mf" = (
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/pool)
+"mg" = (
+/obj/structure/table/rack,
+/obj/item/clothing/suit/armor/carrier/officer,
+/obj/item/clothing/suit/armor/carrier/officer,
+/obj/item/clothing/head/helmet/security,
+/obj/item/clothing/head/helmet/security,
+/obj/effect/floor_decal/corner/blue/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/crew_armory)
+"mh" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/lino/grey,
+/area/horizon/deck_three/cafeteria)
+"mi" = (
+/turf/simulated/wall,
+/area/horizon/crew_quarters/fitness/pool)
+"mj" = (
+/obj/item/modular_computer/console/preset/command/account,
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Executive Officer's Desk";
+ departmentType = 5;
+ name = "Executive Officer RC";
+ pixel_y = 32
+ },
+/obj/machinery/camera/network/command{
+ c_tag = "Bridge - Executive Officer's Office"
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hop/xo)
"mk" = (
/turf/simulated/floor/tiled/dark,
/area/security/investigations)
"ml" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/light/small/emergency,
/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor,
/area/maintenance/engineering_ladder)
"mm" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+/obj/item/modular_computer/console/preset/research{
+ dir = 1
},
+/turf/simulated/floor/bluegrid,
/area/tcommsat/chamber)
"mn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -5478,7 +6677,7 @@
dir = 5
},
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"ms" = (
/obj/structure/table/standard,
/obj/item/paper_scanner{
@@ -5502,12 +6701,15 @@
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
"mu" = (
-/obj/structure/lattice,
-/obj/structure/railing/mapped{
- dir = 4
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
},
-/turf/simulated/open,
-/area/hallway/primary/starboard)
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"mv" = (
/obj/machinery/light{
dir = 1
@@ -5519,17 +6721,16 @@
/turf/simulated/floor/tiled,
/area/bridge)
"mw" = (
-/obj/structure/railing/mapped{
- dir = 1
+/obj/machinery/door/window/eastright{
+ name = "Shower"
},
-/obj/machinery/light/small/red,
-/obj/structure/cable/green{
- icon_state = "4-8"
+/obj/machinery/shower{
+ dir = 1;
+ pixel_y = -8
},
-/turf/simulated/floor/tiled/ramp/bottom{
- dir = 4
- },
-/area/bridge/aibunker)
+/obj/structure/curtain/open/shower,
+/turf/simulated/floor/tiled/freezer,
+/area/horizon/crew_quarters/cryo/showers)
"mx" = (
/obj/machinery/dnaforensics{
pixel_x = -1;
@@ -5548,11 +6749,11 @@
/obj/structure/cable/green{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor,
-/area/maintenance/bridge)
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"mz" = (
/obj/item/modular_computer/console/preset/security/investigations,
/obj/effect/floor_decal/corner/beige/diagonal,
@@ -5599,38 +6800,35 @@
"mE" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/hatch{
- desc = "It opens and closes. It has a small sign engraved: Bunker capacity: 6. Only facility's Command Staff is permitted.";
- id_tag = "bunker2";
- name = "Command Bunker";
- req_access = list(19);
- secured_wires = 1
+ name = "Telecommunications - Control Room";
+ req_access = list(61)
},
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "bridge blast";
- name = "Bridge Blast Doors";
- opacity = 0
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/tcommsat/entrance)
+"mF" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
+/obj/effect/floor_decal/corner/purple{
+ dir = 10
+ },
+/obj/machinery/vending/hydronutrients,
+/turf/simulated/floor/tiled,
+/area/horizon/deck_three/nature_showcase)
"mG" = (
-/obj/effect/floor_decal/corner/paleblue{
- dir = 9
- },
-/obj/machinery/light{
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"mH" = (
-/obj/effect/floor_decal/corner/grey/diagonal{
- dir = 8
+/obj/machinery/door/airlock/freezer{
+ id_tag = "main_unit_2";
+ name = "Unit 2"
},
/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
+/area/horizon/crew_quarters/fitness/washroom)
"mI" = (
/obj/effect/floor_decal/corner/blue{
dir = 6
@@ -5651,15 +6849,20 @@
/turf/simulated/floor/tiled,
/area/bridge)
"mJ" = (
-/obj/machinery/door/airlock/glass{
- name = "Deck 3 Port Docks"
- },
/obj/effect/floor_decal/corner/paleblue{
dir = 5
},
-/obj/machinery/door/firedoor,
+/obj/machinery/alarm{
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"mK" = (
/obj/structure/flora/pottedplant/random,
/obj/effect/floor_decal/spline/fancy/wood/cee{
@@ -5681,16 +6884,15 @@
/turf/simulated/floor/tiled/white,
/area/hallway/medical/upper)
"mM" = (
-/turf/simulated/wall/r_wall,
-/area/lawoffice/representative)
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"mN" = (
/obj/structure/cable/green{
icon_state = "2-4"
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
@@ -5700,6 +6902,10 @@
/obj/effect/floor_decal/corner/blue{
dir = 9
},
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/tiled,
/area/security/investigations)
"mO" = (
@@ -5720,6 +6926,9 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
+"mP" = (
+/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"mQ" = (
/obj/effect/floor_decal/corner/paleblue{
dir = 6
@@ -5735,11 +6944,26 @@
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
"mS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/bed/stool/chair/padded/brown{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/lawoffice/representative)
+"mT" = (
+/obj/effect/floor_decal/corner/green{
dir = 5
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop/xo)
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"mU" = (
/obj/structure/bed/stool/chair{
dir = 1
@@ -5747,16 +6971,13 @@
/turf/simulated/floor/tiled/dark,
/area/security/investigations)
"mV" = (
-/obj/effect/floor_decal/corner/red/diagonal,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/structure/lattice,
+/obj/structure/lattice,
+/obj/structure/railing/mapped{
dir = 8
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/turf/simulated/open,
+/area/horizon/hallway/deck_three/primary/starboard)
"mW" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -5770,42 +6991,33 @@
/turf/simulated/floor/tiled/white,
/area/hallway/medical/upper)
"mX" = (
-/obj/structure/toilet{
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 12
+ },
+/obj/structure/mirror{
+ pixel_x = 25
+ },
+/obj/effect/floor_decal/corner/green/full{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/button/remote/airlock{
- id = "main_unit_1";
- name = "Door Bolt Control";
- pixel_x = 25;
- pixel_y = 5;
- req_access = null;
- specialfunctions = 4
- },
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/toilet)
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/fitness/washroom)
"mY" = (
-/obj/item/device/taperecorder{
- pixel_x = 3;
- pixel_y = 3
+/obj/structure/sign/flag/idris{
+ pixel_y = -32
},
-/obj/item/storage/briefcase,
-/obj/item/device/flash,
-/obj/item/storage/secure/briefcase,
-/obj/item/device/eftpos{
- eftpos_name = "Internal Affairs EFTPOS scanner"
+/obj/structure/sign/flag/nanotrasen{
+ pixel_x = -32
},
-/obj/item/clothing/under/suit_jacket/really_black,
-/obj/item/clothing/shoes/laceup,
-/obj/item/clothing/shoes/laceup,
-/obj/item/clipboard,
-/obj/item/pen/multi,
-/obj/item/device/camera,
-/obj/structure/closet/lawcloset,
-/turf/simulated/floor/wood,
-/area/lawoffice/consular)
+/obj/machinery/porta_turret/stationary,
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/reinforced,
+/area/bridge/selfdestruct)
"mZ" = (
/obj/effect/floor_decal/corner/paleblue/diagonal,
/turf/simulated/floor/tiled/white,
@@ -5856,44 +7068,48 @@
/turf/simulated/floor/tiled/white,
/area/security/forensics_office)
"nd" = (
-/obj/machinery/light/small,
-/obj/structure/railing/mapped{
- dir = 4
- },
-/obj/effect/floor_decal/spline/plain{
- dir = 4
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/floor_decal/corner/green{
+/obj/effect/floor_decal/corner/green/full,
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"ne" = (
+/obj/effect/floor_decal/corner_wide/blue{
dir = 9
},
+/obj/machinery/button/remote/blast_door{
+ name = "Viewing Shutters";
+ id = "shutters_deck3_pool";
+ dir = 4;
+ pixel_x = -32
+ },
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
-"ne" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 1
- },
-/obj/effect/decal{
- anchored = 1;
- desc = "Slippery when wet.";
- icon = 'icons/obj/structures.dmi';
- icon_state = "ladderdown";
- name = "Pool ladder";
- pixel_y = 14
- },
-/turf/simulated/floor/beach/water/pool,
-/area/crew_quarters/fitness/pool)
+/area/horizon/crew_quarters/fitness/pool)
"nf" = (
/turf/simulated/wall,
/area/security/vacantoffice2)
"ng" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/locker)
+/obj/structure/table/standard,
+/obj/machinery/newscaster{
+ pixel_x = 32
+ },
+/obj/structure/bedsheetbin,
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/fitness/changing)
"nh" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -5924,13 +7140,25 @@
/turf/simulated/floor/tiled,
/area/security/investigations)
"nj" = (
-/obj/structure/table/standard,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+/obj/effect/floor_decal/corner/blue{
+ dir = 4
},
-/obj/item/folder/blue,
-/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
+/obj/structure/railing/mapped,
+/obj/effect/floor_decal/corner/yellow/full,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
"nk" = (
/obj/structure/table/wood,
/obj/machinery/light{
@@ -5945,18 +7173,24 @@
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- req_one_access = list(12)
+/obj/structure/cable/green{
+ icon_state = "2-8"
},
-/turf/simulated/floor,
-/area/crew_quarters/sleep/cryo)
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo)
"nm" = (
/obj/structure/bed/stool/chair/office/light{
dir = 4
@@ -5968,26 +7202,24 @@
/area/hallway/medical/upper)
"no" = (
/obj/machinery/firealarm/south,
+/obj/structure/table/standard,
+/obj/item/device/hand_labeler,
+/obj/item/stamp/denied,
+/obj/effect/floor_decal/corner/beige/full,
+/turf/simulated/floor/tiled,
+/area/security/vacantoffice)
+"np" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 8
+ },
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/tiled/dark,
-/area/security/vacantoffice)
-"np" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai)
+/area/bridge/aibunker)
"nq" = (
/obj/effect/floor_decal/industrial/outline/grey,
/obj/structure/morgue{
@@ -5999,40 +7231,53 @@
/turf/simulated/wall,
/area/medical/ward)
"ns" = (
-/obj/effect/floor_decal/corner/blue/diagonal,
+/obj/structure/railing/mapped,
+/obj/effect/floor_decal/corner/yellow{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/tiled,
-/area/bridge/aibunker)
+/area/bridge)
"nt" = (
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
/area/crew_quarters/lounge/secondary)
"nu" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "bridge blast";
- name = "Bridge Blast Doors";
- opacity = 0
+/obj/effect/floor_decal/corner/green{
+ dir = 10
},
-/obj/effect/map_effect/wingrille_spawn/reinforced/polarized{
- id = "hop"
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/obj/machinery/door/firedoor,
-/turf/simulated/floor,
-/area/crew_quarters/heads/hop/xo)
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"nv" = (
-/obj/machinery/light/small,
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/heads/hop/xo)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/wood,
+/area/lawoffice/representative)
"nw" = (
/obj/structure/bed/stool/chair{
dir = 8
},
-/obj/machinery/light{
- dir = 4
- },
/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"nx" = (
/obj/structure/sink/kitchen{
name = "autopsy sink";
@@ -6087,12 +7332,29 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/ward/isolation)
+"nC" = (
+/obj/effect/floor_decal/corner/blue/full,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
"nD" = (
-/obj/effect/floor_decal/corner/paleblue{
+/obj/machinery/vending/coffee,
+/obj/effect/floor_decal/corner/green{
dir = 9
},
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"nF" = (
/obj/structure/window/shuttle/scc_space_ship,
/obj/structure/grille,
@@ -6111,17 +7373,39 @@
/turf/simulated/floor,
/area/crew_quarters/captain)
"nG" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 5
- },
-/turf/simulated/floor/beach/water/pool,
-/area/crew_quarters/fitness/pool)
-"nJ" = (
-/obj/machinery/computer/security/engineering{
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
+"nH" = (
+/obj/effect/floor_decal/corner/blue/diagonal,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
+/area/horizon/crew_quarters/fitness/gym)
+"nI" = (
+/obj/machinery/shower{
+ pixel_y = 24
+ },
+/obj/structure/curtain/open/shower,
+/obj/machinery/door/window/eastleft{
+ name = "Shower"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/horizon/crew_quarters/cryo/showers)
+"nJ" = (
+/obj/machinery/computer/message_monitor,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/computer/security/telescreen{
+ name = "Telecomms Cameras";
+ network = list("Tcomsat");
+ pixel_x = -32;
+ pixel_y = -4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/entrance)
"nK" = (
/obj/effect/floor_decal/corner/paleblue{
dir = 10
@@ -6135,28 +7419,26 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/hallway/secondary/entry/emergency)
"nL" = (
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 9
+/obj/structure/grille,
+/obj/structure/window/shuttle/scc_space_ship,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/shutters/open{
+ id = "shutters_deck3_gym";
+ name = "Viewing Shutters"
},
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
+/turf/simulated/floor/plating,
+/area/horizon/crew_quarters/fitness/gym)
"nM" = (
/obj/effect/floor_decal/corner/paleblue{
dir = 4
},
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/hallway/secondary/entry/emergency)
"nN" = (
@@ -6169,54 +7451,85 @@
},
/turf/simulated/floor/tiled/white,
/area/hallway/medical/upper)
+"nO" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/shutters/open{
+ dir = 8;
+ id = "shutters_deck3_cafedesk";
+ name = "Cafe Desk Shutter"
+ },
+/obj/item/material/ashtray/bronze,
+/obj/structure/table/stone/marble,
+/turf/simulated/floor/tiled,
+/area/horizon/deck_three/cafeteria)
"nP" = (
/turf/simulated/wall,
/area/maintenance/bridge)
"nQ" = (
-/obj/structure/table/standard,
-/obj/machinery/recharger,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hop/xo)
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/simulated/floor/carpet,
+/area/lawoffice/consular)
+"nR" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo/washroom)
"nS" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
+/obj/structure/grille,
+/obj/structure/window/shuttle/scc_space_ship,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/shutters/open{
+ id = "shutters_deck3_gym";
+ name = "Viewing Shutters";
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
- },
-/obj/structure/cable/green{
- icon_state = "0-2"
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"nU" = (
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/turf/simulated/floor/plating,
+/area/horizon/crew_quarters/fitness/gym)
+"nT" = (
+/obj/effect/floor_decal/corner/blue{
dir = 10
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
},
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
+"nU" = (
/obj/effect/floor_decal/corner/blue/diagonal,
-/turf/simulated/floor/tiled/white,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
/area/bridge)
+"nV" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
"nW" = (
/obj/machinery/light/small/emergency{
dir = 8
@@ -6247,19 +7560,23 @@
/obj/machinery/alarm{
pixel_y = 28
},
-/obj/structure/closet/wardrobe/mixed,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/locker)
-"oa" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
+/obj/machinery/light{
+ dir = 1
},
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/structure/closet/wardrobe/mixed,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/fitness/changing)
+"oa" = (
/obj/machinery/light,
-/obj/effect/floor_decal/corner/paleblue{
+/obj/effect/floor_decal/corner/green{
dir = 10
},
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"ob" = (
/obj/structure/table/reinforced/wood,
/obj/item/book/manual/wiki/security_space_law,
@@ -6267,11 +7584,15 @@
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
"oc" = (
-/obj/machinery/light{
+/obj/machinery/alarm{
+ pixel_x = 28;
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
dir = 4
},
/turf/simulated/floor/wood,
-/area/crew_quarters/lounge/secondary)
+/area/crew_quarters/lounge)
"od" = (
/obj/structure/railing/mapped,
/obj/structure/railing/mapped{
@@ -6290,15 +7611,15 @@
/obj/structure/cable/green{
icon_state = "1-8"
},
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 10
+ },
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/obj/effect/floor_decal/corner/paleblue{
- dir = 10
- },
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"of" = (
/obj/effect/floor_decal/corner/paleblue/diagonal,
/obj/machinery/atmospherics/unary/vent_scrubber/on,
@@ -6308,43 +7629,37 @@
/turf/simulated/floor/tiled/white,
/area/security/forensics_morgue)
"og" = (
-/obj/structure/coatrack{
- pixel_x = 11
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/obj/structure/closet/secure_closet/xo,
+/obj/item/stamp/xo,
+/obj/item/stamp/denied,
+/obj/item/book/manual/wiki/security_space_law,
+/obj/item/device/eftpos{
+ eftpos_name = "HoP EFTPOS scanner"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/firealarm/east,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/obj/item/storage/secure/safe{
+ pixel_x = 32
},
/turf/simulated/floor/wood,
-/area/lawoffice/representative)
+/area/crew_quarters/heads/hop/xo)
"oh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/structure/cable/green{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock/highsecurity{
- id_tag = "bunker1";
- name = "Command Bunker Access";
- req_access = list(19, 61)
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
+/turf/simulated/floor/tiled,
+/area/security/vacantoffice)
"oi" = (
/obj/structure/bed/stool/chair/office/dark{
dir = 1
@@ -6370,13 +7685,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/bridge)
-"ok" = (
-/obj/machinery/telecomms/server/presets/unused,
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
- },
-/area/tcommsat/chamber)
"ol" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -6387,10 +7695,19 @@
/obj/machinery/door/airlock/glass_command{
id_tag = "";
name = "Bridge";
- req_one_access = list(19,38)
+ req_one_access = list(19, 38)
},
/turf/simulated/floor/tiled,
/area/bridge)
+"om" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
"on" = (
/obj/machinery/door/airlock{
name = "Restroom"
@@ -6404,23 +7721,19 @@
/turf/simulated/floor/tiled/white,
/area/bridge/bridge_crew)
"oo" = (
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 9
+/obj/structure/railing/mapped{
+ dir = 8
},
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
-"op" = (
-/obj/effect/floor_decal/corner/paleblue{
+/obj/structure/railing/mapped{
dir = 1
},
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/obj/structure/railing/mapped,
+/turf/simulated/open,
+/area/horizon/hallway/deck_three/primary/starboard)
+"op" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"oq" = (
/obj/structure/cable/green{
icon_state = "1-8"
@@ -6452,8 +7765,11 @@
/turf/simulated/floor/tiled/white,
/area/medical/ward/isolation)
"os" = (
-/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
-/turf/simulated/floor,
+/obj/structure/bed/stool/chair/office/dark{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
/area/security/vacantoffice)
"ot" = (
/obj/structure/window/shuttle/scc_space_ship,
@@ -6485,9 +7801,30 @@
/turf/simulated/floor/tiled/dark,
/area/security/vacantoffice2)
"ov" = (
-/obj/structure/closet/secure_closet/personal,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/locker)
+/obj/effect/floor_decal/corner/green/full{
+ dir = 1
+ },
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 12
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/mirror{
+ pixel_x = 25
+ },
+/obj/machinery/button/remote/blast_door{
+ name = "Viewing Shutter";
+ id = "shutters_deck3_showers";
+ pixel_y = 32
+ },
+/obj/effect/landmark{
+ name = "borerstart"
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/fitness/showers)
"ow" = (
/obj/item/folder/sec,
/obj/structure/table/glass,
@@ -6497,12 +7834,9 @@
/turf/simulated/floor/tiled/white,
/area/security/forensics_office)
"ox" = (
-/obj/effect/floor_decal/corner/blue/diagonal,
-/obj/structure/railing/mapped{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/bridge/aibunker)
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor/bluegrid,
+/area/bridge)
"oy" = (
/obj/structure/railing/mapped{
dir = 8
@@ -6510,8 +7844,16 @@
/turf/simulated/open/airless,
/area/template_noop)
"oz" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/dark,
+/obj/structure/bookcase/manuals/engineering{
+ opacity = 0
+ },
+/obj/item/book/manual/atmospipes,
+/obj/item/book/manual/wiki/engineering_guide,
+/obj/item/book/manual/supermatter_engine,
+/obj/effect/floor_decal/corner/yellow/full{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
/area/engineering/break_room)
"oA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -6525,7 +7867,7 @@
dir = 8
},
/turf/simulated/open,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"oC" = (
/obj/item/device/mass_spectrometer/adv{
pixel_y = 3
@@ -6556,27 +7898,30 @@
/turf/simulated/floor/tiled,
/area/bridge/bridge_crew)
"oE" = (
-/obj/machinery/shower{
- pixel_y = 10
+/obj/machinery/power/breakerbox/activated{
+ RCon_tag = "Deck 3 Command Substation"
},
-/obj/structure/curtain/open/shower,
-/turf/simulated/floor/tiled/freezer,
-/area/lawoffice/representative)
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/command)
"oF" = (
-/obj/effect/floor_decal/corner/paleblue{
- dir = 10
+/obj/effect/floor_decal/corner/blue/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
-/obj/machinery/camera/network/third_deck{
- c_tag = "Third Deck - Executive Officer Line";
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/turf/simulated/floor/tiled,
+/area/bridge)
"oG" = (
+/obj/effect/floor_decal/corner/red/diagonal,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/obj/machinery/firealarm/west,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled/dark,
/area/crew_armory)
"oH" = (
@@ -6596,14 +7941,10 @@
/turf/simulated/floor/tiled/white,
/area/security/forensics_morgue)
"oI" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/wood,
-/area/crew_quarters/lounge)
+/area/crew_quarters/lounge/secondary)
"oJ" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -6618,16 +7959,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
-"oK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/effect/floor_decal/corner/blue{
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"oL" = (
/obj/structure/railing/mapped{
dir = 8
@@ -6641,22 +7973,27 @@
dir = 1
},
/area/bridge)
-"oN" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+"oM" = (
+/obj/structure/closet/secure_closet/guncabinet{
+ name = "Weaponry (Rifle)"
},
+/obj/item/gun/projectile/gauss/carbine,
+/obj/item/gun/projectile/gauss/carbine,
+/obj/item/gun/projectile/gauss/carbine,
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/crew_armory)
+"oN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
-/obj/effect/floor_decal/corner/paleblue{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/obj/structure/disposalpipe/junction/yjunction,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"oO" = (
/obj/effect/floor_decal/spline/fancy{
dir = 9
@@ -6664,25 +8001,45 @@
/turf/simulated/floor/carpet/rubber,
/area/bridge)
"oP" = (
-/obj/structure/table/standard,
-/obj/machinery/alarm{
- pixel_y = 28
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
},
-/obj/item/paper_bin,
-/obj/item/pen,
/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
+/area/tcommsat/chamber)
"oQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/floor_decal/corner/blue/diagonal,
-/turf/simulated/floor/tiled/white,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
/area/bridge)
-"oS" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
+"oR" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
dir = 8
},
-/turf/simulated/floor/tiled/dark,
-/area/bridge/selfdestruct)
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor/plating,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
+"oS" = (
+/obj/effect/floor_decal/corner/green,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"oT" = (
/obj/effect/floor_decal/spline/plain{
dir = 8
@@ -6720,19 +8077,37 @@
/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
"oY" = (
-/obj/machinery/light,
-/obj/effect/floor_decal/corner/paleblue{
- dir = 10
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hop/xo)
+"oZ" = (
+/obj/effect/floor_decal/corner/beige{
+ dir = 5
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"pb" = (
-/obj/effect/floor_decal/corner/grey/diagonal{
- dir = 8
+/area/security/vacantoffice)
+"pa" = (
+/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
+/obj/structure/cable/green{
+ icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
+/turf/simulated/floor,
+/area/tcommsat/entrance)
+"pb" = (
+/obj/structure/closet/emcloset,
+/obj/effect/floor_decal/corner/green/full{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"pc" = (
/obj/effect/floor_decal/spline/fancy/wood{
dir = 5
@@ -6750,28 +8125,29 @@
/obj/effect/floor_decal/corner/blue{
dir = 6
},
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/tiled,
/area/bridge/third_deck_stairs)
"pe" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/machinery/light/small/emergency{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
},
-/turf/simulated/floor/tiled/dark,
-/area/engineering/break_room)
+/turf/simulated/floor,
+/area/maintenance/engineering_ladder)
"pf" = (
-/obj/structure/table/standard,
-/obj/machinery/light/small/red{
- dir = 8
+/obj/machinery/camera/network/telecom{
+ c_tag = "Telecomms - Port"
+ },
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 1
+ },
+/obj/machinery/alarm/tcom{
+ pixel_y = 28
},
-/obj/item/folder/blue,
/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
+/area/tcommsat/chamber)
"pg" = (
/obj/machinery/optable{
name = "autopsy table"
@@ -6788,9 +8164,9 @@
/turf/simulated/floor/tiled,
/area/security/investigations_storage)
"pi" = (
-/obj/structure/closet,
-/turf/simulated/floor,
-/area/maintenance/bridge)
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hop/xo)
"pj" = (
/obj/effect/floor_decal/corner/paleblue/full,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -6806,7 +8182,6 @@
/obj/effect/floor_decal/corner/paleblue{
dir = 10
},
-/obj/structure/cable/green,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -6820,31 +8195,46 @@
name = "south bump";
pixel_y = -24
},
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/hallway/secondary/entry/emergency)
"pl" = (
-/obj/structure/railing/mapped,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/bridge)
-"pm" = (
-/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
-"pn" = (
-/obj/effect/floor_decal/corner/paleblue{
- dir = 5
+/obj/machinery/status_display{
+ pixel_y = 32
},
-/obj/effect/floor_decal/industrial/warning{
+/obj/structure/coatrack{
+ pixel_x = -10;
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
+ },
+/obj/machinery/disposal/small/east,
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/wood,
+/area/lawoffice/representative)
+"pn" = (
+/obj/machinery/power/terminal{
dir = 1
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/obj/structure/cable{
+ icon_state = "0-4"
},
-/turf/simulated/floor/tiled,
-/area/hallway/secondary/entry/emergency)
+/obj/machinery/camera/network/engineering{
+ c_tag = "Engineering - Deck 3 - Civilian Substation";
+ dir = 1;
+ alarm_on = 1
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/civilian_east)
"po" = (
-/turf/simulated/wall/r_wall,
+/turf/simulated/wall,
/area/maintenance/aux_atmospherics/deck_3)
"pp" = (
/obj/structure/cable/green{
@@ -6864,6 +8254,10 @@
pixel_y = 25;
req_access = list(66)
},
+/obj/machinery/camera/network/medbay{
+ c_tag = "Medical - Isolation Ward Airlock";
+ dir = 8
+ },
/turf/simulated/floor/tiled/dark,
/area/medical/ward/isolation)
"pq" = (
@@ -6892,17 +8286,21 @@
/turf/simulated/floor/tiled/white,
/area/security/forensics_morgue)
"pr" = (
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
+"ps" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Deck 3 Starboard Hallway"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/floor_decal/corner/blue/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/bridge)
-"ps" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/floor,
-/area/maintenance/bridge)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"pt" = (
/obj/item/storage/box/fancy/vials{
pixel_x = -4;
@@ -6921,32 +8319,29 @@
/turf/simulated/floor/tiled/white,
/area/security/forensics_office)
"pu" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/power/apc/super{
- dir = 8;
- pixel_x = -24
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
},
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
- },
-/area/tcommsat/chamber)
+/turf/simulated/floor,
+/area/maintenance/bridge)
"pv" = (
/obj/machinery/light{
dir = 1
},
-/obj/structure/bed/stool/chair/sofa/corner/brown,
-/obj/structure/window/reinforced{
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/lounge/secondary)
+"pw" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing/mapped,
+/obj/structure/railing/mapped{
dir = 1
},
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/lounge)
+/obj/item/hullbeacon/red,
+/turf/simulated/open/airless,
+/area/template_noop)
"px" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -6955,7 +8350,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/floor_decal/corner/blue/diagonal,
-/turf/simulated/floor/tiled/white,
+/turf/simulated/floor/tiled,
/area/bridge)
"py" = (
/obj/machinery/microscope,
@@ -6963,6 +8358,19 @@
/obj/effect/floor_decal/corner/beige/diagonal,
/turf/simulated/floor/tiled/white,
/area/security/forensics_office)
+"pz" = (
+/obj/item/clothing/suit/storage/hazardvest/white{
+ desc = "A high-visibility vest coated with a water-repellent material. ";
+ name = "lifeguard vest"
+ },
+/obj/item/toy/bosunwhistle{
+ desc = "This is how you get Wendy's whistle wet.";
+ name = "lifeguard whistle"
+ },
+/obj/effect/floor_decal/spline/fancy/wood/cee,
+/obj/structure/table/standard,
+/turf/simulated/floor/wood,
+/area/horizon/crew_quarters/fitness/pool)
"pA" = (
/obj/machinery/light,
/obj/effect/floor_decal/corner/blue{
@@ -6971,10 +8379,10 @@
/turf/simulated/floor/tiled,
/area/bridge/bridge_crew)
"pB" = (
-/obj/machinery/newscaster{
- pixel_x = 29
+/obj/effect/floor_decal/corner/yellow/full{
+ dir = 4
},
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/tiled,
/area/engineering/break_room)
"pC" = (
/obj/machinery/airlock_sensor{
@@ -6984,24 +8392,17 @@
pixel_y = -25
},
/turf/simulated/floor/plating,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"pD" = (
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Deck 3 Starboard Hallway"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/light/small/emergency,
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor,
-/area/maintenance/bridge)
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"pE" = (
/obj/structure/lattice/catwalk/indoor,
/turf/simulated/floor,
@@ -7062,89 +8463,77 @@
/area/crew_quarters/captain)
"pJ" = (
/obj/structure/cable/green{
- icon_state = "4-8"
+ icon_state = "1-2"
},
-/obj/effect/floor_decal/corner/paleblue{
- dir = 10
- },
-/obj/structure/cable/green{
- icon_state = "1-4"
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/horizon/crew_quarters/fitness/hallway)
"pK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/dark,
/area/security/vacantoffice2)
"pL" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
+/obj/structure/bed/stool/chair/office/dark{
+ dir = 1
},
-/obj/machinery/button/remote/airlock{
- id = "bunker3";
- name = "Bunker Inner Airlock Bolt Control";
- pixel_x = -26;
- req_access = list(19);
- specialfunctions = 4
+/obj/effect/floor_decal/spline/plain{
+ dir = 9
},
-/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
+/obj/machinery/power/apc{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/carpet/rubber,
+/area/tcommsat/entrance)
"pM" = (
-/obj/effect/floor_decal/industrial/loading,
-/turf/simulated/floor/tiled/dark,
+/obj/structure/railing/mapped,
+/obj/effect/floor_decal/corner/yellow{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
/area/engineering/break_room)
"pN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/floor_decal/corner/paleblue{
dir = 5
},
-/obj/machinery/ringer_button{
- id = "Consular";
- layer = 3.3;
- name = "Consular ringer button";
- pixel_x = -5;
- pixel_y = 32
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
-"pO" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/highsecurity{
- name = "Shield Generator Room";
- req_one_access = list(11,24)
- },
/obj/machinery/door/firedoor,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"pO" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor,
/area/maintenance/engineering_ladder)
"pP" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing/mapped,
/obj/structure/railing/mapped{
- dir = 1
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/bridge)
+/turf/simulated/open/airless,
+/area/template_noop)
"pQ" = (
-/obj/effect/floor_decal/corner_wide/blue{
+/obj/effect/floor_decal/corner/green{
dir = 6
},
-/obj/item/device/radio/intercom{
- dir = 8;
- name = "Station Intercom (General)";
- pixel_x = 24
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/vending/zora,
+/obj/machinery/light{
+ dir = 4
},
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
+/area/horizon/crew_quarters/fitness/hallway)
"pR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -7175,8 +8564,11 @@
pixel_x = 28;
req_one_access = list(24,11,55)
},
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
/turf/simulated/floor/wood,
-/area/crew_quarters/lounge)
+/area/crew_quarters/lounge/secondary)
"pU" = (
/obj/machinery/atmospherics/pipe/simple/hidden,
/obj/machinery/door/airlock/external{
@@ -7200,15 +8592,29 @@
/turf/simulated/floor/plating,
/area/hallway/secondary/entry/emergency)
"pV" = (
-/obj/structure/lattice,
-/turf/simulated/open,
-/area/hallway/crew_area)
-"pW" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
+/obj/structure/bed/stool/chair/office/dark{
+ dir = 1
},
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai)
+/obj/machinery/button/remote/blast_door{
+ id = "vacant_office";
+ name = "Public Office Shutter";
+ pixel_x = -28;
+ pixel_y = 5
+ },
+/obj/effect/floor_decal/corner/beige{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/vacantoffice)
+"pW" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/port)
"pX" = (
/obj/effect/floor_decal/spline/plain{
dir = 8
@@ -7223,35 +8629,21 @@
/turf/simulated/floor/tiled/white,
/area/security/forensics_morgue)
"pZ" = (
-/obj/effect/floor_decal/corner/paleblue{
+/obj/effect/floor_decal/corner/green{
dir = 6
},
-/obj/structure/closet/emcloset,
+/obj/machinery/light{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"qa" = (
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/tiled/dark,
/area/bridge)
"qb" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/simulated/floor,
-/area/maintenance/bridge)
+/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
+/area/engineering/break_room)
"qc" = (
/obj/effect/floor_decal/corner_wide/green{
dir = 10
@@ -7283,18 +8675,18 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"qf" = (
/obj/structure/cryofeed,
-/obj/structure/window/reinforced{
+/obj/effect/floor_decal/industrial/warning{
dir = 4
},
-/obj/structure/window/reinforced{
- dir = 1
- },
/obj/structure/lattice/catwalk/indoor/grate,
+/obj/structure/railing/mapped{
+ dir = 8
+ },
/turf/simulated/floor,
-/area/crew_quarters/sleep/cryo)
+/area/horizon/crew_quarters/cryo)
"qg" = (
/obj/structure/table/reinforced/wood,
/obj/effect/floor_decal/spline/plain{
@@ -7334,107 +8726,109 @@
/turf/simulated/floor/wood,
/area/bridge/minibar)
"qj" = (
-/obj/effect/floor_decal/industrial/warning,
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai)
+/obj/structure/closet/walllocker/firecloset{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
"qk" = (
-/obj/structure/railing/mapped,
-/turf/simulated/floor,
-/area/maintenance/bridge)
-"qm" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/obj/random/junk,
-/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"ql" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 6
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor,
-/area/maintenance/bridge)
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
"qn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/carpet,
-/area/lawoffice/consular)
+/turf/simulated/floor/reinforced,
+/area/bridge/selfdestruct)
"qo" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/lattice/catwalk/indoor/grate,
/obj/machinery/light/small/emergency{
dir = 4
},
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor,
/area/maintenance/engineering_ladder)
"qp" = (
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance{
- req_one_access = list(12)
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor,
-/area/hallway/primary/starboard)
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"qq" = (
/obj/effect/map_effect/wingrille_spawn/reinforced,
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
/area/security/vacantoffice2)
"qr" = (
-/obj/structure/table/rack,
-/obj/random/arcade,
/obj/machinery/light/small/emergency{
dir = 4
},
-/turf/simulated/floor/tiled/dark,
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled,
/area/maintenance/aux_atmospherics/deck_3)
"qs" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 8
- },
-/turf/simulated/floor/beach/water/pool,
-/area/crew_quarters/fitness/pool)
+/obj/machinery/light,
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/closet/secure_closet/personal,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/fitness/changing)
"qt" = (
-/obj/structure/table/standard,
-/obj/machinery/light/small/red{
+/obj/effect/floor_decal/corner/blue/full{
dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
+/turf/simulated/floor/tiled,
+/area/bridge)
"qu" = (
-/obj/effect/floor_decal/corner_wide/blue{
+/obj/effect/floor_decal/corner/blue{
dir = 6
},
/obj/machinery/light{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
+/obj/machinery/firealarm/east,
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/horizon/crew_quarters/fitness/hallway)
+"qv" = (
+/obj/machinery/door/firedoor,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"qw" = (
/obj/effect/floor_decal/spline/fancy/wood,
/obj/effect/floor_decal/spline/fancy/wood{
@@ -7443,55 +8837,83 @@
/obj/machinery/light{
dir = 1
},
+/obj/machinery/alarm{
+ pixel_y = 28
+ },
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
"qx" = (
-/obj/machinery/vending/coffee,
+/obj/structure/bed/stool/bar/padded/red,
/obj/effect/floor_decal/corner/red/diagonal,
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
-"qy" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/cryo)
-"qB" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/lino/grey,
+/area/horizon/deck_three/cafeteria)
+"qy" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/light_switch{
- pixel_x = 26
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo)
+"qz" = (
+/obj/effect/floor_decal/spline/fancy/wood/cee{
+ dir = 1
+ },
+/obj/structure/bed/stool/chair/padded/brown{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/horizon/crew_quarters/fitness/hallway)
+"qA" = (
+/obj/effect/floor_decal/corner/green/full,
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck - Central Stairwell";
+ dir = 4
+ },
+/obj/structure/sign/emerg_exitZ_stairs/evac,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/industrial/loading/yellow,
+/turf/simulated/floor/tiled,
+/area/horizon/stairwell/central)
+"qB" = (
+/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
+/area/maintenance/bridge)
+"qC" = (
+/obj/structure/bed/stool/chair/padded/brown{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/turf/simulated/floor/wood,
+/area/horizon/hallway/deck_three/primary/starboard)
+"qD" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-21";
+ pixel_x = -4
+ },
+/turf/simulated/floor/wood,
+/area/horizon/deck_three/cafeteria)
+"qE" = (
+/obj/effect/floor_decal/spline/plain/cee,
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Telecommunications Subgrid";
+ name_tag = "Telecommunications Subgrid"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
},
/turf/simulated/floor/carpet/rubber,
/area/tcommsat/entrance)
-"qC" = (
-/obj/effect/floor_decal/corner/paleblue{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
-"qD" = (
-/obj/structure/table/wood,
-/obj/effect/floor_decal/spline/fancy/wood/corner,
-/turf/simulated/floor/wood,
-/area/hallway/primary/starboard)
-"qE" = (
-/obj/structure/railing/mapped{
- dir = 1
- },
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor,
-/area/bridge/aibunker)
"qF" = (
/obj/item/storage/box/swabs{
pixel_x = 16;
@@ -7519,6 +8941,22 @@
},
/turf/simulated/floor/reinforced,
/area/bridge)
+"qH" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/terminal,
+/turf/simulated/floor/carpet/rubber,
+/area/tcommsat/entrance)
"qI" = (
/obj/machinery/door/airlock/external{
frequency = 1337;
@@ -7538,7 +8976,7 @@
req_one_access = list(13)
},
/turf/simulated/floor/plating,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"qJ" = (
/obj/effect/floor_decal/corner/green/diagonal,
/turf/simulated/floor/tiled/white,
@@ -7550,7 +8988,7 @@
/obj/effect/landmark/start{
name = "Engineer"
},
-/turf/simulated/floor/carpet/rubber,
+/turf/simulated/floor/tiled/dark,
/area/engineering/break_room)
"qL" = (
/obj/machinery/hologram/holopad,
@@ -7558,12 +8996,46 @@
/area/bridge/minibar)
"qM" = (
/turf/simulated/floor/beach/water/pool,
-/area/crew_quarters/fitness/pool)
+/area/horizon/crew_quarters/fitness/pool)
+"qN" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
"qO" = (
-/obj/effect/floor_decal/corner/blue/diagonal,
-/obj/structure/window/reinforced,
-/obj/machinery/light/small/red,
-/turf/simulated/floor/tiled,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/structure/bed/stool/chair/padded/brown{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Passenger"
+ },
+/turf/simulated/floor/carpet/art,
+/area/crew_quarters/lounge/secondary)
+"qP" = (
+/obj/machinery/light/small/emergency,
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 4
+ },
+/obj/machinery/computer/security/telescreen{
+ name = "Access Monitor";
+ network = list("Bunker");
+ pixel_y = -32
+ },
+/obj/structure/bed/stool/chair/office/dark{
+ dir = 8
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_y = -4;
+ pixel_x = 36
+ },
+/turf/simulated/floor/tiled/dark,
/area/bridge/aibunker)
"qQ" = (
/obj/effect/floor_decal/corner/grey/diagonal{
@@ -7591,89 +9063,63 @@
/obj/machinery/atmospherics/pipe/manifold/visible{
dir = 4
},
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/tiled,
/area/maintenance/aux_atmospherics/deck_3)
"qU" = (
/turf/simulated/floor/tiled,
/area/security/investigations_storage)
-"qW" = (
-/obj/structure/cable/green{
- icon_state = "0-8"
+"qV" = (
+/obj/machinery/light{
+ dir = 8
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/full{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/stairwell/central)
+"qW" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
+"qX" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing/mapped,
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/turf/simulated/open/airless,
+/area/template_noop)
+"qY" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
+"qZ" = (
+/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
/obj/structure/cable/green{
icon_state = "1-8"
},
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -24
- },
-/obj/machinery/power/sensor{
- name = "Powernet Sensor - Command Subgrid";
- name_tag = "Command Subgrid"
- },
+/obj/structure/cable/green,
/turf/simulated/floor,
-/area/maintenance/substation/command)
-"qY" = (
-/obj/machinery/computer/telecomms/traffic{
- dir = 4
- },
-/turf/simulated/floor/carpet/rubber,
/area/tcommsat/entrance)
-"qZ" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
+"ra" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/corner/blue/diagonal,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/light/small/red{
- dir = 4
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/tiled,
-/area/bridge/aibunker)
-"ra" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/brigdoor{
- base_state = "rightsecure";
- icon_state = "rightsecure";
- name = "Head of Personnel's Desk";
- req_access = list(57)
- },
-/obj/machinery/door/window/northleft{
- name = "Reception Window"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/blast/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id = "hop_office_desk";
- name = "XO Office Privacy Shutters";
- opacity = 0
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "bridge blast";
- name = "Bridge Blast Doors";
- opacity = 0
- },
-/obj/structure/noticeboard{
- pixel_x = 31
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop/xo)
+/area/horizon/hallway/deck_three/primary/starboard)
"rb" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 4
- },
-/turf/simulated/floor/beach/water/pool,
-/area/crew_quarters/fitness/pool)
+/turf/simulated/wall,
+/area/horizon/crew_quarters/fitness/washroom)
"rc" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -7687,15 +9133,20 @@
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
"rd" = (
-/obj/structure/railing/mapped{
- dir = 8
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
},
/obj/structure/railing/mapped{
- dir = 1
+ dir = 4
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor,
-/area/bridge/aibunker)
+/obj/structure/table/steel,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/item/book/manual/wiki/ntsl2,
+/obj/item/clothing/suit/storage/hooded/wintercoat/engineering/atmos,
+/obj/item/clothing/suit/storage/hooded/wintercoat/engineering/atmos,
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/entrance)
"re" = (
/obj/item/modular_computer/console/preset/command/captain{
dir = 8
@@ -7706,31 +9157,24 @@
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
"rf" = (
-/obj/structure/bed/stool/chair/padded/black,
-/turf/simulated/floor/tiled/dark,
-/area/security/vacantoffice)
-"rg" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/corner/blue/diagonal,
-/obj/structure/railing/mapped{
- dir = 1
- },
-/obj/structure/cable/green{
- icon_state = "2-8"
+/obj/structure/table/standard,
+/obj/item/device/camera_film,
+/obj/item/device/camera,
+/obj/effect/floor_decal/corner/beige{
+ dir = 10
},
/turf/simulated/floor/tiled,
-/area/bridge/aibunker)
+/area/security/vacantoffice)
+"rg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/port)
"rh" = (
/obj/item/storage/box/fancy/csi_markers{
pixel_x = -9
@@ -7752,38 +9196,60 @@
/turf/simulated/floor/tiled/white,
/area/security/forensics_office)
"ri" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/structure/table/wood,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop/xo)
+/turf/simulated/floor/carpet,
+/area/lawoffice/representative)
"rj" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/hatch{
- name = "Telecomms Access";
- req_access = list(12, 61)
- },
/obj/machinery/door/firedoor,
-/turf/simulated/floor,
-/area/tcommsat/entrance)
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/hatch{
+ name = "Telecommunications - Server Hall - Interior";
+ req_access = list(61);
+ frequency = 1600;
+ id_tag = "deck3_tcomms_aux_interior";
+ icon_state = "door_locked";
+ locked = 1
+ },
+/obj/structure/plasticflaps/airtight,
+/obj/machinery/access_button{
+ frequency = 1600;
+ command = "cycle_interior";
+ master_tag = "deck3_tcomms_aux_control";
+ req_access = list(61);
+ name = "Telecommunications Airlock Access";
+ pixel_x = 23
+ },
+/turf/simulated/floor/tiled,
+/area/tcommsat/chamber)
"rk" = (
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"rl" = (
-/turf/simulated/wall,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor,
/area/maintenance/security_starboard)
+"rm" = (
+/obj/machinery/light,
+/obj/machinery/computer/robotics{
+ dir = 1
+ },
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
"rn" = (
/obj/structure/bed/stool/chair/plastic{
dir = 8
@@ -7814,24 +9280,28 @@
/turf/simulated/floor/tiled/white,
/area/medical/washroom)
"rp" = (
-/obj/effect/floor_decal/spline/fancy/wood/corner,
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 9
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
-"rq" = (
-/turf/simulated/wall,
-/area/crew_quarters/toilet)
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 32
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/fitness/changing)
"rr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 24;
+ pixel_y = 9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hop/xo)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/corner/green/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo/showers)
"rs" = (
/turf/simulated/wall,
/area/journalistoffice)
@@ -7843,41 +9313,13 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor,
/area/maintenance/engineering_ladder)
-"ru" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/item/flag/scc{
- pixel_y = 15
- },
-/obj/item/flag/scc{
- pixel_y = 10
- },
-/obj/item/flag/scc{
- pixel_y = 4
- },
-/turf/simulated/floor,
-/area/bridge/aibunker)
"rv" = (
-/obj/item/modular_computer/console/preset/command{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hop/xo)
+/turf/simulated/floor/wood,
+/area/lawoffice/consular)
"rw" = (
/obj/structure/table/standard,
/obj/item/paper_bin{
@@ -7890,28 +9332,53 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/investigations)
+"rx" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
+"ry" = (
+/obj/structure/table/rack,
+/obj/item/clothing/gloves/boxing,
+/obj/effect/floor_decal/corner/blue/diagonal,
+/obj/item/clothing/gloves/boxing,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
"rz" = (
-/obj/structure/bed/stool/chair/office/bridge{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
+/turf/simulated/floor/tiled,
+/area/bridge)
"rA" = (
-/obj/effect/floor_decal/corner/paleblue,
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
-"rB" = (
-/obj/effect/floor_decal/corner/grey/diagonal{
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/machinery/light{
dir = 8
},
-/obj/machinery/power/apc/low{
- dir = 4;
- name = "east bump";
- pixel_x = 24
- },
-/obj/structure/cable/green,
/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
+/area/horizon/crew_quarters/fitness/showers)
+"rB" = (
+/obj/structure/bed/stool,
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/effect/floor_decal/spline/plain{
+ dir = 9
+ },
+/obj/structure/railing/mapped{
+ dir = 1
+ },
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/structure/curtain/open,
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/fitness/changing)
"rC" = (
/obj/structure/railing/mapped{
dir = 1
@@ -7930,28 +9397,46 @@
/obj/effect/floor_decal/corner/paleblue{
dir = 5
},
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
pixel_y = 25
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
/turf/simulated/floor/tiled,
/area/hallway/secondary/entry/emergency)
"rE" = (
-/obj/effect/floor_decal/corner/grey/diagonal{
- dir = 8
+/obj/item/reagent_containers/toothpaste{
+ pixel_x = -3
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+/obj/item/reagent_containers/toothpaste{
+ pixel_x = -2
+ },
+/obj/item/reagent_containers/toothbrush{
+ name = "disposable toothbrush";
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/toothbrush{
+ name = "disposable toothbrush";
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/toothbrush/red{
+ name = "disposable toothbrush";
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/toothbrush/red{
+ name = "disposable toothbrush";
+ pixel_y = 8
+ },
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/green/full,
+/obj/machinery/alarm{
+ pixel_y = -28;
dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
+/area/horizon/crew_quarters/fitness/showers)
"rF" = (
/obj/machinery/door/airlock/maintenance{
req_access = list(66)
@@ -7960,25 +9445,21 @@
/turf/simulated/floor,
/area/medical/ward)
"rG" = (
-/obj/structure/bed/stool/chair/sofa/right/brown,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/effect/landmark/start{
- name = "Passenger"
- },
/obj/machinery/status_display{
layer = 4;
pixel_y = 32
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/lounge)
+/turf/simulated/wall,
+/area/crew_quarters/lounge/secondary)
"rH" = (
/obj/structure/lattice/catwalk/indoor/grate,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light/small/emergency{
dir = 8
},
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
/turf/simulated/floor,
/area/maintenance/engineering_ladder)
"rI" = (
@@ -7991,13 +9472,23 @@
name = "Security - Investigations Office"
})
"rJ" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/effect/landmark{
- name = "JoinLateCryo"
- },
/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/landmark{
+ name = "JoinLate"
+ },
/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/cryo)
+/area/horizon/crew_quarters/cryo)
+"rK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"rL" = (
/obj/effect/floor_decal/corner/paleblue/diagonal,
/obj/machinery/power/apc/low{
@@ -8017,15 +9508,20 @@
/turf/simulated/floor/tiled/white,
/area/security/forensics_morgue)
"rM" = (
-/obj/effect/floor_decal/corner/paleblue/full{
- dir = 8
- },
/obj/machinery/light{
dir = 8
},
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/tiled,
-/area/hallway/primary/port)
+/obj/effect/floor_decal/corner/blue{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/firealarm/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_armory)
"rN" = (
/obj/effect/floor_decal/spline/fancy,
/obj/machinery/computer/ship/engines{
@@ -8033,60 +9529,89 @@
},
/turf/simulated/floor/carpet/rubber,
/area/bridge)
-"rQ" = (
-/obj/machinery/bluespacerelay,
-/obj/effect/floor_decal/spline/plain{
+"rO" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/lounge/secondary)
+"rP" = (
+/obj/effect/floor_decal/corner/blue{
dir = 5
},
-/turf/simulated/floor/bluegrid{
- name = "Mainframe Base";
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
- },
+/obj/machinery/disposal/small/south,
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
+"rQ" = (
+/obj/machinery/telecomms/server/presets/science,
+/turf/simulated/floor/bluegrid,
/area/tcommsat/chamber)
-"rS" = (
-/obj/structure/bed/stool/chair/padded/brown{
- dir = 1
- },
-/obj/effect/landmark/start{
- name = "Off-Duty Crew Member"
+"rR" = (
+/obj/structure/table/wood,
+/obj/item/material/ashtray/bronze{
+ pixel_x = -16
},
/turf/simulated/floor/carpet,
-/area/crew_quarters/lounge/secondary)
-"rT" = (
-/turf/simulated/floor/tiled/ramp/bottom{
+/area/lawoffice/consular)
+"rS" = (
+/obj/machinery/hologram/holopad,
+/obj/structure/railing/mapped{
dir = 1
},
-/area/crew_quarters/fitness/pool)
+/turf/simulated/floor/wood,
+/area/crew_quarters/lounge)
+"rT" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
"rU" = (
/obj/structure/cable{
icon_state = "11-2"
},
/obj/structure/disposalpipe/down,
/obj/structure/lattice/catwalk,
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/obj/structure/railing/mapped,
/turf/simulated/open,
/area/maintenance/engineering_ladder)
"rV" = (
-/obj/machinery/power/apc/super{
- dir = 8;
- pixel_x = -24
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/deployable/barrier,
/obj/structure/cable/green{
- icon_state = "0-4"
+ icon_state = "1-8"
},
/turf/simulated/floor/tiled/dark,
/area/crew_armory)
-"rY" = (
-/obj/structure/cable{
- icon_state = "4-8"
+"rX" = (
+/obj/machinery/light{
+ dir = 4
},
+/turf/simulated/open,
+/area/hallway/medical/upper)
+"rY" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"rZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -8110,13 +9635,13 @@
/obj/effect/floor_decal/corner/paleblue{
dir = 10
},
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
/obj/machinery/disposal/small/north,
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
/turf/simulated/floor/tiled,
/area/hallway/secondary/entry/emergency)
"sb" = (
@@ -8124,8 +9649,13 @@
dir = 5
},
/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/sink/kitchen{
+ pixel_y = 26;
+ name = "water fountain"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard)
"sc" = (
/obj/machinery/light_switch{
pixel_x = -14;
@@ -8154,9 +9684,6 @@
dir = 4;
pixel_x = -28
},
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 1
},
@@ -8169,9 +9696,23 @@
/turf/simulated/floor/tiled/white,
/area/security/forensics_morgue)
"sf" = (
-/obj/effect/floor_decal/industrial/warning/corner,
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai)
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/button/remote/airlock{
+ specialfunctions = 4;
+ name = "Command Bunker Interior Bolts";
+ id = "bolts_bunker_internal";
+ req_access = list(19);
+ pixel_x = -25;
+ pixel_y = 25
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
"sg" = (
/obj/structure/toilet{
dir = 8
@@ -8183,13 +9724,17 @@
/turf/simulated/floor/tiled/white,
/area/bridge/bridge_crew)
"sh" = (
-/obj/effect/floor_decal/corner/red/diagonal,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/sink/kitchen{
+ dir = 8;
+ pixel_x = 20;
+ name = "water fountain"
},
-/obj/structure/table/reinforced/wood,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/obj/effect/floor_decal/corner/purple{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/deck_three/nature_showcase)
"si" = (
/obj/effect/map_effect/wingrille_spawn/reinforced,
/turf/simulated/floor/tiled,
@@ -8205,21 +9750,28 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/investigations)
+"sk" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"sl" = (
-/obj/structure/bed/stool/chair/office/bridge,
-/obj/structure/bed/stool/chair/office/bridge,
-/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
-"sm" = (
-/obj/effect/floor_decal/corner/blue/diagonal,
-/obj/structure/window/reinforced{
- dir = 8
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/obj/machinery/light/small/red{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/tiled,
-/area/bridge/aibunker)
+/area/bridge)
+"sm" = (
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/rubber,
+/area/bridge)
"sn" = (
/obj/effect/floor_decal/corner_wide/green{
dir = 9
@@ -8256,12 +9808,15 @@
/turf/simulated/floor/tiled/white,
/area/medical/ward)
"sp" = (
-/obj/structure/table/wood,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
+/obj/effect/floor_decal/corner/green{
+ dir = 6
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/lounge)
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck - Starboard Lounge Port Entrance";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"sq" = (
/obj/structure/bed/stool/bar/padded/blue,
/obj/effect/floor_decal/spline/fancy/wood,
@@ -8281,21 +9836,28 @@
/turf/simulated/floor/wood,
/area/bridge/minibar)
"sr" = (
-/obj/machinery/light{
- dir = 1
+/obj/structure/bed/stool/chair/padded/brown{
+ dir = 8
},
-/turf/simulated/floor/wood,
+/obj/effect/landmark/start{
+ name = "Passenger"
+ },
+/turf/simulated/floor/carpet/art,
/area/crew_quarters/lounge)
"ss" = (
-/obj/machinery/power/smes/buildable{
- RCon_tag = "Substation - Upper Deck"
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/obj/structure/cable,
-/obj/structure/cable/green{
- icon_state = "0-2"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/turf/simulated/floor,
-/area/maintenance/substation/command)
+/obj/effect/floor_decal/corner/green/full,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/cryo/dormitories)
"st" = (
/obj/effect/floor_decal/corner/paleblue{
dir = 10
@@ -8314,7 +9876,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"su" = (
/obj/structure/window/shuttle/scc_space_ship,
/obj/structure/grille,
@@ -8328,6 +9890,15 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/security/forensics_office)
+"sv" = (
+/obj/structure/bed/stool/chair/padded/brown{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
+ },
+/turf/simulated/floor/wood,
+/area/horizon/hallway/deck_three/primary/starboard)
"sw" = (
/obj/structure/window/shuttle/scc_space_ship,
/obj/structure/grille,
@@ -8343,11 +9914,14 @@
/turf/simulated/floor/plating,
/area/medical/washroom)
"sx" = (
-/obj/machinery/telecomms/bus/preset_three,
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+/obj/structure/closet/walllocker/firecloset{
+ pixel_y = 32
},
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor/tiled/dark,
/area/tcommsat/chamber)
"sy" = (
/obj/structure/table/reinforced/wood,
@@ -8358,49 +9932,63 @@
/turf/simulated/floor/marble/dark,
/area/bridge/minibar)
"sz" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
+/obj/structure/filingcabinet/chestdrawer{
+ pixel_x = 7;
+ pixel_y = 1
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/obj/machinery/ringer{
+ department = "Head of Personnel's Office";
+ id = "hop_ringer";
+ req_access = list(57);
+ pixel_y = -32
+ },
+/obj/structure/filingcabinet/filingcabinet{
+ pixel_x = -9;
+ pixel_y = 1
+ },
/turf/simulated/floor/wood,
-/area/lawoffice/representative)
+/area/crew_quarters/heads/hop/xo)
"sA" = (
/turf/simulated/wall,
/area/medical/equipment)
"sB" = (
-/obj/structure/table/wood,
-/obj/item/storage/box/fancy/cookiesnack,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hop/xo)
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"sC" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
/obj/structure/cable/green{
icon_state = "1-2"
},
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"sD" = (
/obj/structure/railing/mapped{
dir = 4
},
/obj/structure/lattice,
/turf/simulated/open,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"sE" = (
-/turf/simulated/floor,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/rubber,
/area/tcommsat/entrance)
"sF" = (
-/obj/structure/lattice,
-/obj/machinery/light/spot/weak{
- dir = 4
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
},
-/turf/simulated/open,
-/area/hallway/primary/starboard)
+/obj/structure/bed/stool/chair/sofa/red,
+/turf/simulated/floor/wood,
+/area/horizon/deck_three/cafeteria)
"sG" = (
/obj/effect/floor_decal/spline/fancy/wood{
dir = 1
@@ -8409,43 +9997,36 @@
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
"sH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/airlock/command{
- id_tag = null;
- name = "Representative Office";
- req_access = list(38)
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/wood,
-/area/lawoffice/representative)
+/obj/structure/table/wood,
+/obj/item/storage/box/fancy/cookiesnack,
+/obj/item/storage/box/fancy/cookiesnack,
+/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup,
+/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup,
+/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup,
+/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hop/xo)
"sI" = (
-/obj/structure/bed/stool/chair{
+/obj/structure/lattice,
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/horizon/hallway/deck_three/primary/starboard)
+"sJ" = (
+/obj/effect/floor_decal/corner/paleblue{
dir = 1
},
-/obj/structure/railing/mapped,
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 6
- },
-/turf/simulated/floor/wood,
-/area/hallway/primary/starboard)
-"sJ" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"sK" = (
+/obj/machinery/light/small/emergency{
+ dir = 8
},
+/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor,
/area/maintenance/engineering_ladder)
-"sK" = (
-/obj/structure/noticeboard{
- pixel_x = 31
- },
-/turf/simulated/floor/tiled/dark,
-/area/engineering/break_room)
"sL" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
@@ -8455,23 +10036,30 @@
},
/turf/simulated/floor/tiled/white,
/area/hallway/medical/upper)
-"sN" = (
-/obj/structure/toilet{
- dir = 1
- },
-/obj/machinery/light/small{
+"sM" = (
+/obj/machinery/camera/network/command{
+ c_tag = "Bridge - Deck 3 - Bunker Airlock";
+ network = list("Command","Bunker");
+ alarm_on = 1;
dir = 8
},
-/obj/machinery/button/remote/airlock{
- id = "main_unit_2";
- name = "Door Bolt Control";
- pixel_x = 25;
- pixel_y = 5;
- req_access = null;
- specialfunctions = 4
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/porta_turret/stationary{
+ req_access = list(19);
+ req_one_access = null
},
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/toilet)
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
+"sN" = (
+/obj/machinery/door/airlock/freezer{
+ id_tag = "main_unit_1";
+ name = "Unit 1"
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/fitness/washroom)
"sO" = (
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -8480,34 +10068,75 @@
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
+"sP" = (
+/obj/structure/lattice,
+/turf/simulated/open/airless,
+/area/template_noop)
"sQ" = (
-/obj/machinery/shower{
- pixel_y = 21
+/obj/structure/filingcabinet/filingcabinet{
+ pixel_x = -9;
+ pixel_y = 1
},
-/obj/structure/curtain/open/shower,
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/heads/hop/xo)
+/obj/machinery/papershredder{
+ pixel_x = 7
+ },
+/obj/machinery/ringer{
+ department = "Representative";
+ id = "Representative";
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/turf/simulated/floor/wood,
+/area/lawoffice/representative)
"sR" = (
/obj/structure/window/shuttle/scc_space_ship,
/obj/structure/grille,
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/crew_quarters/lounge/secondary)
+"sS" = (
+/obj/machinery/door/firedoor,
+/obj/structure/grille/diagonal{
+ dir = 1
+ },
+/obj/structure/window/shuttle/scc_space_ship,
+/obj/machinery/door/blast/shutters/open{
+ id = "shutters_deck3_lounge";
+ name = "Viewing Shutters"
+ },
+/turf/simulated/floor/reinforced,
+/area/horizon/crew_quarters/fitness/lounge)
"sT" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/effect/landmark{
+ name = "JoinLateCryo"
+ },
/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/cryo)
+/area/horizon/crew_quarters/cryo)
+"sU" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck - Fitness Center - Gym Aft";
+ dir = 8
+ },
+/turf/simulated/floor/carpet/rubber,
+/area/horizon/crew_quarters/fitness/gym)
"sV" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -8538,21 +10167,35 @@
/turf/simulated/floor/tiled/white,
/area/security/forensics_morgue)
"sX" = (
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 4
- },
/obj/effect/floor_decal/corner_wide/blue{
dir = 9
},
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
+/area/horizon/crew_quarters/fitness/pool)
"sY" = (
-/obj/structure/table/wood,
-/obj/item/folder/blue,
-/obj/item/stamp/xo,
-/obj/item/stamp/denied,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hop/xo)
+/obj/machinery/door/airlock/command{
+ id_tag = "consular_office";
+ name = "Consular Office";
+ req_access = list(72)
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/map_effect/door_helper/unres{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/lawoffice/consular)
"sZ" = (
/obj/effect/landmark{
name = "carpspawn"
@@ -8560,83 +10203,98 @@
/turf/template_noop,
/area/template_noop)
"ta" = (
-/obj/structure/bed/stool/chair/office/bridge{
- desc = "A seat for a lifeguard.";
- dir = 8;
- name = "lifeguard chair"
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck - Fitness Center Pool Port";
+ dir = 8
},
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 28;
- req_one_access = list(24,11,55)
+/turf/simulated/floor/tiled/ramp{
+ dir = 1
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/fitness/pool)
+/area/horizon/crew_quarters/fitness/pool)
"tb" = (
+/obj/structure/table/reinforced/wood,
+/obj/machinery/chemical_dispenser/coffeemaster/full{
+ pixel_y = 7;
+ pixel_x = -3
+ },
+/obj/effect/floor_decal/corner/red/diagonal,
+/turf/simulated/floor/lino/grey,
+/area/horizon/deck_three/cafeteria)
+"tc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/effect/floor_decal/corner/paleblue{
- dir = 10
- },
-/obj/machinery/door/airlock/multi_tile/glass{
- dir = 1
- },
-/obj/machinery/door/firedoor/multi_tile{
- dir = 2
- },
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
-"tc" = (
-/obj/structure/bed/stool/chair/office/dark{
- dir = 4
- },
-/obj/machinery/button/remote/airlock{
- desc = "A remote control-switch for the office door.";
- id = "hopdoor";
- name = "Office Door Control";
- pixel_x = 26;
- pixel_y = 17;
- req_access = list(57)
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hop/xo)
+/turf/simulated/floor/wood,
+/area/lawoffice/consular)
"td" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
/turf/simulated/floor/tiled,
/area/security/investigations_storage)
-"tf" = (
+"te" = (
/obj/structure/railing/mapped{
dir = 1
},
-/obj/structure/lattice,
-/turf/simulated/open,
-/area/hallway/crew_area)
-"tg" = (
+/turf/simulated/floor/holofloor/tiled/ramp{
+ dir = 4
+ },
+/area/bridge)
+"tf" = (
+/obj/structure/cryofeed/pipes,
+/obj/structure/railing/mapped{
+ dir = 8
+ },
/obj/effect/floor_decal/industrial/warning{
dir = 4
},
-/obj/machinery/power/apc/super{
- dir = 8;
- pixel_x = -24
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/structure/sign/nosmoking_1{
+ pixel_x = 32
},
-/obj/structure/cable,
-/turf/simulated/floor/bluegrid,
-/area/storage/shields)
-"ti" = (
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck - Cryogenic Storage";
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/horizon/crew_quarters/cryo)
+"tg" = (
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/firealarm/west,
/obj/structure/cable{
- icon_state = "1-2"
+ icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/corner/red{
- dir = 5
+/obj/effect/floor_decal/corner/yellow{
+ dir = 9
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/storage/shields)
+"th" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/vending/zora,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/deck_three/cafeteria)
+"ti" = (
+/turf/simulated/floor/tiled/ramp,
+/area/horizon/deck_three/cafeteria)
"tj" = (
/obj/structure/bed/stool/chair{
dir = 1
@@ -8670,6 +10328,32 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/ward/isolation)
+"tl" = (
+/obj/structure/table/rack,
+/obj/effect/floor_decal/corner/blue/diagonal,
+/obj/item/towel,
+/obj/item/towel,
+/obj/item/towel,
+/obj/item/towel,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
+"tm" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 10
+ },
+/obj/structure/bed/stool/chair/office/dark{
+ dir = 4
+ },
+/obj/machinery/turretid/lethal{
+ ailock = 1;
+ check_synth = 1;
+ name = "\improper Command Bunker Turret Control Console";
+ req_access = list(19);
+ pixel_y = -32;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
"tn" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
@@ -8685,56 +10369,89 @@
/turf/simulated/floor/tiled,
/area/security/investigations)
"to" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop/xo)
+/obj/structure/table/wood,
+/turf/simulated/floor/carpet,
+/area/lawoffice/representative)
"tp" = (
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "bridge blast";
+ name = "Bridge Blast Doors";
+ opacity = 0
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor,
-/area/maintenance/bridge)
-"ts" = (
-/obj/structure/bed/stool/chair/sofa/left/brown{
- dir = 8
+/obj/machinery/door/airlock/engineering{
+ name = "Telecommunications - Access and Bridge Substation";
+ req_one_access = list(11, 24, 57)
},
-/obj/structure/window/reinforced{
+/turf/simulated/floor,
+/area/maintenance/substation/command)
+"tq" = (
+/obj/effect/floor_decal/sign/a,
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
dir = 4
},
-/obj/effect/landmark/start{
- name = "Passenger"
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/lounge)
-"tt" = (
-/obj/effect/floor_decal/corner_wide/blue/full,
-/obj/structure/flora/pottedplant{
- icon_state = "plant-29"
- },
-/obj/machinery/light{
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/chamber)
+"tr" = (
+/obj/effect/floor_decal/corner/blue/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
dir = 8
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
-"tu" = (
-/obj/effect/floor_decal/corner/paleblue{
- dir = 5
+/obj/structure/cable/green{
+ icon_state = "2-4"
},
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
+"ts" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/lounge/secondary)
+"tt" = (
+/obj/effect/floor_decal/industrial/loading,
+/obj/effect/floor_decal/industrial/outline,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/rubber,
+/area/horizon/crew_quarters/fitness/gym)
+"tu" = (
/obj/structure/sign/staff_only{
pixel_y = 32
},
/obj/structure/closet/emcloset,
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/full{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"tv" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -8760,7 +10477,11 @@
},
/obj/machinery/door/airlock/hatch,
/turf/simulated/floor,
-/area/maintenance/wing/starboard)
+/area/medical/ward/isolation)
+"tx" = (
+/obj/machinery/telecomms/server/presets/medical,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
"ty" = (
/obj/effect/floor_decal/corner/green/diagonal{
dir = 8
@@ -8777,19 +10498,19 @@
/turf/simulated/floor/tiled/white,
/area/medical/equipment)
"tz" = (
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 9
+/obj/structure/bed/stool/chair/sofa/left/brown{
+ dir = 4
},
-/obj/structure/flora/pottedplant{
- pixel_x = -5
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
+/turf/simulated/floor/carpet/art,
+/area/horizon/crew_quarters/fitness/lounge)
"tA" = (
/obj/effect/floor_decal/corner/blue/full,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/tiled/dark,
/area/bridge/meeting_room)
"tB" = (
@@ -8818,25 +10539,34 @@
id_tag = "nuke_shuttle_dock_pump"
},
/turf/simulated/floor/plating,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
+"tD" = (
+/obj/effect/floor_decal/corner_wide/blue{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/pool)
"tE" = (
/obj/machinery/door/airlock/glass_command{
id_tag = "";
name = "Bridge";
- req_one_access = list(19,38)
+ req_one_access = list(19, 38)
},
/turf/simulated/floor/tiled,
/area/bridge)
"tF" = (
-/obj/machinery/door/airlock/maintenance{
- req_one_access = list(12)
- },
/obj/structure/cable/green{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
-/turf/simulated/floor,
+/obj/machinery/door/airlock/atmos{
+ name = "Deck 3 Port Auxiliary Atmospherics";
+ req_one_access = list(11, 24)
+ },
+/turf/simulated/floor/tiled,
/area/maintenance/aux_atmospherics/deck_3)
"tG" = (
/obj/structure/sign/staff_only{
@@ -8863,44 +10593,54 @@
/turf/simulated/floor,
/area/bridge)
"tJ" = (
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
},
+/obj/machinery/ringer_button{
+ id = "Representative";
+ layer = 3.3;
+ name = "Representative ringer button";
+ pixel_x = 32
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"tK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo/showers)
+"tL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
+"tM" = (
/obj/structure/disposalpipe/segment{
- dir = 8;
+ dir = 2;
icon_state = "pipe-c"
},
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"tK" = (
-/obj/machinery/telecomms/server/presets/medical,
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/area/tcommsat/chamber)
-"tL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
-"tM" = (
-/obj/machinery/firealarm/west,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/dark,
-/area/engineering/break_room)
+/area/horizon/hallway/deck_three/primary/starboard)
"tN" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -8922,12 +10662,14 @@
/turf/simulated/floor/tiled,
/area/security/investigations)
"tO" = (
-/obj/machinery/light{
- dir = 8
+/obj/structure/bed/stool/chair/sofa/corner/brown{
+ dir = 1
},
-/obj/machinery/firealarm/north,
-/turf/simulated/floor/wood,
-/area/crew_quarters/lounge/secondary)
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/art,
+/area/crew_quarters/lounge)
"tP" = (
/obj/effect/floor_decal/spline/plain{
dir = 6
@@ -8948,7 +10690,7 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"tS" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -8966,8 +10708,64 @@
/obj/effect/landmark/start{
name = "Passenger"
},
-/turf/simulated/floor/carpet,
+/turf/simulated/floor/carpet/art,
/area/crew_quarters/lounge)
+"tU" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue{
+ dir = 10
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled,
+/area/bridge)
+"tV" = (
+/obj/item/reagent_containers/toothpaste{
+ pixel_x = -3
+ },
+/obj/item/reagent_containers/toothpaste{
+ pixel_x = -2
+ },
+/obj/item/reagent_containers/toothbrush{
+ name = "disposable toothbrush";
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/toothbrush{
+ name = "disposable toothbrush";
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/toothbrush/red{
+ name = "disposable toothbrush";
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/toothbrush/red{
+ name = "disposable toothbrush";
+ pixel_y = 8
+ },
+/obj/effect/floor_decal/corner/green/full{
+ dir = 8
+ },
+/obj/structure/table/standard,
+/obj/machinery/power/apc/low{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/fitness/showers)
"tW" = (
/obj/effect/shuttle_landmark/legion/green,
/turf/simulated/floor/reinforced,
@@ -8979,6 +10777,22 @@
/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor,
/area/maintenance/engineering_ladder)
+"tY" = (
+/obj/machinery/button/remote/blast_door{
+ name = "Viewing Shutters";
+ id = "shutters_deck3_lounge";
+ dir = 1;
+ pixel_y = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/disposal/small/north,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/art,
+/area/horizon/crew_quarters/fitness/lounge)
"tZ" = (
/obj/structure/bed/stool/chair/padded/brown{
dir = 4
@@ -8994,32 +10808,43 @@
},
/turf/simulated/floor/tiled/white,
/area/hallway/medical/upper)
+"ub" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/lounge)
"uc" = (
-/obj/effect/floor_decal/corner/blue{
- dir = 6
+/obj/effect/floor_decal/corner/green/full{
+ dir = 8
},
-/obj/structure/bed/stool/chair/office/bridge{
- dir = 4
+/obj/structure/sink{
+ pixel_y = 28
},
-/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/mirror{
+ pixel_x = -27
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo/washroom)
"ud" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/full,
+/obj/machinery/light,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
},
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"ue" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor,
-/area/bridge/selfdestruct)
+/obj/structure/table/wood,
+/obj/effect/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/wood,
+/area/horizon/hallway/deck_three/primary/starboard)
"uf" = (
/obj/effect/floor_decal/corner/blue/full{
dir = 8
@@ -9054,26 +10879,32 @@
/turf/simulated/floor/tiled/white,
/area/hallway/medical/upper)
"ui" = (
-/obj/machinery/disposal/small/south,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/lounge)
+/obj/machinery/telecomms/server/presets/engineering,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
"uj" = (
-/obj/structure/plasticflaps/airtight,
+/obj/machinery/door/airlock/maintenance{
+ name = "Executive Officer's Office Maintenance";
+ req_access = list(57)
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable/green{
- icon_state = "1-2"
+ icon_state = "4-8"
},
-/obj/machinery/door/airlock/hatch{
- name = "Telecomms Access";
- req_access = list(12, 61)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor,
-/area/tcommsat/entrance)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop/xo)
"uk" = (
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"ul" = (
/obj/structure/table/glass{
table_reinf = "glass"
@@ -9099,17 +10930,12 @@
/turf/simulated/floor/tiled,
/area/bridge)
"un" = (
-/obj/structure/table/wood,
-/obj/item/clothing/suit/storage/hazardvest/white{
- desc = "A high-visibility vest coated with a water-repellent material. ";
- name = "lifeguard vest"
+/obj/effect/floor_decal/corner/green{
+ dir = 6
},
-/obj/item/toy/bosunwhistle{
- desc = "This is how you get Wendy's whistle wet.";
- name = "lifeguard whistle"
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/fitness/pool)
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
"uo" = (
/obj/structure/railing/mapped{
dir = 8
@@ -9136,30 +10962,28 @@
/turf/simulated/floor/tiled,
/area/bridge)
"ur" = (
-/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/crew_quarters/lounge/secondary)
+"us" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/rubber,
+/area/tcommsat/entrance)
+"ut" = (
+/obj/effect/floor_decal/corner/green{
dir = 5
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/lounge)
-"us" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/corner/blue{
- dir = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
-"ut" = (
/obj/structure/cable/green{
- icon_state = "4-8"
+ icon_state = "1-2"
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"uu" = (
/obj/structure/window/shuttle/scc_space_ship,
/obj/structure/grille,
@@ -9184,17 +11008,33 @@
/obj/structure/closet/secure_closet/personal/patient,
/turf/simulated/floor/tiled/white,
/area/medical/ward/isolation)
-"uz" = (
+"ux" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
/obj/structure/cable/green{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/corner_wide/blue{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/fitness/changing)
+"uy" = (
+/obj/machinery/door/blast/shutters/open{
+ dir = 8;
+ id = "shutters_deck3_cafeutensils";
+ name = "Cafe Utensils Vendor Shutter"
+ },
+/obj/machinery/vending/dinnerware/plastic,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/horizon/deck_three/cafeteria)
+"uz" = (
+/obj/effect/floor_decal/corner/green{
dir = 10
},
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
+/area/horizon/crew_quarters/fitness/hallway)
"uA" = (
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
/area/crew_quarters/heads/cmo)
@@ -9202,8 +11042,25 @@
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
/area/security/vacantoffice2)
"uC" = (
-/obj/machinery/power/breakerbox/activated{
- RCon_tag = "Upper Deck Substation"
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Command Subgrid";
+ name_tag = "Command Subgrid"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor,
/area/maintenance/substation/command)
@@ -9218,50 +11075,104 @@
/area/crew_quarters/captain)
"uE" = (
/obj/effect/floor_decal/corner/blue{
- dir = 5
+ dir = 9
},
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/structure/cable{
+ icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"uF" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 10
+ },
+/obj/machinery/button/remote/airlock{
+ specialfunctions = 4;
+ pixel_y = -38;
+ name = "Entrance Airlock Bolts";
+ id = "bolts_bunker_entrance";
+ req_access = list(19);
+ dir = 1;
+ pixel_x = 6
+ },
+/obj/machinery/button/remote/airlock{
+ specialfunctions = 4;
+ name = "Command Bunker Interior Bolts";
+ id = "bolts_bunker_internal";
+ req_access = list(19);
+ pixel_x = -6;
+ dir = 1;
+ pixel_y = -27
+ },
+/obj/machinery/button/remote/airlock{
+ specialfunctions = 4;
+ name = "Command Bunker Exterior Bolts";
+ id = "bolts_bunker_external";
+ req_access = list(19);
+ pixel_x = -6;
+ dir = 1;
+ pixel_y = -38
+ },
+/obj/structure/table/wood,
/turf/simulated/floor/tiled/dark,
/area/bridge/aibunker)
+"uG" = (
+/obj/machinery/telecomms/bus/preset_three,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
"uH" = (
/obj/effect/floor_decal/corner/paleblue{
dir = 5
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled,
/area/hallway/secondary/entry/emergency)
-"uJ" = (
-/obj/machinery/telecomms/server/presets/science,
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+"uI" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
},
-/area/tcommsat/chamber)
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/machinery/light,
+/turf/simulated/floor/grass/alt,
+/area/horizon/deck_three/nature_showcase)
+"uK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/railing/mapped,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"uL" = (
/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"uM" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/item/hullbeacon/red,
+/turf/simulated/floor/reinforced,
+/area/template_noop)
"uN" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor,
/area/maintenance/bridge)
+"uO" = (
+/obj/machinery/telecomms/relay/preset/station,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
"uP" = (
/obj/structure/window/shuttle/scc_space_ship,
/obj/structure/grille,
@@ -9276,25 +11187,37 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/medical/equipment)
-"uR" = (
-/obj/structure/cable/green{
- icon_state = "2-4"
+"uQ" = (
+/obj/machinery/light{
+ dir = 4
},
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
+"uR" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
},
-/obj/effect/floor_decal/corner/paleblue{
- dir = 5
- },
/obj/structure/disposalpipe/sortjunction/flipped{
name = "Journalist";
sortType = "Journalist"
},
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"uS" = (
/obj/effect/floor_decal/corner/grey/diagonal{
dir = 8
@@ -9326,6 +11249,13 @@
},
/turf/simulated/floor/carpet/rubber,
/area/crew_quarters/captain)
+"uU" = (
+/obj/effect/floor_decal/corner/blue/full,
+/obj/item/modular_computer/console/preset/command{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
"uV" = (
/obj/machinery/alarm{
pixel_y = 28
@@ -9337,35 +11267,40 @@
dir = 4
},
/obj/machinery/camera/network/third_deck{
- c_tag = "Third Deck - Hallway 3"
+ c_tag = "Third Deck - Central Ring Aft"
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"uW" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
},
-/obj/machinery/light{
- dir = 4
+/mob/living/simple_animal/corgi/Ian,
+/obj/machinery/door/window/westleft{
+ req_access = list(57);
+ name = "Ian's Cage Access"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/wood,
-/area/lawoffice/representative)
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hop/xo)
"uX" = (
/obj/structure/cable/green{
icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/sortjunction{
+ sortType = "Deck 3 Cafe";
+ name = "Deck 3 Cafe"
},
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"uY" = (
/obj/machinery/light{
dir = 4
@@ -9382,8 +11317,15 @@
/turf/simulated/floor/tiled,
/area/bridge)
"uZ" = (
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hop/xo)
+/obj/machinery/photocopier,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/structure/cable/green,
+/turf/simulated/floor/wood,
+/area/lawoffice/consular)
"va" = (
/obj/effect/floor_decal/corner/blue{
dir = 5
@@ -9399,44 +11341,43 @@
/turf/simulated/floor/tiled,
/area/bridge)
"vb" = (
-/obj/effect/floor_decal/corner/paleblue{
+/obj/effect/floor_decal/corner/blue/full{
dir = 1
},
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/horizon/crew_quarters/fitness/hallway)
"vc" = (
-/obj/structure/window/reinforced,
-/obj/structure/lattice,
/obj/structure/railing/mapped{
- dir = 4
- },
-/turf/simulated/open,
-/area/hallway/crew_area)
-"vd" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/structure/disposalpipe/junction{
- dir = 2;
- icon_state = "pipe-j2"
+/obj/effect/floor_decal/corner/green{
+ dir = 9
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
+"vd" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/vending/cola,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/deck_three/cafeteria)
"ve" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
+"vf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/full{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/cryo/dormitories)
"vg" = (
/obj/effect/floor_decal/spline/plain,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -9455,18 +11396,42 @@
/turf/simulated/floor,
/area/crew_quarters/heads/cmo)
"vi" = (
-/obj/item/storage/secure/safe{
- pixel_x = -28
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = -25
+ },
+/obj/structure/table/wood,
+/obj/item/paper_scanner,
+/obj/item/device/hand_labeler,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
},
/turf/simulated/floor/wood,
-/area/lawoffice/representative)
-"vk" = (
-/obj/machinery/message_server,
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+/area/crew_quarters/heads/hop/xo)
+"vj" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
-/area/tcommsat/chamber)
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"vk" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/table/wood,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"vl" = (
/obj/structure/cable/green{
icon_state = "1-8"
@@ -9483,23 +11448,42 @@
/obj/effect/floor_decal/corner/blue{
dir = 6
},
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/tiled,
/area/bridge/third_deck_stairs)
"vm" = (
/turf/simulated/wall,
/area/maintenance/engineering_ladder)
"vn" = (
-/obj/structure/table/wood,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = 24
+ },
/obj/machinery/light{
dir = 1
},
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/item/device/eftpos{
- eftpos_name = "HoP EFTPOS scanner"
+/turf/simulated/floor/carpet,
+/area/lawoffice/representative)
+"vo" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
},
-/obj/item/paper_scanner,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop/xo)
+/obj/structure/table/rack,
+/obj/random/loot,
+/turf/simulated/floor,
+/area/maintenance/bridge)
+"vp" = (
+/obj/machinery/door/airlock/glass{
+ name = "Recreational Area Lounge"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/lounge)
"vq" = (
/turf/simulated/floor/tiled,
/area/security/investigations)
@@ -9510,12 +11494,17 @@
},
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"vs" = (
/obj/random/loot,
/obj/structure/closet,
/turf/simulated/floor,
/area/maintenance/engineering_ladder)
+"vt" = (
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/lino/grey,
+/area/horizon/deck_three/cafeteria)
"vu" = (
/obj/machinery/door/airlock/external{
frequency = 1337;
@@ -9529,7 +11518,22 @@
dir = 4
},
/turf/simulated/floor/plating,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
+"vv" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
"vw" = (
/obj/effect/floor_decal/spline/fancy,
/obj/item/modular_computer/console/preset/medical{
@@ -9544,7 +11548,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
-/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -9555,8 +11558,12 @@
dir = 10
},
/obj/structure/closet/walllocker/emerglocker/south,
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck - Starboard Dock Port";
+ dir = 1
+ },
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"vz" = (
/obj/structure/window/shuttle/scc_space_ship,
/obj/structure/grille,
@@ -9585,11 +11592,51 @@
/turf/simulated/floor/tiled/white,
/area/security/forensics_office)
"vB" = (
-/obj/effect/floor_decal/corner/blue{
- dir = 5
+/obj/effect/floor_decal/spline/plain/corner,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/carpet/rubber,
+/area/tcommsat/entrance)
+"vC" = (
+/obj/machinery/power/smes/buildable{
+ RCon_tag = "Substation - Deck 3 Command"
+ },
+/obj/structure/cable,
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/command)
+"vD" = (
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ name = "Pool"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
+/area/horizon/crew_quarters/fitness/pool)
"vE" = (
/obj/effect/landmark{
name = "RevenantRift"
@@ -9597,29 +11644,38 @@
/turf/simulated/floor/holofloor/reinforced,
/area/holodeck/alphadeck)
"vF" = (
+/obj/structure/railing/mapped{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/full{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"vG" = (
+/obj/machinery/door/airlock{
+ name = "Toilet 1";
+ id_tag = "cryo_toilet_1"
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/cryo/washroom)
+"vH" = (
+/obj/effect/floor_decal/corner/blue/diagonal,
/obj/structure/cable/green{
- icon_state = "4-8"
+ icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 2;
+ icon_state = "pipe-c"
},
-/obj/effect/floor_decal/corner/blue/diagonal,
/turf/simulated/floor/tiled,
-/area/bridge/aibunker)
-"vH" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/light/small/emergency{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor,
-/area/maintenance/engineering_ladder)
+/area/bridge)
"vI" = (
/obj/structure/window/shuttle/scc_space_ship,
/obj/structure/grille,
@@ -9634,16 +11690,17 @@
/turf/simulated/floor/plating,
/area/security/forensics_morgue)
"vJ" = (
-/obj/machinery/button/remote/blast_door{
- id = "vacant_office";
- name = "\improper Office shutters";
- pixel_x = -22;
- pixel_y = 22
- },
-/obj/structure/bed/stool/chair/office/dark{
+/obj/machinery/light{
dir = 8
},
-/turf/simulated/floor/tiled/dark,
+/obj/machinery/requests_console{
+ department = "Vacant Office";
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/corner/beige{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
/area/security/vacantoffice)
"vK" = (
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
@@ -9657,6 +11714,22 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/vacantoffice2)
+"vM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"vN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled,
+/area/maintenance/aux_atmospherics/deck_3)
"vO" = (
/obj/effect/floor_decal/corner/paleblue/full{
dir = 4
@@ -9674,42 +11747,94 @@
/obj/machinery/portable_atmospherics/canister/air/airlock,
/turf/simulated/floor/tiled,
/area/hallway/secondary/entry/emergency)
+"vP" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/telecomms/server/presets/security,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
"vQ" = (
-/obj/effect/floor_decal/spline/fancy/wood/corner{
- dir = 1
+/obj/machinery/door/airlock{
+ name = "Locker Room"
},
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 9
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/fitness/changing)
"vR" = (
/obj/effect/floor_decal/corner/red{
- dir = 5
+ dir = 6
},
-/obj/effect/floor_decal/corner/red{
- dir = 5
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/turf/simulated/floor/lino/grey,
+/area/horizon/deck_three/cafeteria)
"vS" = (
/turf/simulated/wall,
/area/crew_quarters/lounge)
"vT" = (
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 6
+/obj/structure/grille,
+/obj/structure/window/shuttle/scc_space_ship,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/shutters/open{
+ id = "shutters_deck3_showers";
+ name = "Viewing Shutters";
+ dir = 8
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = 32
+/turf/simulated/floor/plating,
+/area/horizon/crew_quarters/fitness/showers)
+"vU" = (
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 2
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 2;
+ name = "Recreational Area"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
+/area/horizon/crew_quarters/fitness/hallway)
"vW" = (
/obj/effect/floor_decal/spline/fancy/wood{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
@@ -9718,17 +11843,40 @@
dir = 8
},
/turf/simulated/open,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"vZ" = (
-/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/door/airlock/maintenance{
+ req_one_access = list(12, 26)
+ },
+/obj/machinery/door/firedoor,
/turf/simulated/floor,
-/area/bridge/aibunker)
+/area/maintenance/bridge)
"wa" = (
-/obj/effect/floor_decal/spline/plain{
+/obj/machinery/light,
+/obj/machinery/firealarm/south,
+/obj/effect/floor_decal/corner_wide/blue{
dir = 10
},
-/turf/simulated/floor/beach/water/pool,
-/area/crew_quarters/fitness/pool)
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/pool)
+"wb" = (
+/obj/structure/table/wood,
+/obj/item/pen,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge/meeting_room)
+"wc" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/sign/nosmoking_2{
+ pixel_x = 32
+ },
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
"wd" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -9746,17 +11894,15 @@
dir = 10
},
/turf/simulated/floor/tiled,
-/area/bridge/aibunker)
-"we" = (
-/obj/machinery/blackbox_recorder,
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
- },
-/area/tcommsat/chamber)
+/area/bridge)
"wf" = (
-/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
-/area/hallway/primary/starboard)
+/obj/effect/floor_decal/corner/blue/diagonal,
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
"wg" = (
/obj/effect/floor_decal/corner/grey/diagonal{
dir = 8
@@ -9765,11 +11911,9 @@
/turf/simulated/floor/tiled/white,
/area/medical/washroom)
"wh" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 6
- },
-/turf/simulated/floor/beach/water/pool,
-/area/crew_quarters/fitness/pool)
+/obj/effect/floor_decal/corner/green,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"wi" = (
/obj/structure/railing/mapped{
dir = 4
@@ -9785,9 +11929,6 @@
/turf/simulated/floor/carpet/rubber,
/area/bridge)
"wj" = (
-/obj/effect/floor_decal/corner/paleblue{
- dir = 5
- },
/obj/machinery/light{
dir = 1
},
@@ -9798,8 +11939,14 @@
/obj/item/stack/medical/bruise_pack,
/obj/item/stack/medical/ointment,
/obj/item/stack/medical/ointment,
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/reagent_containers/hypospray/autoinjector/inaprovaline,
+/obj/item/reagent_containers/hypospray/autoinjector/inaprovaline,
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"wl" = (
/obj/structure/railing/mapped{
dir = 1
@@ -9833,6 +11980,11 @@
},
/turf/simulated/floor/tiled/dark,
/area/medical/smoking)
+"wo" = (
+/obj/effect/floor_decal/spline/fancy/wood/cee,
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/grass/alt,
+/area/horizon/hallway/deck_three/primary/starboard)
"wp" = (
/turf/simulated/wall/r_wall,
/area/crew_quarters/heads/cmo)
@@ -9864,45 +12016,71 @@
/obj/effect/floor_decal/corner/blue/full{
dir = 1
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/dark,
/area/bridge/meeting_room)
"wv" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
+/obj/machinery/power/smes/buildable{
+ RCon_tag = "Shield Substation";
+ charge = 1e+007;
+ cur_coils = 6;
+ input_attempt = 1;
+ input_level = 500000;
+ output_attempt = 1;
+ output_level = 500000
},
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/structure/cable/cyan{
+ icon_state = "0-4"
},
-/obj/machinery/light{
+/obj/effect/floor_decal/corner/yellow/full{
dir = 8
},
-/turf/simulated/floor/bluegrid,
+/turf/simulated/floor/tiled/dark,
/area/storage/shields)
"ww" = (
/turf/simulated/floor/tiled,
-/area/crew_quarters/sleep/cryo)
+/area/horizon/crew_quarters/cryo)
"wx" = (
+/obj/machinery/atmospherics/binary/pump/high_power{
+ dir = 4;
+ name = "Aux Tanks Inlet"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark,
/area/maintenance/aux_atmospherics/deck_3)
"wy" = (
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/dark,
/area/crew_armory)
"wz" = (
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -28
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/shieldwallgen,
-/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark,
/area/crew_armory)
+"wA" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/rubber,
+/area/tcommsat/entrance)
"wB" = (
/obj/machinery/door/blast/shutters{
dir = 2;
@@ -9924,34 +12102,33 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/tiled,
-/area/hallway/secondary/entry/emergency)
-"wD" = (
-/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
-/obj/machinery/atmospherics/pipe/manifold/hidden/black{
- dir = 1
- },
-/turf/simulated/floor,
-/area/tcommsat/entrance)
-"wF" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/corner/blue/diagonal,
-/obj/structure/railing/mapped{
+/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/tiled,
-/area/bridge/aibunker)
+/area/hallway/secondary/entry/emergency)
+"wD" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/structure/table/wood,
+/obj/item/device/flashlight/lamp/lava/pink,
+/turf/simulated/floor/carpet/art,
+/area/crew_quarters/lounge/secondary)
+"wF" = (
+/obj/machinery/computer/telecomms/monitor{
+ network = "tcommsat"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/entrance)
"wG" = (
-/obj/machinery/nuclearbomb/station,
-/obj/effect/decal/warning_stripes,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/reinforced,
-/area/bridge/selfdestruct)
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor/bluegrid{
+ temperature = 278;
+ name = "cooled mainframe floor"
+ },
+/area/bridge)
"wH" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -9986,33 +12163,44 @@
/turf/simulated/open,
/area/hallway/medical/upper)
"wJ" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/effect/floor_decal/corner/blue{
dir = 6
},
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled,
/area/bridge)
"wK" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/machinery/newscaster{
pixel_y = 30
},
/obj/effect/floor_decal/corner/paleblue{
dir = 5
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/turf/simulated/floor/tiled,
/area/hallway/secondary/entry/emergency)
+"wL" = (
+/obj/effect/floor_decal/corner_wide/blue{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/pool)
"wM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -10025,9 +12213,17 @@
/turf/simulated/floor/tiled,
/area/bridge/bridge_crew)
"wN" = (
-/obj/machinery/firealarm/north,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hop/xo)
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"wO" = (
/obj/structure/cable/green,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -10042,6 +12238,9 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/investigations)
+"wP" = (
+/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
+/area/horizon/crew_quarters/fitness/showers)
"wQ" = (
/obj/machinery/light{
dir = 4
@@ -10050,55 +12249,103 @@
pixel_y = 28
},
/obj/structure/filingcabinet/chestdrawer,
+/obj/item/paper,
/turf/simulated/floor/carpet,
/area/security/forensics_office{
name = "Security - Investigations Office"
})
"wR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"wS" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access = list(12)
+ },
+/obj/machinery/door/firedoor,
/obj/structure/cable/green{
icon_state = "1-2"
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hop/xo)
-"wT" = (
-/obj/structure/closet/secure_closet/xo,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop/xo)
-"wU" = (
-/obj/structure/railing/mapped,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/power/apc/low{
- dir = 8;
- name = "west bump";
- pixel_x = -24
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor,
/area/maintenance/bridge)
-"wV" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/carpet,
-/area/lawoffice/consular)
-"wW" = (
-/obj/effect/floor_decal/corner/paleblue/full{
+"wT" = (
+/obj/structure/bed/stool/chair/padded/brown{
dir = 4
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet,
+/area/lawoffice/representative)
+"wU" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/corner/yellow{
+ dir = 6
+ },
+/obj/structure/bed/stool/chair/office/dark{
dir = 8
},
-/obj/machinery/vending/cola,
+/obj/effect/landmark/start{
+ name = "Engineering Apprentice"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
+"wV" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/loading/yellow{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge/selfdestruct)
+"wW" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/obj/structure/table/wood,
+/obj/machinery/newscaster{
+ pixel_y = -32
+ },
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
"wX" = (
-/obj/machinery/pipedispenser,
/obj/machinery/atmospherics/pipe/simple/visible{
dir = 6
},
-/turf/simulated/floor/tiled/dark,
+/obj/structure/table/rack,
+/obj/random/arcade,
+/obj/item/storage/bag/inflatable,
+/turf/simulated/floor/tiled,
/area/maintenance/aux_atmospherics/deck_3)
"wY" = (
/obj/structure/railing/mapped,
@@ -10113,9 +12360,6 @@
/obj/structure/table/rack,
/obj/item/towel,
/obj/item/towel,
-/obj/item/towel{
- pixel_y = 6
- },
/obj/item/towel{
pixel_y = 6
},
@@ -10128,6 +12372,9 @@
pixel_x = 23;
pixel_y = -9
},
+/obj/random/soap,
+/obj/random/soap,
+/obj/random/soap,
/turf/simulated/floor/tiled/white,
/area/medical/washroom)
"xa" = (
@@ -10137,8 +12384,14 @@
/area/security/forensics_morgue)
"xb" = (
/obj/structure/bed/stool/chair,
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"xc" = (
/obj/structure/window/shuttle/scc_space_ship,
/obj/structure/grille/diagonal{
@@ -10147,17 +12400,16 @@
/turf/simulated/floor/wood,
/area/bridge/minibar)
"xd" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/airlock/multi_tile/glass{
- name = "Pool"
+ name = "Recreational Area"
},
/obj/machinery/door/firedoor/multi_tile,
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
+"xe" = (
+/obj/machinery/telecomms/hub/preset,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
"xf" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -10184,6 +12436,9 @@
/obj/item/book/manual/gravitygenerator,
/obj/item/book/manual/wiki/station_procedure,
/obj/item/book/manual/wiki/security_space_law,
+/obj/item/book/manual/psych,
+/obj/item/book/manual/stasis,
+/obj/item/book/manual/tcfl_pamphlet,
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
"xh" = (
@@ -10196,21 +12451,54 @@
/obj/effect/floor_decal/corner/paleblue{
dir = 9
},
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
-"xk" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/table/wood,
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"xm" = (
-/obj/structure/cable{
- icon_state = "4-8"
+/area/horizon/hallway/deck_three/primary/starboard)
+"xj" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 9
},
+/obj/machinery/firealarm/west,
+/obj/machinery/disposal/small/east,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
+"xk" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"xl" = (
+/obj/machinery/door/airlock{
+ name = "Washroom"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/cryo/washroom)
+"xm" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor,
/area/maintenance/engineering_ladder)
@@ -10232,56 +12520,79 @@
},
/turf/simulated/floor/tiled/white,
/area/hallway/medical/upper)
+"xo" = (
+/obj/item/hullbeacon/red,
+/turf/simulated/floor/reinforced,
+/area/template_noop)
+"xp" = (
+/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
+/area/horizon/crew_quarters/fitness/lounge)
"xq" = (
/obj/structure/cryofeed,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/lattice/catwalk/indoor/grate,
/obj/machinery/light{
dir = 4
},
-/turf/simulated/floor,
-/area/crew_quarters/sleep/cryo)
-"xr" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/effect/floor_decal/industrial/warning{
dir = 4
},
/obj/structure/lattice/catwalk/indoor/grate,
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = 32
+ },
/turf/simulated/floor,
-/area/bridge/aibunker)
+/area/horizon/crew_quarters/cryo)
+"xr" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/cryo/dormitories)
"xs" = (
/turf/simulated/wall,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"xt" = (
/obj/machinery/door/airlock/glass{
name = "Holodeck"
},
/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
-"xu" = (
-/obj/structure/closet/emcloset,
-/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
-/area/bridge/aibunker)
-"xv" = (
-/obj/structure/cable{
- icon_state = "1-2"
+/area/horizon/crew_quarters/fitness/hallway)
+"xu" = (
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/flag/scc/l{
+ pixel_y = 4
+ },
+/obj/item/flag/scc{
+ pixel_y = 10
+ },
+/obj/item/flag/scc{
+ pixel_y = 15
+ },
+/obj/structure/table/glass,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"xv" = (
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable,
+/obj/machinery/power/terminal{
+ dir = 4
+ },
/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/camera/network/engineering{
+ c_tag = "Engineering - Deck 3 - Telecommunications Substation";
+ dir = 4;
+ alarm_on = 1
+ },
/turf/simulated/floor,
/area/maintenance/substation/command)
"xw" = (
@@ -10306,11 +12617,14 @@
/turf/simulated/floor/tiled/dark,
/area/security/vacantoffice2)
"xz" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
},
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/obj/structure/bed/stool/chair{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/horizon/deck_three/cafeteria)
"xA" = (
/turf/simulated/wall,
/area/security/vacantoffice)
@@ -10324,18 +12638,29 @@
/turf/simulated/floor/tiled/white,
/area/crew_quarters/heads/cmo)
"xC" = (
+/obj/structure/lattice/catwalk/indoor/grate,
/obj/structure/cable/green{
icon_state = "1-2"
},
-/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor,
/area/maintenance/security_starboard)
+"xD" = (
+/obj/effect/floor_decal/corner/red/full,
+/obj/structure/railing/mapped,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
"xE" = (
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
-/area/maintenance/wing/starboard)
+/area/medical/ward/isolation)
"xF" = (
-/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
-/area/crew_quarters/toilet)
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/landmark{
+ name = "JoinLateCryo"
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo)
"xG" = (
/obj/structure/railing/mapped{
dir = 8
@@ -10346,19 +12671,12 @@
/turf/simulated/open,
/area/hallway/medical/upper)
"xH" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 5
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable/green{
+ icon_state = "1-8"
},
-/obj/machinery/turretid/lethal{
- ailock = 1;
- check_synth = 1;
- desc = "A firewall prevents AIs from interacting with this device.";
- name = "Scuttling Device Chamber turrets control";
- pixel_y = 27;
- req_access = list(20)
- },
-/turf/simulated/floor,
-/area/bridge/selfdestruct)
+/turf/simulated/floor/tiled,
+/area/hallway/primary/port)
"xI" = (
/turf/simulated/open,
/area/security/investigations)
@@ -10366,57 +12684,66 @@
/obj/structure/cable/green{
icon_state = "1-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/turf/simulated/floor/tiled,
/area/security/investigations)
"xK" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/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/item/device/radio/intercom{
- dir = 1;
- name = "Station Intercom (General)";
+/obj/machinery/power/apc/critical{
pixel_y = -24
},
-/obj/machinery/disposal/small/north,
-/obj/structure/disposalpipe/trunk{
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/effect/floor_decal/industrial/warning{
dir = 1
},
/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/cryo)
+/area/horizon/crew_quarters/cryo)
"xL" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/effect/floor_decal/corner/blue{
- dir = 9
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
-/turf/simulated/floor/tiled,
-/area/bridge)
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo/showers)
"xM" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/wood,
-/area/lawoffice/representative)
+/area/crew_quarters/heads/hop/xo)
+"xN" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/obj/structure/closet/walllocker/medical{
+ pixel_x = -32
+ },
+/obj/item/stack/medical/bruise_pack,
+/obj/item/stack/medical/bruise_pack,
+/obj/item/stack/medical/ointment,
+/obj/item/stack/medical/ointment,
+/obj/item/reagent_containers/hypospray/autoinjector/inaprovaline,
+/obj/item/reagent_containers/hypospray/autoinjector/inaprovaline,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
"xO" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
@@ -10448,9 +12775,19 @@
/turf/simulated/floor/tiled/ramp/bottom,
/area/security/vacantoffice2)
"xQ" = (
-/obj/structure/closet,
+/obj/random/junk,
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
/turf/simulated/floor,
/area/maintenance/security_starboard)
+"xR" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/engineering/break_room)
"xS" = (
/obj/effect/floor_decal/corner/green/diagonal,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -10465,6 +12802,19 @@
/obj/machinery/light,
/turf/simulated/floor/tiled/white,
/area/medical/ward/isolation)
+"xT" = (
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light/small/emergency{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/engineering_ladder)
"xU" = (
/obj/structure/banner/scc,
/obj/effect/floor_decal/spline/fancy/wood{
@@ -10490,32 +12840,73 @@
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
"xV" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai)
-"xX" = (
-/obj/machinery/light{
+/obj/effect/floor_decal/industrial/warning{
dir = 8
},
-/obj/structure/noticeboard{
+/obj/effect/floor_decal/corner/blue{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ req_one_access = list(24,11,55);
+ pixel_y = -28;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
+"xW" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/obj/machinery/alarm{
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"xX" = (
+/obj/machinery/anti_bluespace,
+/obj/machinery/camera/motion{
+ c_tag = "Scuttling Device - Motion";
+ network = list("Secure");
+ dir = 4;
+ alarm_on = 1
+ },
+/obj/structure/sign/flag/scc{
pixel_x = -32
},
-/obj/machinery/disposal/small/east,
-/obj/structure/disposalpipe/trunk{
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/reinforced,
+/area/bridge/selfdestruct)
+"xY" = (
+/obj/machinery/power/apc/critical{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/structure/cable/green,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/cryo/dormitories)
+"xZ" = (
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/carpet,
-/area/lawoffice/consular)
-"xZ" = (
-/obj/structure/lattice,
-/obj/structure/railing/mapped{
- dir = 8
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/structure/railing/mapped,
-/turf/simulated/open,
-/area/hallway/primary/starboard)
+/turf/simulated/floor/lino/grey,
+/area/horizon/deck_three/cafeteria)
"ya" = (
/obj/structure/bed/stool/chair/plastic{
dir = 8
@@ -10568,27 +12959,42 @@
/turf/simulated/floor/tiled/dark,
/area/security/vacantoffice2)
"yd" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor,
+/area/maintenance/engineering_ladder)
+"ye" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"yf" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/carpet/art,
+/area/horizon/crew_quarters/fitness/lounge)
+"yg" = (
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/lino/grey,
+/area/horizon/deck_three/cafeteria)
+"yh" = (
/obj/structure/cable/green{
icon_state = "4-8"
},
-/turf/simulated/floor,
-/area/maintenance/substation/command)
-"yg" = (
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/corner/red/full{
- dir = 8
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
-"yh" = (
-/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"yi" = (
/obj/machinery/button/switch/windowtint{
id = "cap";
@@ -10601,10 +13007,34 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/carpet/rubber,
/area/crew_quarters/captain)
+"yj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/art,
+/area/horizon/crew_quarters/fitness/lounge)
"yk" = (
-/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
-/turf/simulated/floor,
-/area/maintenance/bridge)
+/obj/machinery/door/firedoor,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Deck 3 Starboard Hallway"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"ym" = (
/obj/effect/floor_decal/corner/blue{
dir = 5
@@ -10648,45 +13078,48 @@
/turf/simulated/floor/tiled,
/area/security/vacantoffice2)
"yp" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/bed/stool/chair/sofa/corner/brown{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
+/obj/effect/floor_decal/corner/purple/full,
+/obj/machinery/seed_storage/garden,
+/obj/machinery/light/small{
dir = 8
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/lounge)
+/turf/simulated/floor/tiled,
+/area/horizon/deck_three/nature_showcase)
"yq" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/locker)
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/fitness/changing)
"yr" = (
-/obj/machinery/firealarm/west,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop/xo)
-"ys" = (
-/obj/machinery/power/smes/buildable{
- RCon_tag = "Substation - Bridge"
+/obj/effect/floor_decal/corner/green{
+ dir = 9
},
-/obj/structure/cable,
-/obj/structure/cable/green{
- icon_state = "0-2"
+/obj/structure/sink/kitchen{
+ dir = 4;
+ pixel_x = -20;
+ name = "water fountain"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
+"ys" = (
+/obj/machinery/power/apc/low{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
},
/turf/simulated/floor,
/area/maintenance/substation/command)
"yt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/dark,
/area/crew_armory)
"yu" = (
@@ -10695,33 +13128,49 @@
/turf/simulated/floor/carpet/rubber,
/area/crew_quarters/captain)
"yv" = (
-/obj/machinery/vending/cigarette,
-/obj/effect/floor_decal/corner/paleblue/full{
- dir = 8
- },
-/obj/structure/railing/mapped{
- dir = 1
+/obj/structure/railing/mapped,
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/effect/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
+"yw" = (
+/obj/structure/flora/pottedplant/random,
+/obj/effect/floor_decal/corner/green/full{
+ dir = 4
},
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"yy" = (
-/obj/effect/floor_decal/corner/paleblue{
- dir = 10
+/obj/machinery/door/airlock/glass_security{
+ req_one_access = list(1, 19);
+ name = "Crew Armoury Desk"
+ },
+/obj/machinery/door/blast/regular{
+ id = "crew_armoury_desk";
+ name = "Crew Armoury Desk"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/item/device/radio/intercom{
- dir = 1;
- name = "Station Intercom (General)";
- pixel_y = -21
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
-/area/hallway/primary/port)
+/area/crew_armory)
"yz" = (
-/obj/structure/bed/stool,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/locker)
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"yA" = (
/obj/effect/floor_decal/corner/blue{
dir = 6
@@ -10735,6 +13184,24 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
+"yB" = (
+/obj/machinery/button/remote/airlock{
+ dir = 4;
+ id = "cryo_toilet_1";
+ name = "Door Bolt Control";
+ specialfunctions = 4;
+ pixel_x = -32
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/structure/toilet{
+ dir = 1;
+ pixel_y = -1
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo/washroom)
"yC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -10743,22 +13210,17 @@
dir = 4
},
/turf/simulated/floor/wood,
-/area/crew_quarters/lounge)
+/area/crew_quarters/lounge/secondary)
"yD" = (
-/obj/structure/cable/green{
- icon_state = "1-4"
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/effect/landmark{
+ name = "borerstart"
},
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/effect/floor_decal/corner/blue/diagonal,
-/turf/simulated/floor/tiled,
-/area/bridge/aibunker)
+/turf/simulated/floor/carpet/rubber,
+/area/tcommsat/entrance)
"yE" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/green{
@@ -10773,42 +13235,59 @@
/obj/machinery/door/airlock/glass_command{
id_tag = "";
name = "Bridge Officer Preparation";
- req_one_access = list(19,38,72)
+ req_access = list(19)
},
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/tiled,
/area/bridge/third_deck_stairs)
"yF" = (
+/obj/structure/ladder{
+ pixel_y = 16
+ },
+/turf/simulated/open/airless,
+/area/template_noop)
+"yG" = (
+/obj/structure/table/wood,
+/obj/machinery/chemical_dispenser/coffee,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hop/xo)
+"yH" = (
+/obj/effect/floor_decal/sign/b,
+/obj/effect/floor_decal/spline/plain,
/obj/effect/floor_decal/spline/plain{
dir = 1
},
-/turf/simulated/floor/bluegrid{
- name = "Mainframe Base";
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
-/area/tcommsat/chamber)
-"yG" = (
-/obj/structure/table/rack,
-/obj/random/loot,
-/turf/simulated/floor,
-/area/maintenance/bridge)
-"yH" = (
-/obj/structure/table/standard,
-/obj/machinery/recharger{
- pixel_x = 1;
- pixel_y = 2
+/obj/structure/cable/green{
+ icon_state = "2-4"
},
-/obj/machinery/light,
/turf/simulated/floor/tiled/dark,
-/area/security/vacantoffice)
+/area/tcommsat/chamber)
"yJ" = (
-/obj/structure/lattice,
-/obj/machinery/light/spot/weak{
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
+ },
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-33";
+ pixel_x = -4;
+ pixel_y = 16
+ },
+/turf/simulated/floor/wood,
+/area/horizon/deck_three/cafeteria)
+"yK" = (
+/obj/machinery/cryopod,
+/obj/effect/floor_decal/corner/green/full{
dir = 1
},
-/turf/simulated/open,
-/area/hallway/primary/starboard)
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo)
"yL" = (
/obj/effect/floor_decal/corner/blue{
dir = 10
@@ -10822,13 +13301,30 @@
/obj/structure/lattice/catwalk,
/turf/simulated/open/airless,
/area/template_noop)
-"yO" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock{
- name = "Restroom"
+"yN" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 9
},
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/heads/hop/xo)
+/obj/structure/sink/kitchen{
+ dir = 4;
+ pixel_x = -20;
+ name = "water fountain"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"yO" = (
+/obj/structure/bed/stool/chair/office/bridge/generic{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Corporate Liaison"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/lawoffice/representative)
"yP" = (
/obj/structure/window/shuttle/scc_space_ship,
/obj/structure/grille,
@@ -10862,61 +13358,76 @@
/turf/simulated/floor/tiled,
/area/bridge/third_deck_stairs)
"yS" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/carpet/rubber,
-/area/lawoffice/representative)
-"yT" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/carpet/rubber,
-/area/tcommsat/entrance)
-"yU" = (
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 5
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
-"yV" = (
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/light,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"yT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black,
+/obj/effect/floor_decal/spline/plain/cee,
+/obj/effect/floor_decal/industrial/loading/yellow{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/chamber)
+"yU" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor,
-/area/maintenance/bridge)
-"yW" = (
-/obj/effect/floor_decal/corner_wide/blue/full{
- dir = 1
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
},
-/obj/machinery/vending/cigarette,
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/horizon/crew_quarters/fitness/hallway)
+"yV" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/obj/structure/sign/directions/tcom{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"yW" = (
+/obj/effect/floor_decal/spline/fancy/wood/cee,
+/obj/structure/table/wood,
+/turf/simulated/floor/wood,
+/area/horizon/crew_quarters/fitness/hallway)
"yX" = (
/turf/simulated/wall,
/area/medical/washroom)
"yY" = (
/obj/effect/floor_decal/industrial/warning,
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/hidden,
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"yZ" = (
/obj/effect/floor_decal/corner/paleblue/diagonal,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -10946,41 +13457,48 @@
},
/turf/simulated/floor/tiled/white,
/area/hallway/medical/upper)
-"zd" = (
-/obj/structure/trash_pile,
-/turf/simulated/floor,
+"zc" = (
+/obj/effect/map_effect/airlock/long/square/wide{
+ name = "Deck 3 Starboard Maintenance Airlock (3002)";
+ radio_frequency = 3002
+ },
+/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
/area/maintenance/bridge)
-"ze" = (
-/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
- },
+"zd" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/floor_decal/corner/blue/diagonal,
-/obj/machinery/light/small/red{
- dir = 1
- },
-/obj/structure/window/reinforced{
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/tiled,
-/area/bridge/aibunker)
-"zg" = (
+/area/horizon/hallway/deck_three/primary/starboard)
+"ze" = (
+/obj/structure/bed/stool/chair/padded/brown,
/obj/effect/floor_decal/corner/paleblue{
- dir = 5
- },
-/obj/structure/railing/mapped{
- dir = 1
+ dir = 6
},
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/hallway/primary/port)
+"zf" = (
+/obj/item/modular_computer/console/preset/security,
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/crew_armory)
+"zg" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/lawoffice/representative)
"zh" = (
/obj/effect/floor_decal/spline/fancy{
dir = 9
@@ -10991,48 +13509,37 @@
/turf/simulated/floor/carpet/rubber,
/area/bridge)
"zi" = (
-/obj/effect/floor_decal/corner/paleblue{
- dir = 6
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
-/obj/machinery/vending/snack,
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/port)
+/turf/simulated/floor/tiled/dark,
+/area/crew_armory)
"zj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
+/area/horizon/crew_quarters/fitness/hallway)
"zk" = (
/obj/structure/cable/green{
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/structure/lattice/catwalk/indoor/grate,
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 10
},
+/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor,
/area/maintenance/security_starboard)
"zl" = (
-/obj/structure/bed/stool/chair/padded/brown{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/effect/landmark/start{
- name = "Off-Duty Crew Member"
- },
-/turf/simulated/floor/carpet,
+/turf/simulated/floor/wood,
/area/crew_quarters/lounge/secondary)
"zm" = (
/obj/effect/floor_decal/corner/blue{
@@ -11046,50 +13553,130 @@
},
/turf/simulated/floor/tiled,
/area/bridge/bridge_crew)
-"zo" = (
-/obj/effect/floor_decal/corner/paleblue{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"zq" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"zt" = (
-/obj/machinery/door/airlock/maintenance{
- req_access = null;
- req_one_access = list(12,66)
- },
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor,
-/area/maintenance/engineering_ladder)
-"zu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+"zn" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 6
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/structure/cable/green{
icon_state = "4-8"
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
-"zw" = (
+/area/horizon/crew_quarters/fitness/hallway)
+"zo" = (
/obj/effect/floor_decal/corner/paleblue{
- dir = 6
+ dir = 8
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
+"zp" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/obj/structure/bed/stool/chair/padded/brown{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/art,
+/area/crew_quarters/lounge/secondary)
+"zq" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"zr" = (
+/obj/effect/floor_decal/corner_wide/blue{
+ dir = 9
+ },
+/obj/structure/flora/pottedplant{
+ pixel_x = -5
+ },
+/obj/machinery/button/remote/blast_door{
+ name = "Viewing Shutters";
+ id = "shutters_deck3_pool";
+ dir = 4;
+ pixel_x = -32
+ },
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck - Fitness Center Pool Starboard";
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/pool)
+"zs" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "bridge blast";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/reinforced,
+/area/bridge)
+"zt" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/alarm{
+ pixel_x = -28;
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/engineering_ladder)
+"zu" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
+"zv" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/structure/sign/directions/cryo{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"zw" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/vending/cigarette,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/deck_three/cafeteria)
"zx" = (
/obj/machinery/light{
dir = 1
@@ -11105,6 +13692,14 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
+"zy" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing/mapped,
+/obj/structure/railing/mapped{
+ dir = 1
+ },
+/turf/simulated/open/airless,
+/area/template_noop)
"zz" = (
/obj/structure/railing/mapped{
dir = 8
@@ -11112,11 +13707,12 @@
/turf/simulated/open,
/area/security/investigations)
"zA" = (
-/obj/effect/floor_decal/corner/paleblue{
+/obj/effect/floor_decal/spline/fancy/wood{
dir = 6
},
-/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/obj/structure/flora/pottedplant/random,
+/turf/simulated/floor/wood,
+/area/crew_quarters/lounge/secondary)
"zB" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -11146,34 +13742,59 @@
/turf/simulated/floor/tiled/ramp{
dir = 4
},
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"zD" = (
-/obj/structure/bed/stool/chair/office/light{
- dir = 8
+/obj/machinery/door/airlock/glass{
+ name = "Deck 3 Starboard Hallway"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/landmark{
- name = "borerstart"
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"zE" = (
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/turf/simulated/floor/carpet/rubber,
-/area/tcommsat/entrance)
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/civilian_east)
"zF" = (
-/obj/machinery/washing_machine,
-/obj/machinery/light{
+/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner/green/diagonal,
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/fitness/changing)
+"zG" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/telecomms/processor/preset_three,
+/obj/structure/sign/electricshock{
+ pixel_y = 32
+ },
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"zH" = (
+/obj/effect/floor_decal/corner_wide/blue{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/locker)
-"zG" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
- },
-/area/tcommsat/chamber)
+/area/horizon/crew_quarters/fitness/pool)
"zI" = (
/obj/structure/bed/stool/chair/padded/beige{
dir = 8
@@ -11189,11 +13810,16 @@
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
"zJ" = (
-/obj/item/modular_computer/console/preset/ai{
- dir = 1
+/obj/effect/floor_decal/corner/blue{
+ dir = 10
},
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai)
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
"zK" = (
/obj/effect/floor_decal/corner/blue{
dir = 9
@@ -11205,9 +13831,12 @@
/turf/simulated/floor/tiled,
/area/bridge/bridge_crew)
"zL" = (
-/obj/effect/map_effect/airlock/long/square/wide/mining,
+/obj/effect/map_effect/airlock/long/square/wide{
+ name = "Deck 3 Starboard Dock Airlock (3001)";
+ radio_frequency = 3001
+ },
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"zM" = (
/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
/obj/machinery/door/blast/shutters{
@@ -11218,6 +13847,30 @@
},
/turf/simulated/floor/tiled,
/area/medical/ward/isolation)
+"zN" = (
+/obj/effect/floor_decal/corner/lime{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"zO" = (
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
"zP" = (
/obj/effect/floor_decal/corner/paleblue{
dir = 10
@@ -11229,15 +13882,23 @@
/obj/machinery/door/airlock/glass{
name = "Deck 3 Port Docks"
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/hallway/secondary/entry/emergency)
"zQ" = (
-/obj/structure/curtain/open/shower,
-/obj/machinery/shower{
+/obj/effect/floor_decal/corner/blue/full{
dir = 4
},
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/toilet)
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/cable/green,
+/obj/machinery/power/portgen/basic,
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
"zR" = (
/turf/simulated/floor/carpet,
/area/journalistoffice)
@@ -11246,12 +13907,6 @@
icon_state = "11-1"
},
/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/zpipe/down/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
- dir = 1
- },
/turf/simulated/open,
/area/maintenance/security_starboard)
"zT" = (
@@ -11273,7 +13928,7 @@
/turf/simulated/floor/tiled/ramp/bottom{
dir = 4
},
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"zV" = (
/obj/machinery/vending/dinnerware,
/obj/effect/floor_decal/spline/fancy/wood{
@@ -11282,26 +13937,15 @@
/turf/simulated/floor/wood,
/area/bridge/minibar)
"zW" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
+/obj/effect/floor_decal/corner/red{
+ dir = 9
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/effect/floor_decal/corner/paleblue{
+/obj/effect/floor_decal/spline/plain{
dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/lino/grey,
+/area/horizon/deck_three/cafeteria)
"zX" = (
/obj/structure/railing/mapped{
dir = 4
@@ -11316,7 +13960,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_command{
name = "Break Room";
- req_access = list(19)
+ req_one_access = list(19, 38)
},
/obj/effect/floor_decal/corner/blue{
dir = 6
@@ -11327,25 +13971,18 @@
/turf/simulated/floor/tiled,
/area/bridge/third_deck_stairs)
"zZ" = (
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/effect/floor_decal/corner/paleblue{
- dir = 10
- },
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/structure/disposalpipe/junction/yjunction,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Deck 3 Port Docks"
+ },
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"Aa" = (
/obj/effect/floor_decal/corner/paleblue{
dir = 10
@@ -11359,11 +13996,8 @@
/turf/simulated/floor/tiled,
/area/hallway/secondary/entry/emergency)
"Ab" = (
-/obj/machinery/alarm{
- pixel_y = 28
- },
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/toilet)
+/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
+/area/horizon/crew_quarters/fitness/pool)
"Ac" = (
/obj/structure/toilet{
dir = 4
@@ -11371,48 +14005,49 @@
/turf/simulated/floor/tiled/freezer,
/area/medical/washroom)
"Ad" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/locker)
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/fitness/changing)
"Ae" = (
/obj/effect/floor_decal/spline/fancy/wood{
dir = 9
},
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/wood,
-/area/bridge/meeting_room)
-"Af" = (
-/obj/structure/closet/secure_closet/personal,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/locker)
-"Ag" = (
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 10
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
+"Af" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck - Locker Room";
+ dir = 4
+ },
+/obj/machinery/disposal/small/east,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/fitness/changing)
+"Ag" = (
+/turf/simulated/floor/tiled/ramp{
+ dir = 1
+ },
+/area/bridge/meeting_room)
"Ah" = (
/obj/effect/floor_decal/spline/fancy/wood{
dir = 8
@@ -11421,31 +14056,47 @@
/turf/simulated/floor/wood,
/area/bridge/minibar)
"Ai" = (
-/turf/simulated/floor/carpet/rubber,
+/turf/simulated/floor/tiled/dark,
/area/engineering/break_room)
"Aj" = (
/obj/structure/closet/emcloset,
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"Al" = (
-/obj/effect/floor_decal/corner/grey/diagonal{
+/area/horizon/hallway/deck_three/primary/starboard)
+"Ak" = (
+/obj/effect/floor_decal/spline/fancy/wood{
dir = 8
},
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/grass/alt,
+/area/horizon/hallway/deck_three/primary/starboard)
+"Al" = (
+/obj/structure/table/rack,
+/obj/item/towel,
+/obj/random/soap,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/horizon/crew_quarters/fitness/showers)
+"Am" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Deck 3 Port Docks"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
-"Am" = (
-/obj/structure/table/wood,
-/obj/effect/floor_decal/spline/fancy/wood/corner{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/hallway/primary/starboard)
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/emergency)
"An" = (
/obj/effect/floor_decal/corner/red/full,
/obj/structure/sink{
@@ -11459,8 +14110,44 @@
/turf/simulated/floor/tiled/dark,
/area/medical/ward/isolation)
"Ao" = (
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/toilet)
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 12
+ },
+/obj/structure/mirror{
+ pixel_x = 25
+ },
+/obj/effect/floor_decal/corner/green/full{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/fitness/washroom)
+"Ap" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/flag/sol/right{
+ pixel_x = 32;
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/bridge)
+"Aq" = (
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/structure/punching_bag,
+/obj/effect/floor_decal/corner/red{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
"Ar" = (
/obj/effect/floor_decal/spline/plain{
dir = 8
@@ -11483,19 +14170,45 @@
/obj/machinery/cryopod{
dir = 4
},
-/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/cryo)
+/area/horizon/crew_quarters/cryo)
+"Av" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/carpet/rubber,
+/area/horizon/crew_quarters/fitness/gym)
"Aw" = (
-/obj/machinery/light{
- dir = 8
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 4
},
-/obj/effect/floor_decal/corner/blue{
- dir = 6
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/obj/machinery/firealarm/west,
/turf/simulated/floor/tiled,
/area/bridge)
+"Ax" = (
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"Ay" = (
/obj/structure/bed/stool/chair{
dir = 1
@@ -11509,45 +14222,51 @@
/turf/simulated/floor/tiled/dark,
/area/security/vacantoffice2)
"Az" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable/green{
- icon_state = "4-8"
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/beige{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/security/vacantoffice)
+"AA" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Dormitories"
+ },
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/cryo/dormitories)
+"AB" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/effect/floor_decal/corner/blue{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/door/airlock{
- id_tag = "vacant_door";
- name = "Vacant Office"
- },
/turf/simulated/floor/tiled/dark,
-/area/security/vacantoffice)
-"AA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/bridge/selfdestruct)
+/area/horizon/crew_quarters/fitness/hallway)
"AC" = (
/turf/simulated/wall,
/area/hallway/medical/upper)
"AD" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/structure/cable{
- icon_state = "1-4"
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
},
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/structure/cable/green,
/turf/simulated/floor,
/area/maintenance/engineering_ladder)
"AE" = (
@@ -11556,35 +14275,26 @@
/turf/simulated/floor,
/area/maintenance/engineering_ladder)
"AF" = (
-/obj/structure/closet/lasertag,
/obj/machinery/light{
dir = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/locker)
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/effect/floor_decal/spline/plain{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/fitness/changing)
"AG" = (
/obj/structure/railing/mapped{
dir = 1
},
-/obj/structure/railing/mapped{
- dir = 8
- },
-/obj/structure/railing/mapped{
- dir = 4
- },
/turf/simulated/open,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"AH" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/camera/network/third_deck{
c_tag = "Third Deck - Investigator Entrance";
dir = 1
@@ -11592,17 +14302,21 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"AI" = (
-/obj/machinery/light{
- dir = 8
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+ dir = 4
},
-/turf/simulated/floor/wood,
-/area/lawoffice/representative)
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"AI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"AJ" = (
/obj/effect/floor_decal/spline/plain,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -11670,17 +14384,26 @@
/obj/structure/bed/stool/chair/office/bridge,
/turf/simulated/floor/carpet/rubber,
/area/bridge)
+"AR" = (
+/obj/effect/floor_decal/corner/paleblue/full{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/hallway/deck_three/primary/starboard)
"AS" = (
-/obj/effect/floor_decal/corner_wide/blue{
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green{
dir = 6
},
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
+/area/horizon/crew_quarters/fitness/hallway)
"AT" = (
/obj/machinery/door/airlock/glass_command{
id_tag = "";
name = "Bridge Officer Preparation";
- req_one_access = list(19,38,72)
+ req_access = list(19)
},
/obj/machinery/door/firedoor,
/obj/machinery/door/blast/regular{
@@ -11693,34 +14416,10 @@
/turf/simulated/floor/tiled,
/area/bridge/bridge_crew)
"AU" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
/obj/machinery/light{
dir = 1
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"AV" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/structure/cable/cyan{
- icon_state = "1-2"
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/bluegrid,
-/area/storage/shields)
-"AW" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
+/obj/structure/disposalpipe/junction{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -11729,52 +14428,81 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/newscaster{
- pixel_y = 32
+/obj/effect/floor_decal/corner/paleblue/full{
+ dir = 8
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"AX" = (
-/obj/structure/table/standard,
-/obj/item/storage/firstaid,
+/area/horizon/hallway/deck_three/primary/starboard)
+"AV" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor,
+/area/maintenance/engineering_ladder)
+"AW" = (
+/obj/effect/floor_decal/corner_wide/blue{
+ dir = 10
+ },
+/obj/structure/closet/lasertag/blue,
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
+/area/horizon/crew_quarters/fitness/pool)
+"AX" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/full{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/cryo/dormitories)
+"AY" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
"AZ" = (
-/obj/machinery/light{
+/obj/machinery/door/airlock/hatch{
+ name = "Telecommunications - Control Room";
+ req_access = list(61)
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/filingcabinet,
-/turf/simulated/floor/carpet/rubber,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
/area/tcommsat/entrance)
"Ba" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/alarm{
+ pixel_x = -28;
+ dir = 4
},
-/obj/structure/cable/cyan{
- icon_state = "1-8"
- },
-/obj/machinery/camera/network/engineering{
- c_tag = "Engineering - Shield Room";
- dir = 8
- },
-/turf/simulated/floor/bluegrid,
-/area/storage/shields)
+/turf/simulated/floor,
+/area/maintenance/engineering_ladder)
"Bb" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+/obj/machinery/vending/coffee,
+/obj/machinery/light{
+ dir = 1
},
-/obj/machinery/camera/network/third_deck{
- c_tag = "Third Deck - Crew Armory";
- dir = 8
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_armory)
+/turf/simulated/floor/wood,
+/area/crew_quarters/lounge/secondary)
"Bc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/obj/effect/floor_decal/corner/blue/diagonal,
-/turf/simulated/floor/tiled/white,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
/area/bridge)
"Bd" = (
/obj/structure/bed/stool/chair{
@@ -11784,165 +14512,213 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/effect/floor_decal/corner/paleblue/full{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"Be" = (
/obj/effect/floor_decal/corner/paleblue{
dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/obj/structure/bed/stool/chair/padded/brown{
dir = 4
},
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
"Bf" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/machinery/ringer{
- department = "Head of Personnel's Office";
- id = "hop_ringer";
- pixel_x = 30;
- req_access = list(57)
+/obj/item/device/taperecorder{
+ pixel_x = 3;
+ pixel_y = 3
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hop/xo)
+/obj/item/storage/briefcase,
+/obj/item/device/flash,
+/obj/item/storage/secure/briefcase,
+/obj/item/device/eftpos{
+ eftpos_name = "Internal Affairs EFTPOS scanner"
+ },
+/obj/item/clothing/under/suit_jacket/really_black,
+/obj/item/clothing/shoes/laceup,
+/obj/item/clothing/shoes/laceup,
+/obj/item/clipboard,
+/obj/item/pen/multi,
+/obj/item/device/camera,
+/obj/structure/closet/lawcloset,
+/obj/item/stamp/denied,
+/obj/item/stamp{
+ name = "consular stamp"
+ },
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/obj/machinery/light,
+/turf/simulated/floor/wood,
+/area/lawoffice/consular)
"Bg" = (
-/obj/machinery/deployable/barrier,
-/turf/simulated/floor/tiled/dark,
+/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
+/turf/simulated/floor,
/area/crew_armory)
"Bh" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "Executive Officer's Office";
- req_access = list(57)
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "bridge blast";
- name = "Bridge Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/wall/r_wall,
/area/bridge/meeting_room)
+"Bi" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 5
+ },
+/obj/structure/railing/mapped{
+ dir = 1
+ },
+/obj/structure/railing/mapped{
+ dir = 1
+ },
+/obj/structure/holohoop,
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
"Bj" = (
/obj/structure/undies_wardrobe{
pixel_y = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/locker)
+/obj/effect/floor_decal/corner/green/full,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/fitness/changing)
"Bk" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/light/small/emergency{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/bridge)
-"Bl" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/wood,
-/area/lawoffice/representative)
-"Bm" = (
-/obj/structure/bed/stool/chair/padded/brown{
+/obj/item/modular_computer/console/preset/command{
dir = 8
},
-/obj/machinery/newscaster{
- pixel_x = 32
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
},
-/obj/effect/landmark/start{
- name = "Passenger"
+/obj/machinery/light{
+ dir = 4
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/lounge)
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop/xo)
+"Bl" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/machinery/photocopier,
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop/xo)
+"Bm" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/obj/structure/flora/pottedplant/random,
+/turf/simulated/floor/wood,
+/area/crew_quarters/lounge/secondary)
"Bn" = (
/obj/effect/floor_decal/spline/fancy{
dir = 5
},
/turf/simulated/floor/carpet/rubber,
/area/bridge)
+"Bo" = (
+/obj/effect/floor_decal/corner_wide/blue{
+ dir = 5
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/pool)
"Bp" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
/obj/machinery/alarm{
- dir = 1;
- pixel_y = -28
+ dir = 8;
+ pixel_x = 28
},
-/obj/structure/flora/pottedplant/random,
-/obj/machinery/ringer{
- department = "Representative";
- id = "Representative";
- pixel_x = 32
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/xo2,
+/obj/structure/sign/nosmoking_2{
+ pixel_y = -32
},
/turf/simulated/floor/wood,
-/area/lawoffice/representative)
+/area/crew_quarters/heads/hop/xo)
+"Bq" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor,
+/area/maintenance/engineering_ladder)
"Br" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "conpipe-c"
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
/turf/simulated/floor/wood,
-/area/lawoffice/representative)
+/area/lawoffice/consular)
"Bs" = (
+/obj/effect/floor_decal/corner/red/diagonal,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/tiled/dark,
/area/crew_armory)
-"Bv" = (
-/obj/effect/floor_decal/corner/red/diagonal,
+"Bt" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/random/junk,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/turf/simulated/floor,
+/area/maintenance/bridge)
+"Bu" = (
+/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
/obj/structure/cable/green{
- icon_state = "0-4"
+ icon_state = "1-4"
},
-/obj/machinery/power/apc/low{
- dir = 8;
- name = "west bump";
- pixel_x = -24
+/obj/structure/cable/green,
+/turf/simulated/floor,
+/area/tcommsat/entrance)
+"Bv" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/structure/flora/ausbushes/brflowers,
+/obj/machinery/camera/network/service{
+ c_tag = "Third Deck - Nature Showcase";
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/turf/simulated/floor/grass/alt,
+/area/horizon/deck_three/nature_showcase)
"Bw" = (
/obj/machinery/door/airlock/hatch{
desc = "It opens and closes. It has a small sign engraved: Bunker capacity: 6. Only facility's Command Staff is permitted.";
icon_state = "door_locked";
id_tag = "RunCapRun";
locked = 1;
- name = "Maintenance Access";
+ name = "Decrepit Maintenance Hatch";
req_access = list(20);
secured_wires = 1
},
-/obj/structure/plasticflaps/airtight,
-/turf/simulated/floor,
+/obj/structure/curtain/black,
+/obj/effect/decal/cleanable/cobweb2,
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
/area/crew_quarters/captain)
"Bx" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/westright,
-/obj/structure/table/reinforced,
-/obj/machinery/door/blast/shutters{
- dir = 8;
- id = "vacant_office";
- name = "office shutter"
+/obj/structure/closet/secure_closet/personal,
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/machinery/light{
+ dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/security/vacantoffice)
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo/dormitories)
"By" = (
/obj/machinery/alarm{
pixel_y = 28
@@ -11964,17 +14740,23 @@
/turf/simulated/floor/tiled/white,
/area/crew_quarters/heads/cmo)
"Bz" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
/turf/simulated/floor/wood,
-/area/crew_quarters/lounge)
+/area/crew_quarters/lounge/secondary)
+"BA" = (
+/turf/simulated/wall,
+/area/maintenance/substation/civilian_east)
"BB" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
@@ -11995,6 +14777,14 @@
/area/security/forensics_office{
name = "Security - Investigations Office"
})
+"BE" = (
+/obj/effect/floor_decal/corner_wide/blue{
+ dir = 10
+ },
+/obj/structure/closet/lasertag,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/pool)
"BF" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
@@ -12002,25 +14792,35 @@
/turf/simulated/floor/tiled/dark,
/area/medical/smoking)
"BG" = (
-/obj/structure/table/rack,
-/turf/simulated/floor,
-/area/maintenance/substation/command)
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet,
+/obj/item/clothing/suit/storage/hooded/wintercoat/engineering/atmos,
+/obj/item/clothing/suit/storage/hooded/wintercoat/engineering/atmos,
+/obj/structure/coatrack{
+ pixel_y = 1;
+ pixel_x = -10
+ },
+/obj/machinery/embedded_controller/radio/airlock/access_controller{
+ pixel_x = 25;
+ frequency = 1600;
+ id_tag = "deck3_tcomms_aux_control";
+ tag_exterior_door = "deck3_tcomms_aux_exterior";
+ tag_interior_door = "deck3_tcomms_aux_interior"
+ },
+/turf/simulated/floor/tiled,
+/area/tcommsat/chamber)
"BH" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/effect/floor_decal/corner/green/full{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/sign/nosmoking_1{
- pixel_y = -32
+/obj/machinery/computer/cryopod{
+ pixel_y = -33
},
/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/cryo)
+/area/horizon/crew_quarters/cryo)
"BI" = (
/obj/machinery/power/apc/low{
dir = 1;
@@ -12040,26 +14840,37 @@
/area/journalistoffice)
"BJ" = (
/obj/effect/floor_decal/corner/blue/full,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/bridge)
"BK" = (
-/obj/structure/bed/stool/chair,
/obj/effect/floor_decal/spline/fancy/wood{
- dir = 5
+ dir = 9
},
+/obj/structure/bed/stool/chair/sofa/right/red,
/turf/simulated/floor/wood,
-/area/hallway/primary/starboard)
+/area/horizon/deck_three/cafeteria)
"BL" = (
/obj/effect/floor_decal/corner/green/diagonal,
/obj/structure/curtain/open,
/turf/simulated/floor/tiled/white,
/area/medical/ward/isolation)
"BM" = (
-/obj/structure/bed/stool/chair/padded/black,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/noticeboard{
+ pixel_x = -32
},
-/turf/simulated/floor/tiled/dark,
+/obj/structure/table/steel,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/effect/floor_decal/corner/yellow{
+ dir = 9
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
/area/engineering/break_room)
"BN" = (
/obj/effect/floor_decal/spline/fancy/wood{
@@ -12081,16 +14892,9 @@
/turf/simulated/floor/marble/dark,
/area/bridge/minibar)
"BP" = (
-/obj/machinery/power/apc/critical{
- dir = 4;
- pixel_x = 24
- },
-/obj/structure/cable/green{
- icon_state = "0-8"
- },
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/cryo)
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor,
+/area/maintenance/bridge)
"BQ" = (
/obj/structure/window/shuttle/scc_space_ship,
/obj/structure/grille/diagonal{
@@ -12102,16 +14906,13 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
+"BR" = (
+/obj/structure/flora/pottedplant/random,
+/turf/simulated/floor/carpet/art,
+/area/horizon/crew_quarters/fitness/lounge)
"BS" = (
-/obj/effect/floor_decal/industrial/outline/red,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/bridge)
+/turf/simulated/wall/r_wall,
+/area/maintenance/substation/command)
"BT" = (
/obj/effect/floor_decal/corner/blue{
dir = 6
@@ -12125,19 +14926,44 @@
/turf/simulated/floor/tiled,
/area/bridge)
"BU" = (
-/obj/structure/lattice,
-/obj/machinery/light/spot/weak,
-/turf/simulated/open,
-/area/hallway/primary/starboard)
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/horizon/deck_three/cafeteria)
+"BV" = (
+/obj/structure/bed/stool/chair/padded/brown{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Passenger"
+ },
+/turf/simulated/floor/carpet/art,
+/area/crew_quarters/lounge/secondary)
"BW" = (
/obj/effect/floor_decal/corner/paleblue/full{
dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"BX" = (
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
+"BY" = (
+/obj/effect/floor_decal/corner/green/full{
+ dir = 1
+ },
+/obj/structure/sink{
+ pixel_y = 28
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/mirror{
+ pixel_x = 27
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo/washroom)
"BZ" = (
/obj/structure/noticeboard{
layer = 3.3;
@@ -12154,14 +14980,44 @@
name = "Security - Investigations Office"
})
"Ca" = (
-/obj/machinery/shieldwallgen,
+/obj/machinery/deployable/barrier,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/diagonal,
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark,
/area/crew_armory)
+"Cb" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 6
+ },
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
"Cc" = (
-/obj/machinery/light,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop/xo)
+/obj/structure/bed/stool/chair/padded/brown{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/lawoffice/representative)
"Cd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
@@ -12171,9 +15027,20 @@
},
/turf/simulated/floor/tiled,
/area/bridge/third_deck_stairs)
+"Ce" = (
+/obj/effect/floor_decal/corner/blue/diagonal,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/pool)
"Cf" = (
/turf/simulated/wall,
-/area/crew_quarters/sleep/cryo)
+/area/horizon/crew_quarters/cryo)
"Cg" = (
/obj/effect/floor_decal/corner/blue/full{
dir = 8
@@ -12190,17 +15057,15 @@
/turf/simulated/floor/wood,
/area/bridge/minibar)
"Ci" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
},
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/structure/noticeboard{
+ pixel_x = 32;
+ name = "\improper Corporate Representative notice board"
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hop/xo)
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"Cj" = (
/obj/effect/floor_decal/spline/fancy/wood,
/turf/simulated/floor/wood,
@@ -12214,31 +15079,46 @@
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
"Cl" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/machinery/vending/cigarette,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/turf/simulated/floor/wood,
+/area/crew_quarters/lounge/secondary)
"Cm" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/shuttle/scc_space_ship,
/turf/simulated/floor/plating,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"Cn" = (
-/obj/machinery/telecomms/hub/preset,
-/turf/simulated/floor/bluegrid{
- name = "Mainframe Base";
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
+/obj/effect/decal/cleanable/dirt,
+/obj/item/toy/figure/janitor,
+/turf/simulated/floor/reinforced,
+/area/template_noop)
+"Co" = (
+/obj/effect/floor_decal/spline/plain,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/area/tcommsat/chamber)
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet/rubber,
+/area/tcommsat/entrance)
+"Cp" = (
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/light/small/emergency{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -28;
+ req_one_access = list(24,11,55)
+ },
+/turf/simulated/floor,
+/area/maintenance/bridge)
"Cq" = (
/obj/structure/cable/green{
icon_state = "0-4"
@@ -12269,7 +15149,7 @@
/obj/machinery/access_button{
command = "cycle_exterior";
frequency = 1380;
- master_tag = "ert_shuttle_dock_airlock";
+ master_tag = "specops_shuttle_dock_airlock";
name = "exterior access button";
pixel_y = -26;
req_one_access = list(13)
@@ -12288,6 +15168,18 @@
},
/turf/simulated/floor/carpet/rubber,
/area/bridge)
+"Ct" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 8;
+ name = "Distro to Starboard Docks";
+ target_pressure = 200
+ },
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 8
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor/plating,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"Cu" = (
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
/area/hallway/secondary/entry/emergency)
@@ -12311,29 +15203,35 @@
/obj/effect/floor_decal/corner/paleblue{
dir = 5
},
-/obj/structure/bed/stool/chair/padded/black,
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck - Crew Armoury Entrance"
+ },
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
+ },
+/obj/machinery/vending/snack,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
"Cy" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/effect/decal/cleanable/cobweb2{
- icon_state = "cobweb1"
+/obj/effect/floor_decal/corner/green{
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/machinery/status_display{
+ pixel_x = -32
},
-/obj/machinery/alarm{
- pixel_y = 28
- },
-/turf/simulated/floor,
-/area/maintenance/engineering_ladder)
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"Cz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/carpet,
-/area/lawoffice/consular)
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/reinforced,
+/area/bridge/selfdestruct)
"CA" = (
/obj/effect/floor_decal/corner/green/diagonal,
/obj/structure/curtain/open,
@@ -12350,33 +15248,66 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor,
/area/journalistoffice)
+"CC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"CD" = (
+/obj/machinery/door/airlock/glass{
+ name = "Gym"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/fitness/gym)
"CE" = (
-/obj/machinery/light/small/red{
+/obj/effect/floor_decal/spline/plain{
dir = 8
},
-/obj/item/modular_computer/console/preset/engineering{
+/obj/effect/floor_decal/spline/plain{
dir = 4
},
/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
+/area/tcommsat/chamber)
"CF" = (
/obj/machinery/atmospherics/portables_connector{
dir = 4
},
/obj/machinery/portable_atmospherics/canister/air,
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/tiled,
/area/maintenance/aux_atmospherics/deck_3)
-"CH" = (
-/obj/effect/floor_decal/corner/paleblue{
- dir = 5
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
+"CG" = (
+/obj/effect/floor_decal/spline/plain{
dir = 4
},
-/turf/simulated/floor/tiled,
+/obj/structure/flora/ausbushes/reedbush,
+/turf/simulated/floor/beach/water/alt,
+/area/horizon/deck_three/nature_showcase)
+"CH" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor,
/area/hallway/secondary/entry/emergency)
"CI" = (
/obj/machinery/light,
@@ -12395,30 +15326,54 @@
name = "Security - Investigations Office"
})
"CJ" = (
-/obj/structure/table/rack,
-/obj/item/storage/firstaid,
-/obj/item/storage/firstaid,
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = 25
+/obj/machinery/shieldwallgen,
+/obj/machinery/light{
+ dir = 4
},
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark,
/area/crew_armory)
"CK" = (
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
/area/bridge)
-"CM" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 8
+"CL" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
-/turf/simulated/floor/tiled/dark,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -28
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/obj/structure/sink/kitchen{
+ dir = 4;
+ pixel_x = -20;
+ name = "water fountain"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/cryo/dormitories)
+"CM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
/area/maintenance/aux_atmospherics/deck_3)
"CN" = (
-/obj/effect/floor_decal/corner/paleblue{
+/obj/effect/floor_decal/corner/green{
dir = 10
},
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"CO" = (
/obj/machinery/power/apc/low{
dir = 1;
@@ -12428,15 +15383,16 @@
/obj/structure/cable/green{
icon_state = "0-4"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/lounge/secondary)
+/obj/structure/bed/stool/chair/sofa/left/brown,
+/obj/effect/landmark/start{
+ name = "Passenger"
+ },
+/turf/simulated/floor/carpet/art,
+/area/crew_quarters/lounge)
"CP" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -12447,74 +15403,141 @@
name = "south bump";
pixel_y = -24
},
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 10
+ },
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"CQ" = (
/obj/structure/cryofeed{
dir = 4
},
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/lattice/catwalk/indoor/grate,
/obj/machinery/light{
dir = 8
},
-/turf/simulated/floor,
-/area/crew_quarters/sleep/cryo)
-"CR" = (
-/turf/simulated/floor/tiled/dark,
-/area/crew_armory)
-"CT" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"CV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/bridge/selfdestruct)
-"CW" = (
-/obj/structure/curtain/open/shower,
-/obj/machinery/shower{
+/obj/effect/floor_decal/industrial/warning{
dir = 8
},
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/toilet)
-"CX" = (
-/obj/effect/floor_decal/corner_wide/blue{
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/structure/railing/mapped{
dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
-"CY" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
/turf/simulated/floor,
-/area/maintenance/engineering_ladder)
+/area/horizon/crew_quarters/cryo)
+"CR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_armory)
+"CS" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 6
+ },
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck - Hallway 7";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
+"CT" = (
+/obj/effect/floor_decal/corner_wide/blue{
+ dir = 10
+ },
+/obj/machinery/alarm{
+ pixel_y = -28;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/pool)
+"CU" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/firealarm/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_armory)
+"CV" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"CW" = (
+/obj/structure/table/rack,
+/obj/item/towel,
+/obj/random/soap,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/tiled/freezer,
+/area/horizon/crew_quarters/fitness/showers)
+"CX" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/rubber,
+/area/horizon/crew_quarters/fitness/gym)
+"CY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/port)
"CZ" = (
-/turf/simulated/wall/r_wall,
+/obj/item/modular_computer/console/preset/medical{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
/area/bridge/aibunker)
"Da" = (
-/obj/structure/table/rack,
/obj/machinery/firealarm/south,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/locker)
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/structure/closet/secure_closet/personal,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/fitness/changing)
"Db" = (
/obj/effect/floor_decal/corner_wide/green{
dir = 9
@@ -12524,118 +15547,141 @@
/turf/simulated/floor/tiled/white,
/area/medical/ward)
"Dc" = (
-/obj/machinery/door/window/eastright,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/camera/network/command{
- c_tag = "Bridge - Executive Officer's Office";
+/obj/structure/table/wood,
+/obj/effect/floor_decal/spline/fancy/wood{
dir = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hop/xo)
+/turf/simulated/floor/wood,
+/area/horizon/hallway/deck_three/primary/starboard)
"Dd" = (
/turf/simulated/floor/wood,
/area/crew_quarters/heads/hop/xo)
"De" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Cryogenics Maintenance";
+ req_access = list(12)
+ },
/obj/structure/cable/green{
icon_state = "4-8"
},
+/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/random/junk,
-/turf/simulated/floor,
-/area/maintenance/bridge)
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/cryo)
+"Df" = (
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/effect/landmark{
+ name = "JoinLateCryo"
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo)
"Dg" = (
/turf/simulated/wall,
/area/bridge/meeting_room)
"Dh" = (
+/obj/effect/floor_decal/corner/green/diagonal,
/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- icon_state = "1-2"
+ icon_state = "1-8"
},
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
+/area/horizon/crew_quarters/fitness/hallway)
+"Di" = (
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/light/small/emergency{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/bridge)
"Dj" = (
/obj/structure/cable/green{
icon_state = "4-8"
},
+/obj/structure/lattice/catwalk/indoor/grate,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor,
/area/maintenance/security_starboard)
-"Dk" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/door/window/northleft,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor,
-/area/hallway/primary/starboard)
"Dl" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck - Crew Lounge Port";
+ dir = 8
+ },
/turf/simulated/floor/wood,
-/area/crew_quarters/lounge)
+/area/crew_quarters/lounge/secondary)
"Dm" = (
-/obj/effect/floor_decal/corner/paleblue{
- dir = 10
- },
-/obj/machinery/ringer_button{
- id = "hop_ringer";
- pixel_y = -30
- },
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
-"Dn" = (
-/obj/machinery/deployable/barrier,
+/obj/structure/table/wood,
/obj/structure/cable/green{
icon_state = "4-8"
},
+/turf/simulated/floor/carpet,
+/area/lawoffice/representative)
+"Dn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/camera/motion{
+ network = list("Command, Security");
+ name = "security";
+ alarm_on = 1;
+ c_tag = "Third Deck - Crew Armoury";
+ dir = 1
+ },
/turf/simulated/floor/tiled/dark,
/area/crew_armory)
"Do" = (
-/obj/machinery/power/apc{
- is_critical = 1;
- name = "south bump";
- pixel_y = -24
+/obj/structure/window/shuttle/scc_space_ship,
+/obj/structure/grille,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/shutters/open{
+ id = "shutters_deck3_pool";
+ name = "Viewing Shutters";
+ dir = 8
},
-/obj/structure/cable/green,
-/obj/effect/floor_decal/corner/paleblue{
- dir = 10
+/turf/simulated/floor/plating,
+/area/horizon/crew_quarters/fitness/pool)
+"Dp" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
},
+/obj/structure/reagent_dispensers/extinguisher,
+/turf/simulated/floor,
+/area/maintenance/engineering_ladder)
+"Dq" = (
+/obj/machinery/cryopod{
+ dir = 4
+ },
+/obj/structure/railing/mapped,
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/bridge/aibunker)
"Dr" = (
/obj/machinery/atmospherics/pipe/manifold4w/visible,
/obj/machinery/meter,
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/tiled,
/area/maintenance/aux_atmospherics/deck_3)
"Dt" = (
-/obj/structure/lattice,
-/obj/machinery/light/spot/weak{
- dir = 8
- },
-/turf/simulated/open,
-/area/hallway/primary/starboard)
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/structure/table/wood,
+/turf/simulated/floor/wood,
+/area/horizon/deck_three/cafeteria)
"Du" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
/obj/structure/cable{
icon_state = "1-8"
},
@@ -12648,40 +15694,53 @@
/area/maintenance/engineering_ladder)
"Dv" = (
/obj/effect/floor_decal/corner_wide/blue{
- dir = 10
+ dir = 9
},
-/obj/machinery/door/airlock/multi_tile/glass{
- dir = 2;
- name = "Pool"
- },
-/obj/machinery/door/firedoor/multi_tile{
- dir = 2
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
},
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/horizon/crew_quarters/fitness/pool)
"Dw" = (
-/obj/machinery/telecomms/processor/preset_one,
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+/obj/machinery/door/firedoor,
+/obj/effect/map_effect/door_helper/unres,
+/obj/machinery/door/airlock/glass_command{
+ id_tag = "sbridgedoor";
+ name = "Bridge";
+ req_one_access = list(19, 38)
},
-/area/tcommsat/chamber)
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
"Dx" = (
-/obj/structure/table/wood,
-/obj/machinery/power/apc{
- is_critical = 1;
- name = "south bump";
- pixel_y = -24
+/obj/effect/floor_decal/corner/paleblue/full{
+ dir = 4
},
-/obj/structure/cable/green,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hop/xo)
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/bed/stool/chair/padded/brown{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"Dy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
+"Dz" = (
+/obj/structure/bed/stool/chair/padded/brown{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet,
+/area/lawoffice/representative)
"DA" = (
/obj/structure/cable/green{
icon_state = "1-8"
@@ -12689,8 +15748,11 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
/turf/simulated/floor/wood,
-/area/crew_quarters/lounge/secondary)
+/area/crew_quarters/lounge)
"DB" = (
/obj/structure/cable/green{
icon_state = "0-2"
@@ -12701,31 +15763,20 @@
pixel_x = -24
},
/obj/machinery/atmospherics/pipe/simple/visible,
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/tiled,
/area/maintenance/aux_atmospherics/deck_3)
"DC" = (
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 10
- },
-/obj/structure/table/standard,
-/obj/machinery/camera/network/third_deck{
- c_tag = "Third Deck - Pool South";
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
-"DD" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/obj/effect/floor_decal/corner_wide/blue/full{
dir = 4
},
-/obj/effect/floor_decal/corner/blue/diagonal,
-/turf/simulated/floor/tiled,
-/area/bridge/aibunker)
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-28"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/pool)
"DE" = (
/obj/effect/floor_decal/spline/fancy,
/obj/machinery/computer/ship/sensors{
@@ -12748,14 +15799,33 @@
/obj/effect/floor_decal/corner/blue{
dir = 5
},
+/obj/effect/landmark/start{
+ name = "Executive Officer"
+ },
/turf/simulated/floor/tiled/dark,
/area/bridge/meeting_room)
+"DH" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/obj/machinery/atm{
+ pixel_x = -32
+ },
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck - Fitness Center Hallway Aft";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
"DI" = (
-/turf/simulated/floor/tiled/ramp/bottom,
+/turf/simulated/floor/tiled/ramp,
/area/bridge/meeting_room)
"DJ" = (
/obj/structure/lattice/catwalk/indoor/grate,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
/turf/simulated/floor,
/area/maintenance/engineering_ladder)
"DK" = (
@@ -12771,10 +15841,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "conpipe-c"
- },
/turf/simulated/floor/tiled/white,
/area/medical/washroom)
"DN" = (
@@ -12782,30 +15848,37 @@
/obj/effect/floor_decal/spline/plain,
/turf/simulated/floor/marble/dark,
/area/bridge/minibar)
+"DO" = (
+/obj/machinery/button/remote/airlock{
+ dir = 4;
+ id = "cryo_toilet_2";
+ name = "Door Bolt Control";
+ specialfunctions = 4;
+ pixel_x = -32
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/structure/toilet{
+ dir = 1;
+ pixel_y = -1
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo/washroom)
"DP" = (
/obj/machinery/light/small{
dir = 4
},
/turf/simulated/floor/reinforced,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"DQ" = (
/turf/simulated/wall/r_wall,
/area/crew_armory)
"DR" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/camera/network/third_deck{
- c_tag = "Third Deck - Hallway 2";
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor,
-/area/hallway/primary/starboard)
+/obj/effect/floor_decal/corner/red/diagonal,
+/turf/simulated/floor/lino/grey,
+/area/horizon/deck_three/cafeteria)
"DS" = (
/obj/effect/floor_decal/corner_wide/green{
dir = 6
@@ -12822,46 +15895,49 @@
/turf/simulated/floor/tiled/white,
/area/medical/ward)
"DT" = (
-/obj/machinery/door/blast/regular{
- dir = 4;
- id = "crew_armory";
- name = "Crew Armory"
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/dark,
-/area/crew_armory)
+/obj/machinery/door/airlock/glass{
+ name = "Deck 3 Starboard Lounge"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/lounge/secondary)
"DU" = (
-/obj/item/device/radio/intercom{
- dir = 8;
- name = "Station Intercom (General)";
- pixel_x = 24
+/obj/machinery/washing_machine,
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/effect/floor_decal/spline/plain{
+ dir = 5
},
-/obj/structure/closet/lasertag/blue,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/locker)
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/fitness/changing)
"DV" = (
+/obj/effect/floor_decal/corner/paleblue,
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/effect/floor_decal/corner/paleblue{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"DW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
+/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
- icon_state = "4-8"
+ icon_state = "1-2"
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/locker)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"DX" = (
-/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor,
/area/maintenance/engineering_ladder)
"DY" = (
@@ -12880,22 +15956,31 @@
/obj/effect/floor_decal/corner/paleblue/full{
dir = 4
},
+/obj/structure/flora/pottedplant/random,
/obj/machinery/light,
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
-"Ea" = (
-/obj/machinery/door/airlock/hatch{
- desc = "It opens and closes. It has a small sign engraved: Bunker capacity: 6. Only facility's Command Staff is permitted.";
- icon_state = "door_locked";
- id_tag = "bunker3";
- locked = 1;
- name = "Command Bunker";
- req_access = list(19);
- secured_wires = 1
- },
-/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
-/area/bridge/aibunker)
+/area/horizon/hallway/deck_three/primary/starboard)
+"Ea" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/hatch{
+ name = "Telecommunications - Spare Parts";
+ req_access = list(61)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tcommsat/entrance)
"Eb" = (
/obj/effect/floor_decal/corner/paleblue{
dir = 9
@@ -12903,9 +15988,6 @@
/obj/machinery/light{
dir = 8
},
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 1
},
@@ -12913,40 +15995,38 @@
/turf/simulated/floor/tiled,
/area/hallway/secondary/entry/emergency)
"Ec" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
+/obj/effect/floor_decal/corner/green{
+ dir = 6
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/locker)
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/fitness/changing)
"Ed" = (
/turf/simulated/wall,
/area/security/forensics_morgue)
"Ee" = (
-/obj/effect/floor_decal/corner/paleblue{
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/grass/alt,
+/area/horizon/deck_three/nature_showcase)
+"Ef" = (
+/obj/structure/railing/mapped{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green{
dir = 5
},
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"Ef" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/railing/mapped,
-/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"Eg" = (
/obj/effect/floor_decal/corner/paleblue{
dir = 5
@@ -12968,7 +16048,16 @@
},
/obj/structure/closet/emcloset,
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
+"Ej" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 28
+ },
+/obj/random/junk,
+/obj/machinery/atmospherics/pipe/simple/visible/universal,
+/turf/simulated/floor,
+/area/maintenance/bridge)
"Ek" = (
/obj/effect/floor_decal/corner/grey/diagonal{
dir = 8
@@ -12986,14 +16075,10 @@
name = "south bump";
pixel_y = -24
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/tiled/white,
/area/medical/washroom)
"El" = (
/obj/structure/railing/mapped,
-/obj/structure/lattice/catwalk/indoor/grate,
/obj/structure/cable{
icon_state = "4-8"
},
@@ -13006,37 +16091,67 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor/plating,
/area/maintenance/engineering_ladder)
"Em" = (
/obj/machinery/alarm{
pixel_y = 28
},
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
+ },
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"En" = (
-/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
-/area/turret_protected/ai)
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/item/hullbeacon/red,
+/turf/simulated/floor/reinforced,
+/area/template_noop)
"Eo" = (
-/obj/structure/cable/cyan{
- icon_state = "4-8"
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
},
-/obj/machinery/alarm{
- pixel_y = 28
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/maintenance/engineering_ladder)
+"Ep" = (
+/obj/structure/ladder,
+/obj/machinery/camera/network/command{
+ c_tag = "Bridge - Deck 3- Bunker Escape Route";
+ network = list("Command","Bunker");
+ alarm_on = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/storage/shields)
+/obj/structure/sign/emerg_exitZ{
+ pixel_x = -32
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/bridge/aibunker)
"Eq" = (
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 8
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
+/area/horizon/crew_quarters/fitness/hallway)
"Er" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
+/obj/structure/bed/stool/chair/office/dark{
+ dir = 4
},
-/turf/simulated/floor/tiled/dark,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
/area/security/vacantoffice)
"Es" = (
/obj/machinery/camera/network/command{
@@ -13065,21 +16180,24 @@
req_access = list(66)
},
/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/tiled/white,
/area/medical/washroom)
"Eu" = (
-/obj/structure/trash_pile,
-/obj/machinery/alarm{
- pixel_y = 28
+/obj/machinery/computer/telecomms/traffic,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light{
+ dir = 4
},
-/turf/simulated/floor,
-/area/maintenance/engineering_ladder)
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/entrance)
"Ev" = (
/turf/simulated/floor/reinforced,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"Ew" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -13098,6 +16216,36 @@
},
/turf/simulated/floor/tiled/white,
/area/hallway/medical/upper)
+"Ex" = (
+/obj/machinery/power/apc/low{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/table/wood,
+/obj/item/storage/box/fancy/cookiesnack,
+/obj/item/storage/box/fancy/cookiesnack,
+/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup,
+/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup,
+/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup,
+/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/wood,
+/area/lawoffice/representative)
+"Ey" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 6
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/turf/simulated/floor/lino/grey,
+/area/horizon/deck_three/cafeteria)
"Ez" = (
/obj/structure/window/shuttle/scc_space_ship,
/obj/structure/grille,
@@ -13113,21 +16261,35 @@
/turf/simulated/floor/plating,
/area/medical/smoking)
"EA" = (
-/obj/machinery/status_display{
- pixel_y = -32
+/obj/machinery/light{
+ dir = 8
},
-/obj/structure/cable/green{
- icon_state = "1-8"
+/obj/effect/floor_decal/corner/blue/full,
+/obj/structure/filingcabinet/filingcabinet{
+ pixel_x = -9;
+ pixel_y = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
+/obj/structure/filingcabinet/chestdrawer{
+ pixel_x = 7;
+ pixel_y = 1
+ },
+/obj/structure/sign/securearea{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
"EB" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/machinery/camera/network/third_deck{
- c_tag = "Third Deck - Vacant Office"
+/obj/structure/bed/stool/chair/padded/brown{
+ dir = 8
},
-/turf/simulated/floor/tiled/dark,
-/area/security/vacantoffice)
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/turf/simulated/floor/wood,
+/area/horizon/hallway/deck_three/primary/starboard)
+"EC" = (
+/turf/simulated/wall/r_wall,
+/area/bridge/aibunker)
"ED" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -13135,8 +16297,22 @@
/obj/effect/floor_decal/corner/blue{
dir = 6
},
+/obj/machinery/camera/network/command{
+ c_tag = "Bridge - Kitchen Stairwell";
+ dir = 8
+ },
/turf/simulated/floor/tiled,
/area/bridge/third_deck_stairs)
+"EE" = (
+/obj/effect/floor_decal/corner/blue/diagonal,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"EF" = (
+/turf/simulated/wall,
+/area/horizon/crew_quarters/cryo/dormitories)
"EG" = (
/obj/structure/lattice/catwalk/indoor/grate,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -13144,51 +16320,97 @@
},
/turf/simulated/floor,
/area/maintenance/engineering_ladder)
-"EI" = (
-/obj/effect/floor_decal/corner/blue{
- dir = 6
+"EH" = (
+/obj/structure/sign/flag/scc{
+ pixel_y = 32
},
+/obj/machinery/camera/network/command{
+ c_tag = "Bridge - Deck 3 - Bunker";
+ network = list("Command","Bunker");
+ alarm_on = 1
+ },
+/obj/machinery/light/small/emergency{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/table/steel,
+/obj/item/storage/firstaid/regular,
/turf/simulated/floor/tiled/dark,
/area/bridge/aibunker)
+"EI" = (
+/obj/structure/table/wood,
+/turf/simulated/floor/carpet/art,
+/area/crew_quarters/lounge/secondary)
"EJ" = (
/obj/machinery/door/airlock/glass_command{
id_tag = "sbridgedoor";
name = "Bridge";
- req_one_access = list(19,38)
+ req_one_access = list(19, 38)
},
/obj/effect/map_effect/door_helper/unres,
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
/area/bridge)
"EK" = (
-/obj/structure/toilet{
- dir = 8
+/obj/structure/table/wood,
+/obj/machinery/photocopier/faxmachine{
+ anchored = 0;
+ department = "Representative's Office";
+ pixel_y = 4
},
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/heads/hop/xo)
-"EM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/effect/floor_decal/spline/fancy/wood{
dir = 4
},
-/obj/machinery/camera/motion{
- c_tag = "Scuttling Device - Motion";
- dir = 1;
- network = list("Secure");
- tag = "icon-camera (NORTH)"
+/obj/item/storage/secure/safe{
+ pixel_x = 32
},
-/turf/simulated/floor/tiled/dark,
-/area/bridge/selfdestruct)
+/turf/simulated/floor/wood,
+/area/lawoffice/representative)
+"EL" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/carpet/art,
+/area/horizon/crew_quarters/fitness/lounge)
+"EM" = (
+/obj/structure/table/standard,
+/obj/item/device/flashlight/lamp{
+ pixel_y = 1;
+ pixel_x = -11
+ },
+/obj/effect/floor_decal/corner/beige{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/vacantoffice)
"EN" = (
/obj/structure/table/standard,
/obj/item/material/ashtray/glass,
-/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
-"EP" = (
-/obj/effect/floor_decal/corner/paleblue{
- dir = 10
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 6
},
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
+"EO" = (
+/obj/effect/floor_decal/corner/blue/diagonal,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
+"EP" = (
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/structure/railing/mapped,
+/obj/structure/closet/secure_closet/personal,
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo/dormitories)
"EQ" = (
/obj/structure/window/shuttle/scc_space_ship,
/obj/structure/grille,
@@ -13206,16 +16428,55 @@
},
/turf/simulated/floor,
/area/crew_quarters/captain)
-"EU" = (
-/obj/machinery/door/window/northleft,
-/obj/effect/floor_decal/spline/plain{
- dir = 1
+"ER" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 6
},
-/obj/effect/floor_decal/corner/grey/diagonal{
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
+"ES" = (
+/obj/machinery/door/firedoor,
+/obj/structure/grille,
+/obj/structure/window/shuttle/scc_space_ship,
+/obj/machinery/door/blast/shutters/open{
+ id = "shutters_deck3_lounge";
+ name = "Viewing Shutters";
dir = 8
},
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
+/turf/simulated/floor/plating,
+/area/horizon/crew_quarters/fitness/lounge)
+"ET" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/simulated/floor/carpet/rubber,
+/area/horizon/crew_quarters/fitness/gym)
+"EU" = (
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Deck 3 Civilian Subgrid";
+ name_tag = "Deck 3 Civilian Subgrid"
+ },
+/obj/machinery/power/apc{
+ pixel_x = -24;
+ dir = 8;
+ name = "west bump"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/civilian_east)
"EV" = (
/obj/machinery/light,
/obj/machinery/hologram/holopad,
@@ -13228,34 +16489,50 @@
/turf/simulated/floor/tiled/white,
/area/hallway/medical/upper)
"EW" = (
-/obj/structure/bed/stool/chair/padded/brown{
+/obj/structure/railing/mapped{
dir = 4
},
-/obj/effect/landmark/start{
- name = "Off-Duty Crew Member"
+/turf/simulated/floor/wood,
+/area/crew_quarters/lounge)
+"EX" = (
+/obj/effect/floor_decal/corner_wide/blue/full{
+ dir = 8
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/lounge/secondary)
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-28"
+ },
+/obj/machinery/button/remote/blast_door{
+ name = "Viewing Shutters";
+ id = "shutters_deck3_pool";
+ dir = 4;
+ pixel_x = -32
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/pool)
"EY" = (
/obj/structure/cable{
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/random/junk,
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j2"
- },
-/turf/simulated/floor,
-/area/maintenance/bridge)
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"EZ" = (
-/obj/machinery/anti_bluespace,
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/machinery/power/apc/super{
+ dir = 1;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
/turf/simulated/floor/tiled/dark,
/area/crew_armory)
"Fa" = (
@@ -13281,67 +16558,125 @@
/turf/simulated/floor/tiled/white,
/area/crew_quarters/heads/cmo)
"Fb" = (
-/obj/structure/bed/stool/chair{
- dir = 8
+/obj/structure/table/reinforced/wood,
+/obj/item/reagent_containers/glass/rag,
+/obj/item/reagent_containers/food/drinks/shaker,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = 25
},
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 6
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/machinery/light{
+ dir = 4
},
-/turf/simulated/floor/wood,
-/area/hallway/primary/starboard)
+/turf/simulated/floor/lino/grey,
+/area/horizon/deck_three/cafeteria)
"Fc" = (
-/obj/structure/table/wood,
-/obj/item/stack/packageWrap,
-/obj/item/device/hand_labeler,
-/obj/item/paper_bin,
-/obj/structure/sign/nosmoking_2{
- pixel_y = 32
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
-/obj/item/pen,
-/obj/item/stack/wrapping_paper,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hop/xo)
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"Fd" = (
/obj/structure/bed/stool/bar/padded/blue,
/obj/effect/floor_decal/spline/fancy/wood,
/turf/simulated/floor/wood,
/area/bridge/minibar)
"Fe" = (
-/obj/machinery/telecomms/processor/preset_two,
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light/small/emergency{
+ dir = 8
},
-/area/tcommsat/chamber)
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/maintenance/bridge)
+"Ff" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/corner/blue{
+ dir = 9
+ },
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
"Fg" = (
/obj/effect/floor_decal/corner/paleblue{
dir = 10
},
-/obj/machinery/ringer_button{
- id = "Representative";
- layer = 3.3;
- name = "Representative ringer button";
- pixel_x = 7;
- pixel_y = -25
+/obj/structure/cable{
+ icon_state = "1-8"
},
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"Fh" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/table/rack,
-/obj/random/loot,
+/obj/machinery/light/small/emergency{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor,
/area/maintenance/engineering_ladder)
+"Fi" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"Fj" = (
/turf/simulated/wall,
/area/security/investigations_storage)
+"Fk" = (
+/obj/effect/floor_decal/corner/red/full{
+ dir = 4
+ },
+/obj/structure/railing/mapped,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
"Fl" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/dark,
-/area/engineering/break_room)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance_hatch{
+ req_one_access = list(12)
+ },
+/turf/simulated/floor,
+/area/maintenance/engineering_ladder)
"Fm" = (
/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
/turf/simulated/floor,
@@ -13359,37 +16694,32 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/closet/walllocker/medical{
- pixel_y = -32
- },
-/obj/item/stack/medical/ointment,
-/obj/item/stack/medical/bruise_pack,
/obj/effect/floor_decal/corner/blue{
dir = 10
},
-/obj/item/storage/firstaid,
/turf/simulated/floor/tiled,
-/area/bridge/aibunker)
+/area/bridge)
"Fo" = (
/turf/simulated/wall,
/area/security/investigations)
"Fp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/table/wood,
+/obj/machinery/photocopier/faxmachine{
+ department = "Head of Personnel's Office"
},
/turf/simulated/floor/wood,
-/area/lawoffice/representative)
+/area/crew_quarters/heads/hop/xo)
"Fq" = (
/obj/structure/lattice/catwalk/indoor/grate,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
/turf/simulated/floor,
/area/maintenance/engineering_ladder)
"Fr" = (
@@ -13400,9 +16730,10 @@
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -32
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
"Fs" = (
@@ -13412,55 +16743,80 @@
/obj/effect/floor_decal/corner/blue{
dir = 10
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/tiled/dark,
/area/bridge/meeting_room)
"Ft" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
+/obj/machinery/vending/coffee,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
},
-/obj/machinery/ai_slipper,
-/obj/machinery/camera/network/command{
- c_tag = "AI Core - Third Deck Chamber Aft";
- dir = 1
- },
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai)
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/port)
"Fu" = (
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
/area/security/forensics_morgue)
"Fv" = (
-/obj/machinery/computer/telecomms/monitor{
- dir = 4;
- network = "tcommsat"
+/obj/machinery/atmospherics/pipe/manifold/hidden/black{
+ dir = 1
},
-/turf/simulated/floor/carpet/rubber,
-/area/tcommsat/entrance)
-"Fw" = (
+/obj/effect/floor_decal/sign/c,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/corner,
/obj/structure/cable/green{
- icon_state = "1-2"
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
},
/turf/simulated/floor/tiled/dark,
-/area/bridge/selfdestruct)
-"Fx" = (
-/obj/structure/closet/secure_closet/guncabinet{
- name = "Weaponry (Rifle)"
+/area/tcommsat/chamber)
+"Fw" = (
+/obj/structure/window/reinforced{
+ dir = 4
},
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/rack,
+/obj/random/soap,
+/obj/item/towel,
+/turf/simulated/floor/tiled/freezer,
+/area/horizon/crew_quarters/cryo/showers)
+"Fx" = (
+/obj/structure/table/rack,
+/obj/item/device/flashlight/flare,
+/obj/item/device/flashlight/flare,
+/obj/item/device/flashlight/flare,
+/obj/item/device/flashlight/flare,
+/obj/item/device/flashlight/flare,
+/obj/item/device/flashlight/flare,
+/obj/item/device/flashlight/flare,
+/obj/item/device/flashlight/flare,
+/obj/effect/floor_decal/corner/brown/diagonal,
+/obj/machinery/firealarm/north,
/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/item/gun/projectile/gauss/carbine,
-/obj/item/gun/projectile/gauss/carbine,
-/obj/item/gun/projectile/gauss/carbine,
/turf/simulated/floor/tiled/dark,
/area/crew_armory)
"Fy" = (
-/obj/structure/bed/stool/chair/padded/brown{
- dir = 4
- },
/obj/machinery/firealarm/west,
-/obj/effect/landmark/start{
- name = "Passenger"
+/obj/structure/flora/pottedplant/random,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/lounge)
+/turf/simulated/floor/wood,
+/area/crew_quarters/lounge/secondary)
"Fz" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -13474,14 +16830,11 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable/green{
- icon_state = "1-8"
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
},
-/obj/effect/floor_decal/corner/paleblue/full{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"FA" = (
/obj/effect/floor_decal/corner_wide/green{
dir = 5
@@ -13495,40 +16848,35 @@
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
/obj/structure/disposalpipe/junction/yjunction{
dir = 1
},
-/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
-"FC" = (
-/obj/machinery/light/small/red{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
-/obj/item/modular_computer/console/preset/command,
-/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
+"FC" = (
+/obj/machinery/telecomms/processor/preset_two,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
"FD" = (
-/obj/structure/bed/stool/bar/padded/red,
-/obj/effect/floor_decal/corner/red/full{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Cafe"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+ dir = 4
},
-/obj/structure/cable{
- icon_state = "2-4"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/deck_three/cafeteria)
"FE" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -13549,11 +16897,13 @@
/turf/simulated/floor/wood,
/area/bridge/minibar)
"FG" = (
-/obj/machinery/power/breakerbox/activated{
- RCon_tag = "Bridge Substation"
+/obj/effect/floor_decal/corner/yellow{
+ dir = 5
},
-/turf/simulated/floor,
-/area/maintenance/substation/command)
+/obj/effect/floor_decal/spline/plain/corner,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
"FH" = (
/turf/simulated/wall/r_wall,
/area/maintenance/engineering_ladder)
@@ -13572,54 +16922,60 @@
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
"FJ" = (
+/obj/machinery/door/airlock/hatch{
+ name = "Telecommunications - Server Hall";
+ req_access = list(61)
+ },
+/obj/structure/plasticflaps/airtight,
+/obj/machinery/atmospherics/pipe/simple/hidden/black,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/firedoor,
/obj/structure/cable/green{
icon_state = "1-2"
},
-/obj/machinery/door/airlock/hatch{
- name = "Telecomms Access";
- req_access = list(12, 61)
- },
-/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
/area/tcommsat/entrance)
"FK" = (
-/obj/machinery/atmospherics/pipe/tank/air{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
+/obj/structure/table/rack,
+/obj/random/arcade,
+/turf/simulated/floor/tiled,
/area/maintenance/aux_atmospherics/deck_3)
"FL" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
+/obj/structure/bed/stool/chair/office/bridge/generic{
+ dir = 1
},
-/obj/machinery/door/airlock/engineering{
- name = "Command Substation";
- req_access = list(11,24)
+/obj/effect/landmark/start{
+ name = "Consular Officer"
},
-/obj/machinery/door/firedoor,
-/turf/simulated/floor,
-/area/maintenance/substation/command)
+/turf/simulated/floor/carpet,
+/area/lawoffice/consular)
+"FM" = (
+/turf/simulated/wall,
+/area/horizon/crew_quarters/fitness/lounge)
"FN" = (
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/tiled,
+/area/hallway/primary/port)
+"FO" = (
+/turf/simulated/wall,
+/area/horizon/crew_quarters/fitness/showers)
+"FP" = (
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 4;
+ external_pressure_bound = 140;
+ external_pressure_bound_default = 140;
+ icon_state = "map_vent_out";
+ pressure_checks = 0;
+ pressure_checks_default = 0;
+ use_power = 1
},
/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
-"FP" = (
-/obj/machinery/telecomms/server/presets/supply,
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
- },
/area/tcommsat/chamber)
"FQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -13628,46 +16984,61 @@
/turf/simulated/floor/tiled/dark,
/area/bridge)
"FR" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hop/xo)
-"FS" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
/obj/structure/cable/green{
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/structure/disposalpipe/junction,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"FS" = (
/obj/effect/floor_decal/corner/red/diagonal,
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/lino/grey,
+/area/horizon/deck_three/cafeteria)
"FT" = (
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
-/area/crew_quarters/heads/hop/xo)
+/area/lawoffice/representative)
"FU" = (
-/obj/machinery/door/airlock{
- name = "Changing Room"
- },
-/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/machinery/door/airlock{
+ name = "Showers"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/door/firedoor,
/obj/structure/cable/green{
icon_state = "4-8"
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/locker)
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/fitness/showers)
"FV" = (
-/obj/effect/map_effect/wingrille_spawn/reinforced,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor,
-/area/maintenance/engineering_ladder)
+/obj/structure/bed/stool/chair/padded/black,
+/obj/effect/landmark/start{
+ name = "Chief Engineer"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/engineering/break_room)
+"FW" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
"FX" = (
/obj/structure/bed/stool/chair/padded/brown,
/obj/machinery/status_display{
@@ -13679,6 +17050,13 @@
},
/turf/simulated/floor/wood,
/area/security/vacantoffice2)
+"FY" = (
+/obj/effect/floor_decal/corner/blue/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
"FZ" = (
/obj/structure/table/reinforced/wood,
/obj/machinery/light{
@@ -13686,25 +17064,49 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
+"Ga" = (
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/junction,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
"Gb" = (
/obj/effect/floor_decal/corner/paleblue{
dir = 5
},
-/obj/machinery/status_display{
- layer = 4;
- pixel_y = 32
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
},
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
+"Gc" = (
+/turf/simulated/wall,
+/area/horizon/crew_quarters/cryo/washroom)
"Ge" = (
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 5
+/obj/machinery/computer/HolodeckControl/Horizon{
+ pixel_y = -32
},
-/obj/machinery/camera/network/third_deck{
- c_tag = "Third Deck - Hallway 8"
+/obj/effect/floor_decal/corner/blue{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/horizon/crew_quarters/fitness/hallway)
"Gf" = (
/obj/structure/railing/mapped{
dir = 1
@@ -13731,33 +17133,38 @@
/turf/simulated/floor/tiled,
/area/security/investigations_storage)
"Gh" = (
-/obj/effect/floor_decal/corner_wide/blue{
+/obj/effect/floor_decal/corner/green{
dir = 6
},
-/obj/machinery/camera/network/third_deck{
- c_tag = "Third Deck - Pool North";
- dir = 8
- },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/vending/coffee,
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
+/area/horizon/crew_quarters/fitness/hallway)
"Gi" = (
+/turf/simulated/floor/wood,
+/area/crew_quarters/lounge)
+"Gj" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_armory)
-"Gj" = (
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/hallway/primary/starboard)
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"Gk" = (
-/obj/structure/cable/green{
- icon_state = "2-8"
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "bridge blast";
+ name = "Bridge Blast Doors";
+ opacity = 0
},
-/turf/simulated/floor/tiled/dark,
-/area/bridge/selfdestruct)
+/turf/simulated/floor/reinforced,
+/area/bridge)
"Gl" = (
/obj/structure/table/reinforced/wood,
/obj/effect/floor_decal/spline/plain{
@@ -13765,22 +17172,47 @@
},
/turf/simulated/floor/marble/dark,
/area/bridge/minibar)
+"Gm" = (
+/obj/machinery/telecomms/server/presets/unused,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
"Gn" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 28;
- req_one_access = list(24,11,55)
+/obj/machinery/light{
+ dir = 8
},
-/turf/simulated/floor,
-/area/maintenance/engineering_ladder)
-"Go" = (
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 10
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ pixel_x = -24;
+ dir = 8
},
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/horizon/crew_quarters/fitness/hallway)
+"Go" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/corner/blue{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
"Gp" = (
/obj/effect/floor_decal/corner/paleblue{
dir = 6
@@ -13813,23 +17245,19 @@
/turf/simulated/floor/carpet/rubber,
/area/bridge)
"Gr" = (
-/obj/effect/floor_decal/corner/paleblue{
- dir = 9
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
+/turf/simulated/wall,
+/area/hallway/secondary/entry/emergency)
+"Gs" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/hallway/secondary/entry/emergency)
-"Gs" = (
-/obj/item/device/radio/intercom{
- pixel_y = 21
+/obj/machinery/disposal/small/west,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
},
-/obj/structure/flora/pottedplant/random,
/turf/simulated/floor/wood,
/area/lawoffice/consular)
"Gt" = (
@@ -13851,7 +17279,7 @@
id_tag = "nuke_shuttle_dock_pump"
},
/turf/simulated/floor/plating,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"Gv" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -13862,21 +17290,27 @@
/obj/structure/disposalpipe/junction{
dir = 1
},
+/obj/effect/floor_decal/corner/blue/diagonal,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
},
-/obj/effect/floor_decal/corner/blue/diagonal,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
/area/bridge)
-"Gx" = (
+"Gw" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
/obj/structure/cable/green{
icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor,
-/area/maintenance/security_starboard)
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
"Gy" = (
/obj/structure/window/shuttle/scc_space_ship,
/obj/structure/grille,
@@ -13892,14 +17326,18 @@
/turf/simulated/floor/plating,
/area/crew_quarters/heads/cmo)
"Gz" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
-/obj/effect/floor_decal/industrial/loading/yellow{
- dir = 8
+/obj/effect/floor_decal/spline/plain/corner,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -32
},
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"GA" = (
/obj/effect/floor_decal/spline/fancy/wood{
dir = 9
@@ -13923,9 +17361,25 @@
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
"GB" = (
-/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
-/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/lounge/secondary)
+"GC" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 6
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
"GD" = (
/obj/structure/bed/stool/bar/padded/blue,
/obj/effect/floor_decal/spline/fancy/wood{
@@ -13937,7 +17391,7 @@
/obj/structure/railing/mapped,
/obj/structure/lattice,
/turf/simulated/open,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"GF" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/machinery/power/apc/low{
@@ -13958,57 +17412,47 @@
/obj/effect/landmark/start{
name = "Atmospheric Technician"
},
-/turf/simulated/floor/carpet/rubber,
+/turf/simulated/floor/tiled/dark,
/area/engineering/break_room)
"GH" = (
/obj/structure/table/wood,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/item/device/megaphone/command,
-/obj/machinery/status_display{
- layer = 4;
+/obj/item/paper_bin,
+/obj/item/pen/black,
+/obj/item/pen/blue{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/machinery/newscaster{
pixel_y = 32
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop/xo)
-"GI" = (
-/obj/item/device/taperecorder{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/storage/briefcase,
-/obj/item/device/flash,
-/obj/item/storage/secure/briefcase,
-/obj/item/device/eftpos{
- eftpos_name = "Internal Affairs EFTPOS scanner"
- },
-/obj/item/clothing/under/suit_jacket/really_black,
-/obj/item/clothing/shoes/laceup,
-/obj/item/clothing/shoes/laceup,
-/obj/item/clipboard,
-/obj/item/pen/multi,
-/obj/item/device/camera,
-/obj/structure/closet/lawcloset,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/wood,
+/turf/simulated/floor/carpet,
/area/lawoffice/representative)
-"GJ" = (
-/obj/machinery/telecomms/server/presets/service,
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+"GI" = (
+/obj/structure/bed/stool/chair/padded/brown{
+ dir = 4
},
-/area/tcommsat/chamber)
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hop/xo)
+"GJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"GK" = (
-/obj/structure/reagent_dispensers/watertank,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor,
/area/maintenance/engineering_ladder)
"GL" = (
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 9
- },
-/obj/effect/floor_decal/spline/fancy/wood/corner,
/obj/structure/cable/green{
icon_state = "2-4"
},
@@ -14022,8 +17466,34 @@
dir = 4;
icon_state = "pipe-c"
},
+/obj/effect/floor_decal/spline/fancy/wood/cee{
+ dir = 1
+ },
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
+"GM" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 6
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/lino/grey,
+/area/horizon/deck_three/cafeteria)
+"GN" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"GO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -14031,8 +17501,11 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
+ },
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"GP" = (
/obj/effect/floor_decal/corner/paleblue{
dir = 5
@@ -14042,13 +17515,13 @@
name = "Deck 3 Starboard Docks"
},
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"GQ" = (
/obj/structure/grille,
/obj/structure/window/shuttle/scc_space_ship,
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"GR" = (
/obj/effect/floor_decal/spline/fancy{
dir = 5
@@ -14058,6 +17531,21 @@
},
/turf/simulated/floor/carpet/rubber,
/area/bridge)
+"GS" = (
+/obj/effect/floor_decal/corner_wide/blue{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/pool)
"GT" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -14090,6 +17578,14 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/security/forensics_office)
+"GV" = (
+/obj/structure/lattice,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/railing/mapped,
+/turf/simulated/open,
+/area/horizon/hallway/deck_three/primary/starboard)
"GW" = (
/obj/effect/floor_decal/corner/blue/full{
dir = 1
@@ -14114,27 +17610,26 @@
},
/turf/simulated/floor/tiled/white,
/area/hallway/medical/upper)
+"GY" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"GZ" = (
/obj/structure/cable{
icon_state = "2-4"
},
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
},
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor,
/area/maintenance/engineering_ladder)
"Ha" = (
@@ -14156,10 +17651,18 @@
/turf/simulated/floor/carpet/rubber,
/area/bridge)
"Hc" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/corner/green/full{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_x = 28;
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/cryo)
+/area/horizon/crew_quarters/cryo/washroom)
"Hd" = (
/obj/structure/window/shuttle/scc_space_ship,
/obj/structure/grille/diagonal{
@@ -14171,18 +17674,22 @@
/turf/simulated/floor/wood,
/area/bridge/minibar)
"He" = (
-/obj/effect/floor_decal/corner/red/diagonal,
-/obj/machinery/reagentgrinder{
- pixel_y = 6
+/obj/effect/floor_decal/spline/plain{
+ dir = 5
},
-/obj/structure/table/reinforced/wood,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/obj/structure/flora/ausbushes/reedbush,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/beach/water/alt,
+/area/horizon/deck_three/nature_showcase)
"Hf" = (
-/obj/random/junk,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor,
-/area/maintenance/engineering_ladder)
+/obj/effect/floor_decal/corner/yellow{
+ dir = 5
+ },
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
"Hg" = (
/obj/structure/railing/mapped{
dir = 4
@@ -14196,8 +17703,16 @@
},
/area/bridge)
"Hh" = (
-/turf/simulated/wall,
-/area/maintenance/substation/command)
+/obj/machinery/door/firedoor,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"Hi" = (
/obj/effect/map_effect/wingrille_spawn/reinforced/polarized{
id = "hop"
@@ -14224,10 +17739,11 @@
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
"Hk" = (
-/obj/effect/floor_decal/corner_wide/blue/full,
+/obj/effect/floor_decal/corner/green/full,
+/obj/effect/floor_decal/industrial/outline/yellow,
/obj/structure/closet/emcloset,
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
+/area/horizon/crew_quarters/fitness/hallway)
"Hl" = (
/obj/effect/floor_decal/corner/blue/full{
dir = 8
@@ -14238,22 +17754,39 @@
/obj/structure/cable/green{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/visible,
-/turf/simulated/floor/tiled/dark,
+/obj/machinery/atmospherics/pipe/simple/visible/universal,
+/turf/simulated/floor/tiled,
/area/maintenance/aux_atmospherics/deck_3)
+"Hn" = (
+/obj/effect/floor_decal/corner/yellow{
+ dir = 5
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/obj/machinery/button/remote/blast_door{
+ name = "Viewing Shutters";
+ id = "shutters_deck3_engibreakwindows";
+ pixel_y = 25;
+ pixel_x = 25
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
"Ho" = (
-/obj/effect/floor_decal/corner/paleblue{
- dir = 10
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/camera/network/third_deck{
- c_tag = "Third Deck - Hallway 6";
- dir = 1
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
-/turf/simulated/floor/tiled,
-/area/hallway/primary/port)
+/turf/simulated/floor/tiled/dark,
+/area/crew_armory)
"Hp" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -14264,40 +17797,37 @@
/obj/machinery/door/airlock/glass_command{
id_tag = "";
name = "Bridge";
- req_one_access = list(19,38)
+ req_one_access = list(19, 38)
},
/turf/simulated/floor/tiled,
/area/bridge)
"Hq" = (
+/obj/structure/table/wood,
/obj/effect/floor_decal/corner/paleblue{
dir = 6
},
-/obj/structure/bed/stool/chair/padded/black{
- dir = 8
- },
-/obj/machinery/newscaster{
- pixel_x = 28
- },
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
"Hr" = (
-/obj/structure/table/wood,
-/obj/machinery/chemical_dispenser/coffee/full{
- layer = 3.3;
- pixel_y = 3;
- spawn_cartridges = list(/obj/item/reagent_containers/chem_disp_cartridge/coffee,/obj/item/reagent_containers/chem_disp_cartridge/milk,/obj/item/reagent_containers/chem_disp_cartridge/cream,/obj/item/reagent_containers/chem_disp_cartridge/sugar)
+/obj/effect/floor_decal/corner/green{
+ dir = 5
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hop/xo)
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/firealarm/north,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"Hs" = (
-/obj/machinery/door/airlock/glass{
- name = "Pool"
+/obj/effect/floor_decal/spline/fancy/wood/cee,
+/obj/structure/bed/stool/chair/padded/brown{
+ dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = -25
+ },
+/turf/simulated/floor/wood,
+/area/horizon/hallway/deck_three/primary/starboard)
"Ht" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -14305,43 +17835,47 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/door/firedoor,
/obj/effect/floor_decal/corner/paleblue{
dir = 10
},
+/turf/simulated/floor/tiled/dark,
+/area/horizon/hallway/deck_three/primary/starboard)
+"Hu" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/door/airlock/glass{
- name = "Deck 3 Port Docks"
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"Hv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/beige{
+ dir = 9
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"Hu" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/corner/red/full{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
-"Hv" = (
-/obj/structure/bed/stool/chair/padded/brown,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hop/xo)
+/area/security/vacantoffice)
"Hw" = (
/obj/structure/closet/emcloset,
/obj/effect/floor_decal/corner/blue/full{
@@ -14373,18 +17907,23 @@
/turf/simulated/floor/tiled/white,
/area/hallway/medical/upper)
"Hy" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/structure/lattice/catwalk/indoor/grate,
/obj/machinery/light/small/emergency{
dir = 8
},
-/turf/simulated/floor,
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
/area/maintenance/aux_atmospherics/deck_3)
+"Hz" = (
+/obj/structure/bed/stool/chair/padded/brown{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/art,
+/area/crew_quarters/lounge/secondary)
"HA" = (
/obj/effect/floor_decal/corner_wide/paleblue{
dir = 5
@@ -14430,12 +17969,15 @@
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
"HF" = (
-/obj/structure/table/standard,
-/obj/machinery/firealarm/north,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
+/obj/structure/bed/stool/chair/padded/brown,
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
"HG" = (
/obj/structure/railing/mapped,
/obj/effect/floor_decal/corner/blue{
@@ -14447,24 +17989,25 @@
/turf/simulated/floor/tiled/dark,
/area/bridge)
"HH" = (
-/obj/effect/floor_decal/corner/red/diagonal,
-/obj/machinery/door/blast/shutters/open{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/structure/table/reinforced/wood,
-/obj/machinery/atmospherics/unary/vent_pump/on{
+/obj/structure/railing/mapped,
+/obj/structure/railing/mapped{
dir = 8
},
-/obj/item/reagent_containers/food/drinks/teapot{
- pixel_y = 7
+/obj/structure/railing/mapped{
+ dir = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/turf/simulated/open,
+/area/horizon/hallway/deck_three/primary/starboard)
"HI" = (
/obj/structure/sign/biohazard,
/turf/simulated/wall,
/area/medical/ward/isolation)
+"HJ" = (
+/obj/structure/window/shuttle/scc_space_ship,
+/obj/structure/grille,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/hallway/primary/port)
"HK" = (
/obj/effect/floor_decal/corner_wide/green/full{
dir = 8
@@ -14481,11 +18024,27 @@
/turf/simulated/floor/tiled/white,
/area/medical/ward)
"HL" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/power/apc/low{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green,
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/light/small/emergency{
dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/bridge/selfdestruct)
+/turf/simulated/floor,
+/area/maintenance/bridge)
+"HM" = (
+/obj/machinery/power/breakerbox/activated{
+ RCon_tag = "Deck 3 Civilian Substation"
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/civilian_east)
"HN" = (
/obj/effect/floor_decal/industrial/warning{
dir = 1
@@ -14503,7 +18062,10 @@
dir = 4
},
/obj/effect/floor_decal/corner/blue/diagonal,
-/turf/simulated/floor/tiled/white,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
/area/bridge)
"HP" = (
/obj/effect/map_effect/wingrille_spawn/reinforced/polarized{
@@ -14516,12 +18078,39 @@
/obj/structure/cable/green,
/turf/simulated/floor,
/area/crew_quarters/captain)
+"HQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor,
+/area/maintenance/engineering_ladder)
"HR" = (
-/obj/machinery/light,
-/obj/machinery/shieldwallgen,
+/obj/structure/table/rack,
+/obj/item/clothing/suit/armor/carrier/officer,
+/obj/item/clothing/suit/armor/carrier/officer,
+/obj/item/clothing/head/helmet/security,
+/obj/item/clothing/head/helmet/security,
+/obj/effect/floor_decal/corner/blue/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark,
/area/crew_armory)
+"HS" = (
+/obj/effect/floor_decal/corner/green/full,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo/washroom)
"HT" = (
/obj/structure/window/shuttle/scc_space_ship,
/obj/structure/grille,
@@ -14553,14 +18142,20 @@
dir = 2;
icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
/turf/simulated/floor/tiled,
/area/hallway/secondary/entry/emergency)
"HV" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- req_one_access = list(12,61)
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance_hatch{
+ req_one_access = list(12)
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
/turf/simulated/floor,
/area/maintenance/engineering_ladder)
"HW" = (
@@ -14589,29 +18184,58 @@
},
/turf/simulated/floor/tiled/white,
/area/hallway/medical/upper)
-"HZ" = (
-/obj/machinery/washing_machine,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/locker)
-"Ia" = (
-/obj/structure/cable/cyan{
- icon_state = "4-8"
+"HY" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/storage/shields)
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"HZ" = (
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = 24
+ },
+/obj/structure/railing/mapped,
+/obj/machinery/washing_machine,
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/fitness/changing)
+"Ia" = (
+/obj/machinery/message_server,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
"Ib" = (
-/obj/structure/disposalpipe/segment{
+/obj/structure/cryofeed{
dir = 4
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor,
-/area/maintenance/security_starboard)
-"Ic" = (
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 5
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/horizon/crew_quarters/cryo)
+"Ic" = (
+/obj/machinery/door/firedoor,
+/obj/structure/grille/diagonal{
+ dir = 8
+ },
+/obj/structure/window/shuttle/scc_space_ship,
+/obj/machinery/door/blast/shutters/open{
+ id = "shutters_deck3_lounge";
+ name = "Viewing Shutters"
+ },
+/turf/simulated/floor/reinforced,
+/area/horizon/crew_quarters/fitness/lounge)
"Id" = (
/obj/effect/floor_decal/corner/blue/full{
dir = 8
@@ -14631,8 +18255,11 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
+ },
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"If" = (
/obj/structure/railing/mapped,
/obj/structure/disposalpipe/segment{
@@ -14647,37 +18274,63 @@
/turf/simulated/floor/tiled/ramp{
dir = 4
},
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"Ig" = (
/obj/machinery/light{
dir = 1
},
-/obj/effect/floor_decal/corner/paleblue{
- dir = 6
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"Ih" = (
-/obj/machinery/door/airlock/freezer{
- id_tag = "main_unit_2";
- name = "Unit 2"
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
},
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/toilet)
-"Ii" = (
-/obj/structure/table/standard,
-/obj/machinery/light/small/red{
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"Ih" = (
+/obj/effect/floor_decal/corner_wide/blue{
+ dir = 10
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/item/book/manual/wiki/security_space_law,
/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
+/area/horizon/crew_quarters/fitness/pool)
+"Ii" = (
+/obj/machinery/computer/guestpass{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"Ij" = (
+/obj/effect/floor_decal/corner/yellow{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
+"Ik" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
"Il" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -14693,21 +18346,32 @@
/obj/item/disk/nuclear,
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"Ip" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+"In" = (
+/obj/effect/floor_decal/corner/blue{
dir = 6
},
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"Ip" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor,
/area/maintenance/engineering_ladder)
"Iq" = (
/obj/machinery/door/airlock{
- name = "Changing Room"
+ name = "Locker Room"
},
/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/locker)
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/fitness/changing)
"Ir" = (
/obj/structure/window/shuttle/scc_space_ship,
/obj/structure/grille/diagonal{
@@ -14716,42 +18380,36 @@
/turf/simulated/floor/reinforced,
/area/crew_quarters/captain)
"Is" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Holodeck"
},
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/structure/disposalpipe/junction{
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
+"It" = (
+/obj/effect/floor_decal/corner_wide/blue/full{
dir = 1
},
-/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
-"It" = (
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 10
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-29"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/structure/sign/drop{
+ pixel_y = 32;
+ desc = "A warning sign which reads 'CAUTION: SLIP HAZARD'.";
+ name = "\improper CAUTION: SLIP HAZARD sign"
+ },
+/obj/machinery/light{
dir = 4
},
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/horizon/crew_quarters/fitness/pool)
"Iu" = (
/obj/machinery/door/firedoor,
-/obj/effect/floor_decal/corner/paleblue{
- dir = 5
- },
/obj/machinery/door/airlock/glass{
name = "Deck 3 Starboard Docks"
},
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"Iv" = (
/obj/machinery/door/blast/regular{
density = 0;
@@ -14769,31 +18427,47 @@
name = "Security - Investigations Office"
})
"Iw" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 4
- },
-/turf/simulated/floor/bluegrid{
- name = "Mainframe Base";
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
- },
-/area/tcommsat/chamber)
-"Ix" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/lounge/secondary)
+"Ix" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/full{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
},
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/crew_quarters/cryo/dormitories)
+"Iy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/door/airlock/maintenance{
+ req_one_access = list(12)
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/maintenance/engineering_ladder)
"Iz" = (
/obj/machinery/door/airlock/external{
frequency = 1337;
@@ -14804,19 +18478,18 @@
req_access = list(13)
},
/turf/simulated/floor/plating,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"IA" = (
-/obj/effect/floor_decal/corner/grey/diagonal{
- dir = 8
+/obj/machinery/shower{
+ dir = 1;
+ pixel_y = -8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/obj/machinery/door/window/northleft{
+ name = "Shower"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
+/obj/structure/curtain/open/shower,
+/turf/simulated/floor/tiled/freezer,
+/area/horizon/crew_quarters/fitness/showers)
"IB" = (
/obj/effect/floor_decal/spline/plain/corner{
dir = 8
@@ -14829,6 +18502,13 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
+"IC" = (
+/obj/structure/flora/pottedplant/random,
+/obj/effect/floor_decal/spline/plain{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/hallway/deck_three/primary/starboard)
"ID" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/structure/table/wood,
@@ -14841,47 +18521,42 @@
/turf/simulated/floor/tiled/dark,
/area/medical/smoking)
"IE" = (
-/obj/machinery/light/small/emergency,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/carpet,
+/area/lawoffice/representative)
+"IF" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/grass/alt,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
+"IG" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/bed/stool/chair,
+/obj/effect/floor_decal/corner/purple{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/deck_three/nature_showcase)
+"IH" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
+"II" = (
+/obj/effect/floor_decal/corner/blue/diagonal,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/tiled/dark,
-/area/bridge/selfdestruct)
-"IF" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/camera/network/third_deck{
- c_tag = "Third Deck - Cryostorage";
- dir = 1
- },
-/obj/machinery/computer/cryopod{
- pixel_y = -33
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/cryo)
-"IG" = (
-/obj/effect/floor_decal/corner/red/diagonal,
-/obj/machinery/alarm{
- pixel_y = 28
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/structure/closet/secure_closet/freezer/fridge,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
-"IH" = (
-/obj/effect/floor_decal/corner/paleblue{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/crew_quarters/fitness/pool)
"IJ" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -14895,6 +18570,9 @@
/obj/effect/floor_decal/corner/blue{
dir = 9
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/bridge)
"IK" = (
@@ -14902,7 +18580,7 @@
dir = 4
},
/obj/machinery/portable_atmospherics/powered/pump/filled,
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/tiled,
/area/maintenance/aux_atmospherics/deck_3)
"IL" = (
/obj/effect/floor_decal/corner/paleblue{
@@ -14914,42 +18592,39 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/tiled,
/area/hallway/secondary/entry/emergency)
"IN" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 0;
- external_pressure_bound_default = 0;
- icon_state = "map_vent_in";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- internal_pressure_bound_default = 4000;
- pressure_checks = 2;
- pressure_checks_default = 2;
- pump_direction = 0;
- use_power = 1
- },
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
- },
-/area/tcommsat/chamber)
-"IO" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/effect/floor_decal/spline/plain{
- dir = 1
- },
-/obj/effect/floor_decal/corner/grey/diagonal{
+/obj/structure/table/standard,
+/obj/machinery/light{
dir = 8
},
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/item/pen/multi{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/effect/floor_decal/corner/beige/full{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/vacantoffice)
+"IO" = (
+/obj/effect/floor_decal/corner/blue/diagonal,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/cyan,
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
"IP" = (
/obj/machinery/recharger/wallcharger{
pixel_x = 32
@@ -14973,20 +18648,9 @@
/obj/machinery/light{
dir = 8
},
-/obj/machinery/button/remote/airlock{
- id = "conference_room";
- name = "Conference Room Bolts";
- pixel_y = 32;
- specialfunctions = 4
- },
/obj/effect/landmark/start{
name = "Captain"
},
-/obj/machinery/button/switch/windowtint{
- id = "conferecen_room";
- pixel_x = 32;
- pixel_y = 10
- },
/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
"IR" = (
@@ -15010,17 +18674,21 @@
},
/turf/simulated/floor/plating,
/area/hallway/secondary/entry/emergency)
+"IS" = (
+/obj/effect/floor_decal/industrial/hatch/red,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
"IT" = (
/obj/structure/cable/green{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/lattice/catwalk/indoor/grate,
/obj/machinery/access_button{
command = "cycle_interior";
frequency = 1380;
- master_tag = "ert_shuttle_dock_airlock";
+ master_tag = "specops_shuttle_dock_airlock";
name = "interior access button";
pixel_x = 25;
pixel_y = 25;
@@ -15029,6 +18697,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 5
},
+/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor,
/area/maintenance/security_starboard)
"IU" = (
@@ -15042,27 +18711,19 @@
/turf/simulated/floor/tiled,
/area/bridge/bridge_crew)
"IV" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1;
- external_pressure_bound = 102;
- external_pressure_bound_default = 102;
- icon_state = "map_vent_in";
- pump_direction = 0
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/locker)
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/fitness/changing)
"IW" = (
-/obj/machinery/requests_console{
- department = "Engineering";
- departmentType = 1;
- name = "Engineering RC";
- pixel_x = 32
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/engineering/break_room)
+/turf/simulated/wall,
+/area/horizon/stairwell/central)
"IX" = (
/obj/structure/window/shuttle/scc_space_ship,
/obj/structure/grille,
@@ -15084,47 +18745,54 @@
/obj/machinery/atmospherics/pipe/manifold/hidden,
/turf/simulated/floor/tiled,
/area/hallway/secondary/entry/emergency)
-"Ja" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
+"IZ" = (
+/obj/effect/floor_decal/corner/blue/diagonal,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 10
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/pool)
+"Ja" = (
/obj/machinery/power/apc/low{
dir = 1;
name = "north bump";
pixel_y = 24
},
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor,
/area/maintenance/security_starboard)
"Jb" = (
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 10
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/corner/blue{
+ dir = 9
},
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
-"Jd" = (
-/obj/structure/window/reinforced{
+/obj/machinery/light{
dir = 8
},
-/obj/structure/lattice,
-/turf/simulated/open,
-/area/hallway/crew_area)
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
+"Jc" = (
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/cryo/dormitories)
+"Jd" = (
+/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
+/turf/simulated/floor,
+/area/security/vacantoffice)
"Je" = (
/obj/effect/floor_decal/spline/plain{
dir = 8
@@ -15152,29 +18820,76 @@
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
"Jf" = (
+/obj/machinery/door/airlock{
+ name = "Washroom"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
-"Jg" = (
-/obj/effect/floor_decal/corner/green{
- dir = 5
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/fitness/washroom)
"Jh" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
+/obj/machinery/door/airlock/hatch{
+ req_access = list(19);
+ secured_wires = 1;
+ name = "Command Bunker Interior";
+ icon_state = "door_locked";
+ locked = 1;
+ id_tag = "bolts_bunker_internal"
},
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai)
+/obj/machinery/door/firedoor,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
"Ji" = (
/obj/effect/floor_decal/corner/paleblue{
dir = 10
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
+"Jj" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"Jk" = (
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/northright{
+ name = "Desk Access"
+ },
+/obj/machinery/door/window/southright{
+ name = "Desk Access"
+ },
+/obj/machinery/door/blast/shutters{
+ id = "vacant_office";
+ name = "Public Office Desk Shutter"
+ },
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled,
+/area/security/vacantoffice)
"Jl" = (
/obj/machinery/light{
dir = 8
@@ -15185,57 +18900,45 @@
/turf/simulated/floor/tiled/white,
/area/bridge/bridge_crew)
"Jm" = (
-/obj/machinery/power/apc/low{
- dir = 8;
- name = "west bump";
- pixel_x = -24
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/locker)
-"Jn" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/fitness/changing)
+"Jn" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
/obj/machinery/light/small/emergency{
dir = 1
},
-/obj/structure/lattice/catwalk/indoor/grate,
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
+/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor,
/area/maintenance/security_starboard)
"Jo" = (
-/obj/machinery/computer/power_monitor{
- dir = 1
+/obj/machinery/papershredder,
+/obj/effect/floor_decal/corner/blue{
+ dir = 10
},
-/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
+/turf/simulated/floor/tiled,
+/area/bridge)
"Jp" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue{
+/turf/simulated/floor/tiled/ramp{
dir = 1
},
-/obj/structure/disposalpipe/junction,
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/horizon/deck_three/cafeteria)
"Jq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -15251,24 +18954,16 @@
name = "Security - Investigations Office"
})
"Jr" = (
-/obj/machinery/camera/network/third_deck{
- c_tag = "Third Deck - Holodeck";
- dir = 1
- },
/obj/effect/floor_decal/corner/paleblue{
- dir = 10
+ dir = 6
},
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/disposalpipe/segment,
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck - Emergency Service Dock Starboard";
+ dir = 8
},
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/hallway/secondary/entry/emergency)
"Js" = (
/obj/machinery/door/airlock/external{
frequency = 1380;
@@ -15285,71 +18980,80 @@
/area/maintenance/security_starboard)
"Jt" = (
/obj/structure/cable/green{
- icon_state = "1-8"
+ icon_state = "1-2"
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor,
+/area/maintenance/bridge)
+"Ju" = (
+/obj/machinery/cryopod{
+ dir = 4
+ },
+/obj/structure/railing/mapped,
+/obj/effect/floor_decal/corner/green/full,
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo)
+"Jv" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing/mapped,
+/turf/simulated/open/airless,
+/area/template_noop)
+"Jw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"Jx" = (
+/obj/effect/floor_decal/sign/m,
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 4
+ },
+/obj/machinery/firealarm/east,
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/chamber)
+"Jy" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ dir = 4
},
/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/effect/floor_decal/corner/blue{
- dir = 9
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
-/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
-"Jv" = (
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop/xo)
+"Jz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/lounge/secondary)
+"JA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/floor_decal/corner/blue{
dir = 9
},
-/turf/simulated/floor/tiled,
-/area/bridge)
-"Jw" = (
-/obj/structure/table/standard,
-/obj/item/paper_scanner,
-/turf/simulated/floor/tiled/dark,
-/area/security/vacantoffice)
-"Jx" = (
/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor,
-/area/tcommsat/entrance)
-"Jy" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/cryo)
-"Jz" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/carpet/rubber,
-/area/tcommsat/entrance)
-"JA" = (
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 9
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
+ icon_state = "1-2"
},
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/horizon/crew_quarters/fitness/hallway)
"JB" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -15361,39 +19065,52 @@
dir = 10
},
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"JC" = (
/obj/machinery/atmospherics/pipe/simple/visible{
dir = 4
},
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/tiled/dark,
+/obj/machinery/pipedispenser,
+/turf/simulated/floor/tiled,
/area/maintenance/aux_atmospherics/deck_3)
"JD" = (
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 6
- },
-/obj/machinery/light{
+/obj/structure/closet/emcloset,
+/obj/effect/floor_decal/corner/blue/full{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/horizon/crew_quarters/fitness/hallway)
"JE" = (
-/obj/machinery/light/small/red{
- dir = 8
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/freezer{
+ dir = 1;
+ icon_state = "freezer_1";
+ use_power = 1
+ },
+/obj/structure/sign/nosmoking_2{
+ pixel_x = -32
},
-/obj/structure/closet/emcloset,
/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
+/area/tcommsat/entrance)
+"JF" = (
+/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
+/turf/simulated/floor/plating,
+/area/horizon/crew_quarters/fitness/lounge)
"JG" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- req_one_access = list(12)
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 12
},
-/turf/simulated/floor,
-/area/maintenance/security_starboard)
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/structure/mirror{
+ pixel_x = 25;
+ pixel_y = 8
+ },
+/turf/simulated/floor/lino/grey,
+/area/horizon/deck_three/cafeteria)
"JH" = (
/turf/simulated/wall,
/area/security/forensics_office)
@@ -15425,7 +19142,7 @@
dir = 10
},
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"JK" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
@@ -15436,31 +19153,33 @@
/turf/simulated/floor/wood,
/area/bridge/minibar)
"JL" = (
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 10
+/obj/structure/table/standard,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
},
-/obj/machinery/computer/HolodeckControl/Horizon{
- pixel_y = -32
+/obj/effect/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/wood,
+/area/horizon/crew_quarters/fitness/pool)
+"JM" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
-"JN" = (
-/obj/machinery/atmospherics/binary/pump/high_power{
+/obj/structure/sign/directions/all{
dir = 4;
- name = "Aux Tanks Inlet"
+ pixel_y = 32
},
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/aux_atmospherics/deck_3)
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"JN" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/turf/simulated/floor/wood,
+/area/horizon/deck_three/cafeteria)
"JO" = (
-/obj/structure/lattice,
-/obj/structure/railing/mapped{
- dir = 8
- },
-/turf/simulated/open,
-/area/hallway/primary/starboard)
+/obj/effect/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/wood,
+/area/horizon/deck_three/cafeteria)
"JP" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -15472,28 +19191,101 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/obj/machinery/door/airlock/command{
id_tag = "conference_room";
name = "Conference Room";
- req_access = list(19)
+ req_one_access = list(19, 38)
},
/turf/simulated/floor/tiled,
/area/bridge/meeting_room)
"JQ" = (
/turf/simulated/wall/r_wall,
/area/crew_quarters/captain)
-"JT" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/carpet/rubber,
-/area/tcommsat/entrance)
-"JU" = (
-/obj/machinery/papershredder,
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -28
+"JR" = (
+/obj/effect/floor_decal/corner/red/full{
+ dir = 1
+ },
+/obj/structure/railing/mapped{
+ dir = 1
+ },
+/obj/structure/railing/mapped{
+ dir = 4
},
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hop/xo)
+/area/horizon/crew_quarters/fitness/gym)
+"JS" = (
+/obj/machinery/door/firedoor,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"JT" = (
+/obj/structure/sign/flag/scc{
+ pixel_x = 32
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue{
+ dir = 6
+ },
+/obj/machinery/door/window/westleft{
+ name = "Power and Atmospherics Access";
+ req_access = list(19)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
+"JU" = (
+/obj/structure/table/wood,
+/obj/machinery/button/switch/windowtint{
+ id = "consular";
+ dir = 4;
+ pixel_x = -24;
+ pixel_y = -4
+ },
+/obj/machinery/button/remote/airlock{
+ dir = 4;
+ id = "consular_office";
+ name = "consular door control";
+ pixel_x = -35;
+ req_access = null;
+ pixel_y = 7
+ },
+/obj/machinery/button/remote/airlock{
+ dir = 4;
+ id = "consular_office";
+ name = "consular door bolts";
+ pixel_x = -35;
+ req_access = null;
+ specialfunctions = 4;
+ pixel_y = -7
+ },
+/obj/item/paper_scanner,
+/obj/item/pen/black,
+/obj/item/pen/blue{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/modular_computer/laptop/preset/representative{
+ pixel_x = -1;
+ pixel_y = 5
+ },
+/obj/machinery/recharger,
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -24;
+ pixel_y = 4
+ },
+/turf/simulated/floor/carpet,
+/area/lawoffice/consular)
"JV" = (
/obj/structure/table/standard,
/obj/item/folder/sec,
@@ -15511,19 +19303,14 @@
/turf/simulated/floor/tiled/dark,
/area/security/vacantoffice2)
"JW" = (
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 6
- },
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 28;
- req_one_access = list(24,11,55)
- },
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
+/area/horizon/crew_quarters/fitness/hallway)
"JX" = (
/obj/structure/railing/mapped,
/obj/structure/disposalpipe/segment{
@@ -15538,16 +19325,18 @@
/turf/simulated/floor/tiled/ramp/bottom{
dir = 4
},
-/area/hallway/primary/starboard)
-"JZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/horizon/hallway/deck_three/primary/starboard)
+"JY" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing/mapped{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/structure/railing/mapped{
+ dir = 8
},
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/obj/item/hullbeacon/red,
+/turf/simulated/open/airless,
+/area/template_noop)
"Ka" = (
/obj/effect/floor_decal/spline/fancy/wood/corner{
dir = 4
@@ -15568,16 +19357,14 @@
/area/crew_quarters/captain)
"Kb" = (
/obj/structure/table/standard,
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = 21
+/obj/machinery/light{
+ dir = 4
},
-/obj/item/device/hand_labeler,
-/obj/item/stamp/denied{
- pixel_x = 6;
- pixel_y = -16
+/obj/machinery/recharger,
+/obj/effect/floor_decal/corner/beige/full{
+ dir = 4
},
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/tiled,
/area/security/vacantoffice)
"Kc" = (
/obj/structure/ladder{
@@ -15586,28 +19373,13 @@
/turf/simulated/open,
/area/maintenance/engineering_ladder)
"Kd" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/hatch{
- desc = "It opens and closes. It has a small sign engraved: Bunker capacity: 6. Only facility's Command Staff is permitted.";
- id_tag = "bunker2";
- name = "Command Bunker";
- req_access = list(19);
- secured_wires = 1
+/obj/structure/grille/diagonal{
+ dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
+/obj/structure/window/shuttle/scc_space_ship,
+/turf/simulated/floor/reinforced,
+/area/crew_quarters/lounge)
"Ke" = (
/obj/effect/floor_decal/corner/grey/diagonal{
dir = 8
@@ -15643,29 +19415,61 @@
/turf/simulated/floor/tiled/dark,
/area/security/vacantoffice2)
"Ki" = (
-/obj/effect/floor_decal/corner/paleblue/full,
-/obj/machinery/atmospherics/unary/vent_pump/on{
+/obj/effect/floor_decal/corner/blue/full,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_x = -24;
dir = 4
},
-/obj/structure/flora/pottedplant/random,
-/turf/simulated/floor/tiled,
-/area/hallway/primary/port)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_armory)
"Kj" = (
-/obj/effect/floor_decal/corner/grey/diagonal{
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/effect/landmark{
+ name = "JoinLate"
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo)
+"Kk" = (
+/obj/effect/floor_decal/spline/fancy/wood{
dir = 8
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/medical/washroom)
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/sunnybush,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -28;
+ req_one_access = list(24,11,55)
+ },
+/turf/simulated/floor/grass/alt,
+/area/horizon/deck_three/nature_showcase)
"Kl" = (
/obj/machinery/button/remote/airlock{
id = "RunCapRun";
- name = "Maintenance Bolts";
- pixel_x = -26;
+ name = "Escape Route Bolts";
+ pixel_x = 25;
req_access = list(20);
- specialfunctions = 4
+ specialfunctions = 4;
+ pixel_y = 25
},
-/turf/simulated/floor,
+/obj/structure/sign/emerg_exit{
+ dir = 1;
+ pixel_x = 32
+ },
+/obj/structure/lattice,
+/obj/structure/sign/emerg_exitZ{
+ pixel_x = -32
+ },
+/turf/simulated/open,
/area/crew_quarters/captain)
"Km" = (
/obj/machinery/disposal/small/west{
@@ -15677,32 +19481,31 @@
/turf/simulated/floor/wood,
/area/journalistoffice)
"Kn" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access = list(12)
+ },
+/obj/machinery/door/firedoor,
/obj/structure/cable/green{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/command{
- id_tag = "rep_office";
- name = "Representative Office";
- req_access = list(38)
- },
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/wood,
-/area/lawoffice/representative)
+/turf/simulated/floor,
+/area/maintenance/bridge)
"Ko" = (
/obj/structure/cable/green{
icon_state = "4-8"
},
/obj/effect/floor_decal/corner/paleblue,
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"Kp" = (
-/obj/effect/floor_decal/corner/paleblue/full{
+/obj/machinery/light{
dir = 1
},
-/obj/structure/table/standard,
+/obj/machinery/vending/cola,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
"Kq" = (
@@ -15721,31 +19524,12 @@
/turf/simulated/floor,
/area/crew_quarters/captain)
"Ks" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/machinery/light,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/effect/floor_decal/corner/paleblue{
- dir = 5
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
-"Kt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/corner/blue{
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"Ku" = (
/obj/effect/floor_decal/corner/paleblue{
dir = 10
@@ -15758,7 +19542,7 @@
},
/obj/structure/closet/walllocker/emerglocker/south,
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"Kv" = (
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
frequency = 1337;
@@ -15783,15 +19567,12 @@
/turf/simulated/floor/plating,
/area/hallway/secondary/entry/emergency)
"Kw" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/light{
- dir = 1
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner/green{
+ dir = 5
},
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
- },
-/area/tcommsat/chamber)
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"Kx" = (
/obj/structure/railing/mapped{
dir = 4
@@ -15808,11 +19589,19 @@
/turf/simulated/floor/tiled/ramp/bottom,
/area/crew_quarters/captain)
"Ky" = (
-/obj/structure/window/shuttle/scc_space_ship,
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/crew_quarters/fitness/pool)
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
"Kz" = (
/obj/structure/grille,
/obj/structure/window/shuttle/scc_space_ship,
@@ -15832,41 +19621,31 @@
dir = 5
},
/obj/machinery/door/firedoor,
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/simulated/floor/tiled,
/area/hallway/secondary/entry/emergency)
"KB" = (
/obj/machinery/camera/network/command{
c_tag = "Bridge - Corridor Camera 1"
},
-/obj/machinery/status_display{
- layer = 4;
- pixel_y = 32
- },
/obj/effect/floor_decal/corner/blue/diagonal,
/obj/structure/flora/pottedplant/random,
-/turf/simulated/floor/tiled/white,
+/turf/simulated/floor/tiled,
/area/bridge)
"KC" = (
-/obj/machinery/vending/snack,
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/turf/simulated/floor/beach/water/alt,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"KD" = (
-/obj/structure/table/wood,
-/obj/item/paper_scanner,
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/wood,
-/area/lawoffice/representative)
+/area/crew_quarters/heads/hop/xo)
"KE" = (
/obj/machinery/atmospherics/pipe/simple/hidden,
/obj/machinery/door/airlock/external{
@@ -15879,58 +19658,56 @@
},
/turf/simulated/floor/plating,
/area/hallway/secondary/entry/emergency)
-"KF" = (
-/turf/simulated/floor/wood,
-/area/hallway/primary/starboard)
"KG" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 10
- },
-/obj/machinery/telecomms/receiver/preset_right,
-/turf/simulated/floor/bluegrid{
- name = "Mainframe Base";
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
- },
-/area/tcommsat/chamber)
+/obj/effect/floor_decal/spline/plain/cee,
+/turf/simulated/floor/carpet/rubber,
+/area/bridge)
"KH" = (
-/obj/effect/floor_decal/corner/paleblue{
+/obj/structure/window/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/shutters/open{
+ dir = 8;
+ id = "shutters_deck3_cafedesk";
+ name = "Cafe Desk Shutter"
+ },
+/obj/structure/table/stone/marble,
+/turf/simulated/floor/tiled,
+/area/horizon/deck_three/cafeteria)
+"KI" = (
+/obj/item/modular_computer/console/preset/engineering{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue{
dir = 10
},
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hallway/secondary/entry/emergency)
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
"KJ" = (
/turf/simulated/floor/wood,
/area/crew_quarters/lounge/secondary)
+"KK" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/obj/structure/bed/stool/chair/padded/brown{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/port)
"KL" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
+/obj/machinery/porta_turret/stationary,
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/reinforced,
+/area/bridge/selfdestruct)
+"KM" = (
+/obj/structure/railing/mapped{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/railing/mapped{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/light_switch{
- pixel_y = -30
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/lawoffice/consular)
+/turf/simulated/open,
+/area/horizon/hallway/deck_three/primary/starboard)
"KN" = (
/obj/effect/floor_decal/industrial/warning{
dir = 8
@@ -15943,28 +19720,76 @@
dir = 4
},
/turf/simulated/open,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
+"KP" = (
+/obj/structure/bed/stool/chair/sofa/right/brown{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/firealarm/west,
+/turf/simulated/floor/carpet/art,
+/area/horizon/crew_quarters/fitness/lounge)
+"KQ" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck - Cryogenics Fore Entrance";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"KR" = (
/obj/effect/floor_decal/corner/green{
dir = 9
},
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/horizon/crew_quarters/fitness/hallway)
"KS" = (
-/obj/machinery/alarm{
- pixel_y = 28
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood/corner,
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 8;
+ name = "XO Office";
+ sortType = "XO Office";
+ icon_state = "pipe-j1s"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
-/obj/structure/flora/pottedplant/random,
/turf/simulated/floor/wood,
/area/crew_quarters/heads/hop/xo)
-"KU" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+"KT" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
},
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/black,
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/chamber)
+"KU" = (
/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/cryo)
+/area/horizon/crew_quarters/cryo)
+"KV" = (
+/obj/effect/floor_decal/corner/blue/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/pool)
"KW" = (
/obj/structure/cable/green{
icon_state = "0-4"
@@ -15997,63 +19822,69 @@
/turf/simulated/floor/tiled,
/area/security/investigations)
"KY" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/obj/effect/floor_decal/corner/paleblue{
dir = 10
},
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/ringer_button{
+ id = "hop_ringer";
+ pixel_y = -25;
+ pixel_x = 5
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"KZ" = (
-/obj/structure/table/reinforced/steel,
-/turf/simulated/floor/carpet/rubber,
+/obj/structure/table/steel,
+/turf/simulated/floor/tiled/dark,
/area/engineering/break_room)
"La" = (
-/obj/structure/lattice/catwalk/indoor/grate,
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 8
+ },
+/obj/machinery/power/apc/super{
+ pixel_x = -24;
+ dir = 8
+ },
/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+ icon_state = "0-4"
},
+/turf/simulated/floor/tiled/dark,
/area/tcommsat/chamber)
"Lb" = (
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/effect/floor_decal/corner/green/full,
+/obj/machinery/disposal/small/north,
+/obj/structure/disposalpipe/trunk{
dir = 4
},
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = -24
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor,
-/area/maintenance/bridge)
-"Lc" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/black{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo)
+"Lc" = (
+/obj/machinery/camera/network/telecom{
+ c_tag = "Telecomms - Starboard";
+ dir = 4
},
+/obj/machinery/firealarm/west,
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
/area/tcommsat/chamber)
"Ld" = (
/obj/effect/floor_decal/spline/fancy/wood{
@@ -16064,10 +19895,23 @@
},
/turf/simulated/floor/wood,
/area/bridge/minibar)
-"Lg" = (
-/obj/structure/cable{
- icon_state = "4-8"
+"Le" = (
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/machinery/washing_machine,
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo/dormitories)
+"Lf" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 6
},
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
+"Lg" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -16077,8 +19921,11 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"Lh" = (
/obj/machinery/light{
dir = 8
@@ -16094,52 +19941,64 @@
/turf/simulated/floor/tiled/white,
/area/medical/ward)
"Li" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock/maintenance_hatch{
- req_one_access = list(12,61)
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/crew_armory)
+"Lj" = (
+/obj/effect/floor_decal/corner_wide/blue{
+ dir = 10
},
-/obj/machinery/door/firedoor,
-/turf/simulated/floor,
-/area/maintenance/engineering_ladder)
+/obj/machinery/power/apc/low{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/pool)
"Lk" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/atmospherics/pipe/simple/visible/universal,
-/turf/simulated/floor,
-/area/maintenance/engineering_ladder)
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/reinforced,
+/area/template_noop)
"Ll" = (
-/obj/machinery/door/firedoor,
+/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
+/turf/simulated/floor,
+/area/bridge/meeting_room)
+"Lm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/door/airlock/command{
- id_tag = "conference_room";
- name = "Conference Room";
- req_access = list(19)
- },
-/turf/simulated/floor/tiled,
-/area/bridge/meeting_room)
-"Lm" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor,
+/obj/machinery/atmospherics/pipe/manifold/hidden/black,
+/turf/simulated/floor/carpet/rubber,
/area/tcommsat/entrance)
+"Ln" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
+ },
+/turf/simulated/floor/holofloor/tiled/ramp{
+ dir = 4
+ },
+/area/bridge)
"Lo" = (
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/lattice/catwalk/indoor/grate,
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
+/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor,
/area/maintenance/security_starboard)
"Lp" = (
@@ -16168,27 +20027,38 @@
/turf/simulated/floor/tiled,
/area/security/investigations)
"Lr" = (
-/obj/structure/railing/mapped{
- dir = 8
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
},
-/obj/structure/railing/mapped{
- dir = 1
- },
-/obj/structure/railing/mapped,
-/turf/simulated/open,
-/area/hallway/primary/starboard)
-"Ls" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/full{
dir = 1
},
-/obj/effect/floor_decal/spline/plain{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/emergency)
+"Ls" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/machinery/disposal/small/east,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/firealarm/west,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"Lt" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/horizon/crew_quarters/fitness/hallway)
"Lu" = (
/obj/effect/floor_decal/spline/plain{
dir = 4
@@ -16205,25 +20075,63 @@
/obj/structure/trash_pile,
/turf/simulated/floor,
/area/maintenance/engineering_ladder)
-"Lz" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
+"Lw" = (
+/obj/structure/bed/stool/chair/office/bridge{
+ desc = "A seat for a lifeguard.";
+ dir = 8;
+ name = "lifeguard chair"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 28;
+ req_one_access = list(24,11,55)
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/corner/blue/diagonal,
-/obj/structure/railing/mapped{
+/obj/effect/floor_decal/spline/fancy/wood/cee{
dir = 1
},
-/turf/simulated/floor/tiled,
-/area/bridge/aibunker)
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/horizon/crew_quarters/fitness/pool)
+"Lx" = (
+/obj/structure/bed/stool/chair/sofa/right/brown{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Passenger"
+ },
+/turf/simulated/floor/carpet/art,
+/area/crew_quarters/lounge)
+"Ly" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 6
+ },
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
+"Lz" = (
+/obj/structure/bed/stool/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 5
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 28
+ },
+/obj/machinery/camera/network/telecom{
+ c_tag = "Telecomms - Control Room";
+ dir = 8
+ },
+/turf/simulated/floor/carpet/rubber,
+/area/tcommsat/entrance)
"LA" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
@@ -16233,12 +20141,30 @@
},
/turf/simulated/floor/tiled,
/area/bridge/third_deck_stairs)
-"LC" = (
-/obj/effect/floor_decal/industrial/warning{
+"LB" = (
+/obj/effect/floor_decal/corner/red/full{
+ dir = 8
+ },
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/structure/railing/mapped{
dir = 1
},
-/turf/simulated/floor/tiled,
-/area/hallway/primary/port)
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
+"LC" = (
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
+ },
+/obj/structure/table/steel,
+/obj/machinery/cell_charger,
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
"LD" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -16274,14 +20200,23 @@
dir = 9
},
/turf/simulated/floor/wood,
-/area/crew_quarters/lounge)
+/area/crew_quarters/lounge/secondary)
"LG" = (
-/obj/structure/bookcase,
-/obj/item/book/manual/psych,
-/obj/item/book/manual/stasis,
-/obj/item/book/manual/tcfl_pamphlet,
-/turf/simulated/floor/wood,
-/area/crew_quarters/captain)
+/obj/machinery/door/airlock{
+ name = "Showers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/cryo/showers)
"LH" = (
/obj/machinery/power/apc/low{
dir = 1;
@@ -16316,18 +20251,18 @@
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/noticeboard{
+ pixel_y = -32;
+ name = "\improper Executive Officer's notice board"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/obj/effect/floor_decal/corner/paleblue/full,
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"LL" = (
/obj/effect/floor_decal/spline/fancy/wood{
dir = 1
@@ -16337,14 +20272,13 @@
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
"LM" = (
-/obj/structure/cable/cyan{
- icon_state = "4-8"
+/obj/item/material/shard,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
},
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/storage/shields)
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/maintenance/engineering_ladder)
"LN" = (
/obj/structure/table/reinforced,
/obj/effect/floor_decal/corner/blue{
@@ -16358,15 +20292,11 @@
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/effect/floor_decal/corner/green{
+ dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/corner/grey/diagonal,
/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/cryo)
+/area/horizon/crew_quarters/cryo)
"LP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -16381,7 +20311,16 @@
dir = 10
},
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
+"LQ" = (
+/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
+/obj/machinery/door/blast/regular{
+ dir = 4;
+ id = "crew_armory";
+ name = "Crew Armoury"
+ },
+/turf/simulated/floor,
+/area/crew_armory)
"LR" = (
/obj/structure/railing/mapped{
dir = 1
@@ -16390,90 +20329,111 @@
dir = 4
},
/turf/simulated/open,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"LS" = (
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
"LT" = (
-/obj/structure/bed/stool/chair/sofa/right/brown{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/effect/landmark/start{
- name = "Passenger"
- },
/obj/machinery/camera/network/third_deck{
- c_tag = "Third Deck - Crew Lounge";
+ c_tag = "Third Deck - Crew Lounge Fore";
dir = 4
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/lounge)
-"LU" = (
-/obj/structure/railing/mapped{
- dir = 4
- },
-/obj/structure/railing/mapped{
+/obj/effect/floor_decal/spline/fancy/wood{
dir = 8
},
-/turf/simulated/open,
-/area/hallway/primary/starboard)
+/turf/simulated/floor/wood,
+/area/crew_quarters/lounge/secondary)
+"LU" = (
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/lino/grey,
+/area/horizon/deck_three/cafeteria)
"LV" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/lounge/secondary)
+/obj/structure/table/wood,
+/turf/simulated/floor/carpet/art,
+/area/crew_quarters/lounge)
"LW" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/corner/paleblue{
- dir = 10
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
-"LY" = (
-/obj/structure/railing/mapped{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/emergency,
-/turf/simulated/floor,
-/area/maintenance/bridge)
-"Ma" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/structure/bed/stool/chair/padded/brown,
+/turf/simulated/floor/carpet,
+/area/lawoffice/consular)
+"LX" = (
+/obj/machinery/door/firedoor,
+/obj/structure/window/shuttle/scc_space_ship,
+/obj/structure/grille,
+/obj/machinery/door/blast/shutters/open{
+ id = "shutters_deck3_lounge";
+ name = "Viewing Shutters";
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/horizon/crew_quarters/fitness/lounge)
+"LY" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
+"LZ" = (
+/obj/structure/lattice,
+/obj/machinery/light,
+/obj/structure/railing/mapped{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/horizon/hallway/deck_three/primary/starboard)
+"Ma" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"Mb" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
/obj/structure/closet/emcloset,
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
/obj/item/storage/toolbox/emergency,
/obj/item/crowbar/red,
/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/cryo)
+/area/horizon/crew_quarters/cryo)
"Mc" = (
-/obj/structure/railing/mapped{
+/obj/machinery/door/firedoor,
+/obj/structure/grille,
+/obj/structure/window/shuttle/scc_space_ship,
+/turf/simulated/floor/plating,
+/area/crew_quarters/lounge)
+"Md" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/obj/machinery/light{
dir = 8
},
-/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = -25
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
"Me" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -16498,20 +20458,30 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/structure/disposalpipe/segment{
dir = 4;
- icon_state = "conpipe-c"
+ icon_state = "pipe-c"
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/heads/cmo)
"Mg" = (
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -28
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 8;
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ icon_state = "map_vent_in";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ internal_pressure_bound_default = 4000;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0;
+ use_power = 1
},
-/obj/effect/floor_decal/corner/blue{
- dir = 6
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
},
-/turf/simulated/floor/tiled,
-/area/bridge)
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/chamber)
"Mh" = (
/obj/effect/floor_decal/corner/paleblue{
dir = 10
@@ -16529,52 +20499,82 @@
/obj/item/stack/medical/bruise_pack,
/obj/item/stack/medical/ointment,
/obj/item/stack/medical/ointment,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/item/reagent_containers/hypospray/autoinjector/inaprovaline,
+/obj/item/reagent_containers/hypospray/autoinjector/inaprovaline,
/turf/simulated/floor/tiled,
/area/hallway/secondary/entry/emergency)
"Mi" = (
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 10
- },
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet/art,
+/area/horizon/crew_quarters/fitness/lounge)
"Mj" = (
-/obj/structure/bed/stool/chair/padded/brown{
- dir = 8
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
},
-/obj/machinery/light_switch{
- pixel_y = 30
+/obj/structure/bed/stool/chair/office/bridge/generic{
+ dir = 1
},
-/turf/simulated/floor/carpet/rubber,
-/area/lawoffice/representative)
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop/xo)
+"Mk" = (
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/obj/structure/weightlifter,
+/obj/effect/floor_decal/corner/red/full{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/firealarm/north,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
"Ml" = (
-/obj/effect/floor_decal/industrial/warning/full,
-/obj/machinery/porta_turret/stationary,
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai)
+/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
+/area/hallway/primary/port)
"Mm" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/wood,
-/area/crew_quarters/lounge)
+/obj/structure/table/wood,
+/turf/simulated/floor/carpet/art,
+/area/crew_quarters/lounge/secondary)
+"Mn" = (
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/structure/closet/secure_closet/personal,
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo/dormitories)
"Mo" = (
/obj/effect/floor_decal/industrial/warning{
dir = 10
},
/turf/simulated/floor/reinforced,
/area/template_noop)
+"Mp" = (
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/structure/lattice/catwalk,
+/turf/simulated/open/airless,
+/area/template_noop)
"Mq" = (
/obj/machinery/alarm{
pixel_y = 28
},
-/obj/structure/flora/pottedplant/random,
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
+ },
+/obj/structure/closet/emcloset,
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
-/area/bridge/aibunker)
+/area/bridge)
"Mr" = (
/obj/effect/floor_decal/corner_wide/green{
dir = 10
@@ -16594,22 +20594,35 @@
/obj/structure/cable/green{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/button/remote/blast_door{
+ id = "crew_armoury_desk";
+ name = "Crew Armoury Auxiliary Access";
+ pixel_x = -32;
+ req_access = list(60);
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
"Mt" = (
-/obj/machinery/light{
+/obj/machinery/door/airlock/command{
+ id_tag = "rep_office";
+ name = "Representative Office";
+ req_access = list(38)
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/computer/guestpass{
- pixel_x = 32
- },
-/obj/structure/flora/pottedplant/random,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hop/xo)
-"Mu" = (
-/obj/effect/floor_decal/corner/red/diagonal,
/obj/structure/cable/green{
icon_state = "4-8"
},
@@ -16619,8 +20632,27 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/obj/effect/map_effect/door_helper/unres{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/lawoffice/representative)
+"Mu" = (
+/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
+/turf/simulated/floor,
+/area/horizon/crew_quarters/fitness/hallway)
+"Mv" = (
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 8
+ },
+/obj/structure/sign/securearea{
+ pixel_y = 32
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
"Mw" = (
/obj/machinery/shipsensors{
pixel_y = 7
@@ -16630,8 +20662,9 @@
/area/bridge)
"Mx" = (
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"My" = (
/turf/simulated/open,
/area/hallway/medical/upper)
@@ -16656,37 +20689,66 @@
/turf/simulated/floor/tiled/white,
/area/hallway/medical/upper)
"MA" = (
-/obj/structure/bed/stool/chair/padded/brown{
- dir = 8
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
},
-/obj/machinery/status_display{
- layer = 4;
- pixel_y = 32
+/obj/machinery/ringer_button{
+ id = "Consular";
+ layer = 3.3;
+ name = "Consular ringer button";
+ pixel_x = -32
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hop/xo)
-"MD" = (
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"MB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/door/firedoor,
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/door/airlock/maintenance{
+ req_one_access = list(12)
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/hallway/secondary/entry/emergency)
+"MC" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 5
},
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
-"ME" = (
-/obj/structure/window/reinforced{
- dir = 1
+/area/horizon/crew_quarters/fitness/gym)
+"MD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/corner/blue{
+ dir = 9
},
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
+"ME" = (
/obj/effect/floor_decal/spline/fancy/wood{
dir = 1
},
-/obj/structure/table/wood,
/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
+"MF" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/machinery/light,
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"MG" = (
/obj/effect/floor_decal/corner/paleblue{
dir = 10
@@ -16694,8 +20756,12 @@
/obj/machinery/computer/guestpass{
pixel_y = -32
},
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck - Central Ring Fore";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"MH" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -16716,13 +20782,16 @@
/turf/simulated/floor/tiled/white,
/area/hallway/medical/upper)
"MI" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/effect/landmark{
- name = "JoinLate"
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/cryo)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/scc_full,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"MJ" = (
/obj/effect/floor_decal/spline/plain,
/obj/effect/floor_decal/corner/blue{
@@ -16743,6 +20812,20 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
+"MK" = (
+/obj/structure/closet/secure_closet/guncabinet{
+ name = "Weaponry (Rifle)"
+ },
+/obj/item/gun/projectile/gauss/carbine,
+/obj/item/gun/projectile/gauss/carbine,
+/obj/item/gun/projectile/gauss/carbine,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/crew_armory)
"ML" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -16756,11 +20839,14 @@
/obj/effect/floor_decal/spline/fancy/wood{
dir = 9
},
-/obj/structure/window/reinforced{
- dir = 8
- },
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk,
+/obj/structure/railing/mapped{
+ dir = 1
+ },
+/obj/structure/railing/mapped{
+ dir = 8
+ },
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
"MN" = (
@@ -16786,6 +20872,17 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/ward)
+"MQ" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing/mapped{
+ dir = 1
+ },
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/item/hullbeacon/red,
+/turf/simulated/open/airless,
+/area/template_noop)
"MR" = (
/obj/effect/map_effect/wingrille_spawn/reinforced/polarized{
id = "Recovery1"
@@ -16794,21 +20891,33 @@
/turf/simulated/floor/plating,
/area/medical/ward)
"MS" = (
-/obj/effect/floor_decal/corner/paleblue{
+/obj/machinery/vending/snack,
+/obj/effect/floor_decal/corner/green{
dir = 9
},
-/obj/structure/flora/pottedplant,
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
+"MT" = (
+/obj/machinery/power/smes/buildable{
+ RCon_tag = "Substation - Deck 3 Civilian"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/civilian_east)
"MU" = (
-/obj/structure/railing/mapped{
- dir = 4
+/obj/machinery/light{
+ dir = 8
},
-/obj/effect/floor_decal/spline/plain{
- dir = 4
+/obj/effect/floor_decal/corner/green{
+ dir = 9
},
-/turf/simulated/floor/tiled/ramp/bottom,
-/area/hallway/primary/starboard)
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"MV" = (
/obj/effect/floor_decal/spline/fancy,
/obj/item/modular_computer/console/preset/research{
@@ -16817,16 +20926,14 @@
/turf/simulated/floor/carpet/rubber,
/area/bridge)
"MW" = (
-/obj/machinery/camera/network/command{
- c_tag = "Bridge - Corridor Camera 2";
- dir = 4;
- network = list("Command","Capt_Office")
+/obj/machinery/newscaster{
+ pixel_x = 32
},
-/obj/effect/floor_decal/corner/blue{
- dir = 6
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
},
-/turf/simulated/floor/tiled,
-/area/bridge)
+/turf/simulated/floor/wood,
+/area/crew_quarters/lounge/secondary)
"MX" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -16840,26 +20947,27 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/effect/floor_decal/corner/blue{
- dir = 10
- },
/obj/machinery/camera/network/command{
c_tag = "Bridge - Backroom";
dir = 1
},
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
-/area/bridge/aibunker)
+/area/bridge)
"MY" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
+/obj/machinery/door/blast/shutters/open{
+ dir = 2;
+ id = "shutters_deck3_cafewindows";
+ name = "Cafe Window Shutter"
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor,
-/area/hallway/primary/starboard)
+/area/horizon/deck_three/cafeteria)
+"MZ" = (
+/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
+/area/horizon/crew_quarters/fitness/washroom)
"Na" = (
/obj/machinery/suit_cycler/captain,
/obj/item/clothing/suit/space/void/captain,
@@ -16875,36 +20983,43 @@
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
"Nb" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/corner/paleblue{
- dir = 10
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/turf/simulated/floor/carpet/rubber,
+/area/bridge)
"Nc" = (
-/obj/structure/railing/mapped,
-/turf/simulated/open,
-/area/hallway/crew_area)
-"Nd" = (
-/obj/structure/closet/secure_closet/guncabinet{
- name = "Weaponry (Anti-Materiel)"
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
-/obj/item/gun/projectile/peac,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
+"Nd" = (
+/obj/item/storage/firstaid,
+/obj/item/storage/firstaid,
+/obj/structure/table/rack,
+/obj/effect/floor_decal/corner/green/diagonal,
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark,
/area/crew_armory)
"Nf" = (
-/obj/structure/closet/secure_closet/guncabinet{
- name = "Weaponry (Anti-Materiel Ammunition)"
+/obj/structure/railing/mapped{
+ dir = 4
},
-/obj/item/ammo_casing/peac,
-/obj/item/ammo_casing/peac,
-/obj/item/ammo_casing/peac,
+/obj/structure/closet/secure_closet/guncabinet{
+ name = "Weaponry (Anti-Materiel)"
+ },
+/obj/item/gun/projectile/peac,
+/obj/effect/floor_decal/corner/red/diagonal,
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark,
/area/crew_armory)
@@ -16923,6 +21038,16 @@
},
/turf/simulated/floor/tiled/dark,
/area/bridge)
+"Nh" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/obj/machinery/firealarm/west,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/fitness/changing)
"Ni" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -16941,8 +21066,14 @@
dir = 2;
icon_state = "pipe-c"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/lounge/secondary)
+/obj/structure/bed/stool/chair/sofa/left/brown{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Passenger"
+ },
+/turf/simulated/floor/carpet/art,
+/area/crew_quarters/lounge)
"Nm" = (
/obj/effect/floor_decal/corner/green/diagonal{
dir = 8
@@ -16960,42 +21091,36 @@
pixel_x = -16;
pixel_y = -22
},
-/obj/machinery/button/remote/airlock{
- dir = 1;
- id = "vacant_door";
- name = "\improper Vacant Office Bolts";
- pixel_x = -5;
- pixel_y = -23;
- specialfunctions = 4
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
/obj/structure/disposalpipe/trunk{
- dir = 8
+ dir = 1
},
-/turf/simulated/floor/tiled/dark,
+/obj/machinery/newscaster{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/corner/beige{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
/area/security/vacantoffice)
"No" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_security{
+ name = "Crew Armoury"
+ },
/obj/machinery/door/blast/regular{
dir = 4;
id = "crew_armory";
- name = "Crew Armory"
+ name = "Crew Armoury"
},
-/turf/simulated/floor/tiled/dark,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
/area/crew_armory)
"Np" = (
-/turf/simulated/floor/carpet,
-/area/lawoffice/consular)
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced,
+/area/template_noop)
"Nq" = (
/turf/simulated/wall,
/area/crew_quarters/lounge/secondary)
@@ -17013,20 +21138,12 @@
/turf/simulated/floor/tiled,
/area/bridge)
"Nt" = (
-/obj/machinery/power/smes/buildable{
- RCon_tag = "Shield Substation";
- charge = 1e+007;
- cur_coils = 6;
- input_attempt = 1;
- input_level = 500000;
- output_attempt = 1;
- output_level = 500000
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
},
-/obj/structure/cable/cyan{
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled/dark,
-/area/storage/shields)
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor,
+/area/maintenance/engineering_ladder)
"Nu" = (
/obj/effect/floor_decal/spline/plain{
dir = 8
@@ -17056,31 +21173,48 @@
/turf/simulated/floor/tiled,
/area/security/investigations)
"Nw" = (
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 6
+/obj/effect/floor_decal/corner/blue/diagonal,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/horizon/crew_quarters/fitness/pool)
+"Nx" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/ramp,
+/area/horizon/deck_three/cafeteria)
"Ny" = (
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/locker)
-"Nz" = (
-/obj/structure/table/wood,
-/obj/machinery/newscaster{
- pixel_y = -32
+/obj/effect/floor_decal/corner/green,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/item/pen/black,
-/obj/item/pen/blue{
- pixel_x = 4;
- pixel_y = 4
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/fitness/changing)
+"Nz" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/machinery/keycard_auth{
+ pixel_y = -25
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+ dir = 4
},
/turf/simulated/floor/wood,
-/area/lawoffice/representative)
+/area/crew_quarters/heads/hop/xo)
"NA" = (
/obj/machinery/alarm{
dir = 4;
@@ -17123,6 +21257,23 @@
},
/turf/simulated/floor/tiled/dark,
/area/medical/ward/isolation)
+"ND" = (
+/obj/effect/floor_decal/corner_wide/blue{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/pool)
+"NE" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"NF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -17133,15 +21284,23 @@
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
"NG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/corner/red/full{
- dir = 1
+/obj/structure/railing/mapped{
+ dir = 8
},
-/obj/effect/floor_decal/spline/plain{
- dir = 4
+/obj/structure/railing/mapped,
+/turf/simulated/open,
+/area/horizon/hallway/deck_three/primary/starboard)
+"NH" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 10
},
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"NI" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -17154,16 +21313,18 @@
name = "Deck 3 Starboard Docks"
},
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"NJ" = (
-/obj/effect/floor_decal/corner/red/diagonal,
-/obj/structure/sign/flag/idris{
- pixel_y = 32
+/obj/machinery/light/small/emergency{
+ dir = 8
},
-/obj/structure/table/reinforced/wood,
-/obj/machinery/chemical_dispenser/bar_soft/full,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor,
+/area/maintenance/security_starboard)
"NK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
@@ -17176,12 +21337,31 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/vacantoffice2)
-"NM" = (
-/obj/structure/cable/green{
- icon_state = "1-4"
+"NL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/bridge/selfdestruct)
+/turf/simulated/floor/tiled,
+/area/hallway/primary/port)
+"NM" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"NN" = (
+/obj/effect/floor_decal/spline/fancy/wood/cee{
+ dir = 1
+ },
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/grass/alt,
+/area/horizon/hallway/deck_three/primary/starboard)
"NO" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -17206,13 +21386,10 @@
/obj/machinery/door/airlock/glass_command{
id_tag = "";
name = "Bridge";
- req_one_access = list(19,38)
- },
-/obj/effect/floor_decal/corner/blue{
- dir = 10
+ req_one_access = list(19, 38)
},
/turf/simulated/floor/tiled,
-/area/bridge/aibunker)
+/area/bridge)
"NP" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -17238,46 +21415,75 @@
/turf/simulated/floor/carpet/rubber,
/area/bridge)
"NR" = (
-/obj/structure/closet/emcloset,
/obj/effect/floor_decal/corner/green/full{
dir = 8
},
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
-"NS" = (
-/obj/effect/floor_decal/spline/plain,
-/turf/simulated/floor/bluegrid{
- name = "Mainframe Base";
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
+/obj/machinery/disposal/small/east,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
},
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"NS" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/firealarm/east,
+/turf/simulated/floor/tiled/dark,
/area/tcommsat/chamber)
"NT" = (
/obj/structure/table/wood,
/obj/item/device/taperecorder,
/obj/structure/noticeboard{
desc = "A board for uncovering hidden conspiracies.";
- name = "corkboard";
- pixel_y = -26
+ name = "corkboard"
},
/obj/machinery/light,
/turf/simulated/floor/carpet,
/area/journalistoffice)
-"NV" = (
+"NU" = (
/obj/structure/cable/green{
icon_state = "1-2"
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/light{
- dir = 4
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
+"NV" = (
+/obj/machinery/button/remote/blast_door{
+ dir = 1;
+ name = "Cafe Desk Shutters";
+ pixel_x = 25;
+ pixel_y = -35;
+ id = "shutters_deck3_cafedesk"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 1
+/obj/machinery/button/remote/blast_door{
+ dir = 1;
+ name = "Cafe Window Shutters";
+ pixel_x = 39;
+ pixel_y = -25;
+ id = "shutters_deck3_cafewindows"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor,
-/area/hallway/primary/starboard)
+/obj/machinery/disposal/small/north,
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 1;
+ name = "Cafe Utensils Vendor Shutter";
+ pixel_x = 25;
+ pixel_y = -25;
+ id = "shutters_deck3_cafeutensils"
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/lino/grey,
+/area/horizon/deck_three/cafeteria)
"NW" = (
/obj/structure/bed/stool/chair{
dir = 1
@@ -17296,7 +21502,8 @@
dir = 4
},
/obj/structure/dispenser/oxygen,
-/turf/simulated/floor/tiled/dark,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
/area/maintenance/aux_atmospherics/deck_3)
"NY" = (
/obj/structure/railing/mapped,
@@ -17331,12 +21538,15 @@
/turf/simulated/floor/tiled,
/area/bridge)
"Oa" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
+/obj/effect/floor_decal/corner/green{
+ dir = 10
},
-/obj/machinery/disposal,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hop/xo)
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck - Starboard Lounge Entrance";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"Ob" = (
/obj/structure/railing/mapped{
dir = 8
@@ -17366,37 +21576,39 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/effect/floor_decal/corner/paleblue{
- dir = 10
+ dir = 6
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"Oe" = (
-/obj/effect/floor_decal/corner/red/diagonal,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/effect/floor_decal/corner/purple/diagonal,
+/turf/simulated/floor/tiled,
+/area/horizon/deck_three/nature_showcase)
+"Of" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Nature Showcase Maintenance";
+ req_access = list(26)
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
+/area/horizon/deck_three/nature_showcase)
"Og" = (
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 6
+/obj/effect/floor_decal/corner/blue/diagonal,
+/obj/structure/cable/green{
+ icon_state = "2-4"
},
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 28;
- req_one_access = list(24,11,55)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/horizon/crew_quarters/fitness/pool)
"Oh" = (
/obj/structure/table/standard,
/obj/effect/floor_decal/corner/blue/full{
@@ -17405,20 +21617,29 @@
/turf/simulated/floor/tiled,
/area/security/investigations)
"Oi" = (
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -28
- },
-/turf/simulated/floor/tiled/dark,
+/obj/machinery/firealarm/west,
+/obj/structure/railing/mapped,
+/obj/effect/floor_decal/corner/yellow/full,
+/turf/simulated/floor/tiled,
/area/engineering/break_room)
"Oj" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable/green{
- icon_state = "1-2"
+ icon_state = "1-8"
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hop/xo)
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"Ok" = (
/obj/effect/floor_decal/spline/fancy/wood,
/obj/machinery/camera/network/command{
@@ -17438,17 +21659,21 @@
/obj/effect/landmark/start{
name = "Engineer"
},
-/turf/simulated/floor/carpet/rubber,
+/turf/simulated/floor/tiled/dark,
/area/engineering/break_room)
"Om" = (
+/obj/effect/floor_decal/corner/yellow{
+ dir = 9
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
/obj/structure/cable/green{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor,
-/area/maintenance/security_starboard)
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
"On" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -17472,25 +21697,33 @@
/turf/simulated/floor/tiled,
/area/bridge)
"Op" = (
-/obj/machinery/light{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/effect/floor_decal/corner/paleblue{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
-/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 6
+ },
+/turf/simulated/floor/carpet/rubber,
+/area/tcommsat/entrance)
"Oq" = (
/obj/effect/floor_decal/spline/fancy/wood/corner{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
"Or" = (
@@ -17514,37 +21747,45 @@
dir = 1;
unlocked = 0
},
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
/turf/simulated/floor,
/area/maintenance/engineering_ladder)
"Ot" = (
-/obj/machinery/button/remote/airlock{
- id = "bunker2";
- name = "Bunker Outer Airlock Bolt Control";
- pixel_x = 26;
- req_access = list(20);
- specialfunctions = 4
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
},
-/obj/machinery/light/small/red{
- dir = 4
+/obj/machinery/light{
+ dir = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/palebush,
+/turf/simulated/floor/grass/alt,
+/area/horizon/deck_three/nature_showcase)
"Ou" = (
/obj/effect/floor_decal/corner/paleblue{
dir = 5
},
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"Ov" = (
-/obj/structure/bed/stool/chair/office/light{
+/obj/effect/floor_decal/spline/fancy/wood{
dir = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hop/xo)
+/turf/simulated/floor/wood,
+/area/lawoffice/consular)
"Ow" = (
/obj/structure/railing/mapped,
/turf/simulated/open,
/area/hallway/medical/upper)
+"Ox" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor,
+/area/maintenance/substation/civilian_east)
"Oy" = (
/obj/effect/floor_decal/corner/paleblue/diagonal,
/obj/structure/table/glass,
@@ -17552,12 +21793,8 @@
/turf/simulated/floor/tiled/white,
/area/security/forensics_morgue)
"Oz" = (
-/obj/machinery/door/firedoor,
-/obj/effect/floor_decal/corner/paleblue{
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/turf/simulated/wall,
+/area/horizon/crew_quarters/fitness/hallway)
"OA" = (
/obj/effect/floor_decal/spline/plain{
dir = 8
@@ -17586,15 +21823,14 @@
/turf/simulated/floor/tiled,
/area/bridge)
"OB" = (
-/obj/effect/floor_decal/corner/grey/diagonal{
- dir = 8
+/obj/effect/floor_decal/corner/green{
+ dir = 9
},
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/light{
- dir = 1
+/obj/structure/cable/green{
+ icon_state = "1-4"
},
/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
+/area/horizon/crew_quarters/fitness/showers)
"OC" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
@@ -17614,6 +21850,26 @@
},
/turf/simulated/floor/tiled/white,
/area/bridge/bridge_crew)
+"OE" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 6
+ },
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
+"OF" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/vending/cigarette,
+/obj/effect/floor_decal/corner/paleblue/full{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/port)
"OG" = (
/obj/structure/cable/green{
icon_state = "2-8"
@@ -17635,11 +21891,10 @@
/turf/simulated/floor/tiled,
/area/bridge/third_deck_stairs)
"OI" = (
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/hallway/primary/starboard)
+/obj/structure/lattice,
+/obj/machinery/light,
+/turf/simulated/open,
+/area/horizon/hallway/deck_three/primary/starboard)
"OJ" = (
/obj/structure/railing/mapped{
dir = 1
@@ -17659,13 +21914,21 @@
/turf/simulated/floor/tiled/dark,
/area/bridge)
"OK" = (
-/obj/structure/table/wood,
-/obj/machinery/alarm{
- pixel_y = 28
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
},
-/obj/item/device/flashlight/lamp,
/turf/simulated/floor/wood,
-/area/lawoffice/representative)
+/area/crew_quarters/heads/hop/xo)
"OL" = (
/obj/machinery/alarm{
dir = 1;
@@ -17683,28 +21946,38 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
-"OM" = (
-/obj/structure/bed/stool/chair{
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck - Starboard Dock Starboard";
dir = 1
},
-/turf/simulated/floor/wood,
-/area/hallway/primary/starboard)
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"ON" = (
/obj/structure/cable/green{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
-"OO" = (
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+/obj/structure/disposalpipe/junction{
+ dir = 1
},
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
+"OO" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
/area/tcommsat/chamber)
"OP" = (
/obj/structure/railing/mapped,
@@ -17726,32 +21999,25 @@
},
/area/crew_quarters/captain)
"OQ" = (
-/obj/structure/cable/green{
- icon_state = "4-8"
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/sign/flag/zavodskoi{
+ pixel_y = -32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/firealarm/south,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/lawoffice/consular)
+/turf/simulated/floor/tiled/dark,
+/area/bridge/selfdestruct)
"OR" = (
-/obj/effect/floor_decal/corner/paleblue{
- dir = 5
- },
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
+/obj/effect/floor_decal/industrial/warning/cee{
dir = 4
},
-/turf/simulated/floor/tiled,
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 4;
+ name = "Distro to Port Docks";
+ target_pressure = 200
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor,
/area/hallway/secondary/entry/emergency)
"OS" = (
/obj/structure/cable/green{
@@ -17764,43 +22030,58 @@
/turf/simulated/floor/tiled/white,
/area/security/forensics_office)
"OT" = (
-/obj/machinery/telecomms/processor/preset_four,
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+/obj/structure/railing/mapped,
+/obj/effect/floor_decal/corner/yellow/full{
+ dir = 4
},
-/area/tcommsat/chamber)
+/turf/simulated/floor/tiled,
+/area/bridge)
"OV" = (
/obj/effect/floor_decal/corner/paleblue{
dir = 10
},
-/obj/structure/extinguisher_cabinet{
- dir = 1;
- pixel_y = -29
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/firealarm/south,
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
"OW" = (
-/obj/item/modular_computer/console/preset/medical{
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
-"OZ" = (
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
/obj/structure/cable/green{
- icon_state = "1-4"
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/chamber)
+"OY" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ req_one_access = list(12, 26);
+ name = "Cryogenics Maintenance"
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor,
-/area/maintenance/security_starboard)
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/cryo)
+"OZ" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 5
+ },
+/turf/simulated/floor/lino/grey,
+/area/horizon/deck_three/cafeteria)
"Pa" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -17815,13 +22096,13 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
+"Pb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/port)
"Pc" = (
/obj/structure/table/standard,
-/obj/machinery/requests_console{
- department = "Vacant Office";
- pixel_x = 30
- },
/obj/structure/closet/crate/plastic{
layer = 2.79;
pixel_y = -4;
@@ -17830,7 +22111,14 @@
/obj/item/storage/box/fancy/crayons,
/obj/item/storage/box/fancy/crayons,
/obj/item/toy/figure/assistant,
-/turf/simulated/floor/tiled/dark,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/corner/beige{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
/area/security/vacantoffice)
"Pd" = (
/obj/effect/floor_decal/corner/blue{
@@ -17843,14 +22131,9 @@
/turf/simulated/floor/tiled/dark,
/area/bridge)
"Pe" = (
-/obj/structure/sign/electricshock{
- pixel_x = -32
- },
-/obj/machinery/computer/message_monitor{
- dir = 4
- },
-/turf/simulated/floor/carpet/rubber,
-/area/tcommsat/entrance)
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled,
+/area/security/vacantoffice)
"Pf" = (
/obj/structure/railing/mapped{
dir = 1
@@ -17864,25 +22147,30 @@
/turf/simulated/floor/tiled/dark,
/area/bridge)
"Pg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/structure/window/shuttle/scc_space_ship,
+/obj/structure/grille,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/shutters/open{
+ id = "shutters_deck3_pool";
+ name = "Viewing Shutters"
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
+/turf/simulated/floor/plating,
+/area/horizon/crew_quarters/fitness/pool)
"Ph" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/structure/cable/green{
- icon_state = "1-8"
+/turf/simulated/floor/carpet/rubber,
+/area/tcommsat/entrance)
+"Pi" = (
+/obj/effect/floor_decal/corner/red/full{
+ dir = 1
},
-/turf/simulated/floor,
-/area/maintenance/bridge)
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
"Pj" = (
/obj/effect/floor_decal/spline/plain/corner{
dir = 8
@@ -17908,17 +22196,22 @@
/turf/simulated/floor/tiled,
/area/bridge)
"Pk" = (
-/obj/effect/floor_decal/corner_wide/blue{
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 28;
+ req_one_access = list(24,11,55)
+ },
+/obj/effect/floor_decal/corner/blue{
dir = 6
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/camera/network/third_deck{
- c_tag = "Third Deck - Hallway 7";
- dir = 8
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/horizon/crew_quarters/fitness/hallway)
"Pl" = (
/obj/effect/floor_decal/corner/green/diagonal{
dir = 8
@@ -17931,36 +22224,51 @@
/area/medical/ward)
"Pm" = (
/obj/effect/floor_decal/corner/paleblue{
- dir = 8
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
/obj/structure/cable/green{
- icon_state = "1-2"
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
"Pn" = (
-/obj/machinery/telecomms/bus/preset_one,
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
-/area/tcommsat/chamber)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/bridge)
"Po" = (
/obj/structure/cable/green{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/visible/universal,
-/obj/structure/lattice/catwalk/indoor/grate,
/obj/machinery/alarm{
dir = 4;
pixel_x = -28
},
-/turf/simulated/floor,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
/area/maintenance/aux_atmospherics/deck_3)
+"Pp" = (
+/obj/machinery/telecomms/server/presets/common,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
"Pq" = (
/obj/structure/railing/mapped,
/obj/effect/floor_decal/corner/blue{
@@ -17972,12 +22280,13 @@
/turf/simulated/floor/tiled/dark,
/area/bridge)
"Pr" = (
-/obj/structure/lattice,
-/obj/structure/window/reinforced{
- dir = 8
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
},
-/turf/simulated/open,
-/area/hallway/primary/starboard)
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/genericbush,
+/turf/simulated/floor/grass/alt,
+/area/horizon/deck_three/nature_showcase)
"Ps" = (
/obj/structure/window/shuttle/scc_space_ship,
/obj/structure/grille/diagonal,
@@ -18007,14 +22316,26 @@
/turf/simulated/floor/tiled/dark,
/area/medical/ward/isolation)
"Pu" = (
-/obj/structure/table/rack,
-/obj/random/arcade,
/obj/machinery/atmospherics/pipe/simple/visible{
dir = 4
},
-/obj/item/storage/bag/inflatable,
-/turf/simulated/floor,
+/turf/simulated/floor/tiled,
/area/maintenance/aux_atmospherics/deck_3)
+"Pv" = (
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/machinery/disposal/small/west,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 28
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/lino/grey,
+/area/horizon/deck_three/cafeteria)
"Pw" = (
/obj/effect/floor_decal/spline/plain{
dir = 8
@@ -18024,10 +22345,6 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
-"Px" = (
-/obj/structure/lattice,
-/turf/simulated/open,
-/area/turret_protected/ai)
"Py" = (
/obj/structure/cable/green{
icon_state = "0-8"
@@ -18040,22 +22357,23 @@
/turf/simulated/floor/tiled,
/area/security/investigations_storage)
"Pz" = (
-/obj/effect/floor_decal/corner_wide/blue{
+/obj/effect/floor_decal/corner/green{
dir = 9
},
-/obj/machinery/power/apc/low{
- dir = 8;
- name = "west bump";
- pixel_x = -24
- },
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/emcloset,
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
+/area/horizon/crew_quarters/fitness/hallway)
+"PA" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/obj/structure/flora/pottedplant/random,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
"PB" = (
-/turf/simulated/wall/r_wall,
-/area/maintenance/bridge)
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
"PC" = (
/obj/effect/floor_decal/corner/green/diagonal,
/obj/structure/table/standard,
@@ -18064,6 +22382,21 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/ward/isolation)
+"PD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"PE" = (
/obj/structure/bed/stool/chair/office/light,
/obj/effect/floor_decal/corner/paleblue/diagonal,
@@ -18117,19 +22450,25 @@
/turf/simulated/floor/tiled/dark,
/area/bridge)
"PH" = (
-/obj/structure/table/wood,
-/obj/machinery/photocopier/faxmachine{
- anchored = 0;
- department = "Representative's Office";
- pixel_y = 4
+/obj/machinery/door/window/brigdoor/westleft{
+ name = "Inner Office Access";
+ req_access = list(57)
},
-/obj/item/device/radio/intercom{
- dir = 4;
- name = "Station Intercom (General)";
- pixel_x = -25
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/carpet/rubber,
-/area/lawoffice/representative)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop/xo)
"PI" = (
/obj/effect/floor_decal/corner_wide/green{
dir = 5
@@ -18137,6 +22476,12 @@
/turf/simulated/floor/tiled/white,
/area/medical/ward)
"PJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -18144,37 +22489,30 @@
/obj/structure/cable/green{
icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"PK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/structure/railing/mapped{
dir = 1
},
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/effect/floor_decal/spline/plain{
+ dir = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/locker)
+/obj/structure/bed/stool,
+/obj/structure/curtain/open,
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/fitness/changing)
"PL" = (
/obj/effect/floor_decal/spline/fancy/wood{
dir = 10
},
-/obj/structure/cable/green,
-/obj/machinery/power/apc{
- is_critical = 1;
- name = "south bump";
- pixel_y = -24
+/obj/machinery/light_switch{
+ pixel_y = 9;
+ pixel_x = -24;
+ dir = 4
},
+/obj/structure/flora/pottedplant/random,
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
"PM" = (
@@ -18183,7 +22521,7 @@
},
/obj/structure/lattice,
/turf/simulated/open,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"PN" = (
/obj/effect/floor_decal/corner/beige/diagonal,
/obj/machinery/requests_console{
@@ -18199,24 +22537,16 @@
/turf/simulated/floor/tiled/white,
/area/security/forensics_office)
"PO" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/tiled,
/area/security/vacantoffice)
"PP" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
+/obj/structure/lattice/catwalk,
+/obj/structure/railing/mapped{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
+/obj/item/hullbeacon/red,
+/turf/simulated/open/airless,
+/area/template_noop)
"PQ" = (
/obj/structure/window/shuttle/scc_space_ship,
/obj/structure/grille,
@@ -18237,6 +22567,14 @@
},
/turf/simulated/floor/plating,
/area/bridge)
+"PR" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/maintenance_hatch{
+ req_one_access = list(12)
+ },
+/turf/simulated/floor,
+/area/maintenance/engineering_ladder)
"PS" = (
/obj/effect/floor_decal/corner/paleblue{
dir = 9
@@ -18244,9 +22582,6 @@
/obj/structure/extinguisher_cabinet{
pixel_x = -24
},
-/obj/structure/cable/green{
- icon_state = "1-4"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 1
},
@@ -18285,21 +22620,15 @@
/turf/simulated/floor/carpet/rubber,
/area/bridge)
"PV" = (
-/obj/structure/bed/stool/chair/office/dark{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/tiled,
/area/security/vacantoffice)
"PW" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue{
- dir = 6
- },
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/obj/effect/floor_decal/corner/green/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/fitness/showers)
"PX" = (
/obj/structure/bed/stool/chair/office/dark{
dir = 8
@@ -18312,29 +22641,36 @@
/turf/simulated/floor/tiled/white,
/area/security/forensics_office)
"PY" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/bluegrid,
-/area/storage/shields)
-"PZ" = (
-/obj/structure/railing/mapped{
- dir = 1
- },
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/power/apc{
- is_critical = 1;
- name = "south bump";
- pixel_y = -24
+/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
/obj/structure/cable/green{
- icon_state = "0-4"
+ icon_state = "0-8"
},
/turf/simulated/floor,
-/area/bridge/aibunker)
+/area/tcommsat/entrance)
+"PZ" = (
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/light,
+/obj/machinery/power/smes/buildable{
+ RCon_tag = "Substation - Deck 3 Telecommunications";
+ input_attempt = 1;
+ input_level = 200000;
+ charge = 5e+006;
+ output_attempt = 1;
+ output_level = 200000
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor,
+/area/tcommsat/entrance)
"Qa" = (
/obj/structure/bed/stool/chair{
dir = 1
@@ -18349,16 +22685,20 @@
/turf/simulated/floor/tiled/dark,
/area/security/vacantoffice2)
"Qb" = (
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 9
- },
/obj/item/device/radio/intercom{
dir = 4;
name = "Station Intercom (General)";
pixel_x = -25
},
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck - Locker Room Entrance";
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
+/area/horizon/crew_quarters/fitness/hallway)
"Qc" = (
/obj/structure/disposalpipe/trunk,
/obj/machinery/disposal/small/south,
@@ -18368,32 +22708,41 @@
/turf/simulated/floor/wood,
/area/bridge/minibar)
"Qd" = (
-/obj/effect/floor_decal/corner/red/diagonal,
-/obj/structure/cable/green{
- icon_state = "2-8"
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/turf/simulated/floor/beach/water/alt,
+/area/horizon/deck_three/nature_showcase)
"Qe" = (
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/effect/floor_decal/corner/paleblue{
- dir = 10
- },
/obj/structure/cable{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"Qf" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/securearea{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/industrial/hatch/red,
+/obj/machinery/button/remote/airlock{
+ specialfunctions = 4;
+ pixel_y = -25;
+ name = "Entrance Airlock Bolts";
+ id = "bolts_bunker_entrance";
+ req_access = list(19);
+ dir = 1
+ },
+/obj/machinery/light/small/emergency{
+ dir = 8
+ },
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/bridge/aibunker)
"Qg" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
@@ -18402,6 +22751,10 @@
dir = 1
},
/obj/structure/flora/pottedplant/random,
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = -32
+ },
/turf/simulated/floor/tiled,
/area/bridge)
"Qh" = (
@@ -18416,61 +22769,57 @@
/turf/simulated/floor/wood,
/area/bridge/minibar)
"Qi" = (
-/turf/simulated/wall,
-/area/maintenance/wing/starboard)
-"Qj" = (
-/obj/machinery/camera/network/command{
- c_tag = "Bridge - Executive Officer's Quarters"
- },
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hop/xo)
-"Qk" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
-/turf/simulated/floor,
-/area/maintenance/bridge)
-"Ql" = (
-/obj/effect/floor_decal/corner_wide/blue{
+/obj/effect/floor_decal/corner/green{
dir = 9
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
-"Qm" = (
-/obj/machinery/door/firedoor,
-/obj/effect/floor_decal/corner/paleblue{
- dir = 10
- },
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/airlock/glass{
- name = "Deck 3 Port Docks"
+/obj/structure/cable/green{
+ icon_state = "1-4"
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/crew_quarters/fitness/changing)
+"Qj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/lawoffice/representative)
+"Qk" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/sunnybush,
+/turf/simulated/floor/grass/alt,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
+"Ql" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 9
+ },
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
+"Qm" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/junction/yjunction,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"Qn" = (
/obj/machinery/airlock_sensor{
frequency = 1380;
@@ -18511,7 +22860,7 @@
},
/obj/machinery/door/airlock/glass_command{
name = "Break Room";
- req_access = list(19)
+ req_one_access = list(19, 38)
},
/obj/machinery/door/blast/regular{
density = 0;
@@ -18523,20 +22872,50 @@
/turf/simulated/floor/tiled,
/area/bridge)
"Qp" = (
-/obj/effect/floor_decal/corner/red/diagonal,
-/obj/machinery/light{
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/emergency)
+"Qq" = (
+/obj/effect/floor_decal/spline/fancy/wood{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
-"Qq" = (
-/obj/machinery/door/airlock{
- name = "Restroom"
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/lawoffice/representative)
+/obj/structure/table/wood,
+/obj/item/stack/packageWrap,
+/obj/item/stack/wrapping_paper,
+/obj/item/folder/blue,
+/obj/item/storage/slide_projector,
+/obj/machinery/firealarm/west,
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop/xo)
+"Qr" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ req_access = list(12)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/maintenance/bridge)
"Qs" = (
/obj/structure/bed/stool/chair/padded/brown{
dir = 4
@@ -18547,6 +22926,11 @@
},
/turf/simulated/floor/carpet,
/area/journalistoffice)
+"Qt" = (
+/obj/effect/floor_decal/corner/blue/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
"Qu" = (
/obj/effect/map_effect/wingrille_spawn/reinforced/polarized{
id = "cap"
@@ -18565,45 +22949,38 @@
/obj/machinery/firealarm/north,
/turf/simulated/floor/tiled/white,
/area/security/forensics_morgue)
-"Qw" = (
-/turf/simulated/floor/reinforced,
-/area/space)
"Qx" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/landmark{
- name = "JoinLateCryo"
- },
+/obj/effect/floor_decal/corner/green/diagonal,
/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/cryo)
+/area/horizon/crew_quarters/cryo)
"Qy" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/carpet/rubber,
-/area/tcommsat/entrance)
+/turf/simulated/floor/wood,
+/area/crew_quarters/lounge)
"Qz" = (
/obj/effect/floor_decal/corner/blue/diagonal,
-/turf/simulated/floor/tiled/white,
+/turf/simulated/floor/tiled,
/area/bridge)
"QA" = (
-/obj/machinery/door/firedoor,
-/obj/effect/floor_decal/corner/paleblue{
- dir = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/turf/simulated/floor/carpet/art,
+/area/horizon/crew_quarters/fitness/lounge)
"QB" = (
-/obj/structure/cable/green{
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 4
+ },
+/obj/structure/cable{
icon_state = "1-2"
},
-/obj/effect/floor_decal/corner/red{
- dir = 5
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/hallway/deck_three/primary/starboard)
"QC" = (
/obj/effect/floor_decal/corner/paleblue{
dir = 5
@@ -18614,103 +22991,98 @@
},
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"QD" = (
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/port)
+/obj/effect/floor_decal/corner/green{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"QE" = (
/obj/machinery/light/small/emergency{
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/visible,
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/tiled,
/area/maintenance/aux_atmospherics/deck_3)
"QF" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 6
+/obj/effect/floor_decal/corner/green{
+ dir = 10
},
-/obj/machinery/telecomms/broadcaster/preset_right,
-/turf/simulated/floor/bluegrid{
- name = "Mainframe Base";
- nitrogen = 100;
- oxygen = 0;
- temperature = 80
- },
-/area/tcommsat/chamber)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"QG" = (
-/obj/structure/bed/stool/chair/padded/brown,
-/obj/effect/landmark/start{
- name = "Off-Duty Crew Member"
- },
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/lounge/secondary)
+/turf/simulated/floor/wood,
+/area/crew_quarters/lounge)
"QH" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
+/obj/item/modular_computer/console/preset/engineering{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 28
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/machinery/camera/network/engineering{
+ c_tag = "Engineering - Shield Room";
+ dir = 8
},
-/turf/simulated/floor/bluegrid,
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner/yellow/full{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
/area/storage/shields)
"QI" = (
/obj/structure/window/shuttle/scc_space_ship,
/obj/structure/grille,
-/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
/area/maintenance/aux_atmospherics/deck_3)
"QJ" = (
-/obj/structure/cable/green{
- icon_state = "0-4"
+/obj/machinery/porta_turret/stationary,
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/structure/sign/nosmoking_1{
+ pixel_y = -32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -24
- },
-/turf/simulated/floor/wood,
-/area/lawoffice/consular)
+/turf/simulated/floor/reinforced,
+/area/bridge/selfdestruct)
"QK" = (
-/obj/effect/floor_decal/corner/red/diagonal,
-/obj/machinery/alarm{
- dir = 4;
- pixel_x = -28
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/pointybush,
+/turf/simulated/floor/grass/alt,
+/area/horizon/deck_three/nature_showcase)
"QL" = (
/obj/structure/cable{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor,
-/area/hallway/primary/starboard)
-"QM" = (
-/obj/structure/cable/cyan{
- icon_state = "2-8"
- },
+/obj/effect/floor_decal/corner/paleblue,
/turf/simulated/floor/tiled/dark,
-/area/storage/shields)
+/area/horizon/hallway/deck_three/primary/starboard)
+"QM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance_hatch{
+ req_one_access = list(12)
+ },
+/turf/simulated/floor,
+/area/maintenance/engineering_ladder)
"QN" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -18730,20 +23102,69 @@
/turf/simulated/floor/tiled/white,
/area/security/forensics_office)
"QO" = (
-/obj/structure/cable/green{
- icon_state = "0-2"
+/obj/machinery/door/window/brigdoor{
+ base_state = "rightsecure";
+ icon_state = "rightsecure";
+ name = "Executive Officer's Desk";
+ req_access = list(57)
},
-/obj/machinery/power/apc/hyper{
- dir = 1;
- pixel_y = 24
+/obj/machinery/door/window/northleft{
+ name = "Executive Officer's Desk"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "hop_office_desk";
+ name = "XO Office Privacy Shutters";
+ opacity = 0
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "bridge blast";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
+/obj/structure/table/reinforced/steel,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop/xo)
+"QP" = (
+/obj/effect/floor_decal/corner/blue/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
/turf/simulated/floor/tiled/dark,
-/area/bridge/selfdestruct)
+/area/horizon/crew_quarters/fitness/pool)
+"QQ" = (
+/obj/machinery/cryopod{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/full{
+ dir = 8
+ },
+/obj/structure/sign/emerg_exit{
+ dir = 4;
+ pixel_y = 37
+ },
+/obj/machinery/firealarm/north{
+ pixel_y = 29
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo)
"QR" = (
-/obj/effect/floor_decal/corner/blue{
- dir = 10
+/obj/structure/sign/emerg_exit{
+ pixel_x = -32;
+ dir = 8
},
-/turf/simulated/floor/tiled/dark,
+/obj/structure/cryofeed{
+ dir = 4
+ },
+/obj/structure/railing/mapped,
+/obj/structure/lattice/catwalk/indoor/grate,
+/turf/simulated/floor,
/area/bridge/aibunker)
"QS" = (
/obj/item/paper_bin{
@@ -18759,84 +23180,164 @@
/obj/effect/floor_decal/corner/beige/diagonal,
/turf/simulated/floor/tiled/white,
/area/security/forensics_office)
-"QU" = (
-/obj/structure/bed/stool/chair{
- dir = 4
- },
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/hallway/primary/starboard)
-"QW" = (
+"QT" = (
/obj/effect/floor_decal/corner/red{
dir = 5
},
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"QY" = (
-/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
-/area/crew_quarters/fitness/pool)
-"Rb" = (
-/obj/structure/closet/secure_closet/guncabinet{
- name = "Weaponry (Rifle)"
+/obj/structure/sink{
+ pixel_y = 28
},
-/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
+"QU" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/ramp{
+ dir = 1
+ },
+/area/horizon/deck_three/cafeteria)
+"QV" = (
+/obj/machinery/case_button/shuttle{
+ pixel_y = 32
+ },
+/obj/machinery/camera/network/command{
+ c_tag = "Bridge - Deck 3 - Bunker Auxiliary Bridge";
+ network = list("Command","Bunker");
+ alarm_on = 1
+ },
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/bed/stool/chair/office/dark,
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
+"QW" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/hallway/deck_three/primary/starboard)
+"QX" = (
+/obj/machinery/telecomms/processor/preset_four,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"QY" = (
+/obj/machinery/door/firedoor,
+/obj/structure/window/shuttle/scc_space_ship,
+/obj/structure/grille,
+/obj/machinery/door/blast/shutters/open{
+ id = "shutters_deck3_lounge";
+ name = "Viewing Shutters";
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/horizon/crew_quarters/fitness/lounge)
+"QZ" = (
+/obj/effect/floor_decal/corner_wide/blue{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/pool)
+"Ra" = (
+/obj/machinery/vending/cigarette,
+/obj/machinery/power/apc/low{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/carpet/art,
+/area/horizon/crew_quarters/fitness/lounge)
+"Rb" = (
+/obj/machinery/anti_bluespace,
/obj/machinery/light{
dir = 1
},
-/obj/item/gun/projectile/gauss/carbine,
-/obj/item/gun/projectile/gauss/carbine,
-/obj/item/gun/projectile/gauss/carbine,
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled/dark,
/area/crew_armory)
"Rc" = (
-/obj/structure/bed/stool/chair/padded/brown{
- dir = 4
+/obj/structure/flora/pottedplant/random,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
},
-/obj/effect/landmark/start{
- name = "Passenger"
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/lounge)
+/obj/machinery/light,
+/turf/simulated/floor/wood,
+/area/crew_quarters/lounge/secondary)
"Rd" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/canister/air/airlock,
/obj/machinery/door/window/eastright{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
/turf/simulated/floor,
-/area/hallway/crew_area)
-"Rf" = (
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/effect/floor_decal/corner/blue{
- dir = 10
+/area/horizon/hallway/deck_three/primary/starboard/docks)
+"Re" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 6
},
+/obj/structure/bed/stool/chair,
/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
+/area/horizon/crew_quarters/fitness/hallway)
+"Rf" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/structure/sign/directions/dock{
+ pixel_y = 28;
+ dir = 8
+ },
+/obj/structure/sign/directions/dock{
+ pixel_y = 36;
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"Rg" = (
+/obj/structure/bed/stool/chair/padded/brown,
+/turf/simulated/floor/carpet/art,
+/area/horizon/crew_quarters/fitness/lounge)
"Rh" = (
/obj/effect/floor_decal/industrial/warning/corner,
/turf/simulated/floor/reinforced,
/area/template_noop)
"Ri" = (
-/obj/machinery/vending/cola,
-/obj/effect/floor_decal/corner/paleblue/full,
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ pixel_x = 32
+ },
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"Rj" = (
/obj/structure/table/reinforced/wood,
/obj/item/card/id/captains_spare,
@@ -18846,11 +23347,23 @@
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
"Rk" = (
-/obj/structure/bed/stool/chair/padded/brown{
- dir = 8
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
},
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hop/xo)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"Rl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/white,
@@ -18876,14 +23389,16 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"Rp" = (
-/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"Rq" = (
/obj/structure/cable/green{
icon_state = "1-4"
@@ -18905,14 +23420,16 @@
/turf/simulated/floor/tiled/dark,
/area/medical/smoking)
"Rr" = (
+/obj/structure/railing/mapped{
+ dir = 4
+ },
/obj/effect/floor_decal/corner_wide/blue{
dir = 6
},
-/obj/machinery/light{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
+/area/horizon/crew_quarters/fitness/pool)
"Rs" = (
/obj/structure/table/reinforced/wood,
/obj/machinery/chemical_dispenser/bar_soft/full,
@@ -18922,20 +23439,27 @@
/turf/simulated/floor/marble/dark,
/area/bridge/minibar)
"Rt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/effect/floor_decal/spline/plain{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/structure/railing/mapped{
+ dir = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/locker)
-"Ru" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/structure/disposalpipe/segment,
+/obj/structure/bed/stool,
+/obj/structure/curtain/open,
/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/cryo)
+/area/horizon/crew_quarters/fitness/changing)
+"Ru" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark{
+ name = "JoinLateCryo"
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo)
"Rv" = (
/obj/structure/cable/green{
icon_state = "2-4"
@@ -18949,14 +23473,11 @@
/turf/simulated/floor/tiled/dark,
/area/security/investigations)
"Rw" = (
-/obj/structure/table/standard,
-/obj/machinery/light{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/obj/item/book/manual/wiki/security_space_law,
-/obj/item/storage/slide_projector,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hop/xo)
+/turf/simulated/floor/carpet,
+/area/lawoffice/consular)
"Rx" = (
/obj/structure/railing/mapped{
dir = 4
@@ -18973,11 +23494,35 @@
/obj/structure/flora/pottedplant/random,
/turf/simulated/floor/tiled/dark,
/area/bridge)
+"Ry" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"Rz" = (
-/obj/structure/bed/padded,
-/obj/item/bedsheet/nanotrasen,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
/turf/simulated/floor/wood,
-/area/lawoffice/representative)
+/area/crew_quarters/heads/hop/xo)
"RA" = (
/obj/effect/map_effect/wingrille_spawn/reinforced/polarized{
id = "Recovery1"
@@ -19016,36 +23561,57 @@
/turf/simulated/floor/wood,
/area/security/vacantoffice2)
"RG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/command{
+ id_tag = "hopdoor";
+ name = "Executive Officer's Office";
+ req_access = list(57)
+ },
+/obj/machinery/door/firedoor,
/obj/structure/cable/green{
- icon_state = "2-4"
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "bridge blast";
+ name = "Bridge Blast Doors";
+ opacity = 0
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/light/small/emergency{
- dir = 8
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/hop/xo)
+"RH" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor,
/area/maintenance/bridge)
-"RH" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/simulated/floor,
-/area/maintenance/bridge)
"RI" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
"RJ" = (
/obj/effect/floor_decal/corner/paleblue{
dir = 6
},
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"RK" = (
-/turf/simulated/floor/tiled/dark,
+/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
+/obj/structure/cable/cyan{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled,
/area/storage/shields)
"RL" = (
/obj/structure/disposalpipe/segment,
@@ -19059,24 +23625,15 @@
name = "Security - Investigations Office"
})
"RN" = (
-/obj/structure/table/standard,
-/obj/item/paper_bin{
- pixel_x = 8;
- pixel_y = 7
- },
-/obj/item/pen/multi{
- pixel_x = 8;
- pixel_y = 8
- },
/obj/machinery/alarm{
dir = 8;
pixel_x = 28
},
-/obj/item/folder/blue{
- pixel_x = -7;
- pixel_y = 5
+/obj/machinery/papershredder,
+/obj/effect/floor_decal/corner/beige{
+ dir = 6
},
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/tiled,
/area/security/vacantoffice)
"RO" = (
/obj/effect/floor_decal/corner/paleblue{
@@ -19091,6 +23648,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/hallway/secondary/entry/emergency)
"RP" = (
@@ -19115,63 +23675,70 @@
/area/crew_quarters/captain)
"RR" = (
/obj/machinery/cryopod,
-/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/cryo)
+/area/horizon/crew_quarters/cryo)
"RS" = (
-/obj/effect/floor_decal/corner_wide/blue{
+/obj/machinery/light,
+/obj/effect/floor_decal/corner/blue{
dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/newscaster{
- pixel_y = -32
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
-"RT" = (
-/obj/structure/cable{
- icon_state = "2-4"
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+ dir = 4
},
-/obj/machinery/alarm{
- pixel_y = 28
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
+"RT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"RU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"RU" = (
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 9
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
-/obj/machinery/camera/network/third_deck{
- c_tag = "Third Deck - Locker Room Entrance";
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
-"RV" = (
-/obj/item/storage/secure/safe{
- pixel_x = 32
+/obj/effect/floor_decal/corner/green{
+ dir = 9
},
-/obj/structure/filingcabinet/filingcabinet,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
+"RV" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hop/xo)
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/lawoffice/consular)
"RW" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
@@ -19206,21 +23773,17 @@
/turf/simulated/floor,
/area/crew_quarters/captain)
"RZ" = (
-/obj/effect/floor_decal/corner_wide/blue,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/effect/floor_decal/corner/blue{
+ dir = 6
},
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/horizon/crew_quarters/fitness/hallway)
"Sa" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
id_tag = "conference_room";
name = "Conference Room";
- req_access = list(19)
+ req_one_access = list(19, 38)
},
/turf/simulated/floor/tiled,
/area/bridge/third_deck_stairs)
@@ -19261,22 +23824,24 @@
},
/turf/simulated/floor/carpet,
/area/journalistoffice)
-"Sg" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai)
"Sh" = (
-/obj/structure/lattice,
-/obj/structure/railing/mapped{
- dir = 4
+/obj/structure/table/reinforced/wood,
+/obj/machinery/chemical_dispenser/bar_soft/full{
+ pixel_y = 7;
+ pixel_x = 4
},
+/obj/effect/floor_decal/corner/red/diagonal,
+/turf/simulated/floor/lino/grey,
+/area/horizon/deck_three/cafeteria)
+"Si" = (
/obj/structure/railing/mapped{
- dir = 8
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 4
},
/turf/simulated/open,
-/area/hallway/primary/starboard)
+/area/hallway/medical/upper)
"Sj" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/corner/paleblue{
@@ -19306,6 +23871,15 @@
},
/turf/simulated/floor/tiled/dark,
/area/medical/smoking)
+"Sm" = (
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck - Cryogenics Aft Entrance"
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"Sn" = (
/obj/structure/table/reinforced/wood,
/obj/effect/floor_decal/spline/plain{
@@ -19314,25 +23888,48 @@
/turf/simulated/floor/marble/dark,
/area/bridge/minibar)
"So" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/floor,
-/area/maintenance/bridge)
+/obj/structure/table/wood,
+/obj/machinery/button/remote/airlock{
+ id = "rep_office";
+ name = "representative door bolts";
+ pixel_x = -7;
+ pixel_y = 28;
+ req_access = null;
+ specialfunctions = 4
+ },
+/obj/machinery/button/remote/airlock{
+ id = "rep_office";
+ name = "representative door control";
+ pixel_x = -7;
+ pixel_y = 37;
+ req_access = null
+ },
+/obj/machinery/button/switch/windowtint{
+ id = "rep_inner";
+ pixel_x = 9;
+ pixel_y = 30;
+ req_access = list(38)
+ },
+/obj/machinery/light_switch{
+ pixel_y = 30;
+ pixel_x = 2
+ },
+/obj/item/modular_computer/laptop/preset/representative{
+ pixel_x = -1;
+ pixel_y = 5
+ },
+/obj/machinery/recharger,
+/turf/simulated/floor/carpet,
+/area/lawoffice/representative)
"Sp" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/effect/floor_decal/corner/paleblue{
dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5
+ dir = 6
},
-/turf/simulated/floor,
-/area/maintenance/security_starboard)
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"Sq" = (
/obj/machinery/requests_console{
department = "Investigations";
@@ -19372,15 +23969,17 @@
/turf/simulated/floor/tiled,
/area/bridge)
"Su" = (
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/obj/structure/cable/green{
- icon_state = "4-8"
+/obj/machinery/newscaster{
+ pixel_y = -32
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
+"Sv" = (
+/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
+/area/turret_protected/ai)
"Sw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -19388,50 +23987,69 @@
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
"Sx" = (
-/obj/effect/floor_decal/corner/paleblue{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
-"Sy" = (
-/obj/machinery/light_switch{
- pixel_x = -5;
- pixel_y = 24
- },
-/obj/machinery/button/remote/blast_door{
- desc = "A remote control-switch for shutters.";
- id = "hop_office_desk";
- name = "Desk Privacy Shutter";
- pixel_y = 36
- },
-/obj/machinery/button/switch/windowtint{
- id = "hop";
- pixel_x = 5;
- pixel_y = 24
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hop/xo)
-"SA" = (
-/obj/structure/bed/stool/chair/office/bridge{
- dir = 8
- },
/obj/effect/floor_decal/corner/blue{
- dir = 6
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
-"SB" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
+/area/horizon/crew_quarters/fitness/hallway)
+"Sy" = (
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = 24
},
-/obj/machinery/door/airlock/hatch{
- name = "Telecomms Access";
- req_access = list(12, 61)
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
},
-/obj/machinery/door/firedoor,
-/obj/structure/plasticflaps/airtight,
-/turf/simulated/floor,
+/turf/simulated/floor/wood,
+/area/lawoffice/consular)
+"Sz" = (
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/structure/table/reinforced/wood,
+/obj/item/storage/box/fancy/donut,
+/obj/item/paper/fluff/microwave,
+/turf/simulated/floor/lino/grey,
+/area/horizon/deck_three/cafeteria)
+"SA" = (
+/obj/machinery/computer/telecomms/server{
+ network = "tcommsat"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
/area/tcommsat/entrance)
+"SB" = (
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
"SC" = (
/obj/machinery/door/airlock/command{
name = "Captain's Quarters";
@@ -19450,59 +24068,83 @@
/obj/structure/cable/green{
icon_state = "1-2"
},
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
+/obj/structure/lattice/catwalk/indoor/grate,
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/investigations)
+/turf/simulated/floor,
+/area/maintenance/security_starboard)
"SE" = (
/obj/effect/floor_decal/corner/paleblue{
dir = 5
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Deck 3 Port Docks"
},
/turf/simulated/floor/tiled,
/area/hallway/secondary/entry/emergency)
-"SG" = (
-/obj/structure/window/shuttle/scc_space_ship,
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/hallway/primary/starboard)
-"SH" = (
-/obj/structure/closet/firecloset/full,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled,
-/area/bridge/aibunker)
-"SI" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/door/window/eastright,
-/turf/simulated/floor,
-/area/bridge/aibunker)
-"SJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+"SF" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/effect/floor_decal/spline/plain{
dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hop/xo)
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/rubber,
+/area/horizon/crew_quarters/fitness/gym)
+"SH" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
+ },
+/obj/item/flag/scc/l{
+ pixel_y = 15
+ },
+/obj/item/flag/scc/l{
+ pixel_y = 10
+ },
+/obj/item/flag/scc/l{
+ pixel_y = 4
+ },
+/obj/structure/table/glass,
+/turf/simulated/floor/tiled,
+/area/bridge)
+"SI" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
+ },
+/obj/structure/flora/pottedplant/random,
+/turf/simulated/floor/tiled,
+/area/bridge)
+"SJ" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo)
"SK" = (
/turf/simulated/wall/r_wall,
/area/lawoffice/consular)
+"SL" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/turf/simulated/open/airless,
+/area/template_noop)
+"SM" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"SN" = (
/obj/structure/table/reinforced,
/obj/effect/floor_decal/spline/fancy{
@@ -19512,28 +24154,30 @@
/turf/simulated/floor/carpet/rubber,
/area/bridge)
"SQ" = (
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -28
- },
-/obj/effect/floor_decal/corner/paleblue{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/reinforced,
+/area/bridge/selfdestruct)
"SR" = (
/turf/simulated/floor/wood,
/area/bridge/minibar)
+"SS" = (
+/obj/effect/floor_decal/corner/blue/diagonal,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
+"ST" = (
+/obj/structure/bed/stool/padded,
+/obj/effect/floor_decal/corner/blue/diagonal,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
"SU" = (
-/obj/machinery/camera/network/telecom{
- c_tag = "Telecomms - Central Compartment Fore";
+/obj/machinery/light{
dir = 1
},
-/obj/machinery/ntnet_relay,
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+/obj/machinery/telecomms/processor/preset_one,
+/obj/structure/sign/nosmoking_2{
+ pixel_y = 32
},
+/turf/simulated/floor/bluegrid,
/area/tcommsat/chamber)
"SV" = (
/turf/simulated/floor/carpet,
@@ -19542,14 +24186,14 @@
})
"SW" = (
/obj/machinery/door/airlock/multi_tile/glass{
- name = "Cryo Storage"
+ name = "Cryogenic Storage"
},
/obj/machinery/door/firedoor/multi_tile{
dir = 8
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
-/area/crew_quarters/sleep/cryo)
+/area/horizon/crew_quarters/cryo)
"SX" = (
/obj/structure/window/shuttle/scc_space_ship,
/obj/structure/grille,
@@ -19601,48 +24245,82 @@
/turf/simulated/floor/wood,
/area/bridge)
"Tb" = (
-/obj/machinery/disposal/small/south,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
/turf/simulated/floor/tiled/freezer,
/area/medical/washroom)
"Tc" = (
/obj/effect/floor_decal/corner/paleblue/full,
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
-"Td" = (
-/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
-/turf/simulated/floor,
-/area/crew_quarters/cafeteria)
-"Te" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/structure/bed/stool/chair/padded/brown{
+ dir = 4
+ },
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck - Auxiliary Bridge Entrance";
+ dir = 1
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
+"Td" = (
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/lino/grey,
+/area/horizon/deck_three/cafeteria)
+"Te" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"Tf" = (
-/obj/item/device/radio/beacon,
-/turf/simulated/floor/tiled/dark,
+/obj/structure/table/steel,
+/obj/effect/floor_decal/corner/yellow/full{
+ dir = 1
+ },
+/obj/machinery/recharger{
+ pixel_y = 3
+ },
+/turf/simulated/floor/tiled,
/area/engineering/break_room)
+"Tg" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop/xo)
+"Th" = (
+/turf/simulated/wall,
+/area/horizon/crew_quarters/cryo/showers)
"Ti" = (
+/obj/machinery/door/airlock{
+ name = "Public Office"
+ },
/obj/machinery/door/firedoor,
-/obj/machinery/door/window/westleft,
-/obj/item/paper_bin{
- pixel_x = -3;
- pixel_y = -6
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/obj/structure/table/reinforced,
-/obj/item/pen{
- pixel_x = -3;
- pixel_y = -5
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/door/blast/shutters{
- dir = 8;
- id = "vacant_office";
- name = "office shutter"
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
-/turf/simulated/floor/tiled/dark,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
/area/security/vacantoffice)
"Tj" = (
/obj/effect/floor_decal/corner_wide/green{
@@ -19650,6 +24328,25 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/ward)
+"Tk" = (
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/structure/reagent_dispensers/water_cooler,
+/obj/effect/floor_decal/corner/red/full,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = -28;
+ dir = 1
+ },
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck - Fitness Center Hallway Gym";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
"Tl" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -19657,25 +24354,37 @@
/obj/structure/cable/green{
icon_state = "1-4"
},
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/security/investigations)
"Tm" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/machinery/door/airlock/hatch{
+ name = "Telecommunications - Server Hall - Exterior";
+ req_access = list(61);
+ frequency = 1600;
+ id_tag = "deck3_tcomms_aux_exterior";
+ icon_state = "door_locked";
+ locked = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor,
-/area/maintenance/substation/command)
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/firedoor,
+/obj/structure/plasticflaps/airtight,
+/obj/machinery/access_button{
+ pixel_x = 23;
+ command = "cycle_exterior";
+ frequency = 1600;
+ master_tag = "deck3_tcomms_aux_control";
+ req_access = list(61);
+ name = "Telecommunications Airlock Access"
+ },
+/turf/simulated/floor/tiled,
+/area/tcommsat/chamber)
"Tn" = (
/obj/effect/floor_decal/corner/paleblue{
dir = 6
@@ -19690,27 +24399,31 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/door/airlock{
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
name = "Lounge"
},
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/wood,
-/area/crew_quarters/lounge)
+/turf/simulated/floor/tiled,
+/area/crew_quarters/lounge/secondary)
+"Tp" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/obj/structure/closet/walllocker/firecloset{
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
"Tq" = (
/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/random/junk,
-/obj/structure/lattice/catwalk/indoor/grate,
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
+/obj/structure/lattice/catwalk/indoor/grate,
/turf/simulated/floor,
/area/maintenance/security_starboard)
"Tr" = (
@@ -19720,40 +24433,52 @@
/turf/simulated/floor/reinforced,
/area/template_noop)
"Ts" = (
-/obj/effect/floor_decal/corner/paleblue{
- dir = 10
- },
/obj/structure/cable/green{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
-"Tu" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 32
- },
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
-"Tv" = (
+/area/horizon/hallway/deck_three/primary/starboard/docks)
+"Tt" = (
+/obj/effect/floor_decal/corner/blue/diagonal,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
-"Tw" = (
-/obj/effect/floor_decal/corner_wide/blue/full{
- dir = 4
+/area/horizon/crew_quarters/fitness/gym)
+"Tu" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 32
},
-/obj/machinery/vending/cola,
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"Tv" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
+"Tw" = (
+/obj/machinery/alarm{
+ pixel_y = 28
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"Tx" = (
/obj/machinery/light{
dir = 1
@@ -19761,8 +24486,8 @@
/obj/effect/floor_decal/corner/paleblue{
dir = 5
},
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"Ty" = (
/obj/machinery/door/airlock/multi_tile/glass{
dir = 1
@@ -19780,16 +24505,19 @@
dir = 2
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"Tz" = (
-/obj/structure/sign/nosmoking_2{
- pixel_x = 32
+/obj/effect/floor_decal/corner/green{
+ dir = 5
},
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+/obj/machinery/light{
+ dir = 1
},
-/area/tcommsat/chamber)
+/obj/machinery/alarm{
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"TA" = (
/obj/structure/bed/stool/chair/office/bridge{
dir = 4
@@ -19813,6 +24541,13 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/carpet/rubber,
/area/crew_quarters/captain)
+"TB" = (
+/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor,
+/area/tcommsat/entrance)
"TC" = (
/obj/effect/floor_decal/industrial/warning/corner{
dir = 4
@@ -19827,16 +24562,33 @@
/obj/structure/bed/padded,
/turf/simulated/floor/tiled/white,
/area/medical/ward/isolation)
+"TE" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing/mapped{
+ dir = 1
+ },
+/turf/simulated/open/airless,
+/area/template_noop)
"TF" = (
/obj/structure/bed/stool/chair{
dir = 1
},
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"TG" = (
/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
+/obj/machinery/door/blast/shutters/open{
+ id = "shutters_deck3_cafewindows";
+ name = "Cafe Window Shutter"
+ },
/turf/simulated/floor,
-/area/maintenance/security_starboard)
+/area/horizon/deck_three/cafeteria)
"TH" = (
/obj/structure/bed/stool/chair/padded/beige{
dir = 4
@@ -19844,17 +24596,23 @@
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
"TI" = (
-/obj/structure/curtain/open,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/locker)
-"TJ" = (
-/obj/structure/window/reinforced,
-/obj/structure/lattice,
-/obj/structure/window/reinforced{
- dir = 8
+/obj/machinery/light,
+/obj/structure/closet/athletic_mixed,
+/obj/effect/floor_decal/corner/green/full{
+ dir = 4
},
-/turf/simulated/open,
-/area/hallway/primary/starboard)
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/fitness/changing)
+"TJ" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/hallway/deck_three/primary/starboard)
"TK" = (
/obj/effect/floor_decal/spline/fancy/wood{
dir = 1
@@ -19863,25 +24621,22 @@
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
"TL" = (
-/obj/structure/table/wood,
-/obj/structure/window/reinforced,
-/obj/item/modular_computer/laptop/preset/command/xo,
-/turf/simulated/floor/carpet,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/wood,
/area/crew_quarters/heads/hop/xo)
"TM" = (
-/obj/machinery/requests_console{
- department = "Representative's Office";
- departmentType = 5;
- pixel_x = -32
- },
-/turf/simulated/floor/carpet/rubber,
-/area/lawoffice/representative)
+/obj/structure/table/reinforced/wood,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hop/xo)
"TN" = (
/obj/structure/railing/mapped{
dir = 4
},
/turf/simulated/open,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"TO" = (
/obj/item/storage/photo_album,
/obj/item/device/camera_film,
@@ -19930,58 +24685,40 @@
dir = 8;
pixel_x = 24
},
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
/turf/simulated/floor/tiled/freezer,
/area/medical/washroom)
"TT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/random/junk,
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- icon_state = "4-8"
- },
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor,
/area/maintenance/security_starboard)
-"TV" = (
-/obj/effect/floor_decal/corner/red/diagonal,
-/obj/structure/sink{
- dir = 8;
- pixel_x = -12;
- pixel_y = 5
+"TU" = (
+/obj/machinery/ntnet_relay,
+/obj/machinery/light{
+ dir = 1
},
-/obj/item/device/radio/intercom{
- dir = 4;
- name = "Station Intercom (General)";
- pixel_x = -25
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"TV" = (
+/obj/machinery/portable_atmospherics/hydroponics/soil,
+/turf/simulated/floor/grass/alt,
+/area/horizon/deck_three/nature_showcase)
+"TW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
},
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
-"TW" = (
-/obj/structure/cable/green{
- icon_state = "1-8"
- },
-/obj/machinery/power/apc/low{
- dir = 4;
- name = "east bump";
- pixel_x = 24
- },
-/obj/structure/cable/green,
-/turf/simulated/floor,
-/area/maintenance/substation/command)
+/area/tcommsat/chamber)
"TX" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/carpet,
@@ -20016,16 +24753,19 @@
/turf/simulated/floor/tiled/white,
/area/medical/ward/isolation)
"Ua" = (
-/obj/structure/cable,
-/obj/machinery/power/terminal{
- dir = 4
+/obj/machinery/disposal/small/south,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor,
-/area/maintenance/substation/command)
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/obj/machinery/alarm{
+ pixel_x = 28;
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/lounge/secondary)
"Ub" = (
/obj/machinery/vending/boozeomat{
req_access = null
@@ -20037,7 +24777,24 @@
/area/bridge/minibar)
"Uc" = (
/turf/simulated/wall/r_wall,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
+"Ud" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 5
+ },
+/obj/machinery/button/remote/blast_door{
+ name = "Viewing Shutters";
+ id = "shutters_deck3_gym";
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
+"Ue" = (
+/obj/effect/floor_decal/corner/beige{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/security/vacantoffice)
"Uf" = (
/obj/effect/floor_decal/corner/paleblue{
dir = 10
@@ -20048,18 +24805,26 @@
/turf/simulated/floor/tiled,
/area/hallway/secondary/entry/emergency)
"Ug" = (
-/obj/machinery/door/firedoor,
-/obj/effect/floor_decal/corner/paleblue{
- dir = 9
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/machinery/power/apc/low{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck - Central Ring Port";
+ dir = 8
+ },
+/turf/simulated/floor/lino/grey,
+/area/horizon/deck_three/cafeteria)
"Uh" = (
/obj/structure/table/reinforced,
/obj/effect/floor_decal/spline/fancy{
@@ -20070,6 +24835,14 @@
/obj/item/stack/packageWrap,
/turf/simulated/floor/carpet/rubber,
/area/bridge)
+"Ui" = (
+/obj/effect/floor_decal/corner_wide/blue,
+/obj/effect/floor_decal/spline/plain/corner,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/pool)
"Uj" = (
/obj/effect/floor_decal/industrial/warning{
dir = 9
@@ -20083,15 +24856,24 @@
/obj/structure/bed/stool/chair/office/bridge,
/turf/simulated/floor/carpet/rubber,
/area/bridge)
+"Ul" = (
+/obj/machinery/cryopod,
+/obj/structure/railing/mapped,
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo)
"Um" = (
/turf/simulated/wall,
-/area/crew_quarters/locker)
+/area/horizon/crew_quarters/fitness/changing)
"Un" = (
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 9
+/obj/effect/floor_decal/corner/blue/full,
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/horizon/crew_quarters/fitness/hallway)
"Uo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -20103,22 +24885,21 @@
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
"Up" = (
-/obj/effect/floor_decal/corner_wide/blue{
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue{
dir = 6
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 32
},
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/horizon/crew_quarters/fitness/hallway)
"Uq" = (
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -20126,7 +24907,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"Ur" = (
/obj/structure/sink{
dir = 4;
@@ -20142,6 +24923,15 @@
},
/turf/simulated/floor/tiled/freezer,
/area/medical/washroom)
+"Us" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
"Ut" = (
/obj/effect/floor_decal/corner_wide/green{
dir = 5
@@ -20152,6 +24942,12 @@
/obj/effect/floor_decal/spline/fancy/wood{
dir = 4
},
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
"Uv" = (
@@ -20165,10 +24961,10 @@
icon_state = "1-4"
},
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"Uw" = (
-/turf/simulated/floor/tiled/dark,
-/area/bridge/selfdestruct)
+/turf/simulated/wall,
+/area/horizon/deck_three/nature_showcase)
"Ux" = (
/obj/item/device/radio/intercom{
dir = 4;
@@ -20196,36 +24992,111 @@
},
/turf/simulated/floor/tiled/white,
/area/hallway/medical/upper)
+"Uz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"UA" = (
+/obj/structure/railing/mapped,
+/turf/simulated/floor/holofloor/tiled/ramp{
+ dir = 4
+ },
+/area/bridge)
"UB" = (
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/machinery/alarm{
+ pixel_x = 28;
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+/obj/effect/floor_decal/corner/green/full{
+ dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/engineering/break_room)
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/industrial/loading/yellow{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/stairwell/central)
"UC" = (
/obj/machinery/atmospherics/binary/pump/high_power{
name = "Aux Tanks Outlet"
},
+/obj/machinery/camera/network/engineering{
+ c_tag = "Engineering - Deck 3 - Port Auxiliary Atmospherics";
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark,
/area/maintenance/aux_atmospherics/deck_3)
-"UF" = (
-/obj/machinery/photocopier/faxmachine{
- department = "Head of Personnel's Office"
+"UD" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/structure/table/wood,
/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hop/xo)
+/area/horizon/crew_quarters/fitness/hallway)
+"UF" = (
+/obj/structure/filingcabinet/filingcabinet{
+ pixel_x = -9;
+ pixel_y = 1
+ },
+/obj/machinery/ringer{
+ department = "Consular";
+ id = "Consular";
+ pixel_y = -32
+ },
+/obj/machinery/papershredder{
+ pixel_x = 7
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/obj/item/storage/secure/safe{
+ pixel_x = -24
+ },
+/obj/machinery/light,
+/turf/simulated/floor/wood,
+/area/lawoffice/consular)
"UG" = (
-/obj/structure/table/standard,
-/obj/machinery/atmospherics/unary/vent_pump/on{
+/obj/effect/floor_decal/corner/blue,
+/obj/structure/railing/mapped{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/full{
dir = 8
},
-/obj/item/folder/blue,
-/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
"UH" = (
/obj/machinery/power/apc{
dir = 1;
@@ -20241,33 +25112,53 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
+ },
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"UI" = (
-/obj/structure/table/rack,
-/obj/item/towel,
-/obj/item/towel{
- pixel_y = 6
+/obj/effect/floor_decal/corner/blue{
+ dir = 10
},
-/obj/machinery/light{
- dir = 8
+/obj/structure/bed/stool/chair/office/dark{
+ dir = 1
},
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
+/obj/machinery/alarm{
+ req_one_access = list(24,11,55);
+ pixel_y = -28;
+ dir = 1
},
-/obj/random/soap,
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/toilet)
-"UJ" = (
-/obj/item/modular_computer/console/preset/research,
/turf/simulated/floor/tiled/dark,
/area/bridge/aibunker)
-"UK" = (
+"UJ" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 6
+ },
+/obj/structure/railing/mapped{
+ dir = 8
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/toilet)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"UK" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-29"
+ },
+/obj/effect/floor_decal/corner_wide/blue/full,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/pool)
"UL" = (
/obj/structure/table/reinforced,
/obj/effect/floor_decal/spline/fancy{
@@ -20297,42 +25188,66 @@
dir = 8
},
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"UN" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/effect/floor_decal/corner/paleblue{
dir = 10
},
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atm{
+ pixel_y = -32
+ },
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck - Executive Officer Line";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"UO" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
+/obj/structure/table/rack,
+/obj/structure/window/reinforced{
dir = 4
},
-/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/obj/structure/window/reinforced,
+/obj/random/soap,
+/obj/item/towel,
+/turf/simulated/floor/tiled/freezer,
+/area/horizon/crew_quarters/cryo/showers)
"UP" = (
/obj/machinery/vending/coffee{
- pixel_x = 3;
- pixel_y = 25;
+ pixel_y = 24;
+ pixel_x = 5;
density = 0
},
+/obj/effect/floor_decal/corner/paleblue/full{
+ dir = 1
+ },
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
+"UR" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"US" = (
/turf/simulated/wall/r_wall,
/area/bridge)
+"UT" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ name = "Starboard Hallway"
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"UU" = (
/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
/obj/structure/cable/green{
@@ -20346,7 +25261,7 @@
/area/bridge)
"UV" = (
/turf/simulated/open,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"UW" = (
/obj/structure/railing/mapped{
dir = 1
@@ -20365,32 +25280,26 @@
/turf/simulated/floor/carpet/rubber,
/area/bridge)
"UY" = (
-/obj/machinery/keycard_auth{
- pixel_x = 24
+/obj/structure/lattice/catwalk,
+/obj/structure/railing/mapped{
+ dir = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hop/xo)
-"UZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/effect/landmark{
- name = "borerstart"
- },
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/toilet)
-"Va" = (
-/obj/structure/flora/pottedplant/random{
- pixel_x = 7
- },
-/obj/effect/floor_decal/spline/fancy/wood{
+/obj/structure/railing/mapped{
dir = 4
},
-/turf/simulated/floor/wood,
-/area/hallway/primary/starboard)
+/obj/item/hullbeacon/red,
+/turf/simulated/open/airless,
+/area/template_noop)
+"UZ" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/fitness/changing)
+"Va" = (
+/obj/effect/map_effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/horizon/hallway/deck_three/primary/starboard)
"Vb" = (
/obj/effect/floor_decal/corner/paleblue/full{
dir = 1
@@ -20398,28 +25307,52 @@
/obj/structure/closet/emcloset,
/turf/simulated/floor/tiled,
/area/hallway/secondary/entry/emergency)
+"Vc" = (
+/obj/structure/table/reinforced/wood,
+/obj/machinery/reagentgrinder{
+ pixel_y = 8;
+ pixel_x = 1
+ },
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/machinery/firealarm/east,
+/turf/simulated/floor/lino/grey,
+/area/horizon/deck_three/cafeteria)
"Vd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
/turf/simulated/floor/wood,
-/area/crew_quarters/lounge)
-"Vf" = (
+/area/crew_quarters/lounge/secondary)
+"Ve" = (
+/obj/machinery/door/airlock/glass_command{
+ name = "Auxiliary Bridge";
+ secured_wires = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 8
+ },
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/structure/cable/green{
- icon_state = "2-8"
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
+"Vf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+ dir = 4
},
-/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j2"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"Vg" = (
/obj/structure/window/shuttle/scc_space_ship,
/obj/structure/grille,
@@ -20438,36 +25371,35 @@
/turf/simulated/floor/plating,
/area/bridge)
"Vh" = (
-/obj/effect/floor_decal/corner/paleblue{
- dir = 9
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/hallway/secondary/entry/emergency)
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/vending/snack,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/deck_three/cafeteria)
"Vi" = (
/obj/structure/window/shuttle/scc_space_ship,
/obj/structure/grille,
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "bridge blast";
- name = "Bridge Blast Doors";
- opacity = 0
- },
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
-/area/crew_quarters/heads/hop/xo)
+/area/lawoffice/representative)
"Vj" = (
-/turf/simulated/wall,
-/area/crew_quarters/heads/hop/xo)
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/lawoffice/representative)
"Vk" = (
/obj/machinery/camera/network/security{
c_tag = "Security - Classroom";
@@ -20476,32 +25408,53 @@
/turf/simulated/floor/wood,
/area/security/vacantoffice2)
"Vl" = (
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/light/small/emergency,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor,
-/area/maintenance/engineering_ladder)
+/obj/effect/floor_decal/corner/blue/full,
+/obj/structure/bed,
+/obj/structure/curtain/open/bed,
+/obj/item/bedsheet/captain,
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
"Vm" = (
/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
+"Vn" = (
+/obj/structure/bed/stool/chair/sofa/corner/brown,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/art,
+/area/crew_quarters/lounge)
"Vo" = (
-/obj/machinery/porta_turret/stationary,
-/obj/effect/decal/warning_stripes,
-/turf/simulated/floor/tiled/dark,
-/area/bridge/selfdestruct)
-"Vp" = (
-/obj/machinery/power/terminal{
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/light{
dir = 4
},
-/obj/structure/cable,
-/obj/machinery/light/small/emergency{
- dir = 8
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/machinery/power/apc/critical{
+ dir = 4;
+ pixel_x = 24
},
-/turf/simulated/floor,
-/area/maintenance/substation/command)
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo/showers)
+"Vp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"Vq" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -20532,7 +25485,7 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"Vs" = (
/obj/effect/floor_decal/sign/w,
/obj/structure/cable/green{
@@ -20570,13 +25523,26 @@
},
/turf/simulated/open/airless,
/area/template_noop)
+"Vv" = (
+/obj/machinery/door/firedoor,
+/obj/structure/grille,
+/obj/structure/window/shuttle/scc_space_ship,
+/obj/machinery/door/blast/shutters/open{
+ id = "shutters_deck3_pool";
+ name = "Viewing Shutters"
+ },
+/turf/simulated/floor/plating,
+/area/horizon/crew_quarters/fitness/pool)
"Vw" = (
/obj/machinery/disposal/small/west,
/obj/structure/disposalpipe/trunk{
dir = 1
},
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
/turf/simulated/floor/wood,
-/area/crew_quarters/lounge/secondary)
+/area/crew_quarters/lounge)
"Vx" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -20588,20 +25554,23 @@
/obj/structure/cryofeed{
dir = 4
},
-/obj/structure/window/reinforced{
- dir = 8
+/obj/machinery/door/window/southleft{
+ name = "Cryogenics Maintenance";
+ req_one_access = list(12, 26)
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
},
-/obj/structure/window/reinforced,
/obj/structure/lattice/catwalk/indoor/grate,
+/obj/structure/railing/mapped{
+ dir = 4
+ },
/turf/simulated/floor,
-/area/crew_quarters/sleep/cryo)
+/area/horizon/crew_quarters/cryo)
"Vz" = (
/obj/structure/cable/green{
icon_state = "4-8"
},
-/obj/effect/floor_decal/spline/fancy/wood/cee{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -20611,28 +25580,37 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/door/airlock/command{
+ id_tag = "captaindoor";
+ name = "Captain's Office";
+ req_access = list(20)
+ },
+/obj/machinery/door/firedoor,
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
"VA" = (
-/obj/structure/railing/mapped,
-/obj/structure/railing/mapped{
+/obj/effect/floor_decal/spline/fancy/wood/cee,
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/simulated/floor/grass/alt,
+/area/horizon/hallway/deck_three/primary/starboard)
+"VB" = (
+/obj/machinery/door/airlock/glass_command{
+ name = "Escape Route";
+ id_tag = "bolts_bunker_escape";
+ secured_wires = 1;
+ locked = 1;
+ icon_state = "door_locked"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
dir = 8
},
-/obj/structure/railing/mapped{
- dir = 4
- },
-/turf/simulated/open,
-/area/hallway/primary/starboard)
-"VB" = (
-/turf/simulated/open,
-/area/turret_protected/ai)
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
"VC" = (
/turf/simulated/wall,
/area/lawoffice/representative)
"VD" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -20642,6 +25620,12 @@
},
/obj/structure/lattice/catwalk/indoor/grate,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
/turf/simulated/floor,
/area/maintenance/engineering_ladder)
"VE" = (
@@ -20657,13 +25641,34 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
+"VF" = (
+/obj/machinery/telecomms/relay/preset/telecomms,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
"VG" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner/paleblue/diagonal,
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
+"VH" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/machinery/power/apc/low{
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo/washroom)
"VI" = (
/obj/effect/floor_decal/spline/fancy/wood{
dir = 5
@@ -20689,43 +25694,74 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled/dark,
/area/medical/smoking)
+"VK" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/bed/stool/chair/padded/brown{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"VL" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
"VM" = (
/obj/effect/floor_decal/industrial/warning/corner{
dir = 8
},
/turf/simulated/floor/reinforced,
/area/template_noop)
+"VN" = (
+/obj/effect/floor_decal/corner/blue/diagonal,
+/obj/structure/closet/emcloset,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
"VO" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- external_pressure_bound = 140;
- external_pressure_bound_default = 140;
- icon_state = "map_vent_out";
- pressure_checks = 0;
- pressure_checks_default = 0;
- use_power = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+/obj/structure/cable/green{
+ icon_state = "2-8"
},
-/area/tcommsat/chamber)
+/turf/simulated/floor/tiled,
+/area/security/vacantoffice)
"VP" = (
-/obj/structure/lattice/catwalk/indoor/grate,
/obj/structure/cable{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor,
-/area/hallway/primary/starboard)
-"VQ" = (
-/obj/machinery/telecomms/server/presets/command,
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
},
-/area/tcommsat/chamber)
+/turf/simulated/floor/tiled/dark,
+/area/horizon/hallway/deck_three/primary/starboard)
+"VQ" = (
+/obj/structure/flora/pottedplant/random,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/obj/machinery/light,
+/turf/simulated/floor/wood,
+/area/crew_quarters/lounge)
+"VR" = (
+/obj/machinery/vending/snack,
+/obj/effect/floor_decal/corner/green/full{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
"VS" = (
/obj/effect/floor_decal/corner/blue{
dir = 10
@@ -20745,34 +25781,85 @@
/turf/simulated/floor/tiled,
/area/bridge)
"VU" = (
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/machinery/door/airlock/maintenance{
+ req_one_access = list(12)
},
-/obj/structure/cable{
- icon_state = "1-4"
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor,
-/area/maintenance/substation/command)
+/area/maintenance/engineering_ladder)
"VV" = (
-/obj/structure/bed/stool/bar/padded/red,
-/obj/effect/floor_decal/corner/red/full{
- dir = 8
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/lino/grey,
+/area/horizon/deck_three/cafeteria)
"VW" = (
-/obj/machinery/light{
- dir = 8
- },
/obj/effect/floor_decal/corner/blue{
dir = 6
},
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled,
/area/bridge)
+"VX" = (
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/obj/structure/table/standard,
+/obj/item/storage/box/cups,
+/obj/effect/floor_decal/corner/red/full{
+ dir = 4
+ },
+/obj/machinery/power/apc/low{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_x = 4;
+ pixel_y = 16
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
"VY" = (
/obj/structure/lattice,
/turf/simulated/open,
/area/hallway/medical/upper)
+"VZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 28
+ },
+/obj/effect/floor_decal/corner/purple/full{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/deck_three/nature_showcase)
"Wa" = (
/turf/simulated/floor/wood,
/area/lawoffice/representative)
@@ -20781,32 +25868,30 @@
/turf/simulated/floor/reinforced,
/area/template_noop)
"Wc" = (
+/obj/structure/table/wood,
+/obj/item/material/ashtray/bronze,
+/turf/simulated/floor/carpet/art,
+/area/crew_quarters/lounge/secondary)
+"Wd" = (
+/obj/effect/floor_decal/corner/green/diagonal,
/obj/structure/cable/green{
- icon_state = "2-4"
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/cable/green{
+ icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 9
},
-/turf/simulated/floor/carpet/rubber,
-/area/tcommsat/entrance)
-"Wd" = (
-/obj/structure/table/rack,
-/obj/item/towel,
-/obj/item/towel{
- pixel_y = 6
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/obj/machinery/light{
- dir = 4
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/random/soap,
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/toilet)
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
"We" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -20828,61 +25913,79 @@
},
/turf/simulated/floor/tiled/dark,
/area/bridge/meeting_room)
+"Wg" = (
+/obj/effect/landmark{
+ name = "JoinLateCryoCommand"
+ },
+/obj/effect/floor_decal/corner/green/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/cryo)
"Wh" = (
-/obj/structure/table/wood,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/machinery/newscaster{
+ pixel_y = -32
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/hop/xo)
+"Wi" = (
+/obj/machinery/blackbox_recorder,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"Wj" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/machinery/light/small{
dir = 1
},
-/turf/simulated/floor/wood,
-/area/lawoffice/representative)
-"Wi" = (
-/obj/structure/table/standard,
-/obj/item/device/multitool,
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 28;
- req_one_access = list(24,11,55)
+/obj/machinery/button/remote/airlock{
+ id = "main_unit_2";
+ name = "Door Bolt Control";
+ req_access = null;
+ specialfunctions = 4;
+ pixel_y = 32
},
-/obj/item/device/radio/intercom{
- dir = 1;
- name = "Station Intercom (General)";
- pixel_y = -21
- },
-/turf/simulated/floor/carpet/rubber,
-/area/tcommsat/entrance)
-"Wj" = (
-/obj/effect/floor_decal/corner/grey/diagonal{
- dir = 8
- },
-/obj/machinery/light,
+/obj/effect/floor_decal/corner/green/diagonal,
/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
+/area/horizon/crew_quarters/fitness/washroom)
"Wk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
- icon_state = "2-8"
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/wood,
-/area/lawoffice/consular)
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"Wl" = (
-/obj/machinery/telecomms/server/presets/engineering,
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
- },
-/area/tcommsat/chamber)
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor,
+/area/maintenance/bridge)
"Wm" = (
/turf/template_noop,
/area/template_noop)
+"Wn" = (
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/obj/structure/weightlifter,
+/obj/effect/floor_decal/corner/red{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
+"Wo" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/obj/machinery/newscaster{
+ pixel_x = 32
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
"Wp" = (
/obj/effect/floor_decal/corner/paleblue/diagonal,
/obj/structure/disposalpipe/segment{
@@ -20891,59 +25994,60 @@
/turf/simulated/floor/tiled/white,
/area/crew_quarters/heads/cmo)
"Wq" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/obj/effect/floor_decal/spline/plain{
dir = 8
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
+/obj/effect/floor_decal/corner/yellow{
+ dir = 4
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/engineering/break_room)
"Wr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+ dir = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hop/xo)
-"Wt" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "bridge blast";
- name = "Bridge Blast Doors";
- opacity = 0
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
},
-/obj/effect/map_effect/wingrille_spawn/reinforced/polarized{
- id = "hop"
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- icon_state = "pdoor0";
- id = "bridge blast";
- name = "Bridge Blast Doors";
- opacity = 0
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor,
-/area/crew_quarters/heads/hop/xo)
-"Ww" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/corner/paleblue{
+/turf/simulated/floor/wood,
+/area/lawoffice/consular)
+"Ws" = (
+/obj/effect/floor_decal/corner/yellow{
dir = 10
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
},
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
+/turf/simulated/floor/tiled,
+/area/engineering/break_room)
+"Wu" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/item/hullbeacon/red,
+/turf/simulated/floor/reinforced,
+/area/template_noop)
+"Wv" = (
+/obj/machinery/shieldwallgen,
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/crew_armory)
+"Ww" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/sign/emerg_exit/evac{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"Wx" = (
/obj/machinery/atmospherics/pipe/simple/hidden,
/obj/effect/floor_decal/corner/paleblue{
@@ -20954,15 +26058,26 @@
},
/turf/simulated/floor/tiled,
/area/hallway/secondary/entry/emergency)
+"Wy" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/turf/simulated/floor/wood,
+/area/horizon/deck_three/cafeteria)
"Wz" = (
-/obj/effect/floor_decal/corner/grey/diagonal{
+/obj/effect/floor_decal/corner/green/full{
dir = 8
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+/obj/machinery/power/apc/low{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
},
/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
+/area/horizon/crew_quarters/fitness/washroom)
"WA" = (
/obj/effect/floor_decal/spline/fancy/wood,
/turf/simulated/floor/wood,
@@ -20975,29 +26090,51 @@
/turf/simulated/floor/tiled/white,
/area/hallway/medical/upper)
"WC" = (
-/obj/item/modular_computer/console/preset/ai,
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai)
+/obj/effect/floor_decal/corner/blue{
+ dir = 10
+ },
+/obj/structure/bed,
+/obj/structure/curtain/open/bed,
+/obj/item/bedsheet/captain,
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
"WD" = (
/obj/structure/lattice,
/turf/simulated/open,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"WE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/hologram/holopad,
-/obj/effect/floor_decal/corner/blue{
- dir = 9
+/obj/effect/floor_decal/spline/plain/corner,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
},
-/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/rubber,
+/area/bridge)
"WF" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- req_one_access = list(12,61)
- },
/obj/machinery/atmospherics/pipe/simple/hidden,
/obj/machinery/door/firedoor,
-/turf/simulated/floor,
+/obj/machinery/door/airlock/atmos{
+ name = "Deck 3 Port Auxiliary Atmospherics";
+ req_one_access = list(11, 24)
+ },
+/turf/simulated/floor/tiled,
/area/maintenance/aux_atmospherics/deck_3)
+"WG" = (
+/obj/effect/floor_decal/corner/red/full{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/obj/structure/railing/mapped,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
"WH" = (
/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
/obj/structure/cable/green{
@@ -21009,24 +26146,45 @@
/turf/simulated/wall/r_wall,
/area/security/forensics_office)
"WJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
-/area/engineering/break_room)
-"WL" = (
-/obj/effect/floor_decal/corner/paleblue{
- dir = 5
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/structure/cable/green{
+ icon_state = "4-8"
},
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/engineering/break_room)
+"WK" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/hallway/deck_three/primary/starboard)
+"WL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/horizon/stairwell/central)
"WM" = (
-/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
-/area/crew_quarters/locker)
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/horizon/crew_quarters/fitness/washroom)
"WN" = (
/obj/effect/floor_decal/corner/paleblue,
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"WO" = (
/obj/effect/floor_decal/corner/blue{
dir = 6
@@ -21043,29 +26201,33 @@
/turf/simulated/floor/tiled,
/area/bridge)
"WP" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
+/obj/machinery/computer/cryopod{
+ pixel_y = 32
},
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai)
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
"WQ" = (
-/obj/effect/floor_decal/corner/paleblue{
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "2-8"
- },
+/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+/obj/machinery/door/airlock/glass{
+ name = "Deck 3 Port Docks"
},
/turf/simulated/floor/tiled,
/area/hallway/secondary/entry/emergency)
+"WR" = (
+/obj/effect/floor_decal/corner_wide/blue{
+ dir = 10
+ },
+/obj/machinery/newscaster{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/pool)
"WS" = (
/obj/structure/cable/green{
icon_state = "1-8"
@@ -21085,21 +26247,35 @@
},
/turf/simulated/floor/tiled/white,
/area/hallway/medical/upper)
+"WT" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 10
+ },
+/obj/machinery/vending/cola,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/power/apc/critical{
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
"WU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
+/obj/effect/floor_decal/corner/green/diagonal,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
+"WV" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
+/obj/structure/reagent_dispensers/extinguisher,
+/obj/machinery/light/small/emergency{
+ dir = 4
},
-/obj/structure/table/rack,
-/obj/random/loot,
-/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor,
/area/maintenance/bridge)
"WW" = (
/obj/machinery/atmospherics/pipe/manifold4w/visible,
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/tiled,
/area/maintenance/aux_atmospherics/deck_3)
"WX" = (
/obj/machinery/door/firedoor,
@@ -21113,9 +26289,9 @@
/obj/machinery/door/airlock/glass_command{
id_tag = "";
name = "Helm";
- req_one_access = list(19,38)
+ req_one_access = list(19, 38)
},
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/tiled,
/area/bridge)
"WY" = (
/obj/effect/floor_decal/corner/green/diagonal,
@@ -21125,6 +26301,36 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/ward/isolation)
+"WZ" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 32
+ },
+/obj/structure/railing/mapped{
+ dir = 1
+ },
+/obj/item/inflatable_duck,
+/obj/item/beach_ball,
+/obj/effect/floor_decal/corner_wide/blue/full{
+ dir = 1
+ },
+/obj/structure/table/rack,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/pool)
+"Xa" = (
+/obj/structure/railing/mapped,
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/guncabinet{
+ name = "Weaponry (Anti-Materiel Ammunition)"
+ },
+/obj/item/ammo_casing/peac,
+/obj/item/ammo_casing/peac,
+/obj/item/ammo_casing/peac,
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/crew_armory)
"Xb" = (
/obj/structure/table/reinforced/wood,
/obj/effect/floor_decal/spline/fancy/wood,
@@ -21153,8 +26359,20 @@
/obj/machinery/atmospherics/pipe/zpipe/down/supply{
dir = 8
},
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/obj/structure/railing/mapped,
/turf/simulated/open,
/area/maintenance/engineering_ladder)
+"Xd" = (
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/lino/grey,
+/area/horizon/deck_three/cafeteria)
"Xe" = (
/obj/effect/floor_decal/corner/blue{
dir = 5
@@ -21186,16 +26404,22 @@
/area/crew_quarters/captain)
"Xg" = (
/obj/structure/cryofeed,
-/obj/structure/window/reinforced{
- dir = 4
+/obj/machinery/door/window/southright{
+ name = "Cryogenics Maintenance";
+ req_one_access = list(12, 26)
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
},
-/obj/structure/window/reinforced,
/obj/structure/lattice/catwalk/indoor/grate,
+/obj/structure/railing/mapped{
+ dir = 8
+ },
/turf/simulated/floor,
-/area/crew_quarters/sleep/cryo)
+/area/horizon/crew_quarters/cryo)
"Xh" = (
/obj/structure/table/wood,
-/turf/simulated/floor/carpet,
+/turf/simulated/floor/carpet/art,
/area/crew_quarters/lounge)
"Xi" = (
/obj/effect/floor_decal/corner/paleblue{
@@ -21204,31 +26428,51 @@
/obj/machinery/alarm{
pixel_y = 28
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"Xj" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/effect/floor_decal/corner/green{
+ dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/command{
- id_tag = "consular_office";
- name = "Consular Office";
- req_access = list(72)
- },
-/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/wood,
-/area/lawoffice/consular)
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"Xk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"Xl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"Xm" = (
-/obj/machinery/photocopier{
- pixel_y = 2
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/beige{
+ dir = 6
},
-/obj/machinery/newscaster{
- pixel_x = 28
- },
-/turf/simulated/floor/tiled/dark,
+/turf/simulated/floor/tiled,
/area/security/vacantoffice)
"Xn" = (
/obj/structure/lattice,
@@ -21236,11 +26480,33 @@
/turf/simulated/open,
/area/hallway/medical/upper)
"Xo" = (
-/obj/machinery/light/small/red{
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
+ },
+/obj/structure/closet/firecloset/full,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/bridge)
+"Xp" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -28
+ },
+/obj/effect/floor_decal/corner/blue{
+ dir = 9
+ },
+/obj/structure/railing/mapped{
+ dir = 4
+ },
+/obj/machinery/disposal/small/east,
+/obj/structure/disposalpipe/trunk{
dir = 1
},
+/obj/machinery/light{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
-/area/bridge/aibunker)
+/area/bridge)
"Xq" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -21258,19 +26524,27 @@
/area/bridge/minibar)
"Xr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
+ dir = 4
},
/turf/simulated/floor/tiled/dark,
/area/crew_armory)
"Xs" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/obj/machinery/telecomms/server/presets/supply,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"Xt" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 5
},
-/turf/simulated/floor/carpet,
-/area/lawoffice/consular)
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"Xu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/coatrack,
@@ -21279,19 +26553,20 @@
name = "Security - Investigations Office"
})
"Xv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/carpet/rubber,
-/area/tcommsat/entrance)
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"Xw" = (
-/obj/machinery/light{
- dir = 8
+/obj/structure/bed/stool/chair/padded/brown{
+ dir = 1
},
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -28
+/obj/effect/landmark/start{
+ name = "Passenger"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/lounge/secondary)
+/turf/simulated/floor/carpet/art,
+/area/crew_quarters/lounge)
"Xx" = (
/obj/effect/floor_decal/corner/paleblue/diagonal,
/obj/machinery/light,
@@ -21323,32 +26598,76 @@
/turf/simulated/floor/tiled/white,
/area/medical/ward)
"Xz" = (
-/obj/machinery/vending/coffee,
/obj/effect/floor_decal/spline/fancy/wood{
dir = 9
},
+/obj/machinery/lapvend,
+/obj/machinery/light_switch{
+ pixel_y = -9;
+ pixel_x = -24;
+ dir = 4
+ },
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
"XA" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -32
+/obj/effect/landmark/start{
+ name = "Passenger"
},
-/obj/effect/floor_decal/corner/blue{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/bridge)
-"XB" = (
-/obj/structure/table/wood,
-/obj/machinery/recharger,
-/turf/simulated/floor/carpet/rubber,
-/area/lawoffice/representative)
-"XC" = (
-/obj/structure/railing/mapped{
+/obj/structure/bed/stool/chair/padded/brown{
dir = 4
},
-/turf/simulated/open,
-/area/hallway/crew_area)
+/turf/simulated/floor/carpet/art,
+/area/crew_quarters/lounge/secondary)
+"XB" = (
+/obj/machinery/light_switch{
+ pixel_x = -9;
+ pixel_y = 24
+ },
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for shutters.";
+ id = "hop_office_desk";
+ name = "Desk Privacy Shutter";
+ pixel_y = 25;
+ pixel_x = 7
+ },
+/obj/machinery/button/switch/windowtint{
+ id = "hop";
+ pixel_x = -2;
+ pixel_y = 24
+ },
+/obj/structure/table/standard,
+/obj/machinery/recharger,
+/obj/item/device/hand_labeler,
+/obj/item/modular_computer/laptop/preset/command/xo,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/machinery/button/remote/airlock{
+ desc = "A remote control-switch for the office door.";
+ id = "hopdoor";
+ name = "Office Door Control";
+ pixel_y = 35;
+ req_access = list(57);
+ pixel_x = -7
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/hop/xo)
+"XC" = (
+/obj/effect/floor_decal/industrial/hatch/red,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge/selfdestruct)
"XD" = (
/obj/effect/floor_decal/industrial/warning,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -21359,38 +26678,68 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"XE" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Holodeck"
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"XG" = (
-/obj/structure/railing/mapped,
-/obj/structure/railing/mapped{
+/area/horizon/crew_quarters/fitness/hallway)
+"XF" = (
+/obj/machinery/porta_turret/stationary{
+ req_access = list(19);
+ req_one_access = null
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/light/small/emergency{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
dir = 4
},
-/turf/simulated/open,
-/area/engineering/break_room)
-"XH" = (
-/obj/machinery/door/firedoor,
-/obj/effect/floor_decal/corner/paleblue{
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
+"XG" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/yellow{
dir = 10
},
-/obj/machinery/door/airlock/glass{
- name = "Deck 3 Starboard Docks"
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
},
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
-"XI" = (
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 9
+/area/engineering/break_room)
+"XH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
/obj/machinery/door/firedoor,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"XI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/corner/blue{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor/multi_tile,
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Recreational Area"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/horizon/crew_quarters/fitness/hallway)
"XJ" = (
/turf/simulated/wall/r_wall,
/area/tcommsat/entrance)
@@ -21412,101 +26761,126 @@
},
/turf/simulated/floor,
/area/crew_quarters/captain)
+"XL" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"XM" = (
-/obj/effect/floor_decal/corner/grey/diagonal{
- dir = 8
+/obj/effect/floor_decal/corner/green{
+ dir = 6
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
/obj/structure/cable/green{
- icon_state = "2-4"
+ icon_state = "4-8"
},
-/obj/structure/closet/walllocker/emerglocker/north,
/turf/simulated/floor/tiled/white,
-/area/crew_quarters/toilet)
+/area/horizon/crew_quarters/fitness/showers)
"XN" = (
/obj/effect/floor_decal/corner/green/diagonal{
dir = 8
},
/obj/structure/curtain/open/medical,
+/obj/structure/bed/stool/padded/red,
/obj/structure/disposalpipe/segment{
dir = 4;
- icon_state = "conpipe-c"
+ icon_state = "pipe-c"
},
-/obj/structure/bed/stool/padded/red,
/turf/simulated/floor/tiled/white,
/area/medical/ward)
"XO" = (
-/obj/structure/closet/secure_closet/guncabinet{
- name = "Weaponry (Ammo)"
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
},
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/item/ammo_casing/gauss/carbine,
-/obj/item/ammo_casing/gauss/carbine,
-/obj/item/ammo_casing/gauss/carbine,
-/obj/item/ammo_casing/gauss/carbine,
-/obj/item/ammo_casing/gauss/carbine,
-/obj/item/ammo_casing/gauss/carbine,
-/obj/item/ammo_casing/gauss/carbine,
-/obj/item/ammo_casing/gauss/carbine,
-/obj/item/ammo_casing/gauss/carbine,
-/obj/item/ammo_casing/gauss/carbine,
-/obj/item/ammo_casing/gauss/carbine,
-/obj/item/ammo_casing/gauss/carbine,
-/obj/item/ammo_casing/gauss/carbine,
-/obj/item/ammo_casing/gauss/carbine,
-/obj/item/ammo_casing/gauss/carbine,
-/obj/item/ammo_casing/gauss/carbine,
-/obj/item/ammo_casing/gauss/carbine,
-/obj/item/ammo_casing/gauss/carbine,
-/obj/item/ammo_casing/gauss/carbine,
-/obj/item/ammo_casing/gauss/carbine,
-/turf/simulated/floor/tiled/dark,
-/area/crew_armory)
+/turf/simulated/floor,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"XP" = (
-/turf/simulated/wall/r_wall,
-/area/hallway/primary/port)
+/obj/structure/table/steel,
+/obj/item/stock_parts/subspace/amplifier,
+/obj/item/stock_parts/subspace/amplifier,
+/obj/item/stock_parts/subspace/amplifier,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/carpet/rubber,
+/area/tcommsat/entrance)
"XQ" = (
-/obj/structure/cable/green{
- icon_state = "1-4"
+/obj/effect/floor_decal/corner/blue{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/bridge)
"XR" = (
-/obj/effect/floor_decal/corner/red{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"XS" = (
/obj/effect/floor_decal/spline/fancy/wood{
dir = 1
},
+/obj/machinery/vending/coffee,
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
"XT" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/structure/cable/green,
+/obj/machinery/power/apc{
+ dir = 4;
+ pixel_x = 24;
+ name = "east bump"
+ },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/cryo)
+/obj/machinery/camera/network/service{
+ c_tag = "Third Deck - Nature Showcase Maintenance";
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/full{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/deck_three/nature_showcase)
"XU" = (
-/obj/effect/map_effect/wingrille_spawn/reinforced/firedoor,
-/turf/simulated/floor,
-/area/tcommsat/entrance)
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/tcommsat/chamber)
"XV" = (
/obj/structure/window/shuttle/scc_space_ship,
/obj/structure/grille,
@@ -21526,30 +26900,40 @@
/turf/simulated/floor,
/area/crew_quarters/captain)
"XW" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/landmark{
- name = "JoinLateCryoCommand"
+/obj/structure/railing/mapped{
+ dir = 8
},
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/cryo)
+/obj/effect/floor_decal/corner/green/full{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"XX" = (
-/obj/structure/cable/green{
- icon_state = "1-4"
+/obj/machinery/door/airlock/glass_security{
+ name = "Crew Armoury"
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor,
-/area/tcommsat/entrance)
+/obj/machinery/door/blast/regular{
+ dir = 4;
+ id = "crew_armory";
+ name = "Crew Armoury"
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
+/area/crew_armory)
"XY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/noticeboard{
+ pixel_x = -32;
+ name = "\improper Consular's notice board"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/hop/xo)
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"XZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -21582,7 +26966,7 @@
dir = 10
},
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"Yc" = (
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
frequency = 1337;
@@ -21599,19 +26983,34 @@
},
/turf/simulated/floor/plating,
/area/hallway/secondary/entry/emergency)
+"Yd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/machinery/alarm{
+ pixel_x = -28;
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/maintenance/engineering_ladder)
"Ye" = (
/turf/simulated/floor/holofloor/reinforced,
/area/holodeck/alphadeck)
"Yf" = (
-/obj/structure/sink{
- dir = 8;
- pixel_x = -12
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
},
-/obj/structure/mirror{
- pixel_x = -28
+/obj/machinery/requests_console{
+ department = "Representative's Office";
+ departmentType = 5;
+ pixel_y = 32
},
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/heads/hop/xo)
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/lawoffice/representative)
"Yg" = (
/turf/simulated/wall,
/area/lawoffice/consular)
@@ -21633,13 +27032,21 @@
name = "Journalist's Office";
req_access = list(70)
},
+/obj/effect/map_effect/door_helper/unres{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
/area/journalistoffice)
"Yi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/shower{
+ pixel_y = 24
+ },
+/obj/structure/curtain/open/shower,
+/obj/machinery/door/window/southleft{
+ name = "Shower"
+ },
/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/toilet)
+/area/horizon/crew_quarters/fitness/showers)
"Yj" = (
/obj/structure/cable/green{
icon_state = "4-8"
@@ -21669,27 +27076,35 @@
/turf/simulated/floor,
/area/crew_quarters/captain)
"Yl" = (
-/obj/effect/floor_decal/spline/fancy/wood,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/railing/mapped,
+/obj/structure/railing/mapped{
+ dir = 8
},
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/obj/structure/flora/pottedplant/random,
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
"Ym" = (
-/obj/machinery/light,
-/obj/structure/flora/pottedplant{
- icon_state = "plant-27"
+/obj/machinery/door/airlock/hatch{
+ req_access = list(19);
+ secured_wires = 1;
+ name = "Command Bunker Exterior";
+ id_tag = "bolts_bunker_external"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/lounge)
+/obj/machinery/door/firedoor,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
"Yn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/dark,
/area/security/vacantoffice2)
"Yo" = (
-/obj/machinery/door/airlock{
- name = "Lounge"
- },
/obj/machinery/door/firedoor,
/obj/structure/cable/green{
icon_state = "1-2"
@@ -21697,49 +27112,64 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/glass{
+ name = "Deck 3 Starboard Lounge"
+ },
/turf/simulated/floor/tiled,
-/area/crew_quarters/lounge/secondary)
+/area/crew_quarters/lounge)
+"Yp" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/structure/sign/directions/all{
+ pixel_y = 28
+ },
+/obj/structure/sign/directions/medical{
+ pixel_y = 36
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"Yq" = (
-/obj/machinery/telecomms/bus/preset_four,
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+/obj/machinery/atmospherics/portables_connector,
+/obj/machinery/door/window/southright{
+ name = "Canister Access"
},
-/area/tcommsat/chamber)
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/effect/decal/cleanable/cobweb2,
+/turf/simulated/floor,
+/area/maintenance/bridge)
"Yr" = (
-/obj/effect/floor_decal/corner/paleblue/full{
- dir = 8
+/obj/machinery/firealarm/south,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
},
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/obj/machinery/light,
+/turf/simulated/floor/wood,
+/area/lawoffice/representative)
"Yt" = (
/obj/machinery/light/small{
dir = 1
},
/turf/simulated/floor/plating,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"Yu" = (
-/obj/effect/floor_decal/corner/red/diagonal,
-/obj/structure/window/reinforced,
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/table/reinforced/wood,
-/obj/machinery/chemical_dispenser/coffeemaster/full{
- pixel_x = 2;
- pixel_y = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/simulated/floor/grass/alt,
+/area/horizon/deck_three/nature_showcase)
"Yv" = (
/obj/effect/floor_decal/spline/fancy/wood/corner,
/obj/effect/floor_decal/spline/fancy/wood{
dir = 1
},
-/obj/machinery/status_display{
- layer = 4;
- pixel_y = 32
+/obj/machinery/power/apc{
+ is_critical = 1;
+ name = "north bump";
+ pixel_y = 24;
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
},
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
@@ -21749,10 +27179,14 @@
/area/security/forensics_office)
"Yx" = (
/obj/machinery/camera/network/third_deck{
- c_tag = "Third Deck - Secondary Crew Lounge"
+ c_tag = "Third Deck - Crew Lounge Starboard"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/lounge/secondary)
+/obj/structure/bed/stool/chair/sofa/right/brown,
+/obj/effect/landmark/start{
+ name = "Passenger"
+ },
+/turf/simulated/floor/carpet/art,
+/area/crew_quarters/lounge)
"Yy" = (
/obj/structure/table/reinforced/wood,
/obj/item/paper_bin,
@@ -21775,11 +27209,24 @@
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
"Yz" = (
-/obj/effect/floor_decal/corner_wide/blue{
- dir = 5
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
},
/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/area/horizon/crew_quarters/fitness/hallway)
"YA" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -21790,53 +27237,50 @@
/turf/simulated/floor/tiled/white,
/area/hallway/medical/upper)
"YB" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
+/obj/structure/cryofeed/pipes{
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
-/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/door/airlock/maintenance{
- req_one_access = list(12)
+/obj/structure/railing/mapped{
+ dir = 4
},
-/obj/machinery/door/firedoor,
-/turf/simulated/floor,
-/area/maintenance/security_starboard)
-"YC" = (
-/obj/machinery/door/airlock{
- name = "Lounge"
- },
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled,
-/area/crew_quarters/lounge)
-"YD" = (
-/obj/structure/bed/stool/chair/padded/brown{
+/obj/effect/floor_decal/industrial/warning{
dir = 8
},
-/turf/simulated/floor/carpet,
-/area/lawoffice/consular)
-"YE" = (
-/obj/effect/floor_decal/corner/red/diagonal,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock{
- name = "Bar Backroom";
- req_access = list(25)
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/structure/sign/nosmoking_1{
+ pixel_x = -32
},
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/cafeteria)
+/turf/simulated/floor,
+/area/horizon/crew_quarters/cryo)
+"YC" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/structure/bed/stool/chair/padded/brown{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"YD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"YE" = (
+/obj/structure/lattice,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/horizon/hallway/deck_three/primary/starboard)
"YF" = (
-/obj/structure/table/standard,
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
+/obj/machinery/photocopier,
+/obj/effect/floor_decal/corner/blue{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
"YG" = (
/obj/effect/floor_decal/spline/fancy/wood{
dir = 4
@@ -21844,9 +27288,10 @@
/obj/effect/floor_decal/spline/fancy/wood/corner{
dir = 8
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
"YH" = (
@@ -21856,6 +27301,13 @@
/obj/effect/floor_decal/spline/fancy/wood{
dir = 8
},
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/railing/mapped{
+ dir = 8
+ },
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
"YI" = (
@@ -21868,8 +27320,10 @@
/turf/simulated/floor/tiled,
/area/security/investigations_storage)
"YJ" = (
-/obj/random/junk,
-/obj/structure/reagent_dispensers/fueltank,
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
/turf/simulated/floor,
/area/maintenance/security_starboard)
"YK" = (
@@ -21890,60 +27344,62 @@
/turf/simulated/floor/carpet/rubber,
/area/crew_quarters/captain)
"YL" = (
-/obj/structure/cable{
- icon_state = "1-8"
+/obj/item/device/radio/beacon,
+/obj/effect/floor_decal/corner/yellow{
+ dir = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled,
/area/engineering/break_room)
"YM" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/floor,
-/area/maintenance/security_starboard)
-"YN" = (
-/obj/effect/floor_decal/corner_wide/blue{
+/obj/effect/floor_decal/corner/paleblue{
dir = 9
},
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
-"YO" = (
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/machinery/light{
+ dir = 8
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/camera/network/third_deck{
- c_tag = "Third Deck - Hallway 4"
+/obj/machinery/status_display{
+ pixel_x = -32
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"YQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/horizon/hallway/deck_three/primary/starboard)
+"YO" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 28;
+ req_one_access = list(24,11,55)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/hallway)
+"YP" = (
+/obj/structure/cryofeed,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
},
/obj/structure/lattice/catwalk/indoor/grate,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/railing/mapped{
+ dir = 8
},
+/turf/simulated/floor,
+/area/horizon/crew_quarters/cryo)
+"YQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/lattice/catwalk/indoor/grate,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor,
/area/maintenance/security_starboard)
"YR" = (
@@ -21993,47 +27449,51 @@
/turf/simulated/floor/tiled,
/area/hallway/secondary/entry/emergency)
"YU" = (
-/obj/machinery/power/apc/low{
- dir = 1;
- name = "north bump";
- pixel_y = 24
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 10
},
-/obj/structure/cable/green{
- icon_state = "0-4"
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/turf/simulated/floor/wood,
-/area/crew_quarters/lounge)
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"YV" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
/obj/structure/table/wood,
/obj/effect/floor_decal/spline/fancy/wood{
dir = 5
},
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/pen,
+/obj/item/folder/blue,
/obj/item/book/manual/wiki/security_space_law,
/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
"YW" = (
-/obj/structure/table/wood,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/item/paper_bin,
-/obj/item/paper_scanner,
-/obj/item/pen/blue{
- pixel_x = 4;
- pixel_y = 4
+/obj/machinery/photocopier,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
},
-/obj/item/pen/black,
-/obj/machinery/requests_console{
- department = "Consular's Office";
- departmentType = 5;
- pixel_y = 32
+/obj/machinery/camera/network/command{
+ c_tag = "Bridge - Representative's Office";
+ dir = 8
},
-/turf/simulated/floor/carpet,
-/area/lawoffice/consular)
+/turf/simulated/floor/wood,
+/area/lawoffice/representative)
+"YX" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"YY" = (
/obj/structure/window/shuttle/scc_space_ship,
/obj/structure/grille,
@@ -22048,6 +27508,12 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/medical/smoking)
+"YZ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/port)
"Za" = (
/obj/structure/railing/mapped{
dir = 1
@@ -22055,16 +27521,14 @@
/turf/simulated/open,
/area/hallway/medical/upper)
"Zb" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/hatch{
- desc = "It opens and closes. It has a small sign engraved: Bunker capacity: 6. Only facility's Command Staff is permitted.";
- id_tag = "bunker2";
- name = "Command Bunker";
- req_access = list(19);
- secured_wires = 1
+/obj/effect/floor_decal/corner/blue{
+ dir = 6
},
-/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
+/obj/structure/railing/mapped{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
"Zc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -22098,35 +27562,47 @@
name = "Security - Investigations Office"
})
"Zg" = (
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/structure/table/reinforced/wood,
+/obj/item/glass_jar{
+ desc = "A small empty jar that is mostly used for giving a tip.";
+ name = "tip jar"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
-"Zh" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 1
- },
-/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai)
-"Zi" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/machinery/camera/network/third_deck{
+ c_tag = "Third Deck - Cafe";
dir = 8
},
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 9
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 28
+ },
+/turf/simulated/floor/lino/grey,
+/area/horizon/deck_three/cafeteria)
+"Zh" = (
+/obj/item/device/radio/intercom/locked{
+ frequency = 1347;
+ locked_frequency = 1347;
+ name = "Bunker Entrance Intercom";
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
+ },
+/obj/structure/table/steel,
+/obj/item/storage/toolbox/emergency,
+/obj/item/ladder_mobile,
+/obj/item/device/radio,
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
+"Zi" = (
+/obj/structure/bed/stool/chair{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood/cee{
+ dir = 8
},
/turf/simulated/floor/wood,
-/area/hallway/primary/starboard)
+/area/horizon/crew_quarters/fitness/pool)
"Zj" = (
/obj/structure/window/shuttle/scc_space_ship,
/obj/structure/grille,
@@ -22141,17 +27617,17 @@
/turf/simulated/floor/plating,
/area/bridge/meeting_room)
"Zk" = (
-/obj/item/stamp{
- name = "consular stamp";
- pixel_x = -4
+/obj/structure/cable/green{
+ icon_state = "2-4"
},
-/obj/structure/table/wood,
-/obj/item/stamp/denied{
- pixel_x = 5;
- pixel_y = 6
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
},
-/turf/simulated/floor/carpet,
-/area/lawoffice/consular)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/reinforced,
+/area/bridge/selfdestruct)
"Zl" = (
/obj/structure/closet/wardrobe/xenos,
/obj/item/clothing/shoes/footwraps,
@@ -22160,29 +27636,49 @@
/obj/item/clothing/shoes/workboots/toeless,
/obj/item/clothing/shoes/jackboots/toeless,
/obj/item/clothing/shoes/jackboots/toeless,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/locker)
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/effect/floor_decal/corner/green/full{
+ dir = 8
+ },
+/obj/machinery/power/apc/low{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/fitness/changing)
"Zm" = (
/turf/simulated/wall/r_wall,
/area/bridge/selfdestruct)
"Zn" = (
-/obj/machinery/light{
- dir = 4
- },
/obj/effect/floor_decal/corner_wide/blue{
dir = 6
},
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/fitness/pool)
-"Zo" = (
-/obj/structure/table/standard,
/obj/item/device/radio/intercom{
+ dir = 8;
name = "Station Intercom (General)";
- pixel_y = 25
+ pixel_x = 24
},
-/obj/item/folder/blue,
/turf/simulated/floor/tiled/dark,
-/area/bridge/aibunker)
+/area/horizon/crew_quarters/fitness/pool)
+"Zo" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
"Zp" = (
/obj/effect/floor_decal/corner/green/diagonal,
/obj/machinery/light{
@@ -22210,6 +27706,13 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/medical/equipment)
+"Zr" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"Zs" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
@@ -22237,17 +27740,19 @@
dir = 4
},
/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
+/area/horizon/hallway/deck_three/primary/starboard/docks)
+"Zu" = (
+/obj/effect/floor_decal/corner/blue/diagonal,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/dark,
+/area/horizon/crew_quarters/fitness/gym)
"Zv" = (
-/obj/effect/floor_decal/corner/paleblue{
- dir = 10
- },
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"Zw" = (
/obj/structure/cable/green{
icon_state = "2-4"
@@ -22265,49 +27770,36 @@
/turf/simulated/floor/tiled/white,
/area/security/forensics_office)
"Zx" = (
-/obj/machinery/light{
- dir = 4
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 32
},
-/obj/structure/table/rack,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/door/window/brigdoor{
- dir = 8
- },
-/obj/item/clothing/suit/armor/carrier/officer,
-/obj/item/clothing/suit/armor/carrier/officer,
-/obj/item/clothing/head/helmet/security,
-/obj/item/clothing/head/helmet/security,
/turf/simulated/floor/tiled/dark,
/area/crew_armory)
"Zy" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"Zz" = (
/obj/structure/cable/green{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
+ },
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
+/area/horizon/hallway/deck_three/primary/starboard)
"ZA" = (
/obj/structure/cable/green{
icon_state = "1-2"
@@ -22329,71 +27821,100 @@
/obj/effect/floor_decal/spline/fancy/wood{
dir = 1
},
-/obj/machinery/alarm{
- pixel_y = 28
- },
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
"ZC" = (
/obj/effect/floor_decal/corner/paleblue{
dir = 5
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
},
/turf/simulated/floor/tiled,
/area/hallway/secondary/entry/emergency)
+"ZD" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
"ZE" = (
-/obj/structure/cable/green{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_y = 24
- },
-/turf/simulated/floor/carpet/rubber,
-/area/tcommsat/entrance)
-"ZG" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/machinery/camera/network/command{
- c_tag = "AI Core - Third Deck Chamber Starboard";
- dir = 4
- },
+/obj/machinery/bluespacerelay,
/turf/simulated/floor/bluegrid,
-/area/turret_protected/ai)
-"ZH" = (
-/obj/machinery/telecomms/server/presets/security,
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
- },
/area/tcommsat/chamber)
-"ZI" = (
-/obj/structure/cable/green{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor,
-/area/maintenance/substation/command)
-"ZJ" = (
+"ZF" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
-/obj/structure/lattice/catwalk/indoor/grate,
-/turf/simulated/floor,
-/area/maintenance/bridge)
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"ZG" = (
+/obj/machinery/light/small/emergency,
+/obj/effect/floor_decal/corner/blue{
+ dir = 10
+ },
+/obj/machinery/vending/snack,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/alarm{
+ req_one_access = list(24,11,55);
+ pixel_y = -28;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge/aibunker)
+"ZH" = (
+/obj/machinery/door/airlock/command{
+ name = "Executive Officer's Office";
+ req_access = list(57)
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/bridge)
+"ZI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard)
+"ZJ" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/obj/structure/sink/kitchen{
+ pixel_y = 26;
+ name = "water fountain"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
"ZK" = (
/obj/structure/cable/green{
icon_state = "2-4"
@@ -22414,26 +27935,24 @@
/turf/simulated/floor/tiled,
/area/bridge/bridge_crew)
"ZL" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/window/brigdoor{
- base_state = "rightsecure";
+/obj/machinery/alarm{
dir = 8;
- icon_state = "rightsecure";
- req_access = list(57)
+ pixel_x = 28
},
-/mob/living/simple_animal/corgi/Ian,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/hop/xo)
+/obj/structure/table/wood,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/obj/machinery/light,
+/obj/machinery/chemical_dispenser/coffee,
+/turf/simulated/floor/wood,
+/area/lawoffice/representative)
"ZM" = (
-/turf/simulated/floor/carpet,
-/area/crew_quarters/lounge/secondary)
+/obj/structure/table/wood,
+/obj/item/storage/box/fancy/cigarettes,
+/turf/simulated/floor/carpet/art,
+/area/crew_quarters/lounge)
"ZN" = (
-/obj/effect/floor_decal/corner/paleblue{
- dir = 5
- },
/obj/machinery/power/apc/low{
dir = 1;
name = "north bump";
@@ -22442,28 +27961,31 @@
/obj/structure/cable/green{
icon_state = "0-2"
},
-/turf/simulated/floor/tiled,
-/area/hallway/crew_area)
-"ZP" = (
-/obj/effect/map_effect/wingrille_spawn/reinforced/polarized{
- id = "conferecen_room"
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor,
-/area/bridge/meeting_room)
-"ZQ" = (
-/obj/structure/cable/green{
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/corner/paleblue{
+/obj/effect/floor_decal/corner/green{
dir = 5
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 1
+/turf/simulated/floor/tiled,
+/area/horizon/hallway/deck_three/primary/starboard/docks)
+"ZO" = (
+/obj/machinery/telecomms/receiver/preset_right,
+/turf/simulated/floor/bluegrid,
+/area/tcommsat/chamber)
+"ZP" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ id_tag = "conference_room";
+ name = "Conference Room";
+ req_one_access = list(19, 38)
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/starboard)
+/turf/simulated/floor/tiled,
+/area/bridge/meeting_room)
+"ZQ" = (
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/lino/grey,
+/area/horizon/deck_three/cafeteria)
"ZR" = (
/obj/machinery/requests_console{
department = "Journalist's Office";
@@ -22490,41 +28012,53 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"ZU" = (
-/obj/machinery/telecomms/bus/preset_two,
-/turf/simulated/floor/tiled{
- name = "cooled floor";
- temperature = 278
+"ZT" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/sign/flag/zenghu{
+ pixel_y = 32
},
-/area/tcommsat/chamber)
+/turf/simulated/floor/tiled/dark,
+/area/bridge/selfdestruct)
+"ZU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/maintenance/bridge)
"ZV" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
+/turf/simulated/floor/tiled,
+/area/maintenance/aux_atmospherics/deck_3)
+"ZW" = (
+/obj/effect/floor_decal/corner/red{
dir = 9
},
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/aux_atmospherics/deck_3)
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/lino/grey,
+/area/horizon/deck_three/cafeteria)
"ZX" = (
-/obj/structure/table/standard,
-/obj/structure/cable/green,
-/obj/item/folder/white,
-/obj/item/pen,
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -24
+/obj/machinery/door/airlock{
+ name = "Toilet 2";
+ id_tag = "cryo_toilet_2"
},
-/turf/simulated/floor/tiled/dark,
-/area/security/vacantoffice)
+/turf/simulated/floor/tiled,
+/area/horizon/crew_quarters/cryo/washroom)
"ZY" = (
-/obj/structure/lattice,
-/obj/structure/railing/mapped{
- dir = 1
+/obj/structure/bed/stool/chair/padded/brown,
+/obj/effect/landmark/start{
+ name = "Passenger"
},
-/turf/simulated/open,
-/area/hallway/crew_area)
+/turf/simulated/floor/carpet/art,
+/area/crew_quarters/lounge/secondary)
"ZZ" = (
-/obj/structure/table/wood,
-/turf/simulated/floor/carpet,
-/area/lawoffice/consular)
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/reinforced,
+/area/bridge/selfdestruct)
(1,1,1) = {"
Wm
@@ -32134,10 +37668,10 @@ at
at
at
at
-eb
+Cm
vu
vu
-eb
+Cm
at
at
at
@@ -32336,10 +37870,10 @@ at
at
at
at
-eb
+Cm
UM
qe
-eb
+Cm
at
at
at
@@ -32538,10 +38072,10 @@ at
at
at
at
-eb
+mP
QC
Ku
-eb
+mP
at
at
at
@@ -32740,10 +38274,10 @@ at
at
at
at
-eb
-sb
+mP
+NE
OL
-eb
+mP
at
at
at
@@ -32942,10 +38476,10 @@ at
at
at
at
-eb
-Op
+mP
+Tv
Vr
-eb
+mP
at
at
at
@@ -33145,7 +38679,7 @@ at
at
at
Cm
-WL
+Xv
Zt
GQ
at
@@ -33347,7 +38881,7 @@ at
at
at
Cm
-WL
+Xv
Zt
GQ
at
@@ -33549,10 +39083,10 @@ at
at
at
Cm
-WL
+Xv
Zt
GQ
-Qw
+at
at
at
at
@@ -33750,11 +39284,11 @@ at
at
at
at
-eb
-Op
-Jr
-eb
-Qw
+mP
+Tv
+Zt
+mP
+at
at
at
at
@@ -33952,12 +39486,12 @@ at
at
at
at
-eb
+mP
GP
st
-eb
-eb
-eb
+mP
+mP
+mP
zL
TC
at
@@ -34154,10 +39688,10 @@ at
at
at
at
-eb
+mP
mr
gE
-GB
+GQ
Ev
Ev
GQ
@@ -34356,10 +39890,10 @@ at
at
at
at
-eb
+mP
vr
XD
-pm
+pr
Ev
Ev
eE
@@ -34559,9 +40093,9 @@ at
at
at
GQ
-WL
+Sp
yY
-GB
+GQ
Ev
DP
GQ
@@ -34761,12 +40295,12 @@ at
at
at
GQ
-WL
+Ct
vy
-eb
-eb
-eb
-eb
+mP
+mP
+mP
+mP
bU
at
at
@@ -34963,12 +40497,12 @@ at
at
at
GQ
-WL
+oR
LP
cJ
gj
-eb
-at
+XO
+mP
at
at
at
@@ -35164,13 +40698,13 @@ at
at
at
at
-eb
+mP
Xi
tL
jH
Rd
-eb
-at
+XO
+mP
at
at
at
@@ -35369,16 +40903,16 @@ DK
DK
Iu
NI
-XH
-eb
-nt
-sR
-sR
-sR
-sR
-nt
-nt
-at
+Iu
+eA
+eA
+eA
+gW
+gW
+gW
+gW
+Mc
+Kd
at
fh
aa
@@ -35559,7 +41093,7 @@ dy
dD
dH
yX
-ea
+jh
lM
qQ
uS
@@ -35571,16 +41105,16 @@ Ac
yX
ZN
Uv
-EP
-Nq
+kM
+vS
tO
-KJ
-KJ
-KJ
-KJ
+Lx
+lb
+tT
+Xh
Xw
-nt
-at
+VQ
+Mc
at
fh
aa
@@ -35766,23 +41300,23 @@ lO
TP
wg
DM
-Kj
+TP
jG
TS
Ur
yX
-WL
+ZJ
gH
-EP
-Nq
+Oa
+vS
CO
ZM
+Qy
EW
-EW
-ZM
-KJ
-sR
-at
+Gi
+Gi
+gt
+gW
at
fh
aa
@@ -35982,9 +41516,9 @@ QG
lw
iW
rS
-KJ
-sR
-at
+Gi
+ZM
+gW
at
fh
aa
@@ -36177,16 +41711,16 @@ io
MS
IH
Pa
-as
-Nq
+kM
+vS
Yx
LV
-zl
+oA
eG
-ZM
-KJ
-sR
-at
+Gi
+Gi
+sr
+gW
at
fh
aa
@@ -36341,15 +41875,15 @@ at
at
at
at
-xF
-xF
-xF
-xF
-xF
-xF
-xF
-xF
-xF
+at
+at
+at
+at
+at
+at
+at
+at
+at
at
at
at
@@ -36374,21 +41908,21 @@ dK
ae
AC
gP
-pm
-pm
-pm
-pm
-Ix
-EP
-Nq
-KJ
+pr
+pr
+pr
+pr
+Nc
+qW
+vS
+Vn
Nl
jA
Vw
oc
-KJ
-nt
-at
+ub
+iv
+eA
at
fh
aa
@@ -36538,20 +42072,20 @@ at
at
at
at
+xo
+at
+at
+at
+at
+at
+xo
+at
+at
at
at
at
at
at
-xF
-zQ
-UI
-zQ
-ig
-mf
-mf
-dY
-xF
at
at
at
@@ -36575,21 +42109,21 @@ YA
xf
lR
gv
-Mx
-Mx
-Mx
-Mx
+Kw
+qY
+qY
+qY
Mx
FB
Gz
-Nq
-Nq
-Nq
+vS
+vS
+vS
vS
vS
vS
ev
-eA
+vS
eA
at
fh
@@ -36733,29 +42267,29 @@ at
at
at
at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-xF
+xo
Ab
-UK
-Ao
-EU
-mH
-mH
-mH
-xF
-at
-at
+Ab
+Do
+Do
+Do
+Do
+Ab
+Do
+Do
+Do
+Do
+Ab
+Ab
+wP
+wP
+vT
+wP
+MZ
+MZ
+MZ
+MZ
+MZ
at
Gy
AL
@@ -36781,18 +42315,18 @@ tu
xb
EN
TF
-pm
-Ef
-pm
+hF
+oJ
+kM
yv
KC
-Ri
-vS
-yp
+KC
+Nq
+Bb
LT
-Vd
+ts
Fy
-gW
+sR
at
fh
aa
@@ -36935,29 +42469,29 @@ at
at
at
at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-xF
-Ao
-UZ
+Ab
+Ab
+EX
+sX
+sX
+sX
+sX
+zr
+sX
+sX
+sX
+sX
+ne
+UK
+wP
Yi
-bD
+rA
IA
-mH
+rb
Wj
-xF
-xF
-xF
+rb
+cD
+MZ
at
uA
Zd
@@ -36979,22 +42513,22 @@ ul
xO
Hx
Fm
-Jd
-Jd
-Jd
+ko
+IF
+Qk
eT
-pm
Ef
-pm
-zg
-UO
-EP
-vS
-el
-sp
-Vd
-Xh
-gW
+oJ
+kM
+yv
+KC
+KC
+Nq
+Cl
+KJ
+rO
+XA
+sR
at
VM
KN
@@ -37137,29 +42671,29 @@ at
at
at
at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-xF
+Pg
+Zi
+iH
+Ui
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ND
+QP
+AW
+wP
CW
-Wd
-CW
-IO
+PW
Al
+rb
mH
-mH
-Ih
+rb
sN
-xE
+MZ
xE
uA
HA
@@ -37181,22 +42715,22 @@ jk
zb
iB
Fm
-js
-js
-XC
+XW
vc
-pm
+vc
+vc
+IH
oJ
-Mc
-pm
+QD
+Fi
+kX
ud
-EP
-vS
-YU
-fg
+Nq
+as
+KJ
Vd
-kM
-gW
+EI
+sR
at
at
at
@@ -37339,29 +42873,29 @@ at
at
at
at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-xF
-xF
-xF
-xF
+Pg
+JL
+iH
+Ih
+qM
+qM
+qM
+qM
+qM
+qM
+qM
+Bo
+II
+BE
+wP
+tV
OB
rE
-pb
+rb
Wz
-rq
-rq
-Qi
+WM
+ex
+rb
cR
wp
By
@@ -37383,22 +42917,22 @@ ji
ya
Uy
HD
-pV
+UR
fk
iw
-lL
+eF
eF
jE
Ro
ON
-Cl
-Is
-YC
+iw
+Ts
+DT
Bz
oI
ur
-Ym
-eA
+BV
+sR
at
Rh
Tr
@@ -37541,29 +43075,29 @@ at
at
at
at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-xF
+Pg
+kD
+iH
+Ih
+qM
+qM
+qM
+qM
+qM
+qM
+qM
+Bo
+II
+cc
+wP
+ov
XM
jg
-rB
-mH
+rb
+Ao
ep
mX
-Qi
+rb
tw
wp
wp
@@ -37585,22 +43119,22 @@ Rl
jZ
xn
Fm
-js
+UR
Nc
-jz
-lk
+oS
+Ri
+hw
+hw
pZ
-PW
-zA
-zA
-zA
-oJ
-vS
-ui
-oA
-yC
+ki
+sp
+yw
+Nq
+Ua
+MW
+Jz
Rc
-gW
+sR
at
fh
aa
@@ -37742,30 +43276,30 @@ at
at
at
at
-at
-at
-at
-QY
-QY
-Ky
-Ky
-Ky
-Ky
-QY
-Ky
-Ky
-Ky
-Ky
-QY
-WM
-WM
+xo
+Ab
+mi
+cQ
+Ih
+lZ
+qM
+qM
+qM
+qM
+qM
+qM
+Bo
+II
+wa
+wP
+FO
FU
-Um
-Um
-Um
-Um
-Um
-eX
+FO
+rb
+rb
+Jf
+rb
+rb
kO
Eh
PC
@@ -37787,22 +43321,22 @@ kr
YR
GX
Fm
-js
+UR
Nc
-jz
-ZY
+qW
+xA
+Jd
Jd
xA
-Bx
Ti
xA
-Az
xA
+Nq
rG
-eV
-yC
-Xh
-gW
+Nq
+To
+Nq
+nt
at
fh
aa
@@ -37945,29 +43479,29 @@ at
at
at
at
-at
-at
-QY
-cU
-Ql
-kz
-Ql
-Ql
-tz
-Ql
-Ql
-Ql
-Ql
-tt
+Pg
+Zi
+iH
+Ih
+qM
+qM
+qM
+qM
+qM
+qM
+qM
+Bo
+Og
+Lj
Um
Zl
-DW
-hP
+Qi
+Nh
Af
-ov
+hP
Jm
Bj
-eX
+Um
tk
SZ
il
@@ -37989,22 +43523,22 @@ nr
nr
kn
nr
-js
-Nc
-jz
-ko
-js
-os
+Xt
+yh
+SM
+Jd
+IN
+Az
vJ
-eW
-PO
+Hv
+Ue
no
-xA
+Nq
pv
ts
-yC
+Iw
Bm
-gW
+sR
at
fh
aa
@@ -38147,29 +43681,29 @@ at
at
at
at
-at
-at
-Ky
-ez
-jn
-AS
-AS
-AS
-AS
-AS
-AS
-AS
-CX
-km
+Pg
+JL
+iH
+Ih
+qM
+qM
+qM
+qM
+qM
+qM
+qM
+Bo
+Nw
+CT
Um
nZ
hQ
IV
Ny
-Ny
+ux
Ec
TI
-eX
+Um
MN
qJ
xS
@@ -38191,22 +43725,22 @@ Db
sn
dv
ct
-js
+UR
Nc
-jz
-ko
-js
+kM
+Jd
+EM
os
-Jw
eW
+oh
hd
Nn
-xA
-xA
-vS
-To
-vS
-eA
+Nq
+qO
+Hz
+yC
+ZY
+sR
at
fh
aa
@@ -38349,29 +43883,29 @@ at
at
at
at
-at
-at
-Ky
-fK
-jw
-lj
-qs
-qs
-qs
-qs
-qs
-wa
-Ic
-kW
+Vv
+kD
+iH
+QZ
+Dv
+Dv
+Dv
+Dv
+Dv
+Dv
+Dv
+wL
+Nw
+lQ
Iq
-Ny
-DW
-yz
-yz
-yz
+lj
+UZ
+UZ
+bD
+rB
yq
Da
-eX
+Um
jM
WY
nB
@@ -38393,22 +43927,22 @@ LJ
Pl
MP
ct
+UR
+Nc
+kM
+Jk
pV
-fk
-jU
-tf
-pV
-xA
-EB
-eW
+PO
+Pe
+VO
lz
id
-ZX
-xA
+Nq
+wD
Mm
LF
-tT
-gW
+Wc
+sR
at
fh
aa
@@ -38547,33 +44081,33 @@ at
at
at
at
-at
-at
-at
-at
-at
-at
-Ky
-ez
-jw
-lZ
-qM
-qM
-qM
-qM
-qM
-ex
Ic
-lQ
+QY
+ES
+ES
+xp
+FM
+km
+IZ
+cz
+jc
+Rr
+Rr
+Rr
+tD
+cz
+KV
+Ce
+WR
Um
AF
Ad
-Rt
-PK
+ig
+zF
Rt
ib
-TI
-eX
+qs
+Um
qJ
qJ
qJ
@@ -38595,22 +44129,22 @@ Vt
Vt
Mr
MR
-js
+UR
Nc
-jU
-ko
-js
-os
-ay
+kM
+Jd
+oZ
+PO
+PO
PV
Er
rf
-cy
-xA
-sr
-oA
-Xh
-gW
+Nq
+zp
+BV
+zl
+ZY
+sR
at
fh
aa
@@ -38749,33 +44283,33 @@ at
at
at
at
-at
-at
-at
-at
-at
-at
-QY
-cN
-jw
-ne
-qM
-qM
-qM
-qM
-qM
-ex
-Ic
+gr
+BR
+tz
+jV
+KP
+FM
+It
+cU
+zH
+dx
+ta
+Lw
+pz
+WZ
+Zn
+cU
+GS
DC
Um
DU
ng
HZ
zF
-HZ
-DW
+PK
+rp
gM
-eX
+Um
TD
BL
TD
@@ -38785,11 +44319,11 @@ Zp
eX
XZ
iz
-Za
+Si
My
VY
My
-My
+rX
nr
so
DS
@@ -38797,22 +44331,22 @@ Tj
yb
Xy
ct
-js
+UR
Nc
-jU
-ko
-js
-os
+kM
+Jd
+dg
+ay
RN
Pc
Xm
Kb
-yH
-xA
+Nq
+GB
Dl
pT
-tT
-gW
+zA
+sR
at
fh
Vu
@@ -38951,33 +44485,33 @@ at
at
at
at
-at
-at
-at
-at
-at
-at
-Ky
-ez
-jw
-lZ
-qM
-qM
-qM
-qM
-qM
-ex
-Ic
+gr
+QA
+yf
+Mi
+tY
+FM
+mi
+mf
+fK
+mi
+mi
+mi
+mi
+mi
+mi
+mf
+vD
mi
Um
Um
Um
Um
+vQ
+Um
Um
Um
-FU
Um
-eX
eX
eX
eX
@@ -38986,35 +44520,35 @@ eX
eX
tG
rZ
-nP
-nP
-yk
-nP
-nP
-nP
-nP
+AC
+AC
+AC
+AC
+AC
+AC
+nr
nr
nr
rF
nr
nr
nr
+bM
yk
-yk
-eO
-yk
-fc
-fc
-fc
-fc
-fc
-fc
-fc
-fc
-fc
-fc
-fc
-gi
+bM
+nP
+nP
+nP
+nP
+nP
+nP
+nP
+nP
+nP
+nP
+nP
+nP
+zc
at
fh
yM
@@ -39153,70 +44687,70 @@ at
at
at
at
-at
-at
-at
-at
-at
-at
-Ky
-fK
-jw
-nG
-rb
-rb
-rb
-rb
-rb
-wh
-Ic
-Eq
-nL
+gr
+QA
+QA
+QA
+yj
+JF
+dY
+KR
+Lt
+Md
+DH
+Tp
+xj
+xN
+zu
+KR
+rx
+Us
+qN
gm
-Ql
-Ql
+zu
+yr
RU
Qb
-zu
-Ql
+ij
+Gn
Pz
Hk
-xs
+Oz
NR
bi
-KR
-gF
+yN
+Cy
MU
nd
-nP
-So
+wS
+RH
+RH
+RH
RH
-RG
-fH
iE
+HL
+Jt
+Jt
+Jt
+eO
+Jt
+Kn
my
-my
-my
-Bk
-my
-my
-my
-my
-my
-eD
-zd
-fc
-Fe
-Pn
+Oj
+QF
+Qr
ZU
-Dw
+Fe
+ZU
+ZU
+Ej
hh
pu
-gZ
-uJ
-mm
-FP
-gi
+uN
+nP
+gY
+uN
+qB
at
fh
fm
@@ -39355,70 +44889,70 @@ TC
at
at
at
-at
-at
-at
-at
-at
-at
+gr
+Rg
+QA
+EL
+gU
+vp
Ky
+Eq
+Ga
ez
Eq
-Ql
-rp
-sX
-sX
-vQ
-Ql
-Ql
-it
-kW
-kW
+Eq
+Ga
+Eq
+Eq
+Eq
+zO
+Eq
+Eq
hK
zj
zj
-zj
-zj
-PP
-Pg
+Wd
+NU
+pJ
Dh
+WU
uz
xd
-iR
-Wq
-sC
-Zz
-Zz
+ra
+Jj
+DW
+yz
+CV
gc
-fH
-my
-dU
-uN
nP
+kV
+WV
+vo
+fN
LD
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-Zm
-qm
-yG
-fc
-Kw
-gY
-gY
-gY
+Th
+Th
+Th
+Th
+Th
+Th
+Th
+mT
+Lg
+MF
+IW
+IW
+IW
+IW
+IW
+IW
dR
-le
+Bt
Wl
-tK
-gY
-GJ
-gi
+uN
+uN
+uN
+uN
at
VM
KN
@@ -39557,70 +45091,70 @@ Sb
TC
at
at
-at
-at
-at
-at
-at
-at
-QY
+gr
+kl
+jw
+fw
+Ra
+FM
+VR
fP
Gh
pQ
-rT
-ta
+PA
+Re
un
ik
-vT
-AS
-CX
-jn
-AS
+uQ
+rT
+zn
+Wo
+YO
JW
AS
-Rr
+rT
+rT
+rT
+rT
AS
-AS
-AS
-AS
-Zn
+rT
jl
-cD
-Jg
-gl
-ut
-uk
-uk
-ve
-Hh
-Hh
-Hh
-FL
-Hh
+nG
+GY
+Vf
+Ks
+Cf
+Cf
+Cf
+Cf
+Cf
+Cf
+Cf
+Cf
De
-Zm
+Th
+nI
+UO
+cW
+Fw
+mw
+Th
+Yp
+Lg
+ye
ch
-Uw
-Vo
-nW
-Vo
-HL
-ch
-Zm
-Qk
-pi
-fc
-ce
-fX
-KG
-gY
+qV
+qA
+fg
+fg
+IW
Yq
le
-ZH
-VQ
-gY
-ok
-gi
+Ap
+nP
+uN
+uN
+qB
at
at
at
@@ -39759,75 +45293,75 @@ Wm
Sb
TC
at
-at
-at
-at
-at
-at
-at
-QY
-QY
-QY
-QY
-QY
-QY
-QY
-QY
-QY
-QY
-Yz
-Dv
-xs
-xs
-co
-xs
-co
-co
-co
-co
-xs
-co
-xs
-xs
+sS
+LX
+lG
+bv
+bv
+bv
+bv
+bv
+bv
+bv
+cN
+cN
+cN
+bv
+bv
+nG
+vU
+Oz
+Oz
+Mu
+Oz
+Mu
+Mu
+Mu
+Mu
+Oz
+Mu
+Oz
+Oz
+Tw
RT
Su
-zq
-zq
-tJ
-ge
-VU
-Vp
-yd
-Hh
+Cf
+jW
+CQ
+Ib
+YB
+Ib
+CQ
+Vy
jC
-Zm
+Th
Vo
-Uw
-Uw
-Uw
-Uw
-CV
-Zm
-Zm
-Qk
-PB
+xL
+tK
+rr
+dU
+Th
+Rf
+Xk
+Jw
+WL
+mb
+UB
+fg
+fg
fc
-yF
-Cn
-NS
-gY
-OT
-le
-IN
-VO
-gY
-OO
+fc
+fc
+fc
+fc
+fc
+fc
+gi
HB
HB
+gh
HB
HB
-HB
-md
md
md
EQ
@@ -39963,23 +45497,22 @@ HN
at
at
at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-wf
-Yz
-Go
-co
+lG
+jd
+gJ
+CX
+CX
+CX
+SF
+CX
+CX
+CX
+CX
+jn
+bv
+gC
+nC
+Mu
Ye
Ye
Ye
@@ -39990,44 +45523,45 @@ Ye
Ye
Ye
Ye
-xs
-YO
-Ko
-RJ
-RJ
-RJ
-Hh
-uC
-ss
-qW
-Hh
+Oz
+Sm
+Vp
+wh
+Cf
+QQ
+Au
+Au
+ir
+Au
+Au
+Ju
Lb
-Zm
-QO
-Fw
-Fw
-Fw
-NM
-IE
-Zm
-kL
-Qk
-LY
+Th
+Th
+Th
+LG
+Th
+Th
+Th
+gT
+fQ
+Ww
+Gc
+Gc
+Gc
+Gc
+Gc
fc
-rQ
-Iw
-QF
-gY
-gY
-iv
-Lc
+Pp
+gd
Lc
+vP
+ui
La
-La
-uj
-jK
-SB
-XX
+mm
+XJ
+iu
+sE
iD
Bw
Kl
@@ -40165,23 +45699,22 @@ HN
at
at
at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-SG
-Yz
-It
-co
+nL
+Av
+LB
+Ql
+Ql
+Ql
+Ql
+Ql
+Ql
+Ql
+eq
+Av
+cN
+FW
+UD
+Mu
Ye
Ye
Ye
@@ -40192,46 +45725,47 @@ Ye
Ye
Ye
Ye
-co
-Lg
-oa
-Cf
-Cf
-Cf
-Cf
-Cf
-Cf
-Cf
-Cf
+Mu
+GY
+Fc
+Xj
+SW
+Ru
+qy
+xF
+KU
+rJ
+SJ
+el
nl
-Zm
-fE
-Uw
-wG
-Uw
-Gk
+js
+Ix
+CL
+eg
+xY
+ss
AA
-bM
-ue
-Ph
-pP
+zN
+PD
+KQ
+Gc
+uc
+HS
+ZX
+DO
fc
-Kw
-gY
-gY
-gY
SU
+kw
+FP
+FC
+fX
XU
-wD
-hV
-XU
-XU
-XJ
-XJ
-XJ
-Jx
+VF
+TB
+XP
+cl
iM
-JQ
+XJ
JQ
JQ
nz
@@ -40367,23 +45901,22 @@ HN
at
at
at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-SG
-Yz
-Jb
-xs
+nL
+Av
+Bi
+Tt
+SS
+SS
+SS
+nH
+kW
+fa
+dd
+Av
+cN
+FW
+RS
+Oz
Ye
Ye
Ye
@@ -40394,46 +45927,47 @@ Ye
Ye
Ye
Ye
-xs
-AW
-iY
-Cf
-jW
-CQ
-Vy
-Cf
-jW
-CQ
-Vy
+Oz
+Ax
+Vp
+ye
+ww
+sT
+Qx
+Df
+Qx
+Kj
+bH
+Wg
LO
-Zm
-bY
-Uw
-Uw
-Uw
-Uw
-fB
-Zm
-xH
-eK
-PB
+ww
+AX
+xr
+xr
+xr
+vf
+Jc
+zN
+Uz
+eQ
+xl
+nR
+VH
+Gc
+Gc
fc
-vk
-gY
-OO
-gY
-gd
-XU
-gy
-qY
-Fv
-hM
-Pe
-XJ
-iu
-Jx
+fD
+Xs
+tq
+tx
+rQ
+yH
+uO
+qZ
+eN
+Ph
iN
-JQ
+XJ
mK
IB
Pw
@@ -40569,23 +46103,22 @@ Sb
TC
at
at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-SG
-Yz
-Jf
-xt
+nL
+Av
+JR
+Ly
+ER
+ER
+ER
+jL
+Lf
+Lf
+Fk
+Av
+cN
+FW
+UD
+hT
Ye
Ye
Ye
@@ -40597,45 +46130,46 @@ Ye
Ye
Ye
xt
-gX
-Yb
+GY
+Vp
+zv
Cf
-Au
-Au
-Au
-ir
-Au
-Au
-Au
+yK
+RR
+RR
+Mb
+RR
+RR
+Ul
BH
-Zm
-Vo
-Uw
-Uw
-Uw
-Uw
-EM
-Zm
-Zm
-ZJ
-WU
-fc
-we
-gY
+Cf
+Mn
+ju
+EP
+ju
+ii
+EF
Tz
-zG
+ZI
+CN
+Gc
+BY
+Hc
+vG
+yB
+fc
sx
-XU
-JT
-ha
-Xv
-zD
-Qy
+NS
+kK
+KT
+KT
+hM
+rm
XJ
iG
-Jx
+Op
iO
-JQ
+XJ
Es
TH
hm
@@ -40771,23 +46305,22 @@ Wm
HN
at
at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-SG
+lG
+li
+CX
+CX
+CX
+sU
+kZ
+CX
+CX
+CX
+tt
+ET
+bv
+kz
Ge
-JL
-xs
+Oz
Ye
Ye
Ye
@@ -40798,46 +46331,47 @@ Ye
Ye
Ye
Ye
-co
+Mu
+GY
de
-LW
-SW
-Ru
-qy
-bH
-KU
-rJ
-rJ
-MI
+CN
+Cf
+YP
+xq
+qf
+tf
+qf
+xq
+Xg
xK
-Zm
-ch
-Uw
-Vo
-dc
-Vo
-oS
-ch
-Zm
+Cf
+Bx
+cx
+lm
+Le
+gX
+EF
+gy
+ZI
eK
BS
+BS
+BS
+BS
+BS
fc
fc
fc
-fc
-fc
-fc
-XJ
-ZE
-Wc
-yT
-yT
+zG
+uG
+Ia
+Fv
yT
FJ
jT
Lm
iP
-JQ
+XJ
FZ
At
sG
@@ -40973,23 +46507,22 @@ Wm
Sb
TC
at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-wf
+lG
+lG
+nS
+nS
+nS
+lG
+lG
+hc
+hD
+Aq
+vv
+Tk
+bv
+rP
yU
-JZ
-XE
+Is
Ye
Ye
Ye
@@ -41001,19 +46534,18 @@ Ye
Ye
Ye
XE
-Lg
-iY
-ww
-sT
-sT
-Hc
-XT
-Qx
-Qx
-XW
-IF
-Zm
-Zm
+GY
+CC
+ye
+Cf
+Cf
+Cf
+Cf
+Cf
+Cf
+Cf
+Cf
+OY
Zm
Zm
Zm
@@ -41021,25 +46553,27 @@ Zm
Zm
Zm
Zm
+JM
+tM
EY
tp
bK
xv
ih
-Ua
-ZI
+eh
Tm
+lk
rj
-qB
-Jz
-AZ
-jb
+eB
+OO
+OO
+OW
Wi
XJ
hZ
-sE
+wA
ja
-JQ
+XJ
zI
HE
kx
@@ -41180,18 +46714,17 @@ Tr
Tr
Tr
Tr
-Tr
-Tr
-TC
-at
-at
-at
-at
-at
-wf
-Yz
-Mi
-xs
+uM
+lG
+Ud
+Zu
+Qt
+da
+bf
+cN
+FW
+AB
+Oz
Ye
Ye
Ye
@@ -41202,46 +46735,47 @@ Ye
Ye
Ye
Ye
-xs
+Oz
+XL
Zy
-JJ
-Cf
-RR
-RR
-RR
-Mb
-RR
-RR
-RR
-Jy
-Yg
+ye
+vZ
+BP
+Cp
+BP
+BP
+BP
+BP
+Di
+BP
+Zm
jN
-cA
+nW
xX
-dg
+nW
mY
-SK
-cq
-wU
-qb
-VC
-VC
-VC
-FG
+Zm
+fI
+gl
+yV
+BS
+oE
+vC
+uC
ys
-TW
+fc
BG
-CZ
-CZ
-oh
-CZ
-CZ
-CZ
-CZ
-CZ
+fc
+QX
+jt
+Gm
+jb
+XJ
+XJ
+XJ
Ea
-CZ
-JQ
+XJ
+XJ
xg
GL
mO
@@ -41375,25 +46909,24 @@ Wm
Wm
Wm
Wm
-Wm
+UY
+Jv
aa
-aa
-bw
-aa
-yM
+sP
aa
aa
aa
HN
-at
-at
-at
-at
-at
-SG
-Yz
-kD
-co
+nL
+QT
+ST
+ST
+bw
+kq
+CD
+ah
+nT
+Mu
Ye
Ye
Ye
@@ -41404,47 +46937,48 @@ Ye
Ye
Ye
Ye
-co
+Mu
+GY
Lg
-iY
-Cf
-qf
-xq
-Xg
-Cf
-qf
-xq
-Xg
-BP
-Yg
-YW
+NH
+Uw
+Uw
+Uw
+Uw
+Uw
+Of
+Uw
+Uw
+Uw
+Zm
+bY
+qn
qn
-Xs
Cz
hA
-SK
+Zm
+zD
ps
-pl
pD
-VC
-oE
-VC
-VC
-VC
-VC
-VC
-CZ
+vx
+vx
+vx
+uj
+vx
+vx
+vx
+fc
pf
-FN
-Tv
-OW
CE
+CE
+oP
+Bu
nJ
pL
kQ
JE
+XJ
JQ
-LG
Vz
US
Qu
@@ -41577,25 +47111,24 @@ Wm
Wm
Wm
Wm
-Wm
aa
+zy
aa
-bw
-aa
-yM
+sP
aa
aa
aa
HN
-at
-at
-at
-at
-at
-SG
-Yz
-kD
-co
+nL
+MC
+SS
+SS
+ke
+nV
+cN
+FW
+it
+Mu
Ye
Ye
Ye
@@ -41606,47 +47139,48 @@ Ye
Ye
Ye
Ye
-xs
-nS
-pJ
-fq
-fq
-fq
-fq
-fq
-fq
-fq
-fq
-fq
-Yg
+Oz
+GY
+Lg
+oa
+Uw
+jr
+dn
+yp
+Uw
+Ot
+Bv
+Kk
+uI
+Zm
cj
-Np
+qn
cK
ZZ
QJ
-SK
-iQ
-qk
-yV
-VC
+Zm
+Tx
+gl
+yS
+vx
dP
Qq
-Wa
+Tg
vi
-AI
+Rn
GI
-CZ
-AX
-FN
-eh
-uc
-EI
+fc
+ZE
+PB
+bF
+TW
+PY
SA
us
-kQ
+Co
rd
-JQ
-JQ
+XJ
+Mv
hE
US
zx
@@ -41779,77 +47313,77 @@ Wm
Wm
Wm
Wm
-Wm
aa
-aa
-bw
-bw
-yM
-bw
-bw
-bw
+zy
+sP
+sP
+sP
+sP
+sP
HN
-at
-at
-at
-at
-at
-SG
-Yz
-RS
-xs
-xs
-co
-xs
-co
-co
-co
-co
-xs
-co
-xs
-xs
-Lg
-oa
-fq
+lG
+Mk
+Wn
+Wn
+ql
+VX
+bv
+om
+Go
+Oz
+Oz
+Mu
+Oz
+Mu
+Mu
+Mu
+Mu
+Oz
+Mu
+Oz
+Oz
+Hr
+zd
+nu
+Uw
IG
Oe
-YE
-Qp
+mF
+Uw
QK
-Bv
+TV
TV
Yu
-Yg
-Yg
-jJ
+Zm
+ZT
+SQ
Zk
dp
OQ
-SK
-Uc
-Uc
+Zm
+xW
+gl
qp
-VC
+RG
dT
-VC
+TL
OK
Rz
-lA
+RD
Wh
-CZ
-oP
-Rf
-DD
-wF
-qZ
+fc
+TU
+xe
+PB
+Mg
+PY
wF
yD
vB
qE
mE
-vZ
-xr
+ym
+wd
tI
am
Kq
@@ -41981,76 +47515,76 @@ Wm
Wm
Wm
Wm
-Wm
aa
+zy
aa
-bw
-aa
-yM
+sP
aa
aa
aa
HN
-at
-at
-at
-at
-at
-SG
+nL
+fs
+AY
+xD
+ke
+tl
+cN
+FW
Yz
MD
XI
-Un
-Un
-Un
-Un
-oo
-Un
-Un
+Sx
+Jb
JA
+JA
+JA
+JA
+Jb
+Gw
Un
-YN
-xs
-Lg
-tb
-fq
-fU
-sh
-fq
+dZ
+ut
+ZF
+GN
bt
-bL
-Mu
-bL
+XT
+sh
+VZ
+Of
+Pr
+Ee
+cy
bR
-qx
-Yg
-YD
-wV
-YD
+Zm
KL
-Yg
-Yr
-mG
+dc
+wV
+dc
+KL
+Zm
+sb
+Zr
LK
-VC
-VC
-VC
-VC
-VC
+vx
+oY
+eV
+eV
+KS
sH
-VC
-CZ
-UJ
-eu
-iS
-vZ
-vZ
-vZ
+yG
+fc
+ZE
+wc
+ZO
+Jx
+pa
+Eu
Lz
-vB
+qH
PZ
-CZ
-vZ
+XJ
+an
al
UU
LN
@@ -42183,77 +47717,77 @@ Wm
Wm
Wm
Wm
-Wm
aa
+zy
aa
-bw
-aa
-yM
+sP
aa
aa
aa
HN
-at
-at
-at
-at
-at
-wf
-Yz
+nL
+MC
+SS
+dd
+EO
+ry
+cN
+vb
RZ
-ah
-JD
+RZ
+RZ
+dM
Pk
-Og
-Nw
+GC
+CS
+OE
+RZ
qu
-Nw
-Nw
Up
JD
-Nw
-Hs
-Zg
-iY
-fq
-Td
-Td
-fq
-NJ
+Oz
+pb
+rY
+gN
+Uw
+Uw
+Uw
+Uw
+Uw
He
Qd
-mV
+CG
bV
-FS
-Yg
-Gs
+Zm
+Zm
+Zm
bI
-bq
-Wk
-Xj
-Ks
-XQ
+Zm
+Zm
+Zm
+xW
+gl
UN
-NB
+vx
dX
TM
bs
PH
-Br
kj
-CZ
-FC
-QR
-qO
-vZ
-kw
-vZ
-ze
-vB
-mw
-CZ
+kj
+fc
+fc
+fc
+fc
+fc
+XJ
+XJ
+XJ
+AZ
+XJ
+XJ
SI
-ru
+wd
WH
bT
AJ
@@ -42385,77 +47919,77 @@ Wm
Wm
Wm
Wm
-Wm
+aa
+zy
+aa
+sP
+aa
aa
aa
-bw
-bw
-yM
-bw
-bw
-bw
HN
-at
-at
-at
-at
-at
-wf
+lG
+Pi
+fe
+WG
+lr
+bP
+cN
+qz
yW
-Tw
+VN
+vm
+VU
+vm
+vm
+vm
+vm
+vm
+vm
+vm
+vm
+vm
xs
+Xl
+UT
xs
-xs
-xs
-xs
-xs
-xs
-xs
-xs
-xs
-xs
-xs
-rY
-iY
-lu
-UV
-UV
-bC
-Pr
-TJ
-HH
-lT
+bm
+gu
+Hs
+Uw
bX
-bE
-Yg
-xw
-xw
-xw
-xw
-Yg
+bX
+bX
+bX
+Zm
+Zm
+eD
+XC
+hB
+Zm
+Zm
pN
-ut
-UN
-NB
+XH
+kd
+vx
mj
ej
-is
-is
+pi
+Jy
Fp
sz
-CZ
+US
iL
eu
iS
-vZ
-vZ
-vZ
-rg
+dq
+Xp
+Ff
+Ns
uE
EA
-CZ
+US
Xo
-wd
+tU
US
Sd
iI
@@ -42587,24 +48121,24 @@ Wm
Wm
Wm
Wm
-Wm
aa
-aa
-bw
-aa
-yM
-aa
-aa
-aa
-HN
-iX
-iX
-iX
-iX
-iX
-iX
+PP
+ea
+ea
+ea
+ea
+ea
+Wu
+qb
aE
aE
+aE
+aE
+aE
+aE
+aE
+aE
+vm
vm
ky
AD
@@ -42616,46 +48150,46 @@ AE
vs
lI
lI
-xs
+vm
AU
-iY
-LR
-TN
-TN
+Ry
+YM
mu
-TN
-KO
-VV
-FD
-ka
+mu
+mu
+Ls
+sC
+sC
+sC
+sC
cn
-cm
-yg
+NM
+sC
Hu
-ti
-ll
-Ug
-Jp
-vd
+sC
+sC
+vj
+HY
+vM
KY
-NB
+vx
XB
-bB
-fj
+Dd
+Dd
bS
xM
Nz
-CZ
+US
HF
-QR
-ns
-ox
+rz
+OT
+wG
sm
ox
vF
-vB
+sl
YF
-CZ
+US
Mq
wd
WX
@@ -42789,24 +48323,24 @@ Wm
Wm
Wm
Wm
-Wm
aa
+zy
aa
-bw
-aa
-yM
+sP
aa
aa
aa
HN
-cs
+qb
+oz
+BM
cP
eJ
Oi
-fC
-fN
-gf
-tM
+xR
+hb
+fV
+hf
zt
qo
GZ
@@ -42828,36 +48362,36 @@ VP
VP
VP
XR
-kb
QW
-jo
-QB
-QB
-QB
+QW
+QW
+QW
+QW
QB
Te
-hB
-xz
+Te
+Te
+Te
Ma
Fg
-VC
+QO
Mj
-yS
-eg
+Dd
+Dd
is
-Fp
+bB
KD
-CZ
+ZH
Zo
-rz
-oK
-Kt
+Pn
+ns
+ed
WE
-bZ
-Jt
+KG
+bx
sl
Jo
-CZ
+US
SH
Fn
US
@@ -42991,75 +48525,75 @@ Wm
Wm
Wm
Wm
-Wm
+aa
+zy
+aa
+sP
+aa
aa
aa
-bw
-bw
-yM
-bw
-bw
-bw
HN
-cs
+iX
+Ij
gR
-lK
+gR
+WJ
pM
-hb
-hb
-XG
+fC
+ff
+aE
pe
+Bq
vm
-vm
-af
+Fl
FH
lV
FH
lV
FH
-Uc
+FH
hL
-xs
-xs
+vm
+vm
uV
-iY
-iy
+Ko
+kb
+KM
+vY
+dG
vY
vY
-JO
vY
-oB
-Ls
-mh
-mh
-fY
-NG
+vY
+vY
+dG
+vY
NG
cS
-vR
-WN
-QA
eP
-Vf
-Nb
-Kn
-Bl
+qk
+uk
+uk
+Uq
+YU
+Hi
+Bk
uW
Bl
bJ
og
Bp
-CZ
+US
Ii
-hT
+dB
nj
-kQ
-Ot
-FN
+ox
+Nb
+ox
UG
-kQ
+XQ
qt
-CZ
+US
xu
MX
US
@@ -43193,26 +48727,26 @@ Wm
Wm
Wm
Wm
-Wm
aa
+zy
aa
-bw
-aa
-yM
+sP
aa
aa
aa
HN
-iX
-df
-UB
+fR
+FG
+VL
+VL
+Ik
+hn
+Om
by
-by
-by
-by
-YL
-gT
-vm
+aE
+BA
+hv
+BA
ai
fJ
fJ
@@ -43225,44 +48759,44 @@ cE
Vm
Ie
JJ
-lu
+iy
UV
UV
WD
UV
-cV
-Zi
-QU
-Gj
-Gj
-Gj
-QU
-dL
+UV
+UV
+UV
+UV
+WD
+UV
+UV
+oB
Ou
-Ji
-co
-Ou
-rk
-SQ
-VC
-NB
-NB
-NB
-mM
-mM
-mM
-CZ
-CZ
-CZ
-CZ
+sB
+AI
+AI
+MI
+en
+fj
+lg
+lg
+lg
+vx
+vx
+vx
+US
+Ln
+UA
+SB
Zb
-CZ
-Kd
-CZ
-CZ
-CZ
-CZ
-CZ
+In
+Zb
+Aw
+te
+ce
+US
+US
NO
US
US
@@ -43395,26 +48929,26 @@ Wm
Wm
Wm
Wm
-Wm
-aa
-aa
-bw
-aa
-yM
aa
+TE
+Mp
+Mp
+qX
aa
aa
HN
-cs
-lK
-eQ
+iX
+Hf
+Ai
Ol
Ol
Ol
Ai
-hf
-lK
-FV
+Ws
+hk
+EU
+Ox
+BA
El
fJ
fJ
@@ -43424,45 +48958,45 @@ fJ
Uc
uk
cb
-yh
+JS
gl
-iY
-lu
-UV
+ag
+AG
UV
WD
+YE
+WD
+kt
+kt
+kt
+WD
+YE
+WD
UV
-cV
-BK
-Am
-OM
-KF
-bm
-qD
-sI
-Ou
-oY
-co
-Ou
-rk
-Sx
-Oz
-xi
-xi
-Tc
-aH
-ZS
-aH
-dB
-dB
+in
+TJ
+uk
+uk
+uk
+Uq
+LY
+qv
+ZD
+ZD
+jX
+Dw
+zs
+Dw
VW
-Mg
-dB
+VW
+VW
+Cb
+wJ
kH
wJ
-MW
-Aw
-XA
+UJ
+dB
+dB
mI
Hp
NZ
@@ -43597,26 +49131,26 @@ Wm
Wm
Wm
Wm
-Wm
-aa
-aa
-bw
aa
+TE
yM
-yM
-yM
-yM
+yF
+Jv
+sP
+sP
HN
-cs
-Tf
-eY
-aT
+iX
+YL
+FV
KZ
+eY
KZ
gg
-Fl
+XG
hk
-vm
+MT
+pn
+BA
bz
fJ
fJ
@@ -43628,41 +49162,41 @@ uk
hY
kF
tR
-dM
+iY
PM
WD
-WD
-WD
-WD
-WD
-xZ
-jB
OI
Va
-OI
-Fb
-Lr
+GV
+NN
+Ak
+VA
+LZ
+Va
+me
+WD
+GE
Ou
-Ji
-co
-Tx
-rk
uk
-yh
+uk
+uk
+rk
+fv
+JS
uk
uk
fG
US
-ZS
+Gk
US
KB
-Qz
-Qz
+oF
Bc
+vH
oQ
aw
nU
-px
+ha
Gv
px
gs
@@ -43799,26 +49333,26 @@ Wm
Wm
Wm
Wm
-Wm
-aa
-aa
-bw
-aa
+MQ
yM
-aa
+SL
+SL
+pP
aa
aa
HN
-iX
-lK
-eQ
+fR
+Hf
+Ai
GG
GG
qK
Ai
-BM
-hn
-FV
+Ws
+hk
+HM
+zE
+BA
El
fJ
fJ
@@ -43828,41 +49362,41 @@ fJ
Uc
uk
Dy
-yh
+JS
gl
iY
-lu
-UV
+AG
UV
WD
+bC
+WD
+sI
+sI
+sI
+WD
+bC
+WD
UV
-UV
-UV
-vY
-vY
-dG
-vY
-vY
-cV
-Ou
-Ji
-co
+in
Ou
+uk
+uk
+uk
rk
-rA
-QA
+WN
+aP
RJ
RJ
BW
aH
-ZS
+Gk
EJ
Ns
BJ
Qz
-pr
Qz
Qz
+EE
Qz
Qz
HO
@@ -44000,7 +49534,6 @@ Wm
Wm
Wm
Wm
-Wm
Uj
KN
KN
@@ -44009,18 +49542,19 @@ KN
KN
KN
KN
-KN
bU
-cs
-oz
-WJ
-lK
-pB
-fR
-sK
-IW
-hv
-vm
+iX
+Hn
+Wq
+Wq
+Wq
+Wq
+Wq
+ln
+aE
+BA
+iR
+BA
cB
fJ
fJ
@@ -44033,7 +49567,7 @@ Ei
Vm
GO
Yb
-lu
+AG
UV
UV
WD
@@ -44045,31 +49579,31 @@ UV
WD
UV
UV
-cV
+in
Ou
-zo
-Oz
+YD
op
-rk
-CN
-nu
-lg
-lg
-Wt
-vx
-vx
-vx
+op
+iU
+fG
+xw
+xw
+xw
+xw
+SK
+SK
+SK
US
ix
-Jv
-xL
+Ns
+Ns
hz
nk
hz
Ns
IJ
Qg
-fx
+gI
fx
fx
fx
@@ -44201,10 +49735,8 @@ Wm
Wm
Wm
Wm
-Wm
-Wm
-HN
-at
+Uj
+bU
at
at
at
@@ -44213,62 +49745,64 @@ at
at
at
at
+qb
+Tf
cs
dl
fb
fz
+wU
+pB
aE
-aE
-aE
-aE
-aE
+sK
+yd
vm
-af
+Fl
FH
FH
FH
FH
-FH
-Uc
-Uc
-Uc
-Uc
+ac
+ac
+ac
+ac
+ac
UH
JB
-lu
+AG
UV
-WD
-sF
-WD
+UV
+sD
+TN
UV
UV
UV
-WD
-sF
-WD
+TN
+sD
UV
-cV
+UV
+in
Ou
+mG
uk
-uL
-fI
-kX
-Dm
-Hi
+uk
+rk
+Ji
+xw
rv
Rw
nQ
JU
ca
UF
-Dg
+Bh
Dg
ZP
Ll
-ZP
-ZP
-ZP
-ZP
+Ll
+Ll
+Ll
+Ll
JP
Dg
gI
@@ -44402,8 +49936,6 @@ Wm
Wm
Wm
Wm
-Wm
-Wm
Uj
bU
at
@@ -44414,56 +49946,58 @@ at
at
at
at
-at
-em
-vm
-vm
-vm
-vm
-Cy
-vH
-DJ
-DJ
+xo
+qb
+aE
+aE
+aE
+aE
+aE
+aE
+gf
+aE
+df
+aT
HV
VD
bN
-FH
+Dp
Nt
aI
-cp
+ac
wv
tg
et
-cT
-gl
-dM
-PM
-WD
-BU
-jY
+RK
+aK
+iY
+AG
+UV
+in
+BK
+qD
+AG
+UV
+in
yJ
-WD
-WD
-WD
-BU
jY
-yJ
-WD
-GE
+AG
+UV
+in
Ou
-WN
-QA
+uk
+sv
qC
-Uq
-CN
-ra
+rk
+Ji
+xw
Ov
-uZ
-uZ
-uZ
-uZ
+LW
+rR
+FL
+bq
lE
-Dg
+Bh
Xz
aS
Ag
@@ -44604,66 +50138,66 @@ Wm
Wm
Wm
Wm
-Wm
-Wm
HN
at
at
at
-at
-at
-at
-at
-at
+bk
+bk
+bk
+Np
+Np
+Lk
+Lk
em
-em
-em
-Lv
-lI
+Yd
+PR
+HQ
+HQ
Fh
-RX
-EG
-Hf
+HQ
+HQ
+Ba
DX
GK
vm
Xc
xm
-FH
-Ia
-bj
+eI
+eI
+eI
ar
av
aQ
ey
cT
-gl
-iY
-lu
+cp
+ag
+AG
UV
-WD
+in
+sF
+JO
+AG
+UV
+in
+BU
Dt
-WD
+AG
UV
-UV
-UV
-WD
-Dt
-WD
-UV
-cV
-Ou
-Ji
-co
-Ou
+in
+TJ
+uk
+Dc
+ue
Uq
-oF
-vx
+MG
+Yg
Sy
-uZ
-uZ
-uZ
-uZ
+iQ
+fB
+fH
+Br
uZ
Bh
XS
@@ -44806,68 +50340,68 @@ Wm
Wm
Wm
Wm
-Wm
-Uj
-bU
-at
-at
-at
+HN
at
at
+bk
+EC
+EC
+EC
+bk
at
at
at
em
Ip
-Li
-DJ
-DJ
-DJ
-DJ
-sJ
-FH
-FH
-FH
-FH
+DQ
+DQ
+DQ
+DQ
+DQ
+DQ
+DQ
+DQ
+DQ
+DQ
Kc
-ml
-FH
+yd
+au
Eo
-bj
-RK
-QM
+aU
+ac
+aJ
aR
QH
aW
xk
iY
-lu
-UV
-UV
-WD
-UV
-UV
-UV
-UV
-UV
-WD
-UV
-UV
-cV
+gn
+TN
+KO
+cm
+Wy
+gn
+TN
+KO
+JN
+xz
+LR
+TN
+KO
Ou
-oY
+uk
co
-Ou
+EB
Uq
dh
-vx
+Yg
ek
tc
-RD
+Gs
Wr
RV
Bf
-Dg
+Bh
Yv
Uu
YG
@@ -45008,68 +50542,68 @@ Wm
Wm
Wm
Wm
-Wm
HN
at
at
+bk
+EC
+Ep
+EC
+bk
at
at
-at
-at
-at
-at
-at
+cq
em
-EG
-DQ
-DQ
-DQ
-DQ
-DQ
-DQ
+Ip
DQ
+MK
+oM
+kJ
+CU
+ga
+aO
rM
Ki
-FH
+DQ
rU
Du
pO
LM
ld
-au
-aO
-aU
-PY
-cT
-gl
-iY
-LR
-TN
-TN
-sD
-TN
-TN
-TN
-TN
-TN
-sD
-TN
-TN
-KO
-Ou
-Ji
-co
-Tx
-CT
-Do
-vx
-Fc
+ac
+ac
+ac
+ac
+ac
+kA
+ka
+QU
+hN
+mh
+FS
+Xd
+vt
+Td
+vt
+jo
+bL
+ZW
+zW
+Nx
+sJ
+Zv
+uk
+uk
+Uq
+fG
+Yg
+Yg
sY
-TL
-Dc
-Vj
-Vj
-Dg
+Yg
+xw
+xw
+xw
+Bh
qw
Hl
Wf
@@ -45210,73 +50744,73 @@ Wm
Wm
Wm
Wm
-Wm
HN
at
at
+bk
+EC
+xV
+EC
+bk
at
+cq
at
-at
-at
-at
-at
-at
-aK
-EG
+em
+gK
DQ
EZ
oG
-kJ
+zi
rV
Bg
-DQ
+zf
bQ
Ho
-FH
-Eu
-tX
-FH
-QM
-bp
-cv
+DQ
AV
-Ba
-eI
-cT
-gl
+tX
+ml
+ml
+ml
+ml
+ml
+ml
+ml
+af
+lH
DV
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-xi
-vb
-Ji
-co
-Ou
+Jp
+OZ
+vR
+Ug
+fY
+qx
+qx
+qx
+VV
+Pv
+GM
+Ey
+ti
+bE
+ve
+mM
+mM
Uq
-MG
-vx
+zo
+uL
MA
Rk
-Rk
-SJ
-sB
-Hr
-Dg
+XY
+YC
+xi
+Tc
+Bh
ao
DG
fT
ci
-fT
+wb
ci
fT
Fs
@@ -45412,75 +50946,75 @@ Wm
Wm
Wm
Wm
-Uj
-bU
+HN
at
+bk
+EC
+EC
+VB
+EC
+EC
+bk
at
-at
-at
-at
-at
-at
-at
-at
-aK
+cq
+em
EG
DQ
Nf
Bs
-CR
+Xa
Dn
-kN
DQ
-Gb
+DQ
+cv
yy
-FH
-FH
+DQ
+vm
FE
-FH
-ac
-ac
-ac
-ac
-ac
-ac
-ac
+vm
+vm
+vm
+vm
+vm
+vm
+vm
+vm
Ig
-gN
+iY
+oo
+Vh
+vd
+fq
+uy
+dL
+nO
+KH
+FD
+fq
+th
zw
-zw
-zw
-zw
-zw
-zw
-zw
-zw
-zw
-zw
-zw
-zw
-zw
-ie
-me
-uL
+HH
Ou
+uK
+lL
+wo
jq
-Zv
-vx
+Wk
+Hh
wN
FR
-uZ
jO
-RD
-Rn
-Dg
+jO
+GJ
+zq
+cA
ZB
wu
cf
-hF
er
er
er
+cf
fn
TK
Sa
@@ -45616,16 +51150,16 @@ Wm
Wm
HN
at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-aK
+bk
+EC
+QR
+lS
+Vl
+EC
+bk
+Cn
+dW
+em
EG
DQ
Nd
@@ -45650,32 +51184,32 @@ hU
uX
oe
AG
-LU
-LU
-LU
+mV
+vY
+TG
Sh
+yg
LU
LU
-LU
-Sh
-LU
-LU
-LU
-VA
-Ou
+xZ
+MY
+vY
+mV
+in
+TJ
oN
Rp
uR
PJ
-Ww
+WN
aP
Ci
wR
-wR
-Oj
-Hv
+tJ
+VK
+vk
Dx
-Dg
+Bh
ap
bc
bc
@@ -45818,27 +51352,27 @@ Wm
Uj
bU
at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-aK
-EG
+bk
+EC
+Dq
+FY
+WC
+EC
+bk
+bk
+bk
+bk
+hl
DQ
Rb
CR
-CR
-Gi
-CR
-DT
-LC
-BX
-BX
+mg
+HR
+Li
+LQ
+Gb
+pW
+NL
lo
he
mo
@@ -45848,35 +51382,35 @@ he
he
he
he
-QD
-eP
-zW
-Dk
-MY
-NV
-MY
-MY
-MY
-DR
-MY
-NV
-MY
-MY
-MY
-in
+BX
+YX
+WK
+PM
+WD
+kt
+TG
+tb
ZQ
+DR
+DR
+NV
+MY
+UV
+YE
+in
+AR
Od
Tu
Fz
RJ
DZ
-vx
-Oa
+VC
+VC
Mt
-UY
-rr
-kd
-Rk
+VC
+NB
+NB
+NB
xx
xx
Zj
@@ -46020,27 +51554,27 @@ Uj
bU
at
at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-aK
+bk
+EC
+WP
+FY
+ZG
+EC
+EC
+EC
+EC
+EC
EG
DQ
Fx
-CR
-CR
-Gi
-HR
-DQ
+yt
+wz
+yt
+kN
+XX
Gb
-BX
-BX
+FN
+NL
OV
po
po
@@ -46053,16 +51587,16 @@ po
po
mJ
Ht
-rl
+AG
+fU
+IC
TG
-rl
-TG
-rl
+Sz
JG
-rl
-TG
-rl
-TG
+Fb
+Zg
+Vc
+fq
xs
xs
xs
@@ -46072,13 +51606,13 @@ rs
Yh
wt
CB
-vx
-Vj
-Vj
+VC
+pl
Vj
lF
-Vj
-Vj
+lF
+kL
+Yr
FT
at
at
@@ -46222,27 +51756,27 @@ HN
at
at
at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-aK
-Vl
+bk
+EC
+LC
+tr
+WT
+EC
+XF
+EC
+Qf
+EC
+cd
DQ
-XO
-CR
-CR
-Gi
-wz
+Wv
+Wv
+bp
+hy
+hy
DQ
Cx
-BX
-BX
+FN
+YZ
Be
po
wX
@@ -46252,19 +51786,19 @@ DB
Hm
Po
Hy
-tF
-Ee
+po
+im
zZ
-YB
-Gx
-Gx
-Gx
-hN
-Gx
-Gx
-Gx
-OZ
-YM
+ll
+ll
+ll
+fq
+fq
+fq
+fq
+fq
+fq
+fq
xs
UV
UV
@@ -46274,11 +51808,11 @@ rs
sc
la
Nj
-vx
+VC
vn
mS
-yr
-XY
+bg
+Wa
wT
bg
Vi
@@ -46424,48 +51958,48 @@ HN
at
at
at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-aK
-EG
+bk
+EC
+EH
+IO
+zJ
+Jh
+sf
+Ym
+IS
+es
+jz
DQ
CJ
-CR
+Wv
Zx
-Bb
+hy
Ca
DQ
Kp
-Hq
-zi
+FN
+BX
wW
po
JC
-wx
+ZV
IK
IK
CF
-wx
+jB
gG
-wr
-im
+tF
+Gj
Qm
-rl
-rl
-rl
-rl
-rl
-rl
-rl
-rl
-Dj
+jJ
+SD
+SD
+SD
+NJ
+SD
+SD
+SD
+hI
YJ
xs
UV
@@ -46476,13 +52010,13 @@ rs
BI
tZ
Qs
-vx
+VC
GH
ri
to
-iU
-Dd
-Dd
+Wa
+Dm
+to
Vi
at
at
@@ -46626,17 +52160,17 @@ HN
at
at
at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-em
-EG
+bk
+EC
+Zh
+lK
+tm
+EC
+sM
+EC
+bo
+EC
+xT
DQ
DQ
DQ
@@ -46644,46 +52178,46 @@ DQ
DQ
DQ
DQ
-XP
-XP
-XP
-XP
+Ft
+FN
+BX
+KK
po
Pu
-wx
+ZV
fL
fL
fL
wx
-JN
-wr
-wK
+ZV
+po
+Am
WQ
Gr
Gr
-Vh
-sd
-Eb
-PS
-pj
-rl
+Gr
+Gr
+Gr
+Gr
+Gr
+Gr
Dj
xQ
xs
Em
-uk
-uk
+sk
+sk
CP
rs
ZR
qd
NT
-vx
-Vj
+VC
+So
yO
-Vj
-KS
-Dd
+IE
+Wa
+Dz
Cc
Vi
at
@@ -46828,51 +52362,51 @@ HN
at
at
at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-em
+bk
+EC
+qj
+lK
+uF
+EC
+EC
+EC
+EC
+EC
Fq
-Gn
+QM
rH
+bj
DJ
-DJ
-DJ
-DJ
-DJ
-rH
Os
-Lk
+eb
+Iy
+rg
+xH
+Pb
CY
WF
qT
-CM
+vN
WW
Dr
WW
CM
ZV
-wr
-Vb
-HU
-Tn
-Tn
-mQ
-Tn
-Tn
-nM
-Mh
-rl
+po
+wK
+lT
+Lr
+Lr
+ie
+sd
+Eb
+PS
+pj
+Gr
hS
xC
be
-Te
+Zz
gz
VG
AH
@@ -46880,13 +52414,13 @@ rs
cX
zR
Sf
-vx
+VC
Yf
nv
-Vj
Qj
-RD
-RD
+Qj
+zg
+lA
Vi
at
at
@@ -47030,64 +52564,64 @@ HN
at
at
at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-em
-em
-em
-em
-aK
-aK
-aK
-aK
+bk
+EC
+ge
+bl
+qP
+EC
+bk
+bk
+bk
+bk
em
em
em
em
em
-wr
+em
+em
+em
+OF
+ze
+Hq
+iT
+po
qr
FK
-FK
-FK
-FK
-FK
+lx
+lx
+lx
+gZ
NX
-wr
-Cu
-Cu
-yP
-yP
-yP
-Cu
-Cu
-KA
-wC
-rl
-Ib
+po
+Vb
+HU
+Tn
+Tn
+mQ
+Tn
+Jr
+nM
+Mh
+Gr
+Dj
cG
xs
UP
-ve
+rK
nw
Bd
rs
TO
Km
lt
-vx
+VC
sQ
EK
-Vj
+YW
kR
-RD
+Ex
ZL
FT
at
@@ -47232,6 +52766,13 @@ HN
at
at
at
+bk
+EC
+EC
+Ve
+EC
+EC
+bk
at
at
at
@@ -47242,18 +52783,11 @@ at
at
at
at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
-at
+Ml
+HJ
+HJ
+HJ
+HJ
wr
wr
wr
@@ -47263,17 +52797,17 @@ QI
wr
wr
wr
-at
-at
-at
-at
-at
-at
Cu
-rD
-gO
-gu
-Sp
+Cu
+yP
+yP
+yP
+Cu
+Cu
+KA
+wC
+Gr
+Dj
wq
wq
Iv
@@ -47434,6 +52968,13 @@ HN
at
at
at
+bk
+EC
+ef
+np
+uU
+EC
+bk
at
at
at
@@ -47464,18 +53005,11 @@ at
at
at
at
-at
-at
-at
-at
-at
-at
-at
-yP
-CH
-KH
-rl
-YQ
+Cu
+rD
+gO
+MB
+eU
wq
hH
mD
@@ -47636,13 +53170,13 @@ HN
at
at
at
-at
-at
-at
-at
-at
-at
-at
+bk
+EC
+QV
+wf
+UI
+EC
+bk
at
at
at
@@ -47675,8 +53209,8 @@ at
at
yP
CH
-IL
-rl
+Qp
+Gr
YQ
wq
cY
@@ -47838,6 +53372,15 @@ HN
at
at
at
+bk
+EC
+CZ
+lu
+KI
+EC
+bk
+at
+at
at
at
at
@@ -47852,15 +53395,6 @@ at
at
at
at
-En
-En
-En
-En
-En
-En
-En
-En
-En
at
at
at
@@ -47878,7 +53412,7 @@ at
yP
OR
pk
-rl
+Gr
YQ
wq
jI
@@ -48040,6 +53574,13 @@ Sb
TC
at
at
+bk
+EC
+cL
+JT
+zQ
+EC
+bk
at
at
at
@@ -48048,24 +53589,17 @@ at
at
at
at
+Sv
+Sv
+Sv
+Sv
+Sv
+Sv
at
at
at
at
at
-En
-En
-Ml
-ef
-En
-Ml
-En
-ef
-Ml
-En
-En
-at
-at
at
at
at
@@ -48080,7 +53614,7 @@ at
yP
ZC
IL
-rl
+Gr
Ja
wq
jS
@@ -48242,6 +53776,13 @@ Wm
Sb
TC
at
+bk
+EC
+EC
+EC
+EC
+EC
+bk
at
at
at
@@ -48249,27 +53790,20 @@ at
at
at
at
+Sv
+Sv
+Sv
+Sv
+Sv
+Sv
+Sv
+Sv
at
at
at
at
at
at
-En
-Ml
-sf
-pW
-pW
-pW
-ZG
-pW
-Sg
-Ml
-En
-at
-at
-at
-at
at
at
at
@@ -48282,7 +53816,7 @@ at
yP
uH
RO
-rl
+Gr
TT
wq
wQ
@@ -48445,6 +53979,11 @@ Wm
Sb
TC
at
+bk
+bk
+bk
+bk
+bk
at
at
at
@@ -48453,23 +53992,18 @@ at
at
at
at
+Sv
+Sv
+Sv
+Sv
+Sv
+Sv
+Sv
+Sv
at
at
at
at
-En
-WC
-qj
-VB
-Px
-VB
-Px
-VB
-WP
-zJ
-En
-at
-at
at
at
at
@@ -48484,7 +54018,7 @@ at
Cu
kc
nK
-rl
+Gr
hp
wq
wq
@@ -48659,17 +54193,17 @@ at
at
at
at
-En
-En
-bk
-VB
-VB
-VB
-VB
-VB
-WP
-En
-En
+at
+Sv
+Sv
+Sv
+Sv
+Sv
+Sv
+Sv
+Sv
+at
+at
at
at
at
@@ -48686,14 +54220,14 @@ at
Cu
SE
zP
-rl
+Gr
hp
Fo
Oh
fM
Zs
mN
-SD
+hX
bG
GT
Lq
@@ -48861,17 +54395,17 @@ at
at
at
at
-En
-En
-bl
-VB
-VB
-VB
-VB
-es
-Ft
-En
-En
+at
+Sv
+Sv
+Sv
+Sv
+Sv
+Sv
+Sv
+Sv
+at
+at
at
at
at
@@ -48886,9 +54420,9 @@ at
yP
yP
yP
-pn
+Eg
sa
-rl
+Gr
if
ht
lX
@@ -49063,17 +54597,17 @@ at
at
at
at
-En
-En
-bo
-VB
-VB
-VB
-VB
-VB
-WP
-En
-En
+at
+Sv
+Sv
+Sv
+Sv
+Sv
+Sv
+Sv
+Sv
+at
+at
at
at
at
@@ -49090,7 +54624,7 @@ Yc
KE
Wx
IY
-rl
+Gr
Lo
Fo
Hw
@@ -49265,17 +54799,17 @@ at
at
at
at
-En
-WC
-qj
-VB
-Px
-VB
-Px
-VB
-WP
-zJ
-En
+at
+Sv
+Sv
+Sv
+Sv
+Sv
+Sv
+Sv
+Sv
+at
+at
at
at
at
@@ -49292,7 +54826,7 @@ Kv
pU
Wx
hW
-rl
+Gr
Jn
Fj
Fj
@@ -49466,18 +55000,18 @@ Tr
Tr
Tr
Tr
+Tr
TC
-En
-Ml
-np
-Jh
-cL
-dr
-Jh
-Jh
-Zh
-Ml
-En
+Sv
+Sv
+Sv
+Sv
+Sv
+Sv
+Sv
+Sv
+at
+at
at
at
at
@@ -49494,7 +55028,7 @@ yP
yP
Eg
Uf
-rl
+Gr
Lo
Fj
SY
@@ -49667,19 +55201,19 @@ Wm
Wm
Wm
Wm
-Wm
+pw
+aa
HN
-En
-En
-Ml
-xV
-En
-Ml
-En
-xV
-Ml
-En
-En
+at
+Sv
+Sv
+Sv
+Sv
+Sv
+Sv
+at
+at
+at
at
at
at
@@ -49696,7 +55230,7 @@ at
Cu
eS
iJ
-rl
+Gr
Lo
Fj
pH
@@ -49869,18 +55403,18 @@ Wm
Wm
Wm
Wm
-Wm
-HN
+zy
+aa
+Sb
+TC
+at
+at
+at
+at
+at
+at
+at
at
-En
-En
-En
-En
-En
-En
-En
-En
-En
at
at
at
@@ -49898,7 +55432,7 @@ at
Cu
kI
Aa
-rl
+Gr
Lo
Fj
aA
@@ -50071,15 +55605,15 @@ Wm
Wm
Wm
Wm
-Wm
-Sb
-Tr
-Tr
-Tr
-Tr
-Tr
-Tr
-TC
+zy
+aa
+aa
+HN
+at
+at
+at
+at
+at
at
at
at
@@ -50100,7 +55634,7 @@ at
yP
kI
nb
-rl
+Gr
Lo
Fj
lf
@@ -50273,14 +55807,9 @@ Wm
Wm
Wm
Wm
-Wm
-Wm
-Wm
-Wm
-Wm
-Wm
-Wm
-Wm
+zy
+aa
+aa
HN
at
at
@@ -50299,10 +55828,15 @@ at
at
at
at
+at
+at
+at
+at
+at
yP
kI
Aa
-rl
+Gr
Lo
Fj
Gg
@@ -50475,14 +56009,9 @@ Wm
Wm
Wm
Wm
-Wm
-Wm
-Wm
-Wm
-Wm
-Wm
-Wm
-Wm
+zy
+aa
+aa
HN
at
at
@@ -50501,10 +56030,15 @@ at
at
at
at
+at
+at
+at
+at
+at
yP
LI
IY
-rl
+Gr
Tq
Fj
Fj
@@ -50677,15 +56211,15 @@ Wm
Wm
Wm
Wm
-Wm
-Wm
-Wm
-Wm
-Wm
-Wm
-Wm
-Wm
+En
+ea
+JY
Sb
+Tr
+Tr
+Tr
+Tr
+Tr
TC
at
at
@@ -50706,12 +56240,12 @@ at
Cu
YT
vO
-rl
+Gr
zk
eZ
eZ
IT
-Om
+rl
zS
uv
at
@@ -50908,7 +56442,7 @@ at
Cu
Cu
Cu
-uv
+Cu
uv
uv
uv
@@ -52506,8 +58040,8 @@ Wm
Wm
Wm
Wm
-HN
-at
+Sb
+TC
at
at
at
@@ -52704,12 +58238,12 @@ Wm
Wm
Wm
Wm
-Uj
-KN
-KN
-KN
-bU
-at
+Wm
+Wm
+Wm
+Wm
+Wm
+HN
at
at
at
@@ -52906,12 +58440,12 @@ Wm
Wm
Wm
Wm
-HN
-at
-at
-at
-at
-at
+Wm
+Wm
+Wm
+Uj
+KN
+bU
at
at
at
@@ -53108,6 +58642,9 @@ Wm
Wm
Wm
Wm
+Wm
+Wm
+Wm
HN
at
at
@@ -53147,9 +58684,6 @@ at
at
at
at
-at
-at
-at
Rh
PF
Wm
@@ -53310,13 +58844,13 @@ Wm
Wm
Wm
Wm
-Sb
-Tr
-Tr
-Tr
-Tr
-Tr
-TC
+Wm
+Wm
+Wm
+HN
+at
+at
+at
at
at
at
@@ -53515,9 +59049,6 @@ Wm
Wm
Wm
Wm
-Wm
-Wm
-Wm
HN
at
at
@@ -53553,6 +59084,9 @@ at
at
at
at
+at
+at
+at
Rh
PF
Wm
@@ -53716,11 +59250,11 @@ Wm
Wm
Wm
Wm
-Uj
-KN
-KN
-KN
-bU
+Wm
+HN
+at
+at
+at
at
at
at
@@ -53918,6 +59452,7 @@ Wm
Wm
Wm
Wm
+Wm
HN
at
at
@@ -53955,7 +59490,6 @@ at
at
at
at
-at
Rh
PF
Wm
@@ -54120,12 +59654,12 @@ Wm
Wm
Wm
Wm
-HN
-at
-at
-at
-at
-at
+Wm
+Sb
+Tr
+Tr
+Tr
+TC
at
at
at
@@ -54322,12 +59856,12 @@ Wm
Wm
Wm
Wm
+Wm
+Wm
+Wm
+Wm
+Wm
Sb
-Tr
-Tr
-Tr
-Tr
-Tr
TC
at
at