From f8063eb4996cd549c06d4492e4de960325f44ced Mon Sep 17 00:00:00 2001
From: Geatish <130587823+Geatish@users.noreply.github.com>
Date: Thu, 11 Jul 2024 17:15:25 +0200
Subject: [PATCH 01/15] Makes you able to butt out cigarettes on people
(#11109)
* butting cigarettes on people
* All mobs and decreased lit time.
decreases its lit time when hitting a mob on non harm intent.
* Final stuff
extra damage when harm intent, and decresed time when attacking with ciggie.
* final push
Moved the code upwards, changed split the def into two procs instead.
---
code/game/objects/items/cigs_lighters.dm | 35 ++++++++++++++++++++++--
1 file changed, 33 insertions(+), 2 deletions(-)
diff --git a/code/game/objects/items/cigs_lighters.dm b/code/game/objects/items/cigs_lighters.dm
index fce19cc26baec..6180c25b71e6d 100644
--- a/code/game/objects/items/cigs_lighters.dm
+++ b/code/game/objects/items/cigs_lighters.dm
@@ -175,8 +175,7 @@ CIGARETTE PACKETS ARE IN FANCY.DM
else
return ..()
-/obj/item/clothing/mask/cigarette/afterattack(obj/item/reagent_containers/glass/glass, mob/user, proximity)
- . = ..()
+/obj/item/clothing/mask/cigarette/proc/dip(obj/item/reagent_containers/glass/glass, mob/user, proximity)
if(!proximity || lit) //can't dip if cigarette is lit (it will heat the reagents in the glass instead)
return
if(istype(glass)) //you can dip cigarettes into beakers
@@ -190,6 +189,38 @@ CIGARETTE PACKETS ARE IN FANCY.DM
else
to_chat(user, "[src] is full.")
+/obj/item/clothing/mask/cigarette/proc/butt(mob/living/M, mob/living/user, proximity)
+ if(!istype(M))
+ return
+ if(HAS_TRAIT(user, TRAIT_PACIFISM))
+ return
+ if(lit && user.a_intent == INTENT_HARM)
+ force = 4
+ var/target_zone = user.get_combat_bodyzone()
+ M.apply_damage(force, BURN, target_zone)
+ qdel(src)
+ var/cig_butt = new type_butt()
+ user.put_in_hands(cig_butt)
+ new /obj/effect/decal/cleanable/ash(M.loc)
+ playsound(user, 'sound/surgery/cautery2.ogg', 25, 1)
+ return
+ if(lit && user.a_intent != INTENT_HARM)
+ smoketime -= 120
+ if(prob(40))
+ src.extinguish()
+ if(src.smoketime <= 0)
+ qdel(src)
+ var/cig_butt = new type_butt()
+ user.put_in_hands(cig_butt)
+ playsound(user, 'sound/items/cig_snuff.ogg', 25, 1)
+
+/obj/item/clothing/mask/cigarette/afterattack(var/target, mob/living/user, proximity)
+ if (istype(target, /mob/living))
+ butt(target, user, proximity)
+ . = ..()
+ else
+ . = ..()
+ dip(target, user, proximity)
/obj/item/clothing/mask/cigarette/proc/light(flavor_text = null)
if(lit)
From e8096bd0e54bd1adec207eb5f91faea426ecc748 Mon Sep 17 00:00:00 2001
From: ss13-beebot <56381746+ss13-beebot@users.noreply.github.com>
Date: Thu, 11 Jul 2024 10:25:26 -0500
Subject: [PATCH 02/15] Automatic changelog generation for PR #11109 [ci skip]
---
html/changelogs/AutoChangeLog-pr-11109.yml | 6 ++++++
1 file changed, 6 insertions(+)
create mode 100644 html/changelogs/AutoChangeLog-pr-11109.yml
diff --git a/html/changelogs/AutoChangeLog-pr-11109.yml b/html/changelogs/AutoChangeLog-pr-11109.yml
new file mode 100644
index 0000000000000..ef3aa807d67d3
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-11109.yml
@@ -0,0 +1,6 @@
+author: Geatish
+delete-after: true
+changes:
+ - tweak: you can now butt cigarettes on other people if you're on harm intent
+ - tweak: cigarettes will have their smoke time reduced and have a chance to get
+ extinguished if attacking on non harm intent
From 1cc868ea210e7e6e39156048ddde83c48b037d4c Mon Sep 17 00:00:00 2001
From: ss13-beebot <56381746+ss13-beebot@users.noreply.github.com>
Date: Thu, 11 Jul 2024 16:03:39 +0000
Subject: [PATCH 03/15] Automatic changelog compile [ci skip]
---
html/changelog.html | 5 +++++
html/changelogs/.all_changelog.yml | 4 ++++
html/changelogs/AutoChangeLog-pr-11109.yml | 6 ------
3 files changed, 9 insertions(+), 6 deletions(-)
delete mode 100644 html/changelogs/AutoChangeLog-pr-11109.yml
diff --git a/html/changelog.html b/html/changelog.html
index ce991e9c63cc6..6893a8804d2bc 100644
--- a/html/changelog.html
+++ b/html/changelog.html
@@ -57,6 +57,11 @@
11 July 2024
+
Geatish updated:
+
+ - you can now butt cigarettes on other people if you're on harm intent
+ - cigarettes will have their smoke time reduced and have a chance to get extinguished if attacking on non harm intent
+
tonty updated:
- crewmembers no longer get cold feet when attempting to piggyback eachother
diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml
index 4864576b40484..82fa9f3ef05e2 100644
--- a/html/changelogs/.all_changelog.yml
+++ b/html/changelogs/.all_changelog.yml
@@ -43520,5 +43520,9 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py.
- rscadd: fixes to fland station
- rscadd: glass tiles to fland station
2024-07-11:
+ Geatish:
+ - tweak: you can now butt cigarettes on other people if you're on harm intent
+ - tweak: cigarettes will have their smoke time reduced and have a chance to get
+ extinguished if attacking on non harm intent
tonty:
- bugfix: crewmembers no longer get cold feet when attempting to piggyback eachother
diff --git a/html/changelogs/AutoChangeLog-pr-11109.yml b/html/changelogs/AutoChangeLog-pr-11109.yml
deleted file mode 100644
index ef3aa807d67d3..0000000000000
--- a/html/changelogs/AutoChangeLog-pr-11109.yml
+++ /dev/null
@@ -1,6 +0,0 @@
-author: Geatish
-delete-after: true
-changes:
- - tweak: you can now butt cigarettes on other people if you're on harm intent
- - tweak: cigarettes will have their smoke time reduced and have a chance to get
- extinguished if attacking on non harm intent
From 6bdb68750b0415f971c2497becafcdc4e06183b0 Mon Sep 17 00:00:00 2001
From: Markus Larsson <82539179+MarkusLarsson421@users.noreply.github.com>
Date: Thu, 11 Jul 2024 21:08:00 +0200
Subject: [PATCH 04/15] Minor Map Fixes (#11092)
* WIP
* wip
* done
* Update RadStation.dmm
* merge conflicts
* missed a table
* engineering insul / locker changes
* missed something?
---
.../LavaRuins/lavaland_surface_seed_vault.dmm | 101 +-
_maps/map_files/BoxStation/BoxStation.dmm | 63 +-
_maps/map_files/CorgStation/CorgStation.dmm | 34 +-
.../map_files/Deltastation/DeltaStation2.dmm | 86 +-
_maps/map_files/EchoStation/EchoStation.dmm | 3483 ++--
_maps/map_files/FlandStation/FlandStation.dmm | 7974 ++++-----
_maps/map_files/KiloStation/KiloStation.dmm | 10 +-
_maps/map_files/MetaStation/MetaStation.dmm | 6882 ++++----
_maps/map_files/RadStation/RadStation.dmm | 14644 ++++++++--------
_maps/shuttles/emergency/emergency_tiny.dmm | 2 +-
.../closets/secure/engineering.dm | 1 +
11 files changed, 16676 insertions(+), 16604 deletions(-)
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_seed_vault.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_seed_vault.dmm
index 0f7fd91ef72a4..6e060c21abb1a 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_seed_vault.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_seed_vault.dmm
@@ -21,15 +21,21 @@
/obj/structure/fermenting_barrel,
/turf/open/floor/grass,
/area/ruin/powered/seedvault)
+"aI" = (
+/obj/effect/turf_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/button/door{
+ id = "lifebring1";
+ pixel_x = -25;
+ pixel_y = 25
+ },
+/turf/open/floor/grass,
+/area/ruin/powered/seedvault)
"aY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
-/obj/machinery/button{
- id = "lifebring";
- pixel_x = 1;
- pixel_y = -32
- },
/obj/machinery/light,
/turf/open/floor/grass,
/area/ruin/powered/seedvault)
@@ -45,7 +51,7 @@
dir = 1
},
/obj/machinery/door/poddoor{
- id = "lifebring"
+ id = "lifebring4"
},
/obj/structure/window/shuttle/survival_pod,
/turf/open/floor/plating,
@@ -193,6 +199,11 @@
/obj/structure/sign/warning/vacuum{
pixel_x = 33
},
+/obj/machinery/button/door{
+ id = "lifebring4";
+ pixel_y = -25;
+ pixel_x = 25
+ },
/turf/open/floor/grass,
/area/ruin/powered/seedvault)
"ji" = (
@@ -548,6 +559,13 @@
},
/turf/open/floor/pod,
/area/ruin/powered/seedvault)
+"yq" = (
+/obj/machinery/door/poddoor{
+ id = "lifebring1"
+ },
+/obj/structure/window/shuttle/survival_pod,
+/turf/open/floor/plating,
+/area/ruin/powered/seedvault)
"yE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -586,11 +604,6 @@
"zb" = (
/obj/effect/mob_spawn/human/seed_vault,
/obj/effect/turf_decal/box,
-/obj/machinery/button{
- id = "lifebring";
- pixel_x = 32;
- pixel_y = -1
- },
/obj/machinery/light{
dir = 4
},
@@ -744,6 +757,13 @@
},
/turf/open/floor/pod,
/area/ruin/powered/seedvault)
+"FJ" = (
+/obj/machinery/door/poddoor{
+ id = "lifebring2"
+ },
+/obj/structure/window/shuttle/survival_pod,
+/turf/open/floor/plating,
+/area/ruin/powered/seedvault)
"FY" = (
/turf/template_noop/closed,
/area/lavaland/surface/outdoors)
@@ -861,6 +881,13 @@
/obj/structure/flora/ausbushes/fullgrass,
/turf/open/floor/grass,
/area/ruin/powered/seedvault)
+"Kj" = (
+/obj/machinery/door/poddoor{
+ id = "lifebring5"
+ },
+/obj/structure/window/shuttle/survival_pod,
+/turf/open/floor/plating,
+/area/ruin/powered/seedvault)
"KA" = (
/obj/structure/railing{
dir = 1
@@ -924,6 +951,11 @@
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/obj/machinery/button/door{
+ id = "lifebring2";
+ pixel_x = 25;
+ pixel_y = 25
+ },
/turf/open/floor/pod,
/area/ruin/powered/seedvault)
"LG" = (
@@ -986,6 +1018,14 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/pod,
/area/ruin/powered/seedvault)
+"Ns" = (
+/obj/machinery/button/door{
+ id = "lifebring3";
+ pixel_x = -25;
+ pixel_y = -25
+ },
+/turf/open/floor/grass,
+/area/ruin/powered/seedvault)
"Ny" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 8
@@ -1193,7 +1233,7 @@
/area/ruin/powered/seedvault)
"Rh" = (
/obj/machinery/door/poddoor{
- id = "lifebring"
+ id = "lifebring3"
},
/obj/structure/window/shuttle/survival_pod,
/turf/open/floor/plating,
@@ -1410,10 +1450,6 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
-/obj/machinery/button{
- id = "lifebring";
- pixel_y = 32
- },
/obj/structure/beebox/unwrenched,
/turf/open/floor/pod/light,
/area/ruin/powered/seedvault)
@@ -1429,6 +1465,11 @@
/obj/structure/sign/warning/vacuum{
pixel_x = 33
},
+/obj/machinery/button/door{
+ id = "lifebring5";
+ pixel_y = 25;
+ pixel_x = 25
+ },
/turf/open/floor/grass,
/area/ruin/powered/seedvault)
@@ -1441,10 +1482,10 @@ ab
ab
FY
FY
-Rh
-Rh
-Rh
-Rh
+yq
+yq
+yq
+yq
FY
FY
ab
@@ -1463,10 +1504,10 @@ ab
FY
FY
dM
-Rh
+yq
wa
Po
-Rh
+yq
dM
FY
FY
@@ -1507,7 +1548,7 @@ dM
MJ
dM
RA
-NH
+aI
kb
WD
NH
@@ -1566,7 +1607,7 @@ FY
"}
(7,1,1) = {"
FY
-Rh
+FJ
fk
NF
mo
@@ -1582,13 +1623,13 @@ Zl
hj
iQ
RR
-bm
+Ns
Rh
FY
"}
(8,1,1) = {"
FY
-Rh
+FJ
fk
lF
JD
@@ -1610,7 +1651,7 @@ FY
"}
(9,1,1) = {"
FY
-Rh
+FJ
zb
Lp
sn
@@ -1725,7 +1766,7 @@ de
de
MJ
GC
-Rh
+Kj
QK
os
Em
@@ -1747,14 +1788,14 @@ GC
NL
aj
GC
-Rh
+Kj
nO
ZS
Wr
UL
ja
KJ
-Rh
+ck
GC
aj
GC
diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm
index 706505768c55b..539125eadea4f 100644
--- a/_maps/map_files/BoxStation/BoxStation.dmm
+++ b/_maps/map_files/BoxStation/BoxStation.dmm
@@ -10446,6 +10446,7 @@
/obj/item/t_scanner,
/obj/item/t_scanner,
/obj/item/t_scanner,
+/obj/item/clothing/gloves/color/yellow,
/turf/open/floor/iron/dark/side{
dir = 8
},
@@ -14489,7 +14490,11 @@
/turf/open/space,
/area/space/nearstation)
"coZ" = (
-/obj/structure/closet/secure_closet/engineering_electrical,
+/obj/structure/table,
+/obj/item/crowbar/large,
+/obj/item/storage/box/lights/mixed,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
/turf/open/floor/iron,
/area/engine/engineering)
"cpa" = (
@@ -14582,10 +14587,10 @@
dir = 8;
pixel_x = 24
},
-/obj/structure/closet/radiation,
/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
dir = 4
},
+/obj/structure/closet/secure_closet/engineering_personal,
/turf/open/floor/iron,
/area/engine/engineering)
"cpR" = (
@@ -14708,7 +14713,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 6
},
-/obj/structure/closet/secure_closet/engineering_personal,
+/obj/structure/closet/secure_closet/engineering_electrical,
/turf/open/floor/iron,
/area/engine/engineering)
"cqq" = (
@@ -16386,7 +16391,14 @@
/turf/open/floor/engine,
/area/engine/engineering)
"cDm" = (
-/obj/machinery/vending/engivend,
+/obj/structure/rack,
+/obj/item/storage/belt/utility,
+/obj/item/wrench,
+/obj/item/weldingtool,
+/obj/item/clothing/head/utility/welding{
+ pixel_x = -3;
+ pixel_y = 5
+ },
/turf/open/floor/iron,
/area/engine/engineering)
"cDq" = (
@@ -17095,10 +17107,6 @@
/obj/machinery/light,
/turf/open/floor/iron/dark,
/area/engine/engineering)
-"cGl" = (
-/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor/iron/dark,
-/area/engine/engineering)
"cGx" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,
@@ -19698,10 +19706,7 @@
dir = 1
},
/obj/structure/table,
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/clothing/gloves/color/yellow,
+/obj/item/storage/box/lights/mixed,
/turf/open/floor/iron,
/area/engine/engineering)
"dHO" = (
@@ -30426,8 +30431,8 @@
/turf/open/floor/iron/dark,
/area/crew_quarters/dorms)
"irL" = (
-/obj/structure/closet/firecloset,
/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/obj/structure/closet/secure_closet/engineering_personal,
/turf/open/floor/iron,
/area/engine/engineering)
"irX" = (
@@ -30810,17 +30815,10 @@
/turf/open/floor/iron/white,
/area/medical/chemistry)
"ixY" = (
-/obj/structure/rack,
-/obj/item/storage/belt/utility,
-/obj/item/wrench,
-/obj/item/weldingtool,
-/obj/item/clothing/head/utility/welding{
- pixel_x = -3;
- pixel_y = 5
- },
/obj/effect/turf_decal/tile/yellow/half/contrasted{
dir = 4
},
+/obj/machinery/vending/wardrobe/engi_wardrobe,
/turf/open/floor/iron,
/area/engine/engineering)
"iyk" = (
@@ -32594,10 +32592,6 @@
/obj/effect/spawner/randomarcade,
/turf/open/floor/iron/cafeteria_red,
/area/crew_quarters/bar)
-"jnY" = (
-/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor/iron,
-/area/engine/engineering)
"joe" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
@@ -34268,8 +34262,8 @@
dir = 8;
pixel_x = 24
},
-/obj/structure/closet/firecloset,
/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/obj/structure/closet/secure_closet/engineering_personal,
/turf/open/floor/iron,
/area/engine/engineering)
"kch" = (
@@ -37452,10 +37446,10 @@
/area/bridge)
"lsb" = (
/obj/structure/table,
-/obj/item/clothing/gloves/color/yellow,
/obj/item/storage/toolbox/electrical{
pixel_y = 5
},
+/obj/item/clothing/gloves/color/yellow,
/turf/open/floor/iron,
/area/engine/engineering)
"lsU" = (
@@ -51924,7 +51918,6 @@
/obj/structure/table,
/obj/item/stack/cable_coil,
/obj/item/stack/cable_coil,
-/obj/item/storage/box/lights/mixed,
/obj/structure/cable/yellow{
icon_state = "2-8"
},
@@ -56484,7 +56477,6 @@
/turf/open/floor/iron/freezer,
/area/crew_quarters/toilet)
"tIH" = (
-/obj/machinery/vending/wardrobe/engi_wardrobe,
/obj/machinery/camera/autoname{
dir = 8;
network = list("ss13","engine")
@@ -56492,6 +56484,7 @@
/obj/effect/turf_decal/tile/yellow{
dir = 4
},
+/obj/structure/closet/secure_closet/engineering_personal,
/turf/open/floor/iron,
/area/engine/engineering)
"tIO" = (
@@ -60039,14 +60032,10 @@
/turf/open/floor/iron,
/area/hallway/primary/central)
"vso" = (
-/obj/structure/table,
-/obj/item/crowbar/large,
-/obj/item/storage/box/lights/mixed,
-/obj/item/clothing/glasses/meson,
-/obj/item/clothing/glasses/meson,
/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
dir = 1
},
+/obj/machinery/vending/engivend,
/turf/open/floor/iron,
/area/engine/engineering)
"vsD" = (
@@ -97450,7 +97439,7 @@ csd
csd
cFz
csd
-cGj
+csd
xZy
cGM
cGZ
@@ -97963,8 +97952,8 @@ crL
cEW
cse
cse
+cGj
csu
-cGl
ccw
aaa
aaa
@@ -98210,7 +98199,7 @@ cpP
irL
kbT
tIH
-jnY
+cgR
hCM
cjh
cDI
diff --git a/_maps/map_files/CorgStation/CorgStation.dmm b/_maps/map_files/CorgStation/CorgStation.dmm
index d0e46b211bff3..fe901cc7488f7 100644
--- a/_maps/map_files/CorgStation/CorgStation.dmm
+++ b/_maps/map_files/CorgStation/CorgStation.dmm
@@ -2626,6 +2626,9 @@
/area/security/main)
"aFH" = (
/obj/structure/table,
+/obj/item/clothing/gloves/color/yellow{
+ pixel_y = 4
+ },
/turf/open/floor/iron/dark,
/area/engine/atmos)
"aFX" = (
@@ -5769,11 +5772,11 @@
/area/medical/medbay/aft)
"bCT" = (
/obj/machinery/light,
-/obj/effect/turf_decal/stripes/end,
/obj/item/radio/intercom{
pixel_y = -28
},
-/turf/open/floor/iron,
+/obj/structure/closet/firecloset/full,
+/turf/open/floor/noslip/dark,
/area/engine/engineering)
"bCU" = (
/obj/effect/turf_decal/stripes/line{
@@ -10773,6 +10776,7 @@
},
/obj/machinery/power/apc/auto_name/east,
/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/obj/structure/closet/secure_closet/engineering_electrical,
/turf/open/floor/iron,
/area/engine/engine_smes)
"dky" = (
@@ -10889,10 +10893,6 @@
/obj/effect/turf_decal/stripes/corner{
dir = 1
},
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/corner,
/obj/effect/turf_decal/stripes/corner{
dir = 4
},
@@ -10901,6 +10901,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron,
/area/engine/engineering)
"dmI" = (
@@ -11919,8 +11920,6 @@
icon_state = "0-2"
},
/obj/structure/table,
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/clothing/gloves/color/yellow,
/obj/item/pipe_dispenser,
/obj/item/pipe_dispenser,
/obj/item/pipe_dispenser,
@@ -13454,7 +13453,7 @@
/turf/open/floor/iron/white,
/area/medical/chemistry)
"edJ" = (
-/obj/structure/closet/radiation,
+/obj/structure/closet/secure_closet/engineering_personal,
/turf/open/floor/noslip/dark,
/area/engine/engineering)
"edS" = (
@@ -22627,10 +22626,10 @@
/turf/open/floor/iron/white,
/area/medical/virology)
"hic" = (
-/obj/structure/closet/secure_closet/engineering_welding,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 1
},
+/obj/structure/closet/secure_closet/engineering_personal,
/turf/open/floor/noslip/dark,
/area/engine/engineering)
"hiu" = (
@@ -24062,6 +24061,7 @@
/obj/machinery/requests_console{
pixel_y = -32
},
+/obj/item/clothing/gloves/color/yellow,
/turf/open/floor/iron/dark,
/area/engine/engine_smes)
"hGE" = (
@@ -36863,9 +36863,6 @@
dir = 4
},
/obj/structure/table/reinforced,
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/clothing/gloves/color/yellow,
/obj/machinery/requests_console{
pixel_x = -32
},
@@ -38918,7 +38915,6 @@
/turf/open/floor/iron/dark,
/area/maintenance/department/chapel/monastery)
"mrz" = (
-/obj/structure/closet/secure_closet/engineering_electrical,
/obj/machinery/airalarm/directional/east,
/obj/machinery/light_switch{
pixel_y = 28
@@ -38926,6 +38922,7 @@
/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
dir = 4
},
+/obj/structure/tank_dispenser,
/turf/open/floor/iron,
/area/engine/engine_smes)
"mrH" = (
@@ -48286,8 +48283,8 @@
/turf/open/floor/iron,
/area/hallway/primary/fore)
"pvv" = (
-/obj/structure/closet/firecloset/full,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/obj/structure/closet/radiation,
/turf/open/floor/noslip/dark,
/area/engine/engineering)
"pvJ" = (
@@ -68884,7 +68881,7 @@
/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/closet/secure_closet/engineering_electrical,
+/obj/structure/closet/secure_closet/engineering_personal,
/turf/open/floor/noslip/dark,
/area/engine/engineering)
"wbE" = (
@@ -69679,9 +69676,6 @@
/obj/machinery/newscaster{
pixel_x = -30
},
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/clothing/gloves/color/yellow,
/turf/open/floor/iron/dark,
/area/engine/engine_smes)
"woC" = (
@@ -74932,12 +74926,12 @@
/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/tank_dispenser,
/obj/item/radio/intercom{
pixel_x = 29;
pixel_y = -2
},
/obj/effect/turf_decal/tile/yellow/anticorner/contrasted,
+/obj/structure/closet/secure_closet/engineering_welding,
/turf/open/floor/iron,
/area/engine/engine_smes)
"xZS" = (
diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm
index 24fd21dd3a187..5cf1e5be6f24a 100644
--- a/_maps/map_files/Deltastation/DeltaStation2.dmm
+++ b/_maps/map_files/Deltastation/DeltaStation2.dmm
@@ -722,14 +722,12 @@
"aex" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/start/atmospheric_technician,
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
/obj/effect/turf_decal/stripes/white/end{
dir = 1
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment,
/turf/open/floor/iron,
/area/engine/atmos)
"aeB" = (
@@ -8131,10 +8129,12 @@
/obj/machinery/light_switch{
pixel_x = -26
},
-/obj/structure/disposalpipe/trunk,
/obj/effect/turf_decal/tile/yellow{
dir = 8
},
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
/turf/open/floor/iron/dark/corner{
dir = 1
},
@@ -8142,17 +8142,20 @@
"aYi" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
/turf/open/floor/iron,
/area/engine/atmos)
"aYj" = (
/obj/structure/table/reinforced,
-/obj/item/wrench,
-/obj/item/tank/internals/emergency_oxygen/engi,
-/obj/item/tank/internals/emergency_oxygen/engi,
/obj/machinery/newscaster{
pixel_x = 32
},
/obj/effect/turf_decal/bot,
+/obj/item/storage/toolbox/electrical,
+/obj/item/wrench,
+/obj/item/clothing/gloves/color/yellow,
/turf/open/floor/iron,
/area/engine/atmos)
"aYk" = (
@@ -8345,15 +8348,6 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
-"baa" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/open/floor/iron/dark/corner{
- dir = 1
- },
-/area/engine/atmos)
"bac" = (
/obj/structure/closet/secure_closet/atmospherics,
/obj/effect/decal/cleanable/dirt,
@@ -8544,9 +8538,6 @@
/turf/open/floor/catwalk_floor,
/area/engine/transit_tube)
"bbF" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
/obj/structure/fireaxecabinet{
pixel_x = -32
},
@@ -9143,6 +9134,11 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/item/tank/internals/emergency_oxygen/engi{
+ pixel_x = -5;
+ pixel_y = 6
+ },
/turf/open/floor/iron,
/area/engine/atmos)
"beB" = (
@@ -16736,15 +16732,8 @@
/turf/closed/wall/r_wall,
/area/engine/engineering)
"cas" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/firstaid/fire,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/iron,
-/area/engine/engineering)
-"cat" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
/obj/effect/turf_decal/delivery,
+/obj/structure/closet/secure_closet/engineering_personal,
/turf/open/floor/iron,
/area/engine/engineering)
"cau" = (
@@ -16752,12 +16741,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/engine/engineering)
-"cav" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/fancy/donut_box,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/iron,
-/area/engine/engineering)
"caw" = (
/obj/structure/sign/warning/securearea,
/turf/closed/wall,
@@ -17079,23 +17062,14 @@
},
/turf/open/floor/iron,
/area/engine/engineering)
-"cbX" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/engine/engineering)
"cbY" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
/turf/open/floor/iron,
/area/engine/engineering)
"cbZ" = (
@@ -21009,12 +20983,12 @@
/area/medical/surgery)
"cwl" = (
/obj/structure/table/reinforced,
-/obj/item/clothing/gloves/color/yellow,
/obj/item/storage/toolbox/electrical,
/obj/machinery/light{
dir = 8
},
/obj/effect/turf_decal/bot,
+/obj/item/clothing/gloves/color/yellow,
/turf/open/floor/iron,
/area/engine/engineering)
"cwn" = (
@@ -39652,7 +39626,6 @@
dir = 4;
pixel_x = -22
},
-/obj/item/clothing/gloves/color/yellow,
/obj/machinery/light{
dir = 8
},
@@ -54596,6 +54569,8 @@
/obj/effect/turf_decal/tile/yellow/half/contrasted{
dir = 4
},
+/obj/item/storage/firstaid/fire,
+/obj/item/storage/fancy/donut_box,
/turf/open/floor/iron,
/area/engine/engineering)
"lcb" = (
@@ -56940,6 +56915,12 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/quartermaster/sorting)
+"lNF" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal/bin,
+/turf/open/floor/iron,
+/area/engine/engineering)
"lNI" = (
/obj/structure/table/wood,
/obj/machinery/status_display/evac{
@@ -58850,6 +58831,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment,
/turf/open/floor/iron,
/area/engine/atmos)
"muE" = (
@@ -118906,8 +118888,8 @@ bSe
ost
bWn
bYx
-cat
-cbX
+cas
+cDY
tMd
cfF
xrS
@@ -119163,7 +119145,7 @@ bSf
qwa
bWo
bYy
-cau
+lNF
cbY
rJn
cfF
@@ -119390,7 +119372,7 @@ cfI
aUS
aMB
aYh
-baa
+bdg
bbF
bdg
beB
@@ -119677,7 +119659,7 @@ bSh
bTY
bWp
bPW
-cav
+cas
cbZ
rJn
cfF
diff --git a/_maps/map_files/EchoStation/EchoStation.dmm b/_maps/map_files/EchoStation/EchoStation.dmm
index a73323fdcdbeb..8439ddb43ae0d 100644
--- a/_maps/map_files/EchoStation/EchoStation.dmm
+++ b/_maps/map_files/EchoStation/EchoStation.dmm
@@ -153,6 +153,35 @@
/area/hallway/primary/central{
name = "-2 Primary Hallway"
})
+"adp" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-16"
+ },
+/obj/effect/turf_decal/trimline/yellow,
+/obj/effect/landmark/start/station_engineer,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/dark/visible{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/atmos)
"adG" = (
/obj/structure/flora/rock,
/turf/open/floor/plating/asteroid/basalt/planetary,
@@ -1357,18 +1386,6 @@
/obj/machinery/door/firedoor,
/turf/open/floor/plating,
/area/maintenance/department/medical/central)
-"axf" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/quartermaster/storage)
"axj" = (
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
@@ -1517,23 +1534,6 @@
},
/turf/open/floor/iron,
/area/maintenance/department/science/xenobiology)
-"azy" = (
-/obj/structure/table/optable{
- pixel_y = 7
- },
-/obj/item/surgical_drapes{
- pixel_y = 4
- },
-/obj/machinery/light,
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/item/clothing/gloves/color/latex{
- pixel_x = -1;
- pixel_y = -1
- },
-/turf/open/floor/iron,
-/area/medical/surgery)
"azA" = (
/obj/effect/turf_decal/bot,
/obj/item/pushbroom,
@@ -1566,16 +1566,6 @@
},
/turf/open/floor/iron/tech,
/area/engine/engineering)
-"azK" = (
-/obj/effect/turf_decal/stripes/closeup{
- dir = 4
- },
-/obj/machinery/pipedispenser/disposal,
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/engine/engineering)
"azS" = (
/obj/item/radio/intercom{
dir = 1;
@@ -1817,6 +1807,17 @@
"aEM" = (
/turf/closed/wall/r_wall,
/area/science/server)
+"aFe" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/item/clothing/mask/surgical{
+ pixel_x = 3;
+ pixel_y = -8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/turf/open/floor/iron/dark,
+/area/security/detectives_office)
"aFj" = (
/obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior,
/obj/effect/mapping_helpers/airlock/locked,
@@ -1952,19 +1953,6 @@
},
/turf/open/floor/iron,
/area/medical/storage)
-"aIa" = (
-/obj/effect/landmark/start/assistant,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/crew_quarters/fitness/recreation)
"aIk" = (
/obj/machinery/door/poddoor/preopen{
id = "telelab";
@@ -1988,6 +1976,10 @@
/area/hallway/primary/central{
name = "-2 Primary Hallway"
})
+"aIu" = (
+/obj/machinery/light/small,
+/turf/open/floor/iron/tech,
+/area/engine/engineering)
"aIx" = (
/obj/machinery/meter,
/obj/structure/cable{
@@ -2278,14 +2270,6 @@
/obj/machinery/light,
/turf/open/floor/carpet/green,
/area/crew_quarters/cafeteria)
-"aMy" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/hallway/primary/central{
- name = "-2 Primary Hallway"
- })
"aMC" = (
/obj/structure/flora/grass/jungle/b,
/obj/structure/flora/ausbushes/fullgrass,
@@ -2971,6 +2955,17 @@
},
/turf/open/floor/plating,
/area/maintenance/department/eva)
+"aXv" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/general/hidden,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/tcommsat/computer)
"aXF" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -3235,17 +3230,6 @@
/area/engineering/hallway{
name = "Engineering Viewing Platform"
})
-"bge" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/general/hidden,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/tcommsat/computer)
"bgn" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 4
@@ -3295,6 +3279,20 @@
/area/engineering/hallway{
name = "Engineering Viewing Platform"
})
+"bhy" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/rnd/production/techfab/department/cargo,
+/obj/machinery/power/apc/auto_name/east,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/quartermaster/storage)
"bhE" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/spawner/lootdrop/grille_or_trash,
@@ -3703,13 +3701,6 @@
initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
},
/area/tcommsat/computer)
-"brL" = (
-/turf/open/floor/iron/dark/corner{
- dir = 1
- },
-/area/hallway/primary/central{
- name = "-2 Primary Hallway"
- })
"brZ" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/box,
@@ -3728,6 +3719,18 @@
},
/turf/open/floor/iron,
/area/security/brig)
+"bsk" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/binary/pump{
+ name = "Fuel Pipe to Incinerator"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal/incinerator)
"bso" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -4948,11 +4951,6 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/storage)
-"bXd" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/iron/dark,
-/area/engine/atmos)
"bXz" = (
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
@@ -5013,6 +5011,24 @@
},
/turf/open/floor/plating,
/area/hydroponics)
+"bYx" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/item/card/id/job/atmospheric_technician,
+/obj/item/clothing/mask/gas{
+ pixel_x = -4;
+ pixel_y = 10
+ },
+/obj/item/tank/internals/plasma{
+ pixel_x = 7;
+ pixel_y = 21
+ },
+/obj/item/clothing/head/beret/atmos{
+ pixel_x = 4;
+ pixel_y = -2
+ },
+/turf/open/floor/iron,
+/area/engine/engineering)
"bZe" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow{
@@ -5163,13 +5179,6 @@
/obj/effect/turf_decal/stripes/closeup,
/turf/open/floor/plating,
/area/crew_quarters/heads/captain)
-"ccE" = (
-/obj/item/food/candyheart{
- pixel_x = -2;
- pixel_y = -18
- },
-/turf/open/floor/plating/asteroid/basalt/planetary,
-/area/asteroid/paradise)
"cdq" = (
/obj/structure/window/plasma/reinforced{
dir = 4
@@ -5299,20 +5308,6 @@
/obj/structure/stairs,
/obj/machinery/firealarm/directional/west,
/turf/open/floor/pod/dark,
-/area/hallway/primary/fore{
- name = "-1 Primary Hallway"
- })
-"cgb" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk/multiz/down{
- dir = 8
- },
-/turf/open/floor/catwalk_floor/iron_dark,
/area/hallway/primary/fore{
name = "-1 Primary Hallway"
})
@@ -5363,17 +5358,6 @@
},
/turf/open/floor/plating/asteroid/planetary,
/area/crew_quarters/dorms)
-"cjo" = (
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/medical/medbay/central)
"cjG" = (
/obj/structure/chair/fancy/sofa/old/right{
dir = 4
@@ -5471,21 +5455,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/bridge)
-"cne" = (
-/obj/machinery/airalarm/directional/west,
-/obj/item/radio/intercom{
- dir = 1;
- pixel_x = 1;
- pixel_y = 23
- },
-/obj/structure/disposalpipe/trunk{
- dir = 2
- },
-/obj/structure/disposaloutlet{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
"cnh" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -5625,6 +5594,17 @@
},
/turf/open/floor/iron,
/area/science/robotics)
+"cpJ" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/science/robotics)
"cpL" = (
/obj/machinery/door/airlock/command{
name = "Gateway Access";
@@ -5657,26 +5637,6 @@
},
/turf/open/floor/iron/white,
/area/crew_quarters/heads/hor)
-"cpR" = (
-/obj/effect/spawner/lootdrop/aimodule_harmless,
-/obj/effect/spawner/lootdrop/aimodule_harmless,
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/flasher{
- id = "AI";
- pixel_x = -1;
- pixel_y = 32
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/effect/spawner/lootdrop/aimodule_harmless,
-/obj/machinery/power/apc/auto_name/east,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/structure/table/reinforced,
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai_upload)
"cqs" = (
/obj/machinery/holopad,
/obj/structure/cable/yellow{
@@ -5754,6 +5714,16 @@
/obj/effect/spawner/lootdrop/glowstick/lit,
/turf/open/floor/iron/techmaint/planetary,
/area/asteroid/paradise/surface)
+"css" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/hallway/primary/central{
+ name = "-2 Primary Hallway"
+ })
"csB" = (
/obj/effect/turf_decal/tile/dark_red{
alpha = 180;
@@ -5854,25 +5824,6 @@
/area/hallway/primary/aft{
name = "-3 Primary Hallway"
})
-"cvu" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/status_display/evac{
- pixel_y = 32
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/effect/landmark/start/station_engineer,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engineering)
"cvA" = (
/obj/effect/decal/cleanable/dirt/dust,
/turf/closed/wall,
@@ -5950,21 +5901,6 @@
},
/turf/open/floor/iron,
/area/security/brig)
-"cxL" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 9
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal/incinerator)
"cxT" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 1
@@ -6552,15 +6488,6 @@
},
/turf/open/floor/plating/beach/sand,
/area/asteroid/paradise/surface)
-"cOG" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/iron/dark,
-/area/engine/engineering)
"cOO" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -6786,6 +6713,14 @@
},
/turf/open/floor/plating/rust,
/area/science/test_area)
+"cUd" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/effect/turf_decal/bot,
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/open/floor/iron,
+/area/engine/engineering)
"cUr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -6862,17 +6797,6 @@
},
/turf/open/floor/carpet/royalblack,
/area/vacant_room/office)
-"cXy" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/science/robotics)
"cXz" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -6917,6 +6841,10 @@
/obj/structure/table,
/obj/item/pickaxe,
/obj/machinery/firealarm/directional/north,
+/obj/item/clothing/mask/gas/explorer{
+ pixel_x = -5;
+ pixel_y = 6
+ },
/turf/open/floor/iron,
/area/engine/atmos)
"cXQ" = (
@@ -7025,17 +6953,6 @@
},
/turf/open/floor/iron/dark,
/area/security/brig)
-"ddr" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Maintenance Hatch";
- req_access_txt = "29";
- security_level = 6
- },
-/obj/effect/turf_decal/stripes/closeup{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/science/robotics)
"ddQ" = (
/obj/structure/stairs,
/turf/open/floor/pod/dark,
@@ -7578,6 +7495,25 @@
/area/hallway/primary/aft{
name = "-3 Primary Hallway"
})
+"dvF" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/status_display/evac{
+ pixel_y = 32
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/effect/landmark/start/station_engineer,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engineering)
"dvV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
@@ -7736,33 +7672,6 @@
"dzW" = (
/turf/closed/wall/r_wall,
/area/maintenance/disposal/incinerator)
-"dAa" = (
-/obj/machinery/door/airlock/medical/glass{
- name = "Medbay Storage";
- req_access_txt = "5"
- },
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/delivery,
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/mapping_helpers/airlock/unres{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
- cycle_id = "medbay"
- },
-/turf/open/floor/iron/grid/steel,
-/area/medical/storage)
"dAb" = (
/turf/open/floor/plating/dirt/jungle/wasteland,
/area/asteroid/paradise/surface/grass)
@@ -7773,20 +7682,6 @@
},
/turf/open/floor/plating,
/area/medical/apothecary)
-"dAp" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/canister,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/turf/open/floor/iron/dark,
-/area/engine/engineering)
"dAU" = (
/obj/structure/disposalpipe/segment{
dir = 1
@@ -7981,6 +7876,17 @@
/obj/structure/closet/crate,
/turf/open/floor/plating,
/area/maintenance/department/chapel)
+"dGX" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/crew_quarters/fitness/recreation)
"dHc" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
@@ -8145,23 +8051,6 @@
},
/turf/open/floor/dock/drydock,
/area/quartermaster/storage)
-"dKK" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/sheet/mineral/plasma/fifty,
-/obj/item/reagent_containers/dropper{
- pixel_x = -4;
- pixel_y = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/item/toy/plush/slimeplushie/random{
- pixel_x = -8;
- pixel_y = 1
- },
-/turf/open/floor/iron/grid/steel,
-/area/science/xenobiology)
"dLt" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/turf_decal/tile/purple{
@@ -8202,6 +8091,24 @@
"dMS" = (
/turf/closed/wall/rust,
/area/quartermaster/storage)
+"dMU" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk/multiz/down{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/medical/medbay/central)
"dNl" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
@@ -8369,6 +8276,17 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat/maint)
+"dQZ" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ pixel_y = -33
+ },
+/obj/machinery/light,
+/turf/open/floor/iron/dark,
+/area/engine/engineering)
"dRn" = (
/obj/effect/decal/cleanable/blood/gibs/down,
/turf/open/floor/plating/dirt/planetary,
@@ -8524,6 +8442,17 @@
},
/turf/open/floor/iron,
/area/security/brig)
+"dUB" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/dark/visible{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engineering)
"dUG" = (
/obj/item/aicard,
/obj/item/aiModule/reset,
@@ -8636,6 +8565,30 @@
},
/turf/open/floor/iron,
/area/maintenance/department/engine/atmos)
+"dZS" = (
+/obj/machinery/door/airlock/medical/glass{
+ name = "Medbay Storage";
+ req_access_txt = "5"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/turf/open/floor/iron/grid/steel,
+/area/medical/storage)
"eam" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/segment{
@@ -8933,27 +8886,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/carpet/royalblack,
/area/vacant_room/office)
-"ejo" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 10
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engineering)
"ejD" = (
/obj/machinery/hydroponics/constructable,
/obj/effect/turf_decal/stripes/line{
@@ -9047,6 +8979,13 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/central)
+"elZ" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/tech,
+/area/engine/engineering)
"emp" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -9056,13 +8995,6 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating/beach/sand,
/area/asteroid/paradise/surface/sand)
-"eni" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/science/robotics)
"enr" = (
/obj/structure/railing{
dir = 5
@@ -9204,6 +9136,22 @@
},
/turf/open/floor/plating,
/area/crew_quarters/kitchen/coldroom)
+"eqA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/dark/visible{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engineering)
"eqK" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/structure/cable/yellow{
@@ -9562,20 +9510,6 @@
},
/turf/open/floor/iron,
/area/maintenance/department/medical/central)
-"eAv" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/item/radio/intercom{
- pixel_x = 32
- },
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/bot,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/iron/dark,
-/area/engine/engineering)
"eAX" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/vending/clothing,
@@ -10554,19 +10488,6 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/closed/wall,
/area/crew_quarters/kitchen/coldroom)
-"eZF" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/crew_quarters/fitness/recreation)
"eZI" = (
/obj/structure/lattice/catwalk/over,
/turf/open/openspace,
@@ -10708,6 +10629,19 @@
},
/turf/open/floor/iron,
/area/maintenance/department/science/xenobiology)
+"fdd" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/power/apc/auto_name/east,
+/obj/structure/cable/yellow,
+/turf/open/floor/iron/tech,
+/area/science/mixing/chamber)
"fdh" = (
/turf/open/openspace,
/area/ai_monitored/turret_protected/aisat/maint)
@@ -10739,6 +10673,18 @@
},
/turf/open/floor/dock/drydock,
/area/quartermaster/storage)
+"fen" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/dark/visible,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal/incinerator)
"feq" = (
/turf/open/openspace,
/area/quartermaster/qm)
@@ -11479,22 +11425,6 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/security/armory)
-"fwr" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/effect/turf_decal/evac,
-/turf/open/floor/iron,
-/area/hallway/primary/central{
- name = "-2 Primary Hallway"
- })
"fwN" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -11592,20 +11522,6 @@
/obj/effect/spawner/structure/window/plasma/reinforced,
/turf/open/floor/engine,
/area/engine/atmos)
-"fAi" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 6
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal/incinerator)
"fBc" = (
/obj/structure/mirror{
pixel_x = -32;
@@ -12278,6 +12194,17 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/patients_rooms)
+"fRK" = (
+/obj/machinery/portable_atmospherics/canister,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/engine/engineering)
"fRN" = (
/obj/effect/turf_decal/tile/purple/half/contrasted,
/turf/open/floor/iron/white,
@@ -12968,6 +12895,31 @@
"ggs" = (
/turf/closed/wall/rust,
/area/maintenance/department/engine)
+"ggT" = (
+/obj/machinery/power/apc/auto_name/south{
+ pixel_y = -24
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/machinery/camera/autoname{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/crew_quarters/heads/hop)
"ghc" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -13822,31 +13774,6 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating/rust,
/area/science/test_area)
-"gBO" = (
-/obj/machinery/power/apc/auto_name/south{
- pixel_y = -24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/light,
-/obj/machinery/camera/autoname{
- dir = 10
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/crew_quarters/heads/hop)
"gBS" = (
/obj/effect/turf_decal/sand/plating,
/obj/effect/turf_decal/sand/plating,
@@ -14122,6 +14049,32 @@
},
/turf/open/floor/iron,
/area/maintenance/department/bridge)
+"gIE" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ alpha = 180;
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_x = -30;
+ pixel_y = -2
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/hallway/primary/central{
+ name = "-2 Primary Hallway"
+ })
"gIO" = (
/obj/machinery/suit_storage_unit/standard_unit,
/obj/effect/turf_decal/stripes/line{
@@ -14268,6 +14221,26 @@
/obj/machinery/space_heater,
/turf/open/floor/plating,
/area/maintenance/department/eva)
+"gLX" = (
+/obj/structure/railing/corner,
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/medical/medbay/central)
"gMh" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/structure/closet,
@@ -14545,16 +14518,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating/asteroid/basalt/planetary,
/area/asteroid/paradise)
-"gRN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/iron/dark/side{
- dir = 4
- },
-/area/hallway/primary/aft{
- name = "-3 Primary Hallway"
- })
"gRR" = (
/obj/machinery/door/morgue{
dir = 1;
@@ -14882,6 +14845,23 @@
/area/hallway/primary/central{
name = "-2 Primary Hallway"
})
+"gYJ" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/sheet/mineral/plasma/fifty,
+/obj/item/reagent_containers/dropper{
+ pixel_x = -4;
+ pixel_y = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/item/toy/plush/slimeplushie/random{
+ pixel_x = -8;
+ pixel_y = 1
+ },
+/turf/open/floor/iron/grid/steel,
+/area/science/xenobiology)
"gYZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/sand/plating,
@@ -14890,6 +14870,22 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
+"gZf" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/effect/turf_decal/evac,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
+/turf/open/floor/iron,
+/area/hallway/primary/central{
+ name = "-2 Primary Hallway"
+ })
"gZh" = (
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
@@ -15051,6 +15047,26 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating,
/area/maintenance/department/science/central)
+"heo" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 8
+ },
+/area/hallway/primary/central{
+ name = "-2 Primary Hallway"
+ })
"het" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -15188,6 +15204,23 @@
"hiB" = (
/turf/closed/wall,
/area/asteroid/paradise)
+"hjG" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/item/reagent_containers/food/condiment/saltshaker{
+ pixel_x = 4;
+ pixel_y = 9
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "Chefwindow";
+ name = "Chef window"
+ },
+/obj/item/toy/figure/chef{
+ pixel_x = -4;
+ pixel_y = -1
+ },
+/turf/open/floor/iron/white,
+/area/crew_quarters/kitchen)
"hjU" = (
/turf/open/openspace,
/area/science/mixing)
@@ -15248,21 +15281,6 @@
/obj/structure/sign/departments/minsky/research/research,
/turf/closed/wall/r_wall,
/area/science/lab)
-"hos" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engineering)
"hoH" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/power/apc/auto_name/north{
@@ -15650,17 +15668,6 @@
"hwY" = (
/turf/closed/wall/rust,
/area/maintenance/department/science/xenobiology)
-"hxh" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/iron/dark/side{
- dir = 8
- },
-/area/hallway/primary/central{
- name = "-2 Primary Hallway"
- })
"hxu" = (
/obj/structure/railing{
dir = 8
@@ -16010,6 +16017,22 @@
},
/turf/open/floor/pod/dark,
/area/maintenance/department/eva)
+"hGv" = (
+/obj/structure/table,
+/obj/item/wrench{
+ pixel_x = -4;
+ pixel_y = 15
+ },
+/obj/item/crowbar/red{
+ pixel_x = -2;
+ pixel_y = 11
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/item/analyzer{
+ pixel_x = 1
+ },
+/turf/open/floor/iron,
+/area/engine/engineering)
"hGN" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/decal/cleanable/dirt/dust,
@@ -16134,17 +16157,6 @@
/area/hallway/primary/central{
name = "-2 Primary Hallway"
})
-"hKX" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/item/clothing/mask/surgical{
- pixel_x = 3;
- pixel_y = -8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/iron/dark,
-/area/security/detectives_office)
"hLc" = (
/obj/structure/table,
/obj/effect/spawner/lootdrop/maintenance/two,
@@ -16595,6 +16607,25 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/carpet/blue,
/area/crew_quarters/cafeteria)
+"hVM" = (
+/obj/machinery/door/airlock/command{
+ name = "Head of Personnel's Office";
+ req_access_txt = "57"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/crew_quarters/heads/hop)
"hWZ" = (
/obj/machinery/light/small{
dir = 1
@@ -16665,6 +16696,12 @@
/obj/structure/curtain/directional,
/turf/open/floor/plating,
/area/quartermaster/qm)
+"hZc" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/engine/atmos)
"hZg" = (
/obj/machinery/requests_console{
department = "Tool Storage";
@@ -16821,6 +16858,14 @@
},
/turf/open/floor/iron,
/area/medical/medbay/central)
+"idv" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/power/apc/auto_name/east,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/turf/open/floor/iron,
+/area/maintenance/department/engine)
"idO" = (
/obj/machinery/portable_atmospherics/pump,
/obj/effect/turf_decal/bot,
@@ -17122,6 +17167,17 @@
"img" = (
/turf/open/floor/plating,
/area/maintenance/department/cargo)
+"imH" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/medical/medbay/central)
"imO" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -17202,23 +17258,6 @@
/area/hallway/primary/fore{
name = "-1 Primary Hallway"
})
-"ipm" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 4
- },
-/obj/structure/railing,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/atmos)
"ipu" = (
/obj/machinery/microwave{
desc = "Cooks and boils stuff, somehow.";
@@ -17478,18 +17517,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/dark,
/area/ai_monitored/security/armory)
-"iyn" = (
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/hallway/primary/central{
- name = "-2 Primary Hallway"
- })
"iyS" = (
/turf/closed/wall,
/area/medical/exam_room)
@@ -17517,6 +17544,19 @@
/obj/structure/lattice,
/turf/open/openspace,
/area/maintenance/department/security/brig)
+"izQ" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/crew_quarters/heads/hop)
"iAE" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -17573,6 +17613,25 @@
},
/turf/open/floor/iron,
/area/bridge)
+"iAO" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/engine/engineering)
"iBH" = (
/obj/structure/grille/broken,
/turf/open/floor/plating,
@@ -17599,26 +17658,6 @@
/obj/structure/frame/machine,
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
-"iDi" = (
-/obj/structure/railing/corner,
-/obj/effect/turf_decal/tile/neutral/half/contrasted,
-/obj/effect/turf_decal/siding/white{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/medical/medbay/central)
"iDI" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/structure/rack,
@@ -17781,6 +17820,19 @@
/area/engineering/hallway{
name = "Engineering Viewing Platform"
})
+"iHQ" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/item/wallframe/extinguisher_cabinet{
+ pixel_x = -1;
+ pixel_y = 31
+ },
+/obj/item/storage/toolbox/electrical,
+/obj/item/clothing/gloves/color/yellow,
+/turf/open/floor/iron,
+/area/engine/atmos)
"iIl" = (
/obj/machinery/vending/hydroseeds,
/obj/effect/turf_decal/stripes/line,
@@ -17857,6 +17909,17 @@
/area/hallway/primary/central{
name = "-2 Primary Hallway"
})
+"iJo" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "External Gas to Loop"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/firealarm/directional/south,
+/obj/machinery/light,
+/turf/open/floor/iron/dark,
+/area/engine/engineering)
"iJL" = (
/obj/machinery/light_switch{
pixel_x = 25;
@@ -18055,6 +18118,16 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/storage)
+"iOV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/power/apc/auto_name/east,
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/science/central)
"iPs" = (
/obj/effect/turf_decal/siding/dark,
/obj/effect/turf_decal/siding/dark{
@@ -18067,24 +18140,6 @@
/area/engineering/hallway{
name = "Engineering Viewing Platform"
})
-"iPB" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/item/card/id/job/atmospheric_technician,
-/obj/item/clothing/mask/gas{
- pixel_x = -4;
- pixel_y = 10
- },
-/obj/item/tank/internals/plasma{
- pixel_x = 7;
- pixel_y = 21
- },
-/obj/item/clothing/head/beret/atmos{
- pixel_x = 4;
- pixel_y = -2
- },
-/turf/open/floor/iron,
-/area/engine/engineering)
"iPI" = (
/obj/machinery/computer/card,
/obj/item/storage/secure/safe{
@@ -18619,18 +18674,6 @@
},
/turf/open/floor/carpet/blue,
/area/crew_quarters/cafeteria)
-"jeF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engineering)
"jeN" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -18756,17 +18799,6 @@
},
/turf/open/floor/plating,
/area/tcommsat/server)
-"jkD" = (
-/obj/item/toy/plush/moth/firewatch{
- pixel_x = -10;
- name = "Zinnia"
- },
-/obj/item/toy/plush/lizard_plushie{
- name = "Walks-upon-Embers";
- pixel_x = 5
- },
-/turf/open/floor/plating/asteroid/basalt/planetary,
-/area/asteroid/paradise)
"jkK" = (
/obj/machinery/light_switch{
pixel_x = -24;
@@ -18979,22 +19011,6 @@
},
/turf/open/floor/wood,
/area/crew_quarters/theatre/backstage)
-"jqO" = (
-/obj/structure/railing/corner{
- dir = 1
- },
-/obj/effect/turf_decal/siding/dark/corner{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/iron/dark/side{
- dir = 8
- },
-/area/hallway/primary/central{
- name = "-2 Primary Hallway"
- })
"jqY" = (
/obj/structure/extinguisher_cabinet{
pixel_y = -1
@@ -19099,22 +19115,6 @@
},
/turf/open/floor/carpet/green,
/area/crew_quarters/cafeteria)
-"jsJ" = (
-/obj/machinery/atmospherics/components/trinary/mixer/airmix/flipped/inverse{
- dir = 8;
- piping_layer = 2
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
- },
-/obj/structure/window/plasma/reinforced{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/engine/atmos)
"jsW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
@@ -19256,6 +19256,18 @@
},
/turf/open/floor/iron,
/area/science/robotics)
+"jxx" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/engine/engineering)
"jxW" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -19521,6 +19533,17 @@
},
/turf/open/floor/wood,
/area/chapel/main)
+"jEt" = (
+/obj/item/toy/plush/moth/firewatch{
+ pixel_x = -10;
+ name = "Zinnia"
+ },
+/obj/item/toy/plush/lizard_plushie{
+ name = "Walks-upon-Embers";
+ pixel_x = 5
+ },
+/turf/open/floor/plating/asteroid/basalt/planetary,
+/area/asteroid/paradise)
"jEu" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 4
@@ -19919,6 +19942,21 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/medbay/central)
+"jLH" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction/flip{
+ dir = 2
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/crew_quarters/heads/hop)
"jLI" = (
/obj/structure/lattice/catwalk/over,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -19980,6 +20018,20 @@
"jME" = (
/turf/closed/wall,
/area/medical/apothecary)
+"jMP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk/multiz/down{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/hallway/primary/fore{
+ name = "-1 Primary Hallway"
+ })
"jNd" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/light{
@@ -20120,6 +20172,26 @@
},
/turf/open/floor/plating,
/area/medical/morgue)
+"jQe" = (
+/obj/machinery/light,
+/obj/machinery/firealarm/directional/south,
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/structure/table,
+/obj/item/food/dough{
+ pixel_x = 4
+ },
+/obj/item/food/dough{
+ pixel_x = 9;
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/food/condiment/enzyme{
+ pixel_x = -5;
+ pixel_y = 9
+ },
+/turf/open/floor/iron/cafeteria,
+/area/crew_quarters/kitchen)
"jQL" = (
/obj/structure/chair/fancy/sofa/old/left{
dir = 4
@@ -20153,6 +20225,13 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/carpet/blue,
/area/crew_quarters/cafeteria)
+"jRA" = (
+/obj/item/food/candyheart{
+ pixel_x = -2;
+ pixel_y = -18
+ },
+/turf/open/floor/plating/asteroid/basalt/planetary,
+/area/asteroid/paradise)
"jRB" = (
/obj/structure/flora/grass/jungle,
/turf/open/floor/plating/asteroid/planetary,
@@ -20170,16 +20249,6 @@
/obj/structure/spider/stickyweb,
/turf/open/floor/plating/asteroid/basalt/planetary,
/area/asteroid/paradise)
-"jSm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/iron/dark/side{
- dir = 6
- },
-/area/hallway/primary/aft{
- name = "-3 Primary Hallway"
- })
"jSI" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
@@ -20269,6 +20338,21 @@
"jUw" = (
/turf/open/floor/plating/asteroid/basalt/planetary,
/area/quartermaster/storage)
+"jUx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engineering)
"jUM" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable{
@@ -20478,6 +20562,20 @@
/area/engineering/hallway{
name = "Engineering Viewing Platform"
})
+"jZf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/dark/visible{
+ dir = 6
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal/incinerator)
"jZh" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/structure/cable/yellow{
@@ -20699,6 +20797,13 @@
"kfl" = (
/turf/closed/wall/r_wall,
/area/bridge/meeting_room)
+"kfC" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/engine/atmos)
"kgl" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -20757,24 +20862,24 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/carpet/purple,
/area/crew_quarters/dorms)
-"khm" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engineering)
"khs" = (
/turf/closed/wall/rust,
/area/science/lab)
+"kip" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/central{
+ name = "-2 Primary Hallway"
+ })
"kiz" = (
/obj/effect/decal/cleanable/greenglow,
/turf/open/floor/plating/dirt/jungle/wasteland,
@@ -20811,7 +20916,6 @@
/turf/open/floor/plating,
/area/ai_monitored/security/armory)
"klc" = (
-/obj/item/clothing/gloves/color/yellow,
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/bot,
/obj/machinery/camera/autoname{
@@ -21179,23 +21283,6 @@
/obj/structure/flora/rock/pile,
/turf/open/floor/plating/asteroid/planetary,
/area/asteroid/paradise/surface)
-"ksc" = (
-/obj/item/radio/intercom{
- pixel_x = 33;
- pixel_y = -3
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/turf/open/floor/iron/dark,
-/area/engine/engineering)
"ksj" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/structure/cable/yellow{
@@ -21683,25 +21770,6 @@
/obj/structure/fence/cut/large,
/turf/open/floor/plating/dirt/planetary,
/area/asteroid/paradise/surface/grass)
-"kCq" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table,
-/obj/item/pipe_dispenser{
- pixel_x = 1;
- pixel_y = 12
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/item/clothing/glasses/meson{
- pixel_y = 1
- },
-/obj/item/clothing/glasses/meson{
- pixel_y = 1
- },
-/obj/item/clothing/glasses/meson{
- pixel_x = 2
- },
-/turf/open/floor/iron,
-/area/engine/engineering)
"kCM" = (
/turf/open/floor/plating,
/area/quartermaster/warehouse)
@@ -21724,18 +21792,6 @@
},
/turf/open/floor/iron/showroomfloor,
/area/crew_quarters/fitness/recreation)
-"kDx" = (
-/obj/structure/filingcabinet,
-/obj/item/folder/documents,
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 1
- },
-/obj/machinery/power/apc/auto_name/east,
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/turf/open/floor/iron/dark,
-/area/security/nuke_storage)
"kDO" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -22332,22 +22388,6 @@
/obj/machinery/hydroponics/soil,
/turf/open/floor/plating/grass,
/area/asteroid/paradise/surface)
-"kXq" = (
-/obj/structure/table,
-/obj/item/wrench{
- pixel_x = -4;
- pixel_y = 15
- },
-/obj/item/crowbar/red{
- pixel_x = -2;
- pixel_y = 11
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/item/analyzer{
- pixel_x = 1
- },
-/turf/open/floor/iron,
-/area/engine/engineering)
"kXu" = (
/obj/machinery/vending/autodrobe/all_access,
/obj/machinery/airalarm/directional/north,
@@ -22527,6 +22567,27 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai_upload)
+"lcS" = (
+/obj/machinery/power/apc/auto_name/west{
+ pixel_x = -24
+ },
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 8
+ },
+/area/hallway/primary/central{
+ name = "-2 Primary Hallway"
+ })
"ldp" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -22835,6 +22896,13 @@
},
/turf/open/floor/iron/white,
/area/science/robotics)
+"lkA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/engine/atmos)
"llb" = (
/obj/item/paper/fluff/holodeck/disclaimer{
pixel_x = -4;
@@ -22845,25 +22913,6 @@
},
/turf/open/floor/carpet/green,
/area/crew_quarters/cafeteria)
-"lll" = (
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/railing,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/atmos)
"llo" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -22897,20 +22946,6 @@
},
/turf/open/floor/carpet/red,
/area/crew_quarters/heads/hos)
-"llU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk/multiz/down{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/hallway/primary/fore{
- name = "-1 Primary Hallway"
- })
"lmb" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/power/apc/auto_name/south{
@@ -22992,19 +23027,6 @@
/obj/structure/flora/rock/pile,
/turf/open/floor/plating/asteroid/planetary,
/area/asteroid/paradise/surface)
-"lnW" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/power/apc/auto_name/east,
-/obj/structure/cable/yellow,
-/turf/open/floor/iron/tech,
-/area/science/mixing/chamber)
"lnY" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
dir = 1
@@ -23097,20 +23119,6 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating/asteroid/planetary,
/area/asteroid/paradise)
-"lqc" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/rnd/production/techfab/department/cargo,
-/obj/machinery/power/apc/auto_name/east,
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/iron/dark,
-/area/quartermaster/storage)
"lqn" = (
/obj/item/radio/intercom{
dir = 1;
@@ -23145,6 +23153,22 @@
},
/turf/open/floor/iron,
/area/janitor)
+"lrs" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/dark/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/atmos)
"lrR" = (
/obj/machinery/door/poddoor/shutters/preopen{
id = "cmoshutter";
@@ -23189,27 +23213,6 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat/maint)
-"ltq" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/table,
-/obj/item/storage/belt/utility/full/engi,
-/obj/item/rcl/pre_loaded,
-/obj/item/rcl/pre_loaded,
-/obj/item/clothing/ears/earmuffs{
- pixel_x = -3;
- pixel_y = -2
- },
-/obj/item/clothing/ears/earmuffs{
- pixel_x = -5;
- pixel_y = 6
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/iron/dark,
-/area/engine/engineering)
"lts" = (
/obj/structure/railing{
dir = 1
@@ -23428,6 +23431,26 @@
/obj/machinery/space_heater,
/turf/open/floor/iron,
/area/maintenance/department/engine)
+"lzD" = (
+/obj/effect/spawner/lootdrop/aimodule_harmless,
+/obj/effect/spawner/lootdrop/aimodule_harmless,
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/flasher{
+ id = "AI";
+ pixel_x = -1;
+ pixel_y = 32
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/effect/spawner/lootdrop/aimodule_harmless,
+/obj/machinery/power/apc/auto_name/east,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/structure/table/reinforced,
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai_upload)
"lAn" = (
/obj/effect/turf_decal/sand/plating,
/obj/structure/girder,
@@ -24297,6 +24320,23 @@
},
/turf/open/floor/engine,
/area/ai_monitored/turret_protected/ai)
+"lYL" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/engineering/hallway{
+ name = "Engineering Viewing Platform"
+ })
"lZd" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -24579,6 +24619,14 @@
},
/turf/open/floor/iron,
/area/science/research)
+"mhM" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/bot,
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/open/floor/iron,
+/area/engine/engineering)
"mik" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -25018,6 +25066,37 @@
},
/turf/open/floor/iron/tech/grid,
/area/ai_monitored/turret_protected/aisat_interior)
+"mwU" = (
+/obj/structure/table/glass,
+/obj/item/retractor{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/cautery{
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/item/hemostat,
+/obj/item/scalpel{
+ pixel_y = 12
+ },
+/obj/item/circular_saw,
+/obj/item/surgicaldrill{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/blood_filter{
+ pixel_x = -1;
+ pixel_y = 5
+ },
+/obj/machinery/defibrillator_mount{
+ pixel_y = -24
+ },
+/obj/item/storage/backpack/duffelbag/med/implant{
+ pixel_y = 4
+ },
+/turf/open/floor/iron,
+/area/medical/surgery)
"mxd" = (
/obj/structure/sign/departments/minsky/research/robotics,
/turf/closed/wall,
@@ -25122,22 +25201,6 @@
/area/hallway/primary/fore{
name = "-1 Primary Hallway"
})
-"mzu" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engineering)
"mzC" = (
/obj/effect/spawner/xmastree,
/turf/open/floor/wood,
@@ -25191,6 +25254,23 @@
/obj/effect/spawner/structure/window/plasma/reinforced,
/turf/open/floor/plating,
/area/engine/engineering)
+"mAQ" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 8;
+ name = "Medbay";
+ sortType = 9
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/medical/medbay/central)
"mAS" = (
/obj/structure/railing{
dir = 1
@@ -25235,21 +25315,6 @@
/obj/machinery/atmospherics/pipe/layer_manifold/visible,
/turf/open/floor/engine/n2o,
/area/engine/atmos)
-"mCw" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/quartermaster/storage)
"mDm" = (
/obj/structure/rack,
/obj/item/rollerbed{
@@ -25633,16 +25698,6 @@
},
/turf/open/floor/plating,
/area/maintenance/department/engine/atmos)
-"mMw" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/item/radio/intercom{
- pixel_y = -33
- },
-/turf/open/floor/iron/dark,
-/area/engine/engineering)
"mMZ" = (
/obj/machinery/atmospherics/components/binary/valve,
/obj/machinery/button/ignition/incinerator/toxmix{
@@ -25956,6 +26011,23 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating,
/area/maintenance/department/bridge)
+"mVw" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/box,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/turf/open/floor/iron/white,
+/area/medical/storage)
"mWc" = (
/obj/effect/turf_decal/siding/wideplating/dark{
dir = 1
@@ -25983,26 +26055,6 @@
slowdown = 0
},
/area/asteroid/paradise/surface)
-"mWM" = (
-/obj/machinery/holopad,
-/obj/effect/turf_decal/box,
-/obj/effect/mapping_helpers/airlock/unres{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/turf/open/floor/iron/white,
-/area/medical/storage)
"mWS" = (
/obj/structure/curtain/directional{
color = "#ACD1E9";
@@ -26110,13 +26162,6 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/captain)
-"nad" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/turf/open/floor/iron/dark,
-/area/engine/engineering)
"nbf" = (
/obj/machinery/door/window/southleft{
dir = 1;
@@ -26625,17 +26670,6 @@
},
/turf/open/floor/iron/dark,
/area/engine/engineering)
-"nrg" = (
-/obj/structure/railing/corner{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/iron/dark,
-/area/engine/atmos)
"nrw" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/eastleft{
@@ -26696,6 +26730,23 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/central)
+"ntF" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 4
+ },
+/area/hallway/primary/central{
+ name = "-2 Primary Hallway"
+ })
+"ntZ" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/item/robot_suit/prebuilt,
+/turf/open/floor/iron,
+/area/science/robotics)
"nuD" = (
/obj/structure/closet/secure_closet/personal/cabinet,
/obj/item/clothing/under/misc/assistantformal,
@@ -26810,6 +26861,21 @@
/obj/item/coin/gold,
/turf/open/floor/carpet/orange,
/area/crew_quarters/dorms)
+"nxT" = (
+/obj/machinery/airalarm/directional/west,
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_x = 1;
+ pixel_y = 23
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 2
+ },
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
"nye" = (
/obj/effect/turf_decal/tile/dark_green/fourcorners/contrasted,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
@@ -26818,6 +26884,46 @@
},
/turf/open/floor/iron,
/area/hydroponics)
+"nyu" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/paper/monitorkey{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/folder/yellow,
+/obj/item/toy/figure/ce{
+ pixel_x = 8;
+ pixel_y = 4
+ },
+/obj/item/stamp/chief_engineer{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 5
+ },
+/obj/machinery/camera/autoname{
+ dir = 8;
+ network = list("ss13","engine")
+ },
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Chief Engineer's Desk";
+ departmentType = 4;
+ name = "Chief Engineer RC";
+ pixel_x = 32;
+ pixel_y = 31
+ },
+/obj/machinery/power/apc/auto_name/east,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/carpet/royalblue,
+/area/crew_quarters/heads/chief)
"nyB" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/structure/cable/yellow{
@@ -26999,6 +27105,12 @@
/obj/effect/spawner/lootdrop/maintenance/two,
/turf/open/floor/iron,
/area/maintenance/department/science/xenobiology)
+"nCn" = (
+/obj/effect/turf_decal/evac,
+/turf/open/floor/iron,
+/area/hallway/primary/central{
+ name = "-2 Primary Hallway"
+ })
"nDA" = (
/obj/structure/table,
/obj/machinery/fax/service,
@@ -27300,6 +27412,18 @@
/obj/structure/flora/rock,
/turf/open/floor/plating/grass,
/area/asteroid/paradise/surface)
+"nKx" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal/incinerator)
"nKB" = (
/obj/effect/turf_decal/sand/plating,
/turf/open/floor/sepia/planetary{
@@ -27387,37 +27511,6 @@
/obj/machinery/computer/prisoner/management,
/turf/open/floor/iron,
/area/bridge)
-"nOu" = (
-/obj/machinery/light,
-/obj/machinery/firealarm/directional/south,
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/obj/structure/table,
-/obj/item/food/dough{
- pixel_x = 4
- },
-/obj/item/food/dough{
- pixel_x = 9;
- pixel_y = 2
- },
-/obj/item/reagent_containers/food/condiment/enzyme{
- pixel_x = -5;
- pixel_y = 9
- },
-/turf/open/floor/iron/cafeteria,
-/area/crew_quarters/kitchen)
-"nOx" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/closet/radiation,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron/dark,
-/area/engine/engineering)
"nPk" = (
/obj/effect/turf_decal/sand/plating,
/obj/effect/decal/cleanable/dirt/dust,
@@ -27668,21 +27761,18 @@
/obj/structure/flora/ausbushes/fullgrass,
/turf/open/floor/plating/asteroid/planetary,
/area/asteroid/paradise)
-"nXM" = (
+"nXZ" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/dark/visible{
- dir = 1
+ dir = 8
},
/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engineering)
+/area/quartermaster/storage)
"nYl" = (
/obj/effect/turf_decal/tile/black/opposingcorners{
dir = 1
@@ -28320,20 +28410,23 @@
"orc" = (
/turf/open/floor/iron/cafeteria_red,
/area/crew_quarters/cafeteria)
-"orh" = (
+"ord" = (
/obj/effect/turf_decal/stripes/line{
- dir = 10
+ dir = 8
},
-/obj/structure/cable/yellow{
- icon_state = "1-4"
+/obj/item/radio/intercom{
+ pixel_x = 32
},
-/obj/structure/disposalpipe/segment{
- dir = 5
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
},
/turf/open/floor/iron/dark,
-/area/engineering/hallway{
- name = "Engineering Viewing Platform"
- })
+/area/engine/engineering)
"oru" = (
/obj/structure/lattice/catwalk/over,
/obj/machinery/computer/apc_control{
@@ -28383,6 +28476,19 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/bar)
+"orF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/shower{
+ dir = 8;
+ name = "emergency shower"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/engine/engineering)
"orO" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/landmark/start/assistant,
@@ -28574,6 +28680,19 @@
},
/turf/open/floor/iron/dark,
/area/security/brig)
+"ovN" = (
+/obj/effect/landmark/start/assistant,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/crew_quarters/fitness/recreation)
"ovP" = (
/obj/structure/railing{
dir = 1
@@ -28757,6 +28876,25 @@
"ozT" = (
/turf/open/floor/iron/grid/steel,
/area/medical/patients_rooms)
+"oAl" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/firealarm/directional/east,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/engineering/hallway{
+ name = "Engineering Viewing Platform"
+ })
"oAv" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
@@ -28780,6 +28918,16 @@
},
/turf/open/floor/plating,
/area/crew_quarters/cafeteria)
+"oAN" = (
+/obj/machinery/atmospherics/components/binary/pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 6
+ },
+/area/hallway/primary/aft{
+ name = "-3 Primary Hallway"
+ })
"oBg" = (
/obj/machinery/camera/autoname{
network = list("ss13","rd")
@@ -28820,6 +28968,16 @@
},
/turf/open/floor/iron,
/area/security/brig)
+"oBs" = (
+/obj/machinery/atmospherics/components/binary/volume_pump/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/hallway/primary/aft{
+ name = "-3 Primary Hallway"
+ })
"oBS" = (
/obj/machinery/dna_scannernew,
/obj/effect/turf_decal/bot,
@@ -28866,23 +29024,6 @@
/area/hallway/primary/central{
name = "-2 Primary Hallway"
})
-"oDR" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/disposalpipe/sorting/mail/flip{
- dir = 8;
- name = "Medbay";
- sortType = 9
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/medical/medbay/central)
"oEg" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -29032,6 +29173,18 @@
/obj/effect/spawner/lootdrop/maintenance/two,
/turf/open/floor/plating,
/area/quartermaster/warehouse)
+"oGV" = (
+/obj/machinery/computer/bank_machine{
+ dir = 1
+ },
+/obj/effect/turf_decal/delivery,
+/obj/structure/sign/warning/electricshock{
+ pixel_y = -32
+ },
+/turf/open/floor/circuit/green{
+ luminosity = 2
+ },
+/area/security/nuke_storage)
"oHx" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/decal/cleanable/dirt/dust,
@@ -29616,6 +29769,19 @@
},
/turf/open/floor/iron/white,
/area/science/research)
+"oTT" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/crew_quarters/heads/hop)
"oUH" = (
/obj/structure/table/optable{
name = "Forensics Operating Table"
@@ -29752,26 +29918,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/tech,
/area/engine/engineering)
-"oYO" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/tile/yellow/half/contrasted{
- alpha = 180;
- dir = 8
- },
-/obj/item/radio/intercom{
- dir = 1;
- pixel_x = -30;
- pixel_y = -2
- },
-/turf/open/floor/iron/dark/corner{
- dir = 1
- },
-/area/hallway/primary/central{
- name = "-2 Primary Hallway"
- })
"oYP" = (
/obj/effect/turf_decal/tile/purple/half/contrasted{
dir = 1
@@ -29950,25 +30096,6 @@
/area/hallway/primary/fore{
name = "-1 Primary Hallway"
})
-"pbq" = (
-/obj/machinery/door/airlock/command{
- name = "Head of Personnel's Office";
- req_access_txt = "57"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/crew_quarters/heads/hop)
"pbw" = (
/obj/machinery/door/airlock{
name = "Hydroponics";
@@ -30097,22 +30224,6 @@
},
/turf/open/floor/engine,
/area/science/xenobiology)
-"pfU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/dark/visible,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/atmos)
"pgy" = (
/obj/structure/flora/ausbushes/sparsegrass,
/obj/structure/flora/ausbushes/lavendergrass,
@@ -30576,15 +30687,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/wood,
/area/crew_quarters/cafeteria)
-"pwD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/effect/turf_decal/evac,
-/turf/open/floor/iron,
-/area/hallway/primary/central{
- name = "-2 Primary Hallway"
- })
"pwG" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/curtain/directional{
@@ -30615,6 +30717,20 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating,
/area/maintenance/department/cargo)
+"pyi" = (
+/obj/machinery/door/window/northleft{
+ dir = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/hallway/primary/fore{
+ name = "-1 Primary Hallway"
+ })
"pyw" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -30890,18 +31006,6 @@
dir = 10
},
/area/science/lab)
-"pFh" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/dark/visible,
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal/incinerator)
"pFA" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -31074,18 +31178,6 @@
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/bar)
-"pJO" = (
-/obj/structure/cable/yellow{
- icon_state = "1-16"
- },
-/obj/effect/turf_decal/trimline/yellow,
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/power/apc/auto_name/east,
-/obj/structure/cable/yellow,
-/turf/open/floor/pod/dark,
-/area/maintenance/department/medical/morgue)
"pKj" = (
/obj/structure/flora/rock/pile,
/obj/effect/turf_decal/sand/plating,
@@ -31153,24 +31245,6 @@
},
/turf/open/floor/iron/dark,
/area/storage/tech)
-"pLs" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/disposalpipe/trunk/multiz/down{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/medical/medbay/central)
"pLv" = (
/obj/effect/turf_decal/siding/white{
alpha = 100;
@@ -31327,6 +31401,21 @@
},
/turf/open/floor/iron,
/area/security/brig)
+"pNs" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/crew_quarters/heads/hop)
"pNv" = (
/turf/closed/wall/rust,
/area/quartermaster/sorting)
@@ -31574,14 +31663,6 @@
},
/turf/open/floor/iron,
/area/maintenance/disposal/incinerator)
-"pVj" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/power/apc/auto_name/east,
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/turf/open/floor/iron,
-/area/maintenance/department/engine)
"pVO" = (
/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
dir = 9
@@ -31727,15 +31808,6 @@
/obj/machinery/light,
/turf/open/floor/iron/dark,
/area/engine/atmos)
-"pYt" = (
-/obj/item/clothing/gloves/color/yellow,
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/obj/effect/turf_decal/bot,
-/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor/iron,
-/area/engine/engineering)
"pYO" = (
/obj/machinery/computer/security/mining,
/obj/effect/turf_decal/tile/brown/half/contrasted{
@@ -31972,6 +32044,25 @@
/obj/machinery/flasher/portable,
/turf/open/floor/iron/dark,
/area/ai_monitored/security/armory)
+"qgf" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table,
+/obj/item/pipe_dispenser{
+ pixel_x = 1;
+ pixel_y = 12
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/item/clothing/glasses/meson{
+ pixel_y = 1
+ },
+/obj/item/clothing/glasses/meson{
+ pixel_y = 1
+ },
+/obj/item/clothing/glasses/meson{
+ pixel_x = 2
+ },
+/turf/open/floor/iron,
+/area/engine/engineering)
"qgj" = (
/obj/structure/flora/ausbushes/lavendergrass,
/obj/structure/flora/ausbushes/ywflowers,
@@ -32503,15 +32594,6 @@
/obj/machinery/space_heater,
/turf/open/floor/plating,
/area/maintenance/department/bridge)
-"qwZ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/iron,
-/area/engine/atmos)
"qxa" = (
/obj/structure/lattice/catwalk/over,
/obj/structure/chair/foldable,
@@ -32663,10 +32745,6 @@
},
/turf/open/floor/plating,
/area/science/mixing/chamber)
-"qBm" = (
-/obj/machinery/light,
-/turf/open/floor/iron,
-/area/engine/atmos)
"qBw" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 8
@@ -32844,6 +32922,18 @@
dir = 1
},
/area/asteroid/paradise/surface/water)
+"qJj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/dark/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engineering)
"qJo" = (
/obj/structure/flora/ausbushes/fullgrass,
/turf/open/floor/plating/asteroid/planetary,
@@ -32880,16 +32970,6 @@
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/iron/grid/steel,
/area/medical/medbay/central)
-"qKf" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/power/port_gen/pacman,
-/turf/open/floor/iron/dark,
-/area/engine/engineering)
"qKB" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -32903,6 +32983,21 @@
/area/hallway/primary/aft{
name = "-3 Primary Hallway"
})
+"qKE" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/power/apc/auto_name/east,
+/obj/structure/chair/office/light{
+ dir = 1;
+ pixel_y = 3
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/effect/landmark/start/scientist,
+/turf/open/floor/iron/grid/steel,
+/area/science/xenobiology)
"qKI" = (
/obj/machinery/portable_atmospherics/scrubber,
/obj/effect/turf_decal/bot{
@@ -32939,6 +33034,19 @@
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
/area/maintenance/department/medical/morgue)
+"qMs" = (
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/engine/atmos)
"qMA" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -33052,9 +33160,24 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/bar)
-"qPS" = (
-/obj/item/kirbyplants/random,
-/turf/open/floor/iron,
+"qPR" = (
+/obj/machinery/atmospherics/pipe/simple/dark/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/railing,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
/area/engine/atmos)
"qPX" = (
/obj/machinery/light{
@@ -33141,6 +33264,22 @@
/area/hallway/primary/aft{
name = "-3 Primary Hallway"
})
+"qRl" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/medical/medbay/central)
"qRs" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/structure/barricade/wooden,
@@ -33322,28 +33461,19 @@
},
/turf/open/floor/plating,
/area/crew_quarters/heads/hor)
-"qWg" = (
-/obj/structure/railing{
- dir = 4
+"qWo" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/techstorage/command,
-/obj/effect/turf_decal/delivery,
-/obj/item/radio/intercom{
- pixel_y = 29
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
},
-/obj/machinery/power/apc/auto_name/east,
/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/machinery/camera/motion{
- c_tag = "Technical Storage";
- dir = 8;
- name = "motion-sensitive Technical Storage";
- network = list("ss13","engine")
+ icon_state = "2-4"
},
-/turf/open/floor/iron/techmaint/planetary,
-/area/storage/tech)
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/crew_quarters/fitness/recreation)
"qWJ" = (
/obj/machinery/door/window/southleft{
dir = 4;
@@ -33705,6 +33835,13 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/plating,
/area/maintenance/department/engine/atmos)
+"rfl" = (
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 4
+ },
+/obj/machinery/pipedispenser/disposal,
+/turf/open/floor/iron,
+/area/engine/engineering)
"rfn" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -34330,20 +34467,6 @@
/obj/structure/sign/departments/minsky/security/security,
/turf/closed/wall/r_wall,
/area/security/brig)
-"rrS" = (
-/obj/machinery/door/window/northleft{
- dir = 2
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/hallway/primary/fore{
- name = "-1 Primary Hallway"
- })
"rsb" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -34644,37 +34767,6 @@
},
/turf/open/floor/plating/asteroid/basalt/planetary,
/area/asteroid/paradise)
-"rAh" = (
-/obj/structure/table/glass,
-/obj/item/retractor{
- pixel_x = -2;
- pixel_y = 2
- },
-/obj/item/cautery{
- pixel_x = -1;
- pixel_y = 1
- },
-/obj/item/hemostat,
-/obj/item/scalpel{
- pixel_y = 12
- },
-/obj/item/circular_saw,
-/obj/item/surgicaldrill{
- pixel_x = 1;
- pixel_y = 7
- },
-/obj/item/blood_filter{
- pixel_x = -1;
- pixel_y = 5
- },
-/obj/machinery/defibrillator_mount{
- pixel_y = -24
- },
-/obj/item/storage/backpack/duffelbag/med/implant{
- pixel_y = 4
- },
-/turf/open/floor/iron,
-/area/medical/surgery)
"rAS" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
@@ -34837,18 +34929,6 @@
},
/turf/open/floor/plating,
/area/maintenance/department/science/central)
-"rEX" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/camera/autoname{
- dir = 4;
- network = list("ss13","engine")
- },
-/obj/machinery/status_display/evac{
- pixel_x = -32
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/iron,
-/area/engine/engineering)
"rFm" = (
/obj/structure/railing{
dir = 4
@@ -35220,7 +35300,6 @@
/turf/open/floor/plating/asteroid/basalt/planetary,
/area/asteroid/paradise)
"rNF" = (
-/obj/item/clothing/gloves/color/yellow,
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/bot,
/obj/structure/closet/secure_closet/atmospherics{
@@ -35374,6 +35453,16 @@
},
/turf/open/openspace,
/area/security/brig)
+"rSg" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/engine/engineering)
"rSl" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -35546,18 +35635,6 @@
/obj/machinery/firealarm/directional/west,
/turf/open/floor/iron,
/area/bridge)
-"rYi" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/binary/pump{
- name = "Fuel Pipe to Incinerator"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal/incinerator)
"rYt" = (
/turf/open/floor/carpet,
/area/asteroid/paradise/surface)
@@ -35614,6 +35691,18 @@
},
/turf/open/floor/plating,
/area/maintenance/department/engine)
+"rZG" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/hallway/primary/central{
+ name = "-2 Primary Hallway"
+ })
"rZM" = (
/turf/open/floor/plating,
/area/maintenance/department/science/central)
@@ -35855,6 +35944,21 @@
/area/engineering/hallway{
name = "Engineering Viewing Platform"
})
+"seM" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engineering)
"sff" = (
/obj/structure/rack,
/obj/item/crowbar/red,
@@ -35905,14 +36009,6 @@
/area/hallway/primary/central{
name = "-2 Primary Hallway"
})
-"sfW" = (
-/obj/machinery/power/emitter/welded{
- dir = 4
- },
-/obj/effect/turf_decal/bot,
-/obj/structure/cable/yellow,
-/turf/open/floor/plating,
-/area/engine/engineering)
"sgc" = (
/obj/effect/turf_decal/box,
/obj/machinery/holopad,
@@ -36139,6 +36235,21 @@
/area/hallway/primary/aft{
name = "-3 Primary Hallway"
})
+"slR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/camera/autoname{
+ dir = 4;
+ network = list("ss13","engine")
+ },
+/obj/machinery/status_display/evac{
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/engine/engineering)
"slY" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -36199,6 +36310,25 @@
/obj/structure/girder,
/turf/open/floor/plating,
/area/maintenance/department/cargo)
+"sof" = (
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/dark/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/hallway/primary/central{
+ name = "-2 Primary Hallway"
+ })
"som" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
@@ -36281,6 +36411,21 @@
/area/hallway/primary/fore{
name = "-1 Primary Hallway"
})
+"srp" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/dark/visible{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal/incinerator)
"sru" = (
/obj/structure/chair/wood/normal{
dir = 8
@@ -36388,6 +36533,24 @@
},
/turf/open/floor/iron,
/area/medical/medbay/central)
+"svQ" = (
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/engineering/hallway{
+ name = "Engineering Viewing Platform"
+ })
"swh" = (
/obj/machinery/smartfridge/food,
/turf/closed/wall,
@@ -36563,13 +36726,6 @@
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/iron,
/area/maintenance/department/eva)
-"sBR" = (
-/turf/open/floor/iron/dark/corner{
- dir = 4
- },
-/area/hallway/primary/central{
- name = "-2 Primary Hallway"
- })
"sBX" = (
/obj/structure/flora/ausbushes/lavendergrass,
/turf/open/floor/plating/asteroid/planetary,
@@ -36787,22 +36943,6 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/turf/open/floor/iron/dark,
/area/security/warden)
-"sJt" = (
-/obj/structure/railing/corner{
- dir = 4
- },
-/obj/effect/turf_decal/siding/dark/corner{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/iron/dark/side{
- dir = 4
- },
-/area/hallway/primary/central{
- name = "-2 Primary Hallway"
- })
"sJC" = (
/obj/effect/spawner/room/fivexfour,
/turf/open/floor/plating,
@@ -37229,6 +37369,13 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/storage)
+"sVw" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/power/port_gen/pacman,
+/turf/open/floor/iron/dark,
+/area/engine/engineering)
"sVZ" = (
/turf/open/floor/wood/broken,
/area/vacant_room/office)
@@ -37317,6 +37464,21 @@
/obj/structure/flora/ausbushes/lavendergrass,
/turf/open/floor/plating/asteroid/basalt/planetary,
/area/asteroid/paradise)
+"sXh" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/quartermaster/storage)
"sXp" = (
/obj/machinery/airalarm/directional/east,
/mob/living/simple_animal/pet/dog/corgi/Ian{
@@ -37960,22 +38122,6 @@
},
/turf/open/floor/iron,
/area/security/brig)
-"tjN" = (
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/disposalpipe/junction{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/medical/medbay/central)
"tko" = (
/turf/closed/wall,
/area/security/detectives_office)
@@ -38520,21 +38666,6 @@
},
/turf/open/floor/iron/dark,
/area/security/brig)
-"tts" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engineering)
"ttC" = (
/obj/structure/railing,
/obj/structure/lattice,
@@ -39164,24 +39295,6 @@
/area/hallway/primary/fore{
name = "-1 Primary Hallway"
})
-"tID" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/manifold/general/hidden{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/tcommsat/computer)
"tII" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/turf_decal/bot,
@@ -39208,14 +39321,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/tech,
/area/engine/atmos)
-"tJf" = (
-/obj/machinery/door/window/eastright{
- dir = 2;
- name = "Robotics Surgery";
- req_access_txt = "29"
- },
-/turf/open/floor/iron/white,
-/area/science/robotics)
"tJk" = (
/obj/structure/closet{
name = "Evidence Closet"
@@ -39574,6 +39679,12 @@
/obj/machinery/door/firedoor,
/turf/open/floor/grass/no_border,
/area/crew_quarters/heads/chief)
+"tPX" = (
+/obj/item/toy/plush/lizard_plushie{
+ name = "Swims-the-ocean"
+ },
+/turf/open/floor/plating/beach/deep_water,
+/area/asteroid/paradise/surface/water)
"tQX" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -39942,46 +40053,6 @@
},
/turf/open/floor/wood,
/area/vacant_room/office)
-"tVz" = (
-/obj/structure/table/reinforced,
-/obj/item/clipboard{
- pixel_x = -5;
- pixel_y = 3
- },
-/obj/item/paper/monitorkey{
- pixel_x = -5;
- pixel_y = 3
- },
-/obj/item/folder/yellow,
-/obj/item/toy/figure/ce{
- pixel_x = 8;
- pixel_y = 4
- },
-/obj/item/stamp/chief_engineer{
- pixel_x = -5;
- pixel_y = 5
- },
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 5
- },
-/obj/machinery/camera/autoname{
- dir = 8;
- network = list("ss13","engine")
- },
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Chief Engineer's Desk";
- departmentType = 4;
- name = "Chief Engineer RC";
- pixel_x = 32;
- pixel_y = 31
- },
-/obj/machinery/power/apc/auto_name/east,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/carpet/royalblue,
-/area/crew_quarters/heads/chief)
"tVK" = (
/obj/effect/turf_decal/siding/white{
dir = 1
@@ -40146,6 +40217,21 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron/grid/steel,
/area/medical/patients_rooms)
+"ubD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/dark/visible{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engineering)
"ubG" = (
/obj/machinery/conveyor{
dir = 1;
@@ -40154,19 +40240,6 @@
/obj/structure/plasticflaps,
/turf/open/floor/plating,
/area/science/mixing)
-"ucC" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/crew_quarters/heads/hop)
"ucF" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/box,
@@ -40175,35 +40248,6 @@
},
/turf/open/floor/carpet/red,
/area/crew_quarters/theatre/backstage)
-"udm" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/railing/corner{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-16"
- },
-/obj/effect/turf_decal/trimline/yellow,
-/obj/effect/landmark/start/station_engineer,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/dark/visible{
- dir = 1
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/atmos)
"udq" = (
/obj/structure/flora/junglebush/b,
/obj/structure/window/reinforced{
@@ -40494,23 +40538,6 @@
},
/turf/open/floor/plating,
/area/crew_quarters/heads/chief)
-"ukz" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/item/reagent_containers/food/condiment/saltshaker{
- pixel_x = 4;
- pixel_y = 9
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "Chefwindow";
- name = "Chef window"
- },
-/obj/item/toy/figure/chef{
- pixel_x = -4;
- pixel_y = -1
- },
-/turf/open/floor/iron/white,
-/area/crew_quarters/kitchen)
"ukS" = (
/obj/effect/turf_decal/siding/dark{
dir = 6
@@ -40542,21 +40569,6 @@
"uli" = (
/turf/closed/wall/r_wall/rust,
/area/engine/atmos)
-"ulo" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/power/apc/auto_name/east,
-/obj/structure/chair/office/light{
- dir = 1;
- pixel_y = 3
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/effect/landmark/start/scientist,
-/turf/open/floor/iron/grid/steel,
-/area/science/xenobiology)
"uly" = (
/turf/closed/wall,
/area/security/nuke_storage)
@@ -40606,6 +40618,23 @@
},
/turf/open/floor/iron,
/area/medical/storage)
+"uno" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 8
+ },
+/area/hallway/primary/central{
+ name = "-2 Primary Hallway"
+ })
"unp" = (
/obj/effect/turf_decal/delivery,
/obj/structure/cable/yellow{
@@ -41103,21 +41132,6 @@
/obj/item/kirbyplants/random,
/turf/open/floor/iron/white/corner,
/area/science/lab)
-"uyo" = (
-/obj/structure/railing/corner{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/iron/dark,
-/area/engineering/hallway{
- name = "Engineering Viewing Platform"
- })
"uyA" = (
/obj/structure/railing{
dir = 8
@@ -41365,14 +41379,6 @@
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plating,
/area/maintenance/department/bridge)
-"uGP" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1
- },
-/obj/effect/turf_decal/bot,
-/obj/machinery/light/small,
-/turf/open/floor/iron/tech,
-/area/engine/engineering)
"uHM" = (
/obj/effect/turf_decal/tile/purple/half/contrasted{
dir = 4
@@ -41449,16 +41455,6 @@
},
/turf/open/floor/plating,
/area/maintenance/department/engine/atmos)
-"uKb" = (
-/obj/machinery/computer/bank_machine,
-/obj/effect/turf_decal/delivery,
-/obj/structure/sign/warning/electricshock{
- pixel_y = -32
- },
-/turf/open/floor/circuit/green{
- luminosity = 2
- },
-/area/security/nuke_storage)
"uKf" = (
/obj/effect/turf_decal/sand/plating,
/obj/effect/decal/cleanable/dirt,
@@ -41466,13 +41462,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating/asteroid/basalt/planetary,
/area/asteroid/paradise)
-"uKq" = (
-/obj/effect/turf_decal/bot,
-/obj/item/robot_suit,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/iron,
-/area/science/robotics)
"uKw" = (
/obj/structure/table,
/obj/item/stock_parts/subspace/ansible,
@@ -41537,6 +41526,18 @@
/obj/structure/closet/firecloset/full,
/turf/open/floor/iron,
/area/maintenance/department/cargo)
+"uMm" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-16"
+ },
+/obj/effect/turf_decal/trimline/yellow,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/power/apc/auto_name/east,
+/obj/structure/cable/yellow,
+/turf/open/floor/pod/dark,
+/area/maintenance/department/medical/morgue)
"uMJ" = (
/obj/machinery/computer/xenoartifact_console,
/obj/effect/turf_decal/bot,
@@ -41653,6 +41654,15 @@
},
/turf/open/floor/iron/dark,
/area/teleporter)
+"uPP" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/engine/atmos)
"uPQ" = (
/obj/machinery/portable_atmospherics/canister/nitrogen,
/obj/effect/turf_decal/bot,
@@ -41730,6 +41740,26 @@
slowdown = 0
},
/area/asteroid/paradise/surface)
+"uRk" = (
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Engineering Foyer";
+ req_one_access_txt = "32"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/engineering/hallway{
+ name = "Engineering Viewing Platform"
+ })
"uRn" = (
/obj/effect/turf_decal/stripes/line,
/obj/structure/fence/cut{
@@ -41762,14 +41792,25 @@
/obj/machinery/door/firedoor,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"uRN" = (
-/obj/item/clothing/gloves/color/yellow,
+"uRW" = (
+/obj/item/radio/intercom{
+ pixel_x = 33;
+ pixel_y = -3
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
/obj/effect/turf_decal/stripes/line{
- dir = 1
+ dir = 4
},
-/obj/effect/turf_decal/bot,
-/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor/iron,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
/area/engine/engineering)
"uSd" = (
/obj/effect/turf_decal/sand/plating,
@@ -42398,19 +42439,6 @@
/obj/effect/spawner/lootdrop/maintenance/two,
/turf/open/floor/plating,
/area/maintenance/department/science/xenobiology)
-"vgF" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/crew_quarters/heads/hop)
"vgG" = (
/turf/closed/wall,
/area/engine/atmos)
@@ -42544,17 +42572,6 @@
},
/turf/open/floor/plating,
/area/maintenance/department/bridge)
-"vkV" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/crew_quarters/fitness/recreation)
"vlt" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 4
@@ -42790,6 +42807,42 @@
"vqI" = (
/turf/closed/mineral/random/air,
/area/asteroid/paradise)
+"vrf" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engineering)
+"vrl" = (
+/obj/machinery/atmospherics/components/trinary/mixer/airmix/flipped{
+ dir = 8;
+ piping_layer = 2;
+ node1_concentration = 0.21;
+ node2_concentration = 0.79
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/obj/structure/window/plasma/reinforced{
+ dir = 1
+ },
+/obj/structure/window/plasma/reinforced{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/engine/atmos)
"vrq" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/box,
@@ -42891,6 +42944,37 @@
},
/turf/open/floor/plating,
/area/maintenance/department/science/central)
+"vtL" = (
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/dark/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 8
+ },
+/area/hallway/primary/central{
+ name = "-2 Primary Hallway"
+ })
+"vtZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/dark/visible{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engineering)
"vuh" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/box,
@@ -43015,17 +43099,6 @@
},
/turf/open/floor/carpet/blue,
/area/crew_quarters/heads/hop)
-"vwI" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engineering)
"vwV" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -43355,16 +43428,6 @@
},
/turf/open/floor/iron/dark,
/area/engine/engineering)
-"vKJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/shower{
- dir = 8;
- name = "emergency shower"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/iron,
-/area/engine/engineering)
"vLx" = (
/obj/structure/sign/painting/library{
pixel_y = 1
@@ -43375,6 +43438,23 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/openspace,
/area/asteroid/paradise)
+"vLB" = (
+/obj/structure/table/optable{
+ pixel_y = 7
+ },
+/obj/item/surgical_drapes{
+ pixel_y = 4
+ },
+/obj/machinery/light,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/item/clothing/gloves/color/latex{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/turf/open/floor/iron,
+/area/medical/surgery)
"vLP" = (
/turf/closed/wall/r_wall,
/area/storage/tech)
@@ -43671,24 +43751,6 @@
},
/turf/open/floor/iron,
/area/security/prison)
-"vUQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/atmos)
"vVo" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -43855,6 +43917,24 @@
},
/turf/open/floor/carpet/blue,
/area/crew_quarters/heads/cmo)
+"vYm" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/general/hidden{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/tcommsat/computer)
"vYB" = (
/obj/effect/turf_decal/tile/yellow/anticorner/contrasted,
/obj/item/kirbyplants/random,
@@ -43953,21 +44033,6 @@
/obj/item/trash/can/food,
/turf/open/floor/plating/beach/water,
/area/asteroid/paradise/surface/water)
-"waG" = (
-/obj/machinery/power/apc/auto_name/west{
- pixel_x = -24
- },
-/obj/structure/cable/yellow,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/iron/dark/side{
- dir = 8
- },
-/area/hallway/primary/central{
- name = "-2 Primary Hallway"
- })
"waJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -44026,6 +44091,20 @@
name = "mainframe floor"
},
/area/tcommsat/server)
+"wbG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk/multiz/down{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/hallway/primary/fore{
+ name = "-1 Primary Hallway"
+ })
"wbZ" = (
/obj/structure/musician/piano{
icon_state = "piano"
@@ -44455,20 +44534,6 @@
},
/turf/open/floor/plating,
/area/maintenance/department/cargo)
-"wli" = (
-/obj/machinery/door/airlock/engineering/glass{
- name = "Engineering Foyer";
- req_one_access_txt = "32"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor,
-/turf/open/floor/iron/dark,
-/area/engineering/hallway{
- name = "Engineering Viewing Platform"
- })
"wlj" = (
/obj/effect/turf_decal/tile/black/opposingcorners{
dir = 1
@@ -44983,16 +45048,6 @@
},
/turf/open/floor/iron,
/area/security/prison)
-"wCG" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/power/apc/auto_name/east,
-/obj/structure/cable/yellow,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/science/central)
"wDb" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -45201,6 +45256,24 @@
},
/turf/open/floor/iron/dark,
/area/maintenance/disposal)
+"wHg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/dark/visible{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/atmos)
"wHw" = (
/obj/structure/stairs{
dir = 8
@@ -45577,20 +45650,6 @@
/area/hallway/primary/fore{
name = "-1 Primary Hallway"
})
-"wSm" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/iron/dark/corner{
- dir = 8
- },
-/area/hallway/primary/central{
- name = "-2 Primary Hallway"
- })
"wSx" = (
/obj/structure/lattice,
/obj/structure/railing/corner,
@@ -45692,19 +45751,6 @@
},
/turf/open/floor/iron/dark,
/area/engine/engineering)
-"wTQ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/firealarm/directional/east,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/iron/dark,
-/area/engineering/hallway{
- name = "Engineering Viewing Platform"
- })
"wUl" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/box,
@@ -46173,6 +46219,24 @@
},
/turf/open/floor/plating/asteroid/planetary,
/area/asteroid/paradise)
+"xip" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/table,
+/obj/item/storage/belt/utility/full/engi,
+/obj/item/rcl/pre_loaded,
+/obj/item/rcl/pre_loaded,
+/obj/item/clothing/ears/earmuffs{
+ pixel_x = -3;
+ pixel_y = -2
+ },
+/obj/item/clothing/ears/earmuffs{
+ pixel_x = -5;
+ pixel_y = 6
+ },
+/turf/open/floor/iron/dark,
+/area/engine/engineering)
"xiu" = (
/obj/effect/turf_decal/trimline/white/line{
dir = 1
@@ -46416,16 +46480,6 @@
},
/turf/open/floor/iron/tech/grid,
/area/ai_monitored/turret_protected/ai_upload)
-"xne" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "External Gas to Loop"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/firealarm/directional/south,
-/turf/open/floor/iron/dark,
-/area/engine/engineering)
"xnh" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/spawner/lootdrop/grille_or_trash,
@@ -46485,11 +46539,14 @@
/area/science/test_area)
"xoN" = (
/obj/structure/table,
-/obj/item/airlock_painter,
+/obj/item/airlock_painter{
+ pixel_y = 4
+ },
/obj/item/storage/toolbox/electrical,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/item/clothing/gloves/color/yellow,
/turf/open/floor/iron/dark,
/area/engine/engineering)
"xoR" = (
@@ -46664,21 +46721,6 @@
/obj/structure/flora/ausbushes/sparsegrass,
/turf/open/floor/iron/techmaint/planetary,
/area/asteroid/paradise/surface)
-"xqp" = (
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
- },
-/obj/structure/table,
-/obj/item/wallframe/extinguisher_cabinet{
- pixel_x = -1;
- pixel_y = 31
- },
-/obj/item/clothing/mask/gas/explorer{
- pixel_x = -5;
- pixel_y = 6
- },
-/turf/open/floor/iron,
-/area/engine/atmos)
"xqU" = (
/obj/structure/flora/rock/pile,
/turf/open/floor/plating/asteroid/basalt/planetary,
@@ -46697,18 +46739,6 @@
/area/hallway/primary/central{
name = "-2 Primary Hallway"
})
-"xsc" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal/incinerator)
"xsj" = (
/obj/effect/turf_decal/siding/wood{
dir = 5
@@ -47188,6 +47218,28 @@
/obj/structure/closet/emcloset/anchored,
/turf/open/floor/iron,
/area/maintenance/department/bridge)
+"xFT" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/techstorage/command,
+/obj/effect/turf_decal/delivery,
+/obj/item/radio/intercom{
+ pixel_y = 29
+ },
+/obj/machinery/power/apc/auto_name/east,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/camera/motion{
+ c_tag = "Technical Storage";
+ dir = 8;
+ name = "motion-sensitive Technical Storage";
+ network = list("ss13","engine")
+ },
+/turf/open/floor/iron/techmaint/planetary,
+/area/storage/tech)
"xGl" = (
/obj/effect/turf_decal/siding/white{
alpha = 100
@@ -47202,21 +47254,6 @@
},
/turf/open/floor/plating/asteroid/planetary,
/area/crew_quarters/dorms)
-"xGw" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/structure/disposalpipe/junction/flip{
- dir = 2
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/crew_quarters/heads/hop)
"xGG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 10
@@ -47429,21 +47466,6 @@
/obj/structure/ore_box,
/turf/open/floor/plating/asteroid/planetary,
/area/quartermaster/storage)
-"xKs" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/crew_quarters/heads/hop)
"xKF" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -47471,6 +47493,18 @@
},
/turf/open/floor/iron,
/area/quartermaster/sorting)
+"xKZ" = (
+/obj/structure/filingcabinet,
+/obj/item/folder/documents,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/power/apc/auto_name/east,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/turf/open/floor/iron/dark,
+/area/security/nuke_storage)
"xLc" = (
/obj/item/paper/guides/jobs/medical/morgue,
/obj/effect/turf_decal/bot,
@@ -47898,6 +47932,13 @@
},
/turf/open/floor/plating,
/area/storage/primary)
+"xWb" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/science/robotics)
"xWe" = (
/obj/structure/lattice,
/turf/open/openspace,
@@ -47971,6 +48012,15 @@
/obj/effect/spawner/lootdrop/gambling,
/turf/open/floor/carpet/blue,
/area/crew_quarters/cafeteria)
+"xZg" = (
+/obj/machinery/power/emitter/welded{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/obj/structure/cable/yellow,
+/obj/machinery/light/small,
+/turf/open/floor/plating,
+/area/engine/engineering)
"xZu" = (
/obj/structure/railing{
dir = 8
@@ -48004,22 +48054,6 @@
},
/turf/open/floor/iron/white,
/area/science/xenobiology)
-"xZX" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/delivery,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/iron/dark,
-/area/engine/engineering)
"yaq" = (
/turf/closed/wall/rust,
/area/science/server)
@@ -48168,6 +48202,27 @@
},
/turf/open/floor/iron,
/area/maintenance/department/crew_quarters/dorms)
+"yek" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/dark/visible{
+ dir = 10
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engineering)
"yet" = (
/turf/open/floor/plating/beach/coastline_b{
dir = 1
@@ -48253,12 +48308,6 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/iron,
/area/maintenance/department/crew_quarters/dorms)
-"ygc" = (
-/obj/item/toy/plush/lizard_plushie{
- name = "Swims-the-ocean"
- },
-/turf/open/floor/plating/beach/deep_water,
-/area/asteroid/paradise/surface/water)
"ygB" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron/dark/side{
@@ -48277,6 +48326,23 @@
},
/turf/open/floor/iron,
/area/engine/engineering)
+"yhn" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/dark/visible{
+ dir = 4
+ },
+/obj/structure/railing,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/atmos)
"yib" = (
/obj/effect/turf_decal/tile/blue{
dir = 8
@@ -48305,21 +48371,6 @@
/obj/effect/decal/cleanable/food/egg_smudge,
/turf/open/floor/iron/cafeteria,
/area/crew_quarters/kitchen)
-"yjl" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engineering)
"yjX" = (
/obj/effect/spawner/structure/window/plasma/reinforced,
/obj/machinery/atmospherics/pipe/simple/green/visible,
@@ -57546,7 +57597,7 @@ hbl
uli
mgL
bKc
-jsJ
+vrl
cnW
qdc
tIa
@@ -58799,9 +58850,9 @@ dzD
kTN
riv
jap
-aIa
-eZF
-vkV
+ovN
+qWo
+dGX
oMA
xBP
iKu
@@ -58831,7 +58882,7 @@ jOo
jOo
jRB
vgG
-xqp
+iHQ
xQu
aby
dXj
@@ -59845,7 +59896,7 @@ mIY
qZA
qZA
rMK
-axf
+nXZ
tVY
qVO
oZa
@@ -59861,7 +59912,7 @@ tww
vci
eJz
fqM
-lll
+qPR
fVf
dzW
kMN
@@ -60102,7 +60153,7 @@ duC
eog
lxp
rMK
-axf
+nXZ
eVv
jFB
wzA
@@ -60115,15 +60166,15 @@ uly
tpD
tHB
jxW
-uKb
+oGV
eJz
qUr
-ipm
+yhn
cQe
nAD
-fAi
-rYi
-pFh
+jZf
+bsk
+fen
fBG
lLa
ata
@@ -60359,7 +60410,7 @@ pHJ
gdE
vFW
qcy
-mCw
+sXh
nUa
eoY
lqI
@@ -60375,10 +60426,10 @@ cBs
hBl
eJz
klc
-udm
-pfU
+adp
+lrs
teA
-cxL
+srp
mLQ
niN
ufL
@@ -60632,10 +60683,10 @@ bAQ
klr
eJz
rNF
-vUQ
-qwZ
+wHg
+uPP
nAD
-xsc
+nKx
csL
xpn
dzW
@@ -60875,7 +60926,7 @@ rru
viT
bdN
wHD
-lqc
+bhy
cfv
xoc
gWp
@@ -60883,7 +60934,7 @@ jPg
qrl
pjs
uly
-kDx
+xKZ
pIl
ptb
roc
@@ -61147,7 +61198,7 @@ eJz
eJz
qOg
gXc
-uRN
+mhM
kbq
dzW
ihL
@@ -61404,12 +61455,12 @@ vLP
xTu
eOD
gXc
-pYt
+cUd
pVY
uUK
-azK
+rfl
ecq
-qKf
+sVw
sXB
gqv
gqv
@@ -61662,7 +61713,7 @@ rzg
cTC
upw
oNv
-rEX
+slR
jsW
xkz
xkz
@@ -61912,19 +61963,19 @@ feI
tNX
cii
vLP
-qWg
+xFT
oeh
vLP
vgi
mVd
-jeF
+qJj
udt
hAp
wdX
rof
-kCq
-kXq
-iPB
+qgf
+hGv
+bYx
bGW
uAD
bcS
@@ -62174,16 +62225,16 @@ vLP
vLP
top
lts
-nXM
+vtZ
eCn
aIx
fMC
bFF
-ksc
+uRW
wTI
cvP
qzg
-nad
+rSg
hsv
tVm
jOz
@@ -62431,10 +62482,10 @@ tlH
pVY
pVY
vVo
-yjl
+ubD
wWC
scb
-dAp
+fRK
paJ
dXI
gWU
@@ -62443,7 +62494,7 @@ ezZ
dXI
uAb
wzE
-gPs
+aIu
lCS
eGc
mmJ
@@ -62688,9 +62739,9 @@ bHK
onj
rZf
oFu
-yjl
+ubD
wWC
-mMw
+dQZ
dXI
dXI
ifQ
@@ -62700,7 +62751,7 @@ cdq
xiB
lSc
uTP
-uGP
+elZ
sXB
cFP
rzV
@@ -62945,7 +62996,7 @@ nrc
fpH
wEX
pHp
-yjl
+ubD
wWC
pLM
yjX
@@ -63202,7 +63253,7 @@ sMX
ldp
mNP
wDK
-vwI
+dUB
vuh
xOh
pCa
@@ -63459,7 +63510,7 @@ cSZ
ewS
rMf
pHp
-yjl
+ubD
wWC
tBj
vvK
@@ -63707,8 +63758,8 @@ gQE
iuO
gnm
rLR
-gRN
-jSm
+oBs
+oAN
gzS
gCg
uWx
@@ -63716,9 +63767,9 @@ kaw
gNi
fFu
pHp
-yjl
+ubD
wWC
-xne
+iJo
dXI
dXI
ocx
@@ -63728,7 +63779,7 @@ tSB
xiB
lSc
uTP
-uGP
+elZ
sXB
vqI
qnE
@@ -63973,7 +64024,7 @@ sui
gQn
rIZ
pHp
-mzu
+eqA
wWC
bRj
jwj
@@ -63985,7 +64036,7 @@ gFg
dXI
jrk
nAy
-sfW
+xZg
sXB
xqU
eHe
@@ -64230,16 +64281,16 @@ pVY
pVY
dta
kXQ
-ejo
+yek
dHA
gYA
gYA
wpu
-xZX
+iAO
aje
taA
ePy
-cOG
+jxx
azB
oYA
gPs
@@ -64487,7 +64538,7 @@ cTa
bwz
aLe
pkS
-tts
+jUx
tRY
nwE
vmX
@@ -64731,7 +64782,7 @@ esx
evW
qXK
gBj
-dKK
+gYJ
iZu
dTP
sFh
@@ -64739,9 +64790,9 @@ qXK
evW
woV
lEQ
-cvu
-hos
-khm
+dvF
+seM
+vrf
ajT
fQW
wTG
@@ -65003,7 +65054,7 @@ oLV
rIq
bJQ
xRl
-vKJ
+orF
vKD
rPo
rPo
@@ -65262,13 +65313,13 @@ sWy
pVY
pVY
iUP
-nOx
+uTU
uTU
nWu
-eAv
+ord
nWu
xoN
-ltq
+xip
dEz
vpm
sXB
@@ -65760,7 +65811,7 @@ eZt
mNH
hJA
uIW
-ulo
+qKE
fSJ
mZk
mNH
@@ -67312,7 +67363,7 @@ hCs
hzQ
btw
rEz
-pVj
+idv
oRo
woV
lyU
@@ -69404,8 +69455,8 @@ sLz
mKz
lZV
rNv
-ccE
-jkD
+jRA
+jEt
bXA
vqI
vqI
@@ -122798,7 +122849,7 @@ eWL
tGT
tGT
kND
-pJO
+uMm
vcY
hqw
pjN
@@ -123602,7 +123653,7 @@ mEr
oCE
eBY
asv
-qPS
+qpc
tHO
jUp
qKI
@@ -123827,8 +123878,8 @@ bxt
xgH
bkn
nyZ
-mWM
-dAa
+mVw
+dZS
fRu
lKm
axZ
@@ -123859,7 +123910,7 @@ mEr
oCE
cMn
asv
-qBm
+kfC
tHO
gVJ
lJP
@@ -124116,7 +124167,7 @@ oCE
oCE
cMn
qGN
-bXd
+lkA
quQ
aLc
jDC
@@ -124885,7 +124936,7 @@ hoN
pnn
vgG
tYX
-qpc
+hZc
eHd
cny
jUM
@@ -125142,7 +125193,7 @@ iKw
csG
cJP
kgl
-nrg
+qMs
qwi
eBA
gKl
@@ -126171,8 +126222,8 @@ dYJ
aVS
gDY
dJL
-tID
-bge
+vYm
+aXv
iED
caJ
caJ
@@ -126386,7 +126437,7 @@ xdb
qiO
llQ
umB
-nOu
+jQe
bDD
ejD
tuz
@@ -126898,7 +126949,7 @@ afw
laf
gcq
swh
-ukz
+hjG
vsM
cEM
bDD
@@ -126935,7 +126986,7 @@ eQt
wcq
bbJ
tko
-hKX
+aFe
tTt
oEl
gZh
@@ -127956,16 +128007,16 @@ xgC
bev
teC
kMR
-fwr
-anK
-wSm
-waG
-hxh
-oYO
-wli
-wTQ
-uyo
-orh
+gZf
+kip
+heo
+lcS
+uno
+gIE
+uRk
+oAl
+svQ
+lYL
hyx
mAS
ifA
@@ -128192,7 +128243,7 @@ gyy
gyy
tbo
uxJ
-iyn
+rZG
jzj
rId
rId
@@ -128213,8 +128264,8 @@ rId
rId
rId
enr
-sJt
-sBR
+sof
+ntF
ndP
clc
noe
@@ -128449,7 +128500,7 @@ gyy
gyy
gyy
gak
-iyn
+rZG
jzj
rId
rId
@@ -128963,7 +129014,7 @@ gyy
gyy
gyy
gak
-iyn
+rZG
jzj
rId
rId
@@ -128992,7 +129043,7 @@ ddQ
ddQ
tPD
hsN
-tVz
+nyu
vJG
aoH
oru
@@ -129220,7 +129271,7 @@ gyy
gyy
qsE
tju
-iyn
+rZG
jzj
rId
rId
@@ -129241,8 +129292,8 @@ rId
rId
rId
vga
-jqO
-brL
+vtL
+css
ndP
psr
qjF
@@ -129498,8 +129549,8 @@ urc
uma
qjF
xZy
-pwD
-aMy
+nCn
+ndP
pKX
tTb
tTb
@@ -134891,7 +134942,7 @@ auW
fcC
jsb
aqu
-cne
+nxT
wHe
swz
piQ
@@ -135145,7 +135196,7 @@ aRY
aTx
mMZ
aJe
-lnW
+fdd
mjt
aqu
gXz
@@ -189369,7 +189420,7 @@ jUT
hUe
xpI
xjt
-rAh
+mwU
uhc
qhT
qhT
@@ -189617,16 +189668,16 @@ dgE
wDb
ibc
rPF
-cjo
-pLs
-tjN
+imH
+dMU
+qRl
pTS
gPE
tWb
lol
bAp
mth
-azy
+vLB
uhc
pub
pub
@@ -189875,7 +189926,7 @@ iyS
iyS
iyS
pMY
-oDR
+mAQ
svO
uhc
lVB
@@ -190132,7 +190183,7 @@ pcZ
nlH
iyS
wEt
-iDi
+gLX
thg
aSN
pEf
@@ -193471,7 +193522,7 @@ jNd
rHi
soL
gim
-cpR
+lzD
lOG
cKi
ajZ
@@ -194015,7 +194066,7 @@ bpo
kBY
tkJ
ofn
-cgb
+wbG
sSN
ayl
rMs
@@ -194272,7 +194323,7 @@ nYL
hAh
koS
sgc
-rrS
+pyi
pZI
uYb
wIQ
@@ -194529,7 +194580,7 @@ vRY
kBY
fhb
rKr
-llU
+jMP
eBQ
aFR
kVj
@@ -196073,7 +196124,7 @@ xWg
srJ
ahk
vwV
-pbq
+hVM
voM
gNX
uOZ
@@ -196302,7 +196353,7 @@ gXD
ohi
fZv
eVJ
-tJf
+eVJ
crG
rJc
cpg
@@ -196330,7 +196381,7 @@ dur
iPI
aSp
aRP
-gBO
+ggT
srJ
vwV
srJ
@@ -196562,7 +196613,7 @@ eVJ
ohi
iWs
xiY
-eni
+xWb
enN
eFS
auE
@@ -196587,7 +196638,7 @@ dur
agi
hOi
oLn
-xKs
+pNs
fLl
kcX
srJ
@@ -196815,11 +196866,11 @@ mZT
tVi
fyA
fyA
-ddr
+fyA
fyA
pKx
wOQ
-cXy
+cpJ
jxw
eFS
mxd
@@ -196841,9 +196892,9 @@ fqz
gPq
uuD
aqx
-vgF
-ucC
-xGw
+izQ
+oTT
+jLH
uEY
ifB
epZ
@@ -197332,7 +197383,7 @@ bXW
cag
sGo
hvJ
-uKq
+ntZ
nhY
agT
aiA
@@ -197849,7 +197900,7 @@ fyA
fyA
fyA
fyA
-ddr
+fyA
fyA
tWx
tWx
@@ -198616,7 +198667,7 @@ olN
pZC
tUu
vtn
-wCG
+iOV
tWu
aPc
fJp
@@ -271887,7 +271938,7 @@ sNi
sNi
qCg
qCg
-ygc
+tPX
qCg
sNi
sNi
diff --git a/_maps/map_files/FlandStation/FlandStation.dmm b/_maps/map_files/FlandStation/FlandStation.dmm
index 1bab61d511cd0..0afa31a7a810e 100644
--- a/_maps/map_files/FlandStation/FlandStation.dmm
+++ b/_maps/map_files/FlandStation/FlandStation.dmm
@@ -19,6 +19,17 @@
},
/turf/open/floor/vault,
/area/engine/engine_room)
+"aaj" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/status_display/evac{
+ pixel_y = 32
+ },
+/turf/open/floor/grass/no_border,
+/area/crew_quarters/bar/atrium)
"aam" = (
/obj/structure/lattice,
/obj/item/shard,
@@ -61,6 +72,24 @@
},
/turf/open/floor/iron/dark,
/area/chapel/main)
+"aaS" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/end{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/red/end{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external{
+ name = "Labour Shuttle airlock"
+ },
+/obj/machinery/atmospherics/pipe/layer_manifold{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/bridge)
"abf" = (
/obj/item/shard{
icon_state = "medium"
@@ -86,14 +115,6 @@
"abm" = (
/turf/closed/wall,
/area/construction)
-"aby" = (
-/obj/structure/flora/ausbushes/leafybush,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/grass/no_border,
-/area/science/lobby)
"abz" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -133,13 +154,6 @@
},
/turf/open/floor/iron/grid,
/area/medical/surgery)
-"abH" = (
-/obj/machinery/power/tracker,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/port)
"abI" = (
/turf/closed/wall/mineral/plastitanium,
/area/chapel/main)
@@ -439,17 +453,6 @@
},
/turf/open/floor/carpet/blue,
/area/crew_quarters/heads/hop)
-"agp" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"agC" = (
/obj/effect/decal/cleanable/xenoblood,
/turf/open/floor/plating,
@@ -609,6 +612,27 @@
},
/turf/open/floor/iron,
/area/maintenance/aft)
+"ait" = (
+/obj/structure/table,
+/obj/effect/turf_decal/bot,
+/obj/item/stack/sheet/plasteel{
+ amount = 15
+ },
+/obj/item/bodypart/r_arm/robot{
+ pixel_x = 3
+ },
+/obj/item/bodypart/l_arm/robot{
+ pixel_x = -3
+ },
+/obj/item/stack/cable_coil/white,
+/obj/item/assembly/flash/handheld/weak,
+/obj/item/assembly/flash/handheld/weak,
+/obj/item/assembly/flash/handheld/weak,
+/obj/item/assembly/flash/handheld/weak,
+/obj/item/assembly/flash/handheld/weak,
+/obj/item/assembly/flash/handheld/weak,
+/turf/open/floor/iron/grid/steel,
+/area/science/robotics/lab)
"aix" = (
/obj/item/stack/cable_coil,
/obj/structure/lattice/catwalk,
@@ -902,6 +926,23 @@
/obj/machinery/firealarm/directional/north,
/turf/open/floor/iron/white,
/area/medical/medbay/central)
+"amm" = (
+/obj/effect/landmark/start/virologist,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/iron/tiled/light,
+/area/medical/virology)
"amr" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating/airless,
@@ -948,23 +989,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"amP" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table,
-/obj/item/clothing/mask/balaclava,
-/obj/item/reagent_containers/spray/cleaner{
- pixel_x = 5
- },
-/obj/item/assembly/signaler{
- pixel_x = -3;
- pixel_y = 2
- },
-/obj/item/electropack,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/iron/techmaint,
-/area/security/execution/education)
"amS" = (
/obj/structure/lattice/catwalk/over,
/turf/open/floor/plating,
@@ -1077,15 +1101,18 @@
},
/turf/open/floor/iron/checker,
/area/quartermaster/storage)
-"aoB" = (
-/obj/structure/disposalpipe/segment{
+"aoC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/iron/grid/steel,
-/area/medical/virology)
+/turf/open/floor/catwalk_floor,
+/area/engine/atmos)
"aoI" = (
/obj/machinery/door/airlock{
id_tag = "stallfood";
@@ -1100,6 +1127,21 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron/cafeteria,
/area/hydroponics/garden)
+"aoP" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L7"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"aoW" = (
/obj/structure/girder,
/turf/open/floor/plating/foam,
@@ -1288,6 +1330,17 @@
/obj/machinery/firealarm/directional/west,
/turf/open/floor/vault,
/area/engine/engine_room)
+"asj" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/status_display/evac{
+ pixel_y = 32
+ },
+/turf/open/floor/grass/no_border,
+/area/crew_quarters/bar/atrium)
"ask" = (
/obj/effect/turf_decal/bot,
/obj/effect/decal/cleanable/dirt,
@@ -1500,6 +1553,15 @@
broken = 1
},
/area/maintenance/aft)
+"aup" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/security/main)
"auw" = (
/obj/item/assembly/prox_sensor{
pixel_x = 9;
@@ -1735,6 +1797,23 @@
},
/turf/open/floor/iron/grid/steel,
/area/science/misc_lab)
+"axd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/iron/grid/steel,
+/area/medical/virology)
"axC" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 8
@@ -1763,6 +1842,12 @@
},
/turf/open/floor/plating/foam,
/area/asteroid/nearstation)
+"axO" = (
+/obj/effect/turf_decal/siding/thinplating_new/dark{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/security/nuke_storage)
"axS" = (
/obj/machinery/power/apc/auto_name/south{
pixel_y = -24
@@ -2184,9 +2269,6 @@
},
/turf/open/floor/wood,
/area/hallway/primary/aft)
-"aDg" = (
-/turf/open/floor/catwalk_floor,
-/area/drydock/security)
"aDh" = (
/obj/effect/turf_decal/bot,
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
@@ -2559,6 +2641,28 @@
/obj/item/circuitboard/machine/chem_heater,
/turf/open/floor/iron/techmaint,
/area/medical/virology)
+"aGm" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/airlock/external{
+ name = "External Solar Access";
+ req_access_txt = "10; 13"
+ },
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/solars/port)
"aGq" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
@@ -3251,25 +3355,6 @@
"aNc" = (
/turf/open/floor/iron/dark,
/area/gateway)
-"aNh" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/end{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/red/end{
- dir = 4
- },
-/obj/machinery/door/airlock/external/glass{
- name = "Labour Shuttle airlock";
- req_access_txt = "63"
- },
-/obj/machinery/atmospherics/pipe/layer_manifold{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/bridge)
"aNs" = (
/obj/effect/turf_decal/siding/yellow{
dir = 4
@@ -3302,27 +3387,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/wood,
/area/vacant_room/office)
-"aNS" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/structure/disposalpipe/junction/yjunction{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/heads/captain)
"aNW" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating,
@@ -3508,19 +3572,6 @@
/obj/machinery/light,
/turf/open/floor/iron/white,
/area/medical/medbay/lobby)
-"aPc" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/heads/captain)
"aPd" = (
/obj/structure/sign/warning/biohazard,
/turf/closed/wall/r_wall,
@@ -3662,18 +3713,6 @@
},
/turf/open/floor/iron/techmaint,
/area/maintenance/port/central)
-"aQm" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/science/mixing)
"aQp" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
@@ -3861,6 +3900,22 @@
},
/turf/open/floor/iron/techmaint,
/area/maintenance/port/central)
+"aRU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/table,
+/obj/effect/turf_decal/bot,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high,
+/obj/item/stock_parts/cell/high,
+/obj/machinery/firealarm/directional/south,
+/obj/item/assembly/prox_sensor{
+ pixel_x = 5;
+ pixel_y = 7
+ },
+/turf/open/floor/iron/grid/steel,
+/area/science/robotics/lab)
"aSc" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -4337,14 +4392,6 @@
},
/turf/open/floor/iron,
/area/maintenance/disposal)
-"aWJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/science/mixing)
"aWR" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/table,
@@ -4374,6 +4421,10 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"aXg" = (
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/turf/open/floor/cult,
+/area/library)
"aXj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -4463,6 +4514,19 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/hallway/primary/central)
+"aYp" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/grass/no_border,
+/area/science/research)
"aYs" = (
/obj/machinery/computer/crew{
dir = 8
@@ -4535,6 +4599,29 @@
/obj/machinery/pipedispenser/disposal,
/turf/open/floor/iron/dark,
/area/engine/atmos)
+"aZp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=18-BotanyCorner";
+ location = "17-Departures"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"aZB" = (
/obj/structure/sign/departments/minsky/research/xenobiology,
/turf/closed/wall/r_wall,
@@ -4646,19 +4733,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron,
/area/hallway/primary/aft)
-"baY" = (
-/obj/structure/bed/dogbed/renault,
-/mob/living/simple_animal/pet/fox/Renault{
- desc = "Renault, the Captain's trustworthy fox. Shame it's not Peuegot..."
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 26
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/crew_quarters/heads/captain)
"bbm" = (
/turf/open/floor/plating/airless{
initial_gas_mix = "o2=14;n2=23;TEMP=300"
@@ -4882,6 +4956,16 @@
/obj/item/kirbyplants/random,
/turf/open/floor/wood,
/area/hallway/primary/aft)
+"beV" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/grass/no_border,
+/area/hallway/secondary/exit/departure_lounge)
"beY" = (
/obj/effect/landmark/event_spawn,
/obj/machinery/holopad,
@@ -4922,6 +5006,13 @@
/obj/effect/turf_decal/stripes/corner,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"bfy" = (
+/obj/machinery/door/airlock/external{
+ name = "Security Escape Pod"
+ },
+/obj/effect/turf_decal/stripes/closeup,
+/turf/open/floor/catwalk_floor,
+/area/bridge)
"bfG" = (
/obj/effect/turf_decal/stripes/corner{
dir = 8
@@ -5154,6 +5245,28 @@
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/plating,
/area/maintenance/port/fore)
+"biN" = (
+/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/iron/cafeteria,
+/area/crew_quarters/heads/cmo)
"biQ" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/effect/decal/cleanable/dirt,
@@ -5373,6 +5486,13 @@
},
/turf/open/floor/iron/grid/steel,
/area/science/misc_lab)
+"blA" = (
+/obj/item/stack/cable_coil/cut/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/construction)
"blE" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -5636,12 +5756,6 @@
},
/turf/open/floor/iron,
/area/janitor)
-"bps" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 9
- },
-/turf/open/floor/catwalk_floor,
-/area/engine/atmos)
"bpv" = (
/obj/machinery/light/small{
dir = 4
@@ -5870,6 +5984,21 @@
},
/turf/open/floor/iron/grid/steel,
/area/bridge)
+"bse" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/science/mixing)
"bsm" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/disposal/bin,
@@ -5970,9 +6099,6 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/supply)
-"buz" = (
-/turf/open/floor/catwalk_floor,
-/area/drydock)
"buA" = (
/obj/structure/table/wood,
/obj/item/flashlight/lamp,
@@ -6246,6 +6372,19 @@
},
/turf/open/floor/iron/dark,
/area/chapel/office)
+"bxW" = (
+/obj/structure/sign/warning/nosmoking{
+ pixel_x = 6;
+ pixel_y = 32
+ },
+/obj/structure/table,
+/obj/effect/turf_decal/bot,
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/turf/open/floor/iron/grid/steel,
+/area/science/robotics/lab)
"byb" = (
/obj/effect/turf_decal/bot,
/obj/machinery/light/small{
@@ -6448,6 +6587,17 @@
},
/turf/open/floor/iron/dark,
/area/hallway/secondary/exit/departure_lounge)
+"bBJ" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green,
+/obj/item/toy/figure/captain{
+ pixel_x = 8
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads/captain)
"bBO" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -6465,21 +6615,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron/techmaint,
/area/science/robotics/mechbay)
-"bCg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/science/mixing)
"bCj" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -6756,15 +6891,6 @@
},
/turf/open/floor/iron/white,
/area/science/lobby)
-"bHi" = (
-/obj/structure/window/reinforced,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/bush,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/grass/no_border,
-/area/science/shuttledock)
"bHk" = (
/obj/machinery/vending/coffee,
/obj/machinery/light{
@@ -6772,6 +6898,20 @@
},
/turf/open/floor/carpet,
/area/hallway/secondary/entry)
+"bHm" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/solars/starboard/fore)
"bHq" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/box,
@@ -6784,6 +6924,17 @@
},
/turf/open/floor/iron/techmaint,
/area/medical/virology)
+"bHx" = (
+/obj/machinery/power/apc/auto_name/south{
+ pixel_y = -24
+ },
+/obj/structure/cable/yellow,
+/obj/machinery/light,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/security/main)
"bHB" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -7403,17 +7554,6 @@
},
/turf/open/floor/iron/dark,
/area/hallway/primary/central)
-"bQn" = (
-/obj/effect/turf_decal/stripes/closeup,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/door/airlock/external{
- name = "External Airlock";
- req_one_access_txt = "13;24;10"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"bQy" = (
/obj/structure/sign/map/right{
desc = "A framed outdated, yet detailed picture of the station. there's even the permanent prison wing in the bottom left!";
@@ -7621,6 +7761,14 @@
},
/turf/open/floor/iron/freezer,
/area/security/prison)
+"bTy" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"bTH" = (
/obj/structure/table,
/obj/effect/spawner/lootdrop/maintenance,
@@ -7870,18 +8018,17 @@
},
/turf/open/floor/iron/white,
/area/science/lobby)
-"bVS" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
+"bVU" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/structure/cable/yellow{
- icon_state = "1-8"
+ icon_state = "1-2"
},
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"bVW" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -8018,6 +8165,18 @@
},
/turf/open/floor/iron/dark,
/area/hallway/secondary/exit/departure_lounge)
+"bYW" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/machinery/door/window/southright{
+ name = "Sign door";
+ req_one_access = "25"
+ },
+/obj/machinery/camera{
+ c_tag = "Cafeteria antechamber";
+ name = "service camera"
+ },
+/turf/open/floor/grass/no_border,
+/area/crew_quarters/bar/atrium)
"bZm" = (
/obj/machinery/vending/cigarette,
/obj/effect/turf_decal/delivery,
@@ -8032,16 +8191,6 @@
},
/turf/open/floor/iron/techmaint,
/area/science/storage)
-"bZz" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/maintenance/disposal/incinerator)
"bZB" = (
/obj/machinery/button/door{
id = "construction";
@@ -8278,6 +8427,39 @@
},
/turf/open/floor/plating,
/area/maintenance/central)
+"cdd" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/eastright{
+ dir = 2;
+ name = "Robotics Desk";
+ req_access_txt = "29"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "robotics_shutters";
+ name = "robotics shutters"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/closeup,
+/obj/structure/desk_bell{
+ pixel_x = -8
+ },
+/obj/item/paper_bin{
+ pixel_x = 8
+ },
+/obj/item/pen{
+ pixel_x = 8
+ },
+/obj/item/folder/white{
+ pixel_x = 2;
+ pixel_y = -3
+ },
+/turf/open/floor/iron/techmaint,
+/area/science/robotics/lab)
+"cdf" = (
+/obj/structure/window/reinforced,
+/obj/structure/flora/ausbushes/genericbush,
+/turf/open/floor/grass/no_border,
+/area/quartermaster/exploration_prep)
"cdl" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -8318,10 +8500,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/hallway/primary/aft)
-"ceh" = (
-/obj/effect/spawner/structure/window/reinforced/tinted,
-/turf/open/floor/cult,
-/area/library)
"ceq" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 1
@@ -8701,6 +8879,16 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron/grid/steel,
/area/hallway/primary/port)
+"ciJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/siding/wood/corner,
+/turf/open/floor/wood,
+/area/crew_quarters/heads/captain)
"ciN" = (
/obj/structure/lattice/catwalk/over,
/obj/effect/decal/cleanable/dirt,
@@ -9158,16 +9346,6 @@
/obj/effect/landmark/start/roboticist,
/turf/open/floor/iron/techmaint,
/area/science/robotics/lab)
-"cpP" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/solar{
- id = "aftstarboard";
- name = "Aft-Starboard Solar Array"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/port/aft)
"cpS" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -9220,6 +9398,9 @@
},
/turf/open/space/basic,
/area/space/nearstation)
+"cqx" = (
+/turf/open/floor/catwalk_floor,
+/area/drydock)
"cqG" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -9306,16 +9487,6 @@
},
/turf/open/floor/iron/techmaint,
/area/security/prison)
-"crN" = (
-/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
- dir = 4
- },
-/obj/structure/closet/secure_closet/medical2,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron/dark/side{
- dir = 5
- },
-/area/medical/surgery)
"crQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
@@ -9452,16 +9623,6 @@
},
/turf/open/floor/iron/sepia,
/area/maintenance/department/engine)
-"ctP" = (
-/obj/machinery/power/solar{
- id = "portsolar";
- name = "Port Solar Array"
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/starboard/fore)
"ctR" = (
/obj/structure/lattice,
/obj/docking_port/stationary/random{
@@ -9753,6 +9914,15 @@
},
/turf/open/floor/vault,
/area/engine/engine_room)
+"cxz" = (
+/obj/structure/table,
+/obj/item/storage/box/bodybags,
+/obj/item/clothing/gloves/color/latex,
+/obj/item/clothing/mask/surgical,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/iron/dark,
+/area/security/detectives_office)
"cxA" = (
/obj/structure/closet/firecloset,
/turf/open/floor/plating,
@@ -9815,23 +9985,6 @@
dir = 8
},
/area/engine/atmos)
-"cyN" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=21-LobbyCorner";
- location = "20-Lobby"
- },
-/turf/open/floor/iron/goonplaque,
-/area/hallway/primary/port)
"cyO" = (
/obj/effect/turf_decal/bot,
/obj/machinery/atmospherics/pipe/layer_manifold{
@@ -10015,6 +10168,17 @@
/obj/machinery/door/firedoor/window,
/turf/open/floor/plating,
/area/science/shuttle)
+"cAI" = (
+/obj/item/kirbyplants/random,
+/obj/machinery/power/apc/auto_name/north{
+ pixel_y = 24
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/effect/turf_decal/siding/wood,
+/turf/open/floor/wood,
+/area/crew_quarters/heads/captain)
"cAL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -10070,6 +10234,12 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron,
/area/maintenance/disposal)
+"cBM" = (
+/obj/item/reagent_containers/food/drinks/bottle/vodka{
+ desc = "Aah, vodka. Prime choice of drink AND fuel by Russians worldwide. This one used to hold many secrets..."
+ },
+/turf/open/floor/cult,
+/area/chapel/office)
"cBZ" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
@@ -10264,28 +10434,6 @@
},
/turf/open/floor/iron/dark,
/area/security/brig)
-"cEY" = (
-/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/iron/cafeteria,
-/area/crew_quarters/heads/cmo)
"cFL" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/airalarm{
@@ -10480,19 +10628,6 @@
},
/turf/open/floor/iron/dark,
/area/crew_quarters/bar)
-"cIF" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Cryogenic Lounge"
- },
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/stripes/closeup{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/iron/grid,
-/area/crew_quarters/cryopods)
"cIH" = (
/obj/structure/table/wood,
/obj/item/reagent_containers/food/drinks/bottle/holywater{
@@ -10625,16 +10760,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron/techmaint,
/area/maintenance/solars/port)
-"cJP" = (
-/obj/effect/turf_decal/tile/yellow/opposingcorners{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown/opposingcorners,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/construction)
"cKc" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -11055,16 +11180,6 @@
},
/turf/open/floor/iron,
/area/science/lab)
-"cQf" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/solar{
- id = "forestarboard";
- name = "Fore-Starboard Solar Array"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/port/fore)
"cQv" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -11396,6 +11511,20 @@
/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted,
/turf/open/floor/iron,
/area/storage/primary)
+"cSU" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/toy/plush/moth/lovers,
+/turf/open/floor/grass/no_border,
+/area/ai_monitored/security/armory)
"cSY" = (
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -11497,6 +11626,7 @@
/obj/effect/turf_decal/tile/yellow{
dir = 8
},
+/obj/item/book/manual/wiki/atmospherics,
/turf/open/floor/iron/dark/side,
/area/engine/atmos)
"cUp" = (
@@ -11787,12 +11917,6 @@
},
/turf/open/floor/iron/ridged/steel,
/area/engine/storage_shared)
-"cYz" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/catwalk_floor,
-/area/engine/atmos)
"cYB" = (
/obj/machinery/light{
dir = 4
@@ -12257,21 +12381,6 @@
broken = 1
},
/area/maintenance/port/central)
-"det" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"dew" = (
/obj/effect/turf_decal/trimline/blue/warning{
dir = 1
@@ -12522,13 +12631,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"diA" = (
-/obj/effect/turf_decal/tile/blue/half/contrasted,
-/obj/machinery/anesthetic_machine,
-/turf/open/floor/iron/dark/side{
- dir = 4
- },
-/area/medical/surgery)
"diI" = (
/obj/machinery/newscaster{
pixel_y = 31
@@ -12703,6 +12805,20 @@
},
/turf/open/floor/plating,
/area/maintenance/port/central)
+"dkN" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "emmd";
+ name = "Emergency Medical Lockdown Shutters"
+ },
+/turf/open/floor/grass/no_border,
+/area/medical/medbay/lobby)
"dkR" = (
/obj/effect/turf_decal/trimline/blue/line{
dir = 1
@@ -13266,19 +13382,6 @@
dir = 1
},
/area/hallway/secondary/exit/departure_lounge)
-"dtg" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"dtE" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
@@ -13307,14 +13410,28 @@
/obj/item/wrench,
/turf/open/floor/iron/dark,
/area/chapel/office)
-"dtG" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp/green{
- pixel_x = 1;
- pixel_y = 5
+"dtH" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/turf/open/floor/cult,
-/area/library)
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
+"dtI" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"dtO" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/disposalpipe/segment{
@@ -13571,20 +13688,6 @@
},
/turf/open/floor/carpet,
/area/chapel/main)
-"dxv" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/solars/starboard/fore)
"dxK" = (
/obj/structure/table,
/obj/effect/decal/cleanable/dirt,
@@ -13798,29 +13901,11 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/grid/steel,
/area/bridge)
-"dCc" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"dCe" = (
/obj/structure/flora/ausbushes/lavendergrass,
/obj/machinery/light/small,
/turf/open/floor/grass,
/area/hallway/secondary/entry)
-"dCk" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/stripes/closeup,
-/obj/machinery/door/airlock/public/glass{
- name = "Departures Lounge"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/iron/grid/steel,
-/area/hallway/secondary/exit/departure_lounge)
"dCo" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -14234,12 +14319,6 @@
},
/turf/open/floor/iron/dark,
/area/hydroponics)
-"dIB" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/catwalk_floor,
-/area/drydock)
"dIJ" = (
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -14282,6 +14361,31 @@
},
/turf/open/floor/iron/dark,
/area/security/courtroom)
+"dJm" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/dark/visible{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/maintenance/disposal/incinerator)
+"dJr" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor,
+/area/science/shuttle)
"dJu" = (
/obj/effect/turf_decal/tile/blue/opposingcorners{
dir = 1
@@ -14584,6 +14688,12 @@
},
/turf/open/floor/iron/techmaint,
/area/engine/break_room)
+"dLC" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor,
+/area/engine/atmos)
"dLO" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/closeup{
@@ -14851,6 +14961,15 @@
},
/turf/open/floor/iron,
/area/hallway/primary/starboard)
+"dOg" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/entry)
"dOj" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
@@ -15466,6 +15585,21 @@
/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/bridge)
+"dWZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/science/mixing)
"dXh" = (
/obj/effect/turf_decal/caution/stand_clear{
dir = 8
@@ -15496,6 +15630,22 @@
},
/turf/open/floor/iron/grid/steel,
/area/engine/engine_room)
+"dXV" = (
+/obj/structure/cable,
+/obj/machinery/power/tracker,
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/port/aft)
+"dYe" = (
+/obj/effect/turf_decal/stripes/closeup,
+/obj/machinery/door/airlock/external{
+ name = "External Airlock";
+ req_one_access_txt = "13;24;10"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"dYq" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/obj/machinery/airalarm{
@@ -15503,17 +15653,6 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai_upload_foyer)
-"dYs" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/science/mixing)
"dYz" = (
/turf/open/floor/iron,
/area/maintenance/central)
@@ -15841,15 +15980,6 @@
/obj/machinery/door/poddoor/incinerator_toxmix,
/turf/open/floor/engine/vacuum,
/area/science/mixing/chamber)
-"ecK" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron/dark/side,
-/area/hallway/secondary/service)
"ecM" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -15859,12 +15989,6 @@
},
/turf/open/floor/carpet/royalblue,
/area/bridge/meeting_room/council)
-"ecP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"ecS" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
@@ -16029,6 +16153,14 @@
},
/turf/open/floor/iron/dark,
/area/security/brig)
+"efQ" = (
+/obj/structure/table/wood,
+/obj/item/folder,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = -32
+ },
+/turf/open/floor/cult,
+/area/library)
"egl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 9
@@ -16116,13 +16248,6 @@
},
/turf/open/floor/plating,
/area/maintenance/port/central)
-"ehP" = (
-/obj/effect/decal/cleanable/vomit/old,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/construction)
"ehQ" = (
/turf/closed/wall/r_wall,
/area/science/misc_lab/range)
@@ -16241,21 +16366,19 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/port)
-"ejR" = (
-/obj/structure/sign/poster/official/help_others{
- pixel_y = 32
+"ejI" = (
+/obj/machinery/door/airlock/public/glass{
+ name = "Cryogenic Lounge"
},
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 4
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
},
-/obj/machinery/disposal/bin,
-/obj/structure/railing{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
},
-/obj/effect/turf_decal/delivery,
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/iron/dark,
-/area/hallway/primary/central)
+/turf/open/floor/iron/grid,
+/area/crew_quarters/cryopods)
"ejS" = (
/obj/effect/turf_decal/stripes/corner{
dir = 8
@@ -16732,6 +16855,14 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron/dark,
/area/security/brig)
+"eqb" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"eqe" = (
/obj/effect/landmark/start/cook,
/obj/structure/cable/yellow{
@@ -16749,6 +16880,15 @@
/obj/structure/sign/warning/vacuum/external,
/turf/open/floor/plating,
/area/hallway/secondary/entry)
+"eqn" = (
+/obj/structure/window/reinforced,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/bush,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/grass/no_border,
+/area/science/shuttledock)
"eqE" = (
/obj/machinery/vending/wardrobe/engi_wardrobe,
/obj/effect/turf_decal/tile/yellow/opposingcorners,
@@ -16834,6 +16974,21 @@
},
/turf/open/floor/iron/dark,
/area/hallway/secondary/entry)
+"erO" = (
+/obj/item/storage/secure/briefcase{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/structure/rack,
+/obj/item/book/manual/wiki/security_space_law,
+/obj/machinery/airalarm{
+ pixel_y = 22
+ },
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads/captain)
"esb" = (
/obj/machinery/airalarm{
dir = 4;
@@ -17107,17 +17262,6 @@
/obj/effect/turf_decal/guideline/guideline_in/red,
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"ewj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/iron/dark/corner,
-/area/hallway/secondary/service)
"ewk" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -17141,15 +17285,6 @@
/obj/item/book/manual/wiki/security_space_law,
/turf/open/floor/carpet/royalblue,
/area/bridge/meeting_room/council)
-"ewE" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/drydock/security)
"ewF" = (
/obj/effect/turf_decal/sand/plating,
/obj/machinery/camera/motion{
@@ -17178,6 +17313,14 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
+"ewQ" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/turf/open/floor/cult,
+/area/library)
"exg" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
@@ -17293,12 +17436,6 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/turf/open/floor/iron,
/area/hallway/primary/port)
-"ezq" = (
-/obj/structure/window/reinforced,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/bush,
-/turf/open/floor/grass/no_border,
-/area/quartermaster/exploration_prep)
"ezv" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -17664,18 +17801,15 @@
},
/turf/open/floor/grass,
/area/hydroponics)
-"eDY" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+"eEh" = (
+/obj/effect/turf_decal/stripes/closeup,
+/obj/machinery/door/airlock/external{
+ name = "External Airlock";
+ req_one_access_txt = "13;24;10"
},
+/obj/machinery/atmospherics/pipe/layer_manifold,
/turf/open/floor/catwalk_floor,
-/area/docking/bridge)
+/area/maintenance/department/engine)
"eEl" = (
/obj/machinery/newscaster{
pixel_x = 28;
@@ -17699,16 +17833,6 @@
/obj/structure/filingcabinet,
/turf/open/floor/wood,
/area/medical/exam_room)
-"eEW" = (
-/obj/machinery/power/solar{
- id = "portsolar";
- name = "Port Solar Array"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/port)
"eFk" = (
/obj/structure/table/wood,
/obj/item/gps{
@@ -17909,22 +18033,6 @@
/obj/effect/turf_decal/stripes/openup,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"eHt" = (
-/obj/effect/turf_decal/stripes/closeup{
- dir = 1
- },
-/obj/machinery/door/airlock/external{
- name = "External Airlock";
- req_one_access_txt = "13;24;10"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"eHv" = (
/obj/structure/table/wood,
/obj/machinery/computer/libraryconsole{
@@ -17954,6 +18062,17 @@
},
/turf/open/floor/iron/grid/steel,
/area/science/research)
+"eHH" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 10
+ },
+/area/hallway/secondary/service)
"eHJ" = (
/turf/closed/wall,
/area/ai_monitored/turret_protected/ai_upload_foyer)
@@ -18029,19 +18148,6 @@
},
/turf/open/floor/iron/dark,
/area/security/checkpoint/customs)
-"eIf" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=14.2-AftCrossRet";
- location = "14.1-GravGen"
- },
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"eIl" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 4
@@ -18094,6 +18200,12 @@
},
/turf/open/floor/circuit/green,
/area/science/xenobiology)
+"eII" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/drydock)
"eIN" = (
/obj/machinery/door/airlock/maintenance{
name = "Conference room maintenance";
@@ -18214,6 +18326,35 @@
},
/turf/open/floor/iron,
/area/security/main)
+"eJk" = (
+/obj/structure/table/wood,
+/obj/item/folder/blue{
+ pixel_x = 8
+ },
+/obj/item/stamp/captain{
+ pixel_x = 8
+ },
+/obj/structure/desk_bell/speed_demon{
+ pixel_x = -8
+ },
+/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{
+ pixel_x = -6;
+ pixel_y = 14
+ },
+/obj/item/reagent_containers/food/drinks/bottle/whiskey{
+ desc = "A bottle of whiskey. There's a label that reads 'tears' taped to the front.";
+ name = "Bottle of Tears";
+ pixel_x = 8;
+ pixel_y = 20
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads/captain)
"eJm" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -18375,14 +18516,6 @@
dir = 6
},
/area/quartermaster/storage)
-"eKw" = (
-/obj/machinery/camera{
- c_tag = "Shuttle construction area - Custom shuttle dock";
- dir = 6;
- name = "hallway camera"
- },
-/turf/open/floor/catwalk_floor,
-/area/drydock)
"eKx" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -18397,6 +18530,13 @@
},
/turf/open/floor/carpet/royalblue,
/area/bridge/meeting_room/council)
+"eKN" = (
+/obj/machinery/power/tracker,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/port)
"eKW" = (
/obj/machinery/camera{
c_tag = "Escape Shuttle Hallway - Fore";
@@ -18724,6 +18864,25 @@
},
/turf/open/floor/iron/dark,
/area/hydroponics)
+"eNV" = (
+/obj/structure/table,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/clothing/glasses/welding,
+/obj/item/wrench,
+/obj/item/crowbar,
+/obj/item/stack/sheet/glass/ten,
+/obj/item/stack/sheet/mineral/copper/five,
+/obj/machinery/requests_console{
+ department = "Research Lab";
+ name = "Research RC";
+ pixel_x = 32;
+ receive_ore_updates = 1
+ },
+/turf/open/floor/iron/dark,
+/area/science/lab)
"eNY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 1
@@ -18764,6 +18923,21 @@
},
/turf/open/floor/iron/grid/steel,
/area/science/robotics/lab)
+"eOl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/dark/hidden{
+ dir = 10
+ },
+/obj/structure/sign/warning/fire{
+ pixel_x = 32
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/maintenance/disposal/incinerator)
"eOs" = (
/obj/structure/reagent_dispensers/virusfood{
pixel_x = -32
@@ -19138,19 +19312,6 @@
},
/turf/open/floor/iron/dark,
/area/security/prison/shielded)
-"eSY" = (
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/leafybush,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/grass/no_border,
-/area/bridge)
"eTf" = (
/obj/machinery/camera{
c_tag = "Xenobiology - Cell 5";
@@ -19483,6 +19644,15 @@
burnt = 1
},
/area/maintenance/starboard/fore)
+"eWe" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/catwalk_floor,
+/area/docking/bridge)
"eWg" = (
/obj/structure/railing{
dir = 8
@@ -19491,15 +19661,6 @@
dir = 1
},
/area/hallway/primary/central)
-"eWk" = (
-/obj/effect/turf_decal/stripes/corner,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/dark/hidden{
- dir = 5
- },
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/maintenance/disposal/incinerator)
"eWG" = (
/obj/machinery/light/small{
dir = 4
@@ -19641,6 +19802,21 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai_upload_foyer)
+"eXK" = (
+/obj/structure/flora/grass/jungle,
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/genericbush,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/sunnybush,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/grass/no_border,
+/area/science/research)
"eXP" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/rack,
@@ -19982,13 +20158,6 @@
/obj/effect/turf_decal/trimline/blue/corner,
/turf/open/floor/iron/white,
/area/medical/medbay/central)
-"fcH" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"fcM" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
dir = 4
@@ -20100,6 +20269,18 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron/dark,
/area/crew_quarters/heads/chief)
+"fdQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"fec" = (
/mob/living/basic/cockroach,
/obj/effect/turf_decal/bot,
@@ -20174,6 +20355,25 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"ffv" = (
+/obj/structure/table,
+/obj/item/folder/red{
+ pixel_x = 3
+ },
+/obj/item/folder/white{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/item/storage/firstaid/regular,
+/obj/item/reagent_containers/syringe,
+/obj/effect/turf_decal/bot,
+/obj/machinery/camera{
+ c_tag = "Security - Medbay";
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron/techmaint,
+/area/security/main)
"ffy" = (
/obj/effect/spawner/lootdrop/glowstick/lit,
/turf/open/floor/plating,
@@ -20421,6 +20621,14 @@
},
/turf/open/floor/iron/techmaint,
/area/science/misc_lab)
+"fjh" = (
+/obj/structure/cable,
+/obj/machinery/power/solar{
+ id = "forestarboard";
+ name = "Fore-Starboard Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/port/fore)
"fji" = (
/obj/structure/table/reinforced,
/obj/item/folder/white{
@@ -20478,6 +20686,17 @@
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
/area/storage/art)
+"fkk" = (
+/obj/structure/table/wood/fancy,
+/obj/item/soulstone/anybody/chaplain,
+/obj/item/organ/heart{
+ pixel_x = 8;
+ pixel_y = 7
+ },
+/obj/item/reagent_containers/food/drinks/bottle/holywater,
+/obj/item/book/granter/spell/smoke/lesser,
+/turf/open/floor/cult,
+/area/chapel/office)
"fkn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 8
@@ -20524,6 +20743,25 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/captain/private)
+"fkI" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/airlock/external{
+ name = "External Solar Access";
+ req_access_txt = "10; 13"
+ },
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/layer_manifold{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/solars/starboard/fore)
"fkK" = (
/obj/structure/cable,
/turf/open/floor/plating/airless,
@@ -20636,6 +20874,14 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/engine,
/area/ai_monitored/turret_protected/ai)
+"fly" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/open/floor/grass/no_border,
+/area/quartermaster/exploration_prep)
"flF" = (
/obj/structure/noticeboard{
dir = 8;
@@ -20718,16 +20964,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/locker)
-"fnj" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/science/mixing)
"fnz" = (
/obj/machinery/light{
dir = 4
@@ -20794,6 +21030,17 @@
},
/turf/open/floor/plating,
/area/quartermaster/miningdock)
+"fof" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/corner,
+/area/hallway/secondary/service)
"fom" = (
/obj/machinery/power/apc/auto_name/north{
pixel_y = 24
@@ -20915,15 +21162,6 @@
},
/turf/open/floor/iron/dark,
/area/security/checkpoint/customs)
-"fpq" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor,
-/area/science/shuttle)
"fpv" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow,
@@ -21031,13 +21269,6 @@
},
/turf/open/floor/iron,
/area/security/main)
-"fro" = (
-/obj/effect/landmark/blobstart,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/construction)
"frp" = (
/obj/effect/landmark/start/assistant,
/obj/effect/turf_decal/siding/wideplating/dark{
@@ -21150,6 +21381,12 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
+"fsH" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"fsI" = (
/obj/effect/turf_decal/guideline/guideline_out_arrow_con/blue{
dir = 4
@@ -21542,23 +21779,6 @@
luminosity = 2
},
/area/security/nuke_storage)
-"fwA" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/closeup,
-/obj/machinery/door/airlock/external/glass{
- name = "Labour Shuttle airlock";
- req_access_txt = "63"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/bridge)
"fwE" = (
/obj/effect/spawner/randomvend/cola,
/obj/effect/turf_decal/delivery,
@@ -21572,13 +21792,6 @@
/obj/machinery/atmospherics/components/unary/cryo_cell,
/turf/open/floor/engine/light,
/area/medical/cryo)
-"fwS" = (
-/obj/machinery/power/tracker,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/port/fore)
"fwV" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -21596,6 +21809,16 @@
},
/turf/open/floor/wood,
/area/quartermaster/qm)
+"fxc" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/catwalk_floor,
+/area/engine/atmos)
"fxf" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -22677,6 +22900,9 @@
heat_capacity = 1e+006
},
/area/maintenance/department/medical)
+"fKy" = (
+/turf/open/floor/catwalk_floor,
+/area/drydock/security)
"fKP" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -23119,6 +23345,13 @@
dir = 4
},
/area/ai_monitored/storage/eva)
+"fOZ" = (
+/obj/effect/landmark/blobstart,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/construction)
"fPc" = (
/obj/structure/table/reinforced,
/obj/item/aiModule/reset,
@@ -23294,19 +23527,6 @@
},
/turf/open/floor/iron/dark,
/area/chapel/main)
-"fSb" = (
-/obj/effect/turf_decal/stripes/closeup,
-/obj/machinery/advanced_airlock_controller{
- pixel_y = 26
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer4{
- dir = 8
- },
-/turf/open/floor/catwalk_floor,
-/area/bridge)
"fSe" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -23365,6 +23585,16 @@
},
/turf/open/floor/iron/techmaint,
/area/science/misc_lab)
+"fSK" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/construction)
"fSP" = (
/obj/machinery/newscaster{
pixel_x = 28;
@@ -23624,6 +23854,18 @@
},
/turf/open/floor/iron/techmaint,
/area/hallway/primary/central)
+"fWj" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/grass/no_border,
+/area/hallway/primary/port)
"fWv" = (
/obj/structure/table,
/obj/effect/turf_decal/trimline/brown/filled/line{
@@ -23752,16 +23994,6 @@
},
/turf/open/floor/wood,
/area/medical/exam_room)
-"fXH" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/stripes/closeup{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/open/floor/iron/grid/steel,
-/area/hallway/primary/aft)
"fXI" = (
/obj/machinery/light,
/obj/effect/turf_decal/guideline/guideline_in/red{
@@ -23999,6 +24231,25 @@
},
/turf/open/floor/iron/dark,
/area/chapel/main)
+"gap" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 9
+ },
+/turf/open/floor/catwalk_floor,
+/area/engine/atmos)
+"gaM" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads/captain)
"gaQ" = (
/obj/machinery/light,
/obj/effect/turf_decal/stripes/line,
@@ -24331,6 +24582,14 @@
},
/turf/open/floor/plating,
/area/science/xenobiology)
+"geS" = (
+/obj/structure/chair/fancy/comfy{
+ buildstackamount = 0;
+ color = "#742925";
+ dir = 4
+ },
+/turf/open/floor/cult,
+/area/library)
"gfc" = (
/obj/effect/turf_decal/stripes/line,
/obj/structure/chair/fancy/comfy{
@@ -24484,15 +24743,6 @@
/obj/structure/rack,
/turf/open/floor/plating,
/area/maintenance/port/central)
-"ghx" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/turf/open/floor/iron/dark,
-/area/hallway/primary/central)
"ghy" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -24555,14 +24805,19 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/captain/private)
-"gia" = (
-/obj/structure/closet/crate/goldcrate,
-/obj/item/crowbar,
-/obj/effect/turf_decal/siding/thinplating_new/dark{
+"gii" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/window/reinforced{
dir = 4
},
-/turf/open/floor/engine,
-/area/security/nuke_storage)
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/grass/no_border,
+/area/hallway/primary/port)
"gik" = (
/obj/item/radio/intercom{
pixel_x = -28
@@ -24788,6 +25043,19 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron/dark,
/area/engine/atmos)
+"gkS" = (
+/obj/effect/turf_decal/stripes/closeup,
+/obj/machinery/advanced_airlock_controller{
+ pixel_y = -26
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer4{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor,
+/area/bridge)
"gkZ" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 8
@@ -24831,6 +25099,27 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"glr" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/advanced_airlock_controller{
+ pixel_y = 26
+ },
+/obj/machinery/light/small,
+/obj/structure/sign/warning/vacuum/external{
+ pixel_y = -32
+ },
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/solars/port)
"gmh" = (
/obj/machinery/light{
dir = 4
@@ -25502,14 +25791,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/exit/departure_lounge)
-"gun" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"guq" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/yellow{
@@ -25647,13 +25928,6 @@
dir = 1
},
/area/hallway/secondary/service)
-"gwC" = (
-/obj/effect/decal/cleanable/glass,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/construction)
"gwI" = (
/turf/open/floor/iron/dark,
/area/crew_quarters/heads/captain)
@@ -25684,6 +25958,17 @@
},
/turf/open/floor/iron/techmaint,
/area/science/mixing)
+"gxd" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/hallway/secondary/service)
"gxh" = (
/obj/effect/turf_decal/trimline/red/filled/warning{
dir = 5
@@ -25777,9 +26062,6 @@
},
/turf/open/floor/iron/techmaint,
/area/crew_quarters/heads/chief)
-"gxY" = (
-/turf/open/floor/glass/reinforced,
-/area/crew_quarters/heads/captain)
"gyd" = (
/obj/structure/cable/yellow{
icon_state = "2-4"
@@ -26052,19 +26334,6 @@
dir = 1
},
/area/ai_monitored/storage/eva)
-"gBa" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/machinery/keycard_auth{
- pixel_x = 26;
- pixel_y = 8
- },
-/obj/item/pen/fourcolor,
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/crew_quarters/heads/captain)
"gBh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -26129,6 +26398,22 @@
},
/turf/open/floor/carpet/royalblue,
/area/crew_quarters/heads/captain/private)
+"gCc" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/closeup,
+/obj/machinery/door/airlock/external{
+ name = "Labour Shuttle airlock"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/bridge)
"gCn" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -26206,6 +26491,14 @@
},
/turf/open/floor/engine,
/area/security/nuke_storage)
+"gCF" = (
+/obj/structure/cable,
+/obj/machinery/power/solar{
+ id = "aftstarboard";
+ name = "Aft-Starboard Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/port/aft)
"gCI" = (
/obj/structure/closet/crate,
/obj/item/coin/silver,
@@ -26248,6 +26541,16 @@
/obj/effect/turf_decal/tile/yellow/opposingcorners,
/turf/open/floor/iron/sepia,
/area/engine/engineering)
+"gDy" = (
+/obj/structure/displaycase/captain,
+/obj/machinery/status_display/evac{
+ pixel_x = 32
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads/captain)
"gDJ" = (
/obj/structure/table/reinforced,
/obj/effect/spawner/lootdrop/aimodule_neutral{
@@ -26327,6 +26630,22 @@
"gEs" = (
/turf/closed/wall/r_wall,
/area/science/lab)
+"gEv" = (
+/obj/effect/turf_decal/trimline/red/filled/warning,
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/iron/dark,
+/area/security/checkpoint/medical)
"gEx" = (
/obj/item/toy/plush/opa,
/turf/open/floor/plating,
@@ -26368,24 +26687,6 @@
/obj/effect/turf_decal/siding/dark/corner,
/turf/open/floor/iron/dark,
/area/crew_quarters/bar/atrium)
-"gEW" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"gFf" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -26449,6 +26750,15 @@
},
/turf/open/floor/iron/sepia,
/area/science/shuttle)
+"gGF" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/rnd/production/circuit_imprinter/department/science,
+/obj/machinery/airalarm{
+ pixel_y = 22
+ },
+/obj/machinery/ecto_sniffer,
+/turf/open/floor/iron/grid/steel,
+/area/science/robotics/lab)
"gGR" = (
/turf/open/floor/iron/dark,
/area/chapel/main)
@@ -26665,6 +26975,15 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
+"gJH" = (
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/grass/no_border,
+/area/hallway/secondary/exit/departure_lounge)
"gJI" = (
/obj/item/reagent_containers/glass/bucket,
/obj/structure/window/reinforced{
@@ -26810,6 +27129,15 @@
/obj/effect/turf_decal/stripes/closeup,
/turf/open/floor/iron/techmaint,
/area/security/main)
+"gLi" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/entry)
"gLj" = (
/obj/item/radio/intercom{
pixel_y = -28
@@ -26881,15 +27209,6 @@
/obj/effect/landmark/start/atmospheric_technician,
/turf/open/floor/iron/techmaint,
/area/maintenance/disposal/incinerator)
-"gLR" = (
-/obj/structure/window/reinforced,
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/grass/no_border,
-/area/science/shuttledock)
"gLS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 1
@@ -27198,6 +27517,17 @@
},
/turf/open/floor/iron/dark,
/area/crew_quarters/bar)
+"gPz" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"gPE" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/openup{
@@ -27308,6 +27638,25 @@
},
/turf/open/floor/circuit/red,
/area/ai_monitored/turret_protected/ai)
+"gQW" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/beacon,
+/turf/open/floor/iron/dark,
+/area/hallway/primary/starboard)
"gRf" = (
/obj/effect/turf_decal/sand/plating,
/obj/machinery/camera/motion{
@@ -27457,6 +27806,13 @@
},
/turf/open/floor/iron/techmaint,
/area/maintenance/starboard/aft)
+"gTk" = (
+/obj/effect/decal/cleanable/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/construction)
"gTm" = (
/obj/structure/chair/fancy/sofa/old/left{
color = "#742925";
@@ -27559,17 +27915,6 @@
/obj/machinery/firealarm/directional/west,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai_upload_foyer)
-"gUM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/central)
"gUV" = (
/obj/machinery/camera{
c_tag = "Escape Shuttle Hallway - Aft";
@@ -28191,16 +28536,6 @@
/obj/structure/sign/poster/contraband/random,
/turf/closed/wall,
/area/maintenance/department/medical)
-"hem" = (
-/obj/machinery/status_display/evac{
- pixel_x = 32
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/siding/thinplating_new/dark{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/security/nuke_storage)
"hes" = (
/obj/effect/landmark/xeno_spawn,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -28398,6 +28733,23 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/quartermaster/storage)
+"hhM" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/closeup,
+/obj/machinery/door/airlock/external/glass{
+ name = "Labour Shuttle airlock";
+ req_access_txt = "63"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/bridge)
"hhW" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -28670,21 +29022,6 @@
},
/turf/open/floor/iron/dark,
/area/crew_quarters/bar)
-"hkZ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"hlk" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -28822,16 +29159,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron/grid/steel,
/area/science/research)
-"hmo" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/construction)
"hmp" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -28978,6 +29305,17 @@
},
/turf/closed/wall,
/area/vacant_room/commissary/commissary1)
+"hpS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/central)
"hpY" = (
/obj/machinery/gateway/centerstation,
/turf/open/floor/iron/dark,
@@ -29240,6 +29578,10 @@
},
/turf/open/floor/iron,
/area/security/main)
+"htz" = (
+/obj/item/beacon,
+/turf/open/floor/iron,
+/area/engine/atmos)
"huc" = (
/obj/structure/cable{
icon_state = "1-8"
@@ -29292,28 +29634,6 @@
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
/area/crew_quarters/heads/captain)
-"huY" = (
-/obj/machinery/computer/turbine_computer{
- dir = 8;
- id = "incineratorturbine"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/machinery/button/door/incinerator_vent_atmos_main{
- pixel_x = 24;
- pixel_y = -8
- },
-/obj/machinery/button/door/incinerator_vent_atmos_aux{
- pixel_x = 24;
- pixel_y = 8
- },
-/obj/machinery/button/ignition/incinerator/atmos{
- pixel_x = 34;
- pixel_y = 8
- },
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/maintenance/disposal/incinerator)
"hvm" = (
/obj/effect/decal/cleanable/dirt,
/turf/closed/wall,
@@ -29458,37 +29778,18 @@
/obj/structure/lattice/catwalk/over,
/turf/open/floor/plating,
/area/engine/gravity_generator)
-"hwR" = (
-/obj/machinery/door/airlock/external{
- name = "Security Escape Pod"
- },
-/obj/effect/turf_decal/stripes/closeup,
-/turf/open/floor/catwalk_floor,
-/area/bridge)
-"hxd" = (
-/obj/structure/table,
-/obj/item/computer_hardware/hard_drive/role/medical{
- pixel_x = 6;
- pixel_y = 3
- },
-/obj/item/computer_hardware/hard_drive/role/medical{
- pixel_x = 3
- },
-/obj/item/computer_hardware/hard_drive/role/chemistry{
- pixel_y = 6
- },
-/obj/item/computer_hardware/hard_drive/role/medical{
- pixel_x = -3
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
+"hwQ" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/turf/open/floor/iron/cafeteria,
-/area/crew_quarters/heads/cmo)
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"hxg" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -29652,6 +29953,19 @@
},
/turf/open/floor/iron/grid/steel,
/area/science/explab)
+"hzr" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/machinery/keycard_auth{
+ pixel_x = 26;
+ pixel_y = 8
+ },
+/obj/item/pen/fourcolor,
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads/captain)
"hzt" = (
/obj/machinery/door/airlock/maintenance{
name = "cargo maintenance";
@@ -29945,24 +30259,6 @@
dir = 6
},
/area/hallway/primary/central)
-"hDL" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/structure/disposalpipe/junction/yjunction{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"hDX" = (
/obj/structure/girder,
/obj/structure/cable/yellow{
@@ -30430,15 +30726,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron/sepia,
/area/engine/break_room)
-"hKb" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"hKe" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
/obj/item/kirbyplants/random,
@@ -30471,21 +30758,6 @@
/obj/structure/sign/warning/securearea,
/turf/closed/wall,
/area/maintenance/department/engine)
-"hKJ" = (
-/obj/item/storage/secure/briefcase{
- pixel_x = -2;
- pixel_y = 4
- },
-/obj/structure/rack,
-/obj/item/book/manual/wiki/security_space_law,
-/obj/machinery/airalarm{
- pixel_y = 22
- },
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/crew_quarters/heads/captain)
"hKK" = (
/obj/structure/closet/crate{
name = "food crate"
@@ -30884,6 +31156,34 @@
},
/turf/open/floor/iron/techmaint,
/area/security/prison)
+"hOb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/grid/steel,
+/area/medical/virology)
+"hOz" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external{
+ name = "External Solar Access";
+ req_access_txt = "10; 13"
+ },
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/layer_manifold{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/solars/port)
"hOB" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/glass,
@@ -30931,6 +31231,12 @@
dir = 8
},
/area/hallway/primary/aft)
+"hPb" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/maintenance/disposal/incinerator)
"hPe" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/effect/turf_decal/stripes/line{
@@ -31190,6 +31496,28 @@
broken = 1
},
/area/space)
+"hSM" = (
+/obj/machinery/computer/turbine_computer{
+ dir = 8;
+ id = "incineratorturbine"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/obj/machinery/button/door/incinerator_vent_atmos_main{
+ pixel_x = 24;
+ pixel_y = -8
+ },
+/obj/machinery/button/door/incinerator_vent_atmos_aux{
+ pixel_x = 24;
+ pixel_y = 8
+ },
+/obj/machinery/button/ignition/incinerator/atmos{
+ pixel_x = 34;
+ pixel_y = 8
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/maintenance/disposal/incinerator)
"hSO" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -31404,9 +31732,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"hVF" = (
-/turf/open/floor/glass/reinforced,
-/area/security/main)
"hVK" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/vending/cigarette,
@@ -31450,19 +31775,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating/rust,
/area/maintenance/department/medical)
-"hWn" = (
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/grass/no_border,
-/area/bridge)
"hWB" = (
/obj/structure/table/reinforced,
/obj/machinery/cell_charger,
@@ -31850,16 +32162,6 @@
/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/open/floor/iron,
/area/engine/atmos)
-"ibk" = (
-/obj/structure/displaycase/captain,
-/obj/machinery/status_display/evac{
- pixel_x = 32
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/crew_quarters/heads/captain)
"ibl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 6
@@ -31881,6 +32183,16 @@
},
/turf/open/floor/grass,
/area/storage/art)
+"ibt" = (
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/grass/no_border,
+/area/medical/medbay/lobby)
"ibu" = (
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/plating,
@@ -31933,6 +32245,12 @@
/obj/machinery/firealarm/directional/west,
/turf/open/floor/iron,
/area/quartermaster/sorting)
+"ibO" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 9
+ },
+/turf/open/floor/catwalk_floor,
+/area/drydock)
"ibU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
@@ -32082,6 +32400,13 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai)
+"idB" = (
+/obj/effect/decal/cleanable/oil,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/construction)
"idG" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -32551,9 +32876,6 @@
},
/turf/open/floor/iron/dark,
/area/maintenance/department/science)
-"ikx" = (
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/maintenance/disposal/incinerator)
"ikz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 9
@@ -32572,6 +32894,21 @@
},
/turf/open/floor/iron/dark,
/area/chapel/main)
+"ikE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"ikF" = (
/obj/effect/turf_decal/trimline/blue/corner,
/obj/effect/turf_decal/trimline/blue/filled/line{
@@ -32681,42 +33018,6 @@
},
/turf/open/floor/iron,
/area/medical/medbay/central)
-"imL" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/closeup{
- dir = 1
- },
-/obj/structure/disposalpipe/junction{
- dir = 8
- },
-/turf/open/floor/iron/grid/steel,
-/area/hallway/primary/aft)
-"imM" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/turf/open/floor/iron/stairs/right{
- dir = 8
- },
-/area/hallway/primary/aft)
"imQ" = (
/obj/structure/grille/broken,
/turf/open/floor/plating,
@@ -32838,6 +33139,15 @@
},
/turf/open/floor/iron/dark,
/area/security/execution/transfer)
+"inT" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating/airless{
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/science/shuttle)
"ioe" = (
/obj/machinery/camera{
c_tag = "Starboard Primary Hallway - AI antechamber Entrance";
@@ -33251,6 +33561,19 @@
/obj/item/clothing/mask/joy,
/turf/open/floor/plating,
/area/quartermaster/exploration_prep)
+"ity" = (
+/obj/effect/turf_decal/stripes/closeup,
+/obj/machinery/advanced_airlock_controller{
+ pixel_y = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer4{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor,
+/area/bridge)
"itO" = (
/obj/effect/turf_decal/stripes/closeup{
dir = 1
@@ -33358,17 +33681,6 @@
},
/turf/open/floor/iron/grid/steel,
/area/bridge)
-"iuB" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp/green{
- pixel_x = 1;
- pixel_y = 5
- },
-/obj/machinery/newscaster{
- pixel_y = 31
- },
-/turf/open/floor/cult,
-/area/library)
"iuH" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -33519,6 +33831,18 @@
},
/turf/open/floor/plating,
/area/maintenance/department/medical)
+"ivw" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/junction/flip{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/central)
"ivG" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/box,
@@ -33706,6 +34030,20 @@
},
/turf/open/floor/iron/dark,
/area/hallway/primary/aft)
+"ixR" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"ixT" = (
/obj/effect/turf_decal/trimline/blue/filled/line{
dir = 8
@@ -33887,28 +34225,6 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/iron/dark,
/area/medical/medbay/lobby)
-"izO" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/machinery/door/airlock/external{
- name = "External Solar Access";
- req_access_txt = "10; 13"
- },
-/obj/effect/turf_decal/stripes/closeup{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/solars/port)
"izQ" = (
/obj/effect/decal/cleanable/cobweb,
/turf/closed/wall/r_wall,
@@ -34263,16 +34579,6 @@
/obj/structure/chair/wood/normal,
/turf/open/floor/iron/dark,
/area/security/courtroom)
-"iFb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/effect/turf_decal/siding/wood/corner,
-/turf/open/floor/wood,
-/area/crew_quarters/heads/captain)
"iFh" = (
/obj/structure/target_stake,
/obj/item/target/syndicate,
@@ -34288,30 +34594,6 @@
},
/turf/open/floor/iron/freezer,
/area/crew_quarters/toilet/auxiliary)
-"iFo" = (
-/obj/machinery/airalarm{
- pixel_y = 22
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/siding/wood,
-/turf/open/floor/wood,
-/area/crew_quarters/heads/captain)
-"iFy" = (
-/obj/item/kirbyplants/random,
-/obj/machinery/power/apc/auto_name/north{
- pixel_y = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/effect/turf_decal/siding/wood,
-/turf/open/floor/wood,
-/area/crew_quarters/heads/captain)
"iFz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 10
@@ -34554,39 +34836,6 @@
},
/turf/open/floor/iron,
/area/maintenance/department/security/brig)
-"iHX" = (
-/obj/structure/closet/crate,
-/obj/item/stack/cable_coil,
-/obj/item/crowbar,
-/obj/effect/turf_decal/bot{
- dir = 1
- },
-/obj/item/stack/sheet/rglass{
- amount = 50
- },
-/obj/item/stack/sheet/iron/fifty,
-/obj/item/screwdriver{
- pixel_y = 5
- },
-/obj/item/beacon,
-/obj/item/radio/off{
- pixel_x = 4
- },
-/turf/open/floor/iron/dark/side{
- dir = 8
- },
-/area/teleporter)
-"iIc" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/blue/half/contrasted,
-/obj/item/storage/backpack/duffelbag/med/implant,
-/obj/item/storage/backpack/duffelbag/med/surgery{
- pixel_y = 8
- },
-/turf/open/floor/iron/dark/side{
- dir = 4
- },
-/area/medical/surgery)
"iIf" = (
/obj/structure/table/reinforced,
/obj/machinery/light_switch{
@@ -34608,11 +34857,6 @@
/obj/machinery/firealarm/directional/north,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"iIC" = (
-/obj/structure/cable,
-/obj/machinery/power/tracker,
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/port/aft)
"iID" = (
/obj/machinery/airalarm{
dir = 1;
@@ -34731,22 +34975,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron/white,
/area/medical/genetics)
-"iJC" = (
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/grassybush,
-/obj/structure/sign/barsign{
- pixel_y = 32
- },
-/obj/machinery/door/window/southright{
- base_state = "left";
- icon_state = "left";
- name = "Sign door";
- req_one_access = "25"
- },
-/turf/open/floor/grass/no_border,
-/area/crew_quarters/bar/atrium)
"iJE" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -35011,6 +35239,27 @@
},
/turf/open/floor/iron/dark,
/area/engine/gravity_generator)
+"iOa" = (
+/obj/structure/closet/crate,
+/obj/item/stack/cable_coil,
+/obj/item/crowbar,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/item/stack/sheet/rglass{
+ amount = 50
+ },
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/screwdriver{
+ pixel_y = 5
+ },
+/obj/item/radio/off{
+ pixel_x = 4
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 8
+ },
+/area/teleporter)
"iOe" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 1
@@ -35317,6 +35566,19 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
+"iSa" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"iSd" = (
/obj/machinery/suit_storage_unit/standard_unit,
/obj/effect/turf_decal/stripes/line{
@@ -35633,17 +35895,6 @@
},
/turf/open/floor/iron/techmaint,
/area/science/misc_lab)
-"iVZ" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp/green,
-/obj/item/toy/figure/captain{
- pixel_x = 8
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/crew_quarters/heads/captain)
"iWb" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
@@ -35725,11 +35976,6 @@
},
/turf/open/floor/iron/dark,
/area/security/courtroom)
-"iXt" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/plating,
-/area/construction)
"iXy" = (
/obj/structure/rack,
/obj/item/storage/toolbox/electrical{
@@ -35753,6 +35999,19 @@
},
/turf/open/floor/iron/techmaint,
/area/ai_monitored/storage/eva)
+"iXA" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/closet/crate,
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/obj/item/clothing/mask/surgical,
+/obj/item/clothing/gloves/color/latex,
+/obj/item/reagent_containers/blood/OPlus,
+/turf/open/floor/iron/techmaint,
+/area/security/main)
"iYl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 8
@@ -36459,6 +36718,22 @@
},
/turf/open/floor/iron/white,
/area/medical/apothecary)
+"jjc" = (
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/obj/machinery/door/airlock/external{
+ name = "External Airlock";
+ req_one_access_txt = "13;24;10"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"jjd" = (
/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
/obj/machinery/light/small{
@@ -36521,35 +36796,6 @@
/obj/item/multitool,
/turf/open/floor/iron/dark,
/area/storage/tech)
-"jjr" = (
-/obj/structure/table/wood,
-/obj/item/folder/blue{
- pixel_x = 8
- },
-/obj/item/stamp/captain{
- pixel_x = 8
- },
-/obj/structure/desk_bell/speed_demon{
- pixel_x = -8
- },
-/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{
- pixel_y = 2
- },
-/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{
- pixel_x = -6;
- pixel_y = 14
- },
-/obj/item/reagent_containers/food/drinks/bottle/whiskey{
- desc = "A bottle of whiskey. There's a label that reads 'tears' taped to the front.";
- name = "Bottle of Tears";
- pixel_x = 8;
- pixel_y = 20
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/crew_quarters/heads/captain)
"jjx" = (
/obj/effect/turf_decal/guideline/guideline_in/red{
dir = 1
@@ -36847,6 +37093,18 @@
/obj/effect/turf_decal/tile/yellow/half/contrasted,
/turf/open/floor/iron,
/area/storage/primary)
+"jmm" = (
+/obj/machinery/status_display/evac{
+ pixel_x = 32
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/thinplating_new/dark{
+ dir = 4
+ },
+/obj/structure/closet/crate/goldcrate,
+/obj/item/crowbar,
+/turf/open/floor/engine,
+/area/security/nuke_storage)
"jmr" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/rack,
@@ -37209,25 +37467,6 @@
dir = 1
},
/area/engine/atmos)
-"jrZ" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/machinery/door/airlock/external{
- name = "External Solar Access";
- req_access_txt = "10; 13"
- },
-/obj/effect/turf_decal/stripes/closeup{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/layer_manifold{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/solars/port)
"jsu" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -38023,6 +38262,12 @@
},
/turf/open/floor/plating,
/area/maintenance/port)
+"jEA" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor,
+/area/engine/atmos)
"jEJ" = (
/obj/structure/grille,
/obj/effect/turf_decal/stripes/closeup{
@@ -38068,13 +38313,6 @@
/obj/structure/lattice/catwalk/over,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/ai)
-"jFh" = (
-/obj/machinery/light/small,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/drydock)
"jFq" = (
/obj/item/kirbyplants/random,
/obj/machinery/light/small{
@@ -38093,15 +38331,6 @@
},
/turf/open/floor/iron/freezer,
/area/crew_quarters/toilet/restrooms)
-"jFB" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/entry)
"jFT" = (
/obj/effect/spawner/lootdrop/maintenance/two,
/obj/structure/rack,
@@ -38527,6 +38756,13 @@
},
/turf/open/floor/iron/dark,
/area/engine/gravity_generator)
+"jLq" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/window/reinforced,
+/turf/open/floor/grass/no_border,
+/area/crew_quarters/bar/atrium)
"jLt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -38620,21 +38856,6 @@
},
/turf/open/floor/iron/dark,
/area/engine/atmos)
-"jNj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/science/mixing)
"jNv" = (
/obj/machinery/hydroponics/constructable,
/obj/effect/turf_decal/delivery,
@@ -38650,13 +38871,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/wood,
/area/hallway/primary/port)
-"jNF" = (
-/obj/machinery/power/tracker,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/starboard/fore)
"jNJ" = (
/obj/structure/lattice/catwalk/over,
/obj/structure/disposalpipe/trunk{
@@ -38823,23 +39037,6 @@
"jOT" = (
/turf/open/floor/plating/rust,
/area/maintenance/port/fore)
-"jOV" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/stripes/closeup{
- dir = 1
- },
-/obj/machinery/door/airlock/virology{
- name = "Virology Breakroom";
- req_access_txt = "39"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron/grid/steel,
-/area/medical/virology)
"jPi" = (
/obj/effect/turf_decal/stripes/end{
dir = 1
@@ -39056,20 +39253,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/bridge)
-"jQy" = (
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "emmd";
- name = "Emergency Medical Lockdown Shutters"
- },
-/turf/open/floor/grass/no_border,
-/area/medical/medbay/lobby)
"jQF" = (
/obj/effect/turf_decal/guideline/guideline_in_T/red{
dir = 4
@@ -39145,18 +39328,6 @@
name = "mainframe floor"
},
/area/tcommsat/server)
-"jRp" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/dark/hidden{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/maintenance/disposal/incinerator)
"jRx" = (
/obj/effect/turf_decal/trimline/red/filled/line{
dir = 4
@@ -39203,6 +39374,16 @@
dir = 4
},
/area/hallway/primary/port)
+"jRN" = (
+/obj/machinery/power/solar{
+ id = "portsolar";
+ name = "Port Solar Array"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/port)
"jRO" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -39227,13 +39408,6 @@
},
/turf/open/floor/plating/airless,
/area/space/nearstation)
-"jSu" = (
-/obj/structure/bookcase,
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/construction)
"jSv" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -39335,16 +39509,6 @@
},
/turf/open/floor/iron/sepia,
/area/construction/mining/aux_base)
-"jTR" = (
-/obj/effect/turf_decal/stripes/white/line{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/mapping_helpers/dead_body_placer/medbay_morgue,
-/turf/open/floor/iron/techmaint,
-/area/medical/morgue)
"jTV" = (
/obj/structure/table/reinforced,
/obj/effect/turf_decal/bot,
@@ -39412,6 +39576,18 @@
},
/turf/open/floor/plating,
/area/maintenance/department/medical)
+"jUU" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/entry)
"jVg" = (
/obj/effect/turf_decal/caution/stand_clear{
dir = 1
@@ -39505,6 +39681,21 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/port)
+"jWq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/science/mixing)
"jWE" = (
/obj/structure/table/reinforced,
/obj/item/stack/package_wrap,
@@ -39638,6 +39829,18 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/hallway/secondary/exit/departure_lounge)
+"jYd" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/grass/no_border,
+/area/science/lobby)
"jYj" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -39788,6 +39991,18 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/dark,
/area/ai_monitored/storage/eva)
+"jZy" = (
+/obj/machinery/atmospherics/components/binary/valve{
+ dir = 4;
+ name = "mix to port"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/science/mixing)
"jZL" = (
/obj/machinery/camera{
c_tag = "Engineering Maintenance - Auxiliary Atmospheric entrance";
@@ -39829,6 +40044,18 @@
},
/turf/open/floor/iron/techmaint,
/area/ai_monitored/storage/eva)
+"jZZ" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"kac" = (
/obj/machinery/door/firedoor,
/obj/structure/table,
@@ -39928,19 +40155,6 @@
},
/turf/open/floor/iron/dark,
/area/hallway/primary/starboard)
-"kbK" = (
-/obj/effect/turf_decal/bot,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/structure/closet/crate,
-/obj/item/reagent_containers/spray/cleaner{
- pixel_x = -3;
- pixel_y = 2
- },
-/obj/item/clothing/mask/surgical,
-/obj/item/clothing/gloves/color/latex,
-/obj/item/reagent_containers/blood/OPlus,
-/turf/open/floor/iron/techmaint,
-/area/security/main)
"kbL" = (
/obj/machinery/light{
dir = 1
@@ -39999,14 +40213,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/starboard)
-"kcg" = (
-/obj/structure/table/wood,
-/obj/item/folder,
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = -32
- },
-/turf/open/floor/cult,
-/area/library)
"kcn" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -40271,16 +40477,6 @@
/obj/structure/window/reinforced,
/turf/open/floor/carpet/royalblack,
/area/bridge/showroom/corporate)
-"kfL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"kfR" = (
/obj/machinery/computer/communications{
dir = 8
@@ -40443,16 +40639,6 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/turf/open/floor/wood,
/area/security/detectives_office)
-"khR" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -26
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/catwalk_floor,
-/area/engine/atmos)
"khS" = (
/obj/effect/turf_decal/tile/red/anticorner/contrasted{
dir = 4
@@ -40740,17 +40926,6 @@
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"klI" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/stripes/closeup,
-/obj/machinery/door/airlock/public/glass{
- name = "Departures Lounge"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron/grid/steel,
-/area/hallway/secondary/exit/departure_lounge)
"kmm" = (
/obj/effect/turf_decal/guideline/guideline_in/red,
/obj/effect/turf_decal/guideline/guideline_mid/purple,
@@ -40823,15 +40998,6 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
-"knu" = (
-/obj/structure/table,
-/obj/item/storage/box/bodybags,
-/obj/item/clothing/gloves/color/latex,
-/obj/item/clothing/mask/surgical,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/machinery/airalarm/directional/south,
-/turf/open/floor/iron/dark,
-/area/security/detectives_office)
"knz" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/effect/turf_decal/bot,
@@ -40914,6 +41080,18 @@
},
/turf/open/floor/plating,
/area/security/main)
+"kps" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/dark/hidden{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/maintenance/disposal/incinerator)
"kpO" = (
/obj/machinery/hydroponics/constructable,
/obj/machinery/airalarm/directional/east,
@@ -40995,6 +41173,11 @@
},
/turf/open/floor/iron/techmaint,
/area/ai_monitored/security/armory)
+"kqp" = (
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/window/reinforced,
+/turf/open/floor/grass/no_border,
+/area/crew_quarters/bar/atrium)
"kqu" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/box,
@@ -41164,21 +41347,6 @@
},
/turf/open/floor/plating,
/area/quartermaster/sorting)
-"krq" = (
-/obj/structure/sign/warning/nosmoking{
- pixel_x = 6;
- pixel_y = 32
- },
-/obj/structure/table,
-/obj/effect/turf_decal/bot,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/item/assembly/prox_sensor{
- pixel_x = 5;
- pixel_y = 7
- },
-/turf/open/floor/iron/grid/steel,
-/area/science/robotics/lab)
"krt" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -41344,15 +41512,6 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
-"ktQ" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer4,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"ktT" = (
/obj/machinery/conveyor{
dir = 1;
@@ -41417,14 +41576,6 @@
},
/turf/open/floor/iron/techmaint,
/area/maintenance/department/security/brig)
-"kuA" = (
-/obj/structure/chair/fancy/comfy{
- buildstackamount = 0;
- color = "#742925";
- dir = 4
- },
-/turf/open/floor/cult,
-/area/library)
"kuB" = (
/obj/machinery/light{
dir = 1
@@ -41475,12 +41626,6 @@
},
/turf/open/floor/iron,
/area/security/courtroom)
-"kuS" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/construction)
"kuT" = (
/obj/structure/lattice/catwalk/over,
/obj/machinery/conveyor/inverted{
@@ -41709,6 +41854,17 @@
/obj/effect/turf_decal/tile/bar/opposingcorners,
/turf/open/floor/iron/cafeteria,
/area/crew_quarters/kitchen)
+"kyp" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/closeup,
+/obj/machinery/door/airlock/public/glass{
+ name = "Departures Lounge"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/grid/steel,
+/area/hallway/secondary/exit/departure_lounge)
"kyO" = (
/obj/structure/disposalpipe/segment{
dir = 8
@@ -41934,6 +42090,18 @@
},
/turf/open/floor/iron/dark,
/area/hallway/primary/starboard)
+"kBV" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/security/checkpoint/escape)
"kBX" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 1
@@ -41958,21 +42126,6 @@
},
/turf/open/floor/iron/techmaint,
/area/bridge)
-"kBY" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"kCb" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -42045,6 +42198,15 @@
/obj/machinery/vending/cigarette,
/turf/open/floor/iron/dark,
/area/hallway/primary/starboard)
+"kCK" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"kDg" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 8
@@ -42514,21 +42676,6 @@
},
/turf/open/floor/iron/dark,
/area/maintenance/department/science)
-"kJv" = (
-/obj/effect/turf_decal/plaque{
- icon_state = "L7"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"kJN" = (
/obj/machinery/firealarm/directional/west,
/turf/open/floor/iron/sepia,
@@ -42650,21 +42797,6 @@
/obj/effect/turf_decal/stripes/red/corner,
/turf/open/floor/vault,
/area/engine/engine_room)
-"kLZ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/science/mixing)
"kMc" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
@@ -42743,24 +42875,6 @@
broken = 1
},
/area/maintenance/starboard/fore)
-"kNb" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/iron/dark,
-/area/hallway/primary/starboard)
"kNe" = (
/obj/effect/turf_decal/stripes/closeup{
dir = 1
@@ -43018,11 +43132,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/exit/departure_lounge)
-"kQv" = (
-/obj/structure/window/reinforced,
-/obj/structure/flora/ausbushes/leafybush,
-/turf/open/floor/grass/no_border,
-/area/quartermaster/exploration_prep)
"kQw" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -43201,13 +43310,16 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/carpet/orange,
/area/quartermaster/qm)
-"kSZ" = (
-/obj/effect/landmark/xeno_spawn,
-/obj/structure/disposalpipe/segment{
+"kST" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 4
},
-/turf/open/floor/plating,
-/area/construction)
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"kTz" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -43574,22 +43686,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron/techmaint,
/area/maintenance/aft)
-"kWB" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/closeup,
-/obj/machinery/door/airlock/external{
- name = "Labour Shuttle airlock"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/bridge)
"kWE" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/pipe/simple/general/visible{
@@ -43881,32 +43977,6 @@
},
/turf/open/floor/wood,
/area/crew_quarters/dorms)
-"kYw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/structure/disposalpipe/sorting/mail{
- dir = 4;
- name = "Xenobiology Junction";
- sortType = 28
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"kYH" = (
/obj/machinery/disposal/bin,
/obj/effect/turf_decal/delivery,
@@ -44185,13 +44255,6 @@
/obj/effect/turf_decal/siding/thinplating_new,
/turf/open/floor/iron,
/area/hallway/primary/starboard)
-"lbJ" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/open/floor/grass/no_border,
-/area/science/lobby)
"lbO" = (
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
@@ -44223,6 +44286,16 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/central)
+"lco" = (
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/mapping_helpers/dead_body_placer/medbay_morgue,
+/turf/open/floor/iron/techmaint,
+/area/medical/morgue)
"lcx" = (
/obj/structure/chair/stool{
dir = 1
@@ -44607,6 +44680,21 @@
},
/turf/open/floor/noslip/standard,
/area/crew_quarters/fitness/recreation)
+"lhd" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/auto_name/north{
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -24
+ },
+/obj/effect/turf_decal/box,
+/turf/open/floor/plating/airless{
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/drydock/security)
"lhf" = (
/turf/open/floor/plating{
broken = 1
@@ -44672,17 +44760,6 @@
},
/turf/open/floor/plating,
/area/vacant_room/commissary/commissaryRandom)
-"lhP" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"lhT" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -44973,18 +45050,6 @@
},
/turf/open/floor/iron/dark,
/area/security/courtroom)
-"lkE" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/structure/disposalpipe/junction/flip{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/hallway/primary/central)
"lkH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 5
@@ -45026,6 +45091,13 @@
},
/turf/open/floor/wood,
/area/quartermaster/qm)
+"lld" = (
+/obj/machinery/power/tracker,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/starboard/fore)
"lle" = (
/obj/machinery/disposal/bin,
/obj/effect/turf_decal/delivery,
@@ -45337,6 +45409,21 @@
},
/turf/open/floor/plating,
/area/security/checkpoint/customs)
+"lpd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"lpl" = (
/obj/structure/chair/office{
dir = 4
@@ -45355,6 +45442,19 @@
},
/turf/open/floor/iron,
/area/quartermaster/sorting)
+"lpt" = (
+/obj/machinery/airalarm{
+ pixel_y = 22
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/siding/wood,
+/turf/open/floor/wood,
+/area/crew_quarters/heads/captain)
"lpz" = (
/obj/machinery/camera{
c_tag = "Port Primary Hallway - Fore";
@@ -45470,6 +45570,12 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/science/robotics/lab)
+"lra" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"lrd" = (
/obj/effect/turf_decal/trimline/blue/line{
dir = 4
@@ -45563,19 +45669,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"lrR" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/maintenance/disposal/incinerator)
"lrT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -45672,6 +45765,16 @@
"lsS" = (
/turf/open/floor/engine/n2o/light,
/area/engine/atmos)
+"lsZ" = (
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/solar{
+ id = "aftstarboard";
+ name = "Aft-Starboard Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/port/aft)
"lte" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 8
@@ -45719,21 +45822,22 @@
"ltu" = (
/turf/closed/mineral,
/area/maintenance/department/security/brig)
-"ltB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/dark/hidden{
- dir = 10
+"ltL" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/sign/barsign{
+ pixel_y = 32
},
-/obj/structure/sign/warning/fire{
- pixel_x = 32
+/obj/machinery/door/window/southright{
+ base_state = "left";
+ icon_state = "left";
+ name = "Sign door";
+ req_one_access = "25"
},
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/maintenance/disposal/incinerator)
+/turf/open/floor/grass/no_border,
+/area/crew_quarters/bar/atrium)
"ltM" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance/three,
@@ -45780,18 +45884,6 @@
},
/turf/open/floor/plating/rust,
/area/maintenance/aft)
-"lug" = (
-/obj/effect/turf_decal/trimline/red/filled/line{
- dir = 6
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/iron/dark,
-/area/security/checkpoint/medical)
"luh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 8
@@ -46035,24 +46127,12 @@
/obj/machinery/firealarm/directional/west,
/turf/open/floor/iron,
/area/hallway/primary/port)
-"lxb" = (
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/security/main)
"lxn" = (
/obj/effect/turf_decal/bot,
/obj/structure/closet/cardboard,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/iron,
/area/quartermaster/warehouse)
-"lxs" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/drydock)
"lxx" = (
/obj/machinery/light/small{
dir = 1
@@ -46132,16 +46212,6 @@
/obj/effect/turf_decal/tile/green/opposingcorners,
/turf/open/floor/iron,
/area/hallway/secondary/service)
-"lxK" = (
-/obj/machinery/power/solar{
- id = "portsolar";
- name = "Port Solar Array"
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/port)
"lxN" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 8
@@ -46198,6 +46268,22 @@
},
/turf/open/floor/iron/techmaint,
/area/security/execution/transfer)
+"lyy" = (
+/obj/machinery/door/airlock/public/glass{
+ name = "Cryogenic Lounge"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/grid,
+/area/crew_quarters/cryopods)
"lyM" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
@@ -46295,14 +46381,6 @@
/obj/machinery/light,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai_upload_foyer)
-"lAQ" = (
-/obj/machinery/holopad,
-/obj/effect/turf_decal/box,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron/dark,
-/area/crew_quarters/heads/cmo)
"lAV" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -46361,6 +46439,14 @@
/obj/effect/turf_decal/tile/neutral/opposingcorners,
/turf/open/floor/iron,
/area/crew_quarters/fitness/recreation)
+"lBB" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L9"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"lBE" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/box,
@@ -46641,18 +46727,9 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"lFV" = (
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/grass/no_border,
-/area/science/lobby)
+"lGa" = (
+/turf/open/floor/glass/reinforced,
+/area/security/main)
"lGe" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
dir = 1
@@ -46680,6 +46757,16 @@
/obj/effect/spawner/structure/window/plasma/reinforced,
/turf/open/floor/engine,
/area/science/mixing/chamber)
+"lGx" = (
+/obj/machinery/power/solar{
+ id = "starboardsolar";
+ name = "Starboard Solar Array"
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/port)
"lGD" = (
/obj/structure/table,
/obj/item/book/manual/wiki/security_space_law{
@@ -47315,18 +47402,6 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/iron/dark,
/area/medical/apothecary)
-"lQJ" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/security/checkpoint/escape)
"lQM" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/turf_decal/tile/yellow/opposingcorners{
@@ -47365,6 +47440,11 @@
dir = 8
},
/area/ai_monitored/storage/eva)
+"lRj" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/filingcabinet/chestdrawer,
+/turf/open/floor/iron/grid/steel,
+/area/science/robotics/lab)
"lRk" = (
/obj/machinery/camera{
c_tag = "Xenobiology - Cell 2";
@@ -47502,22 +47582,6 @@
/obj/machinery/light/small,
/turf/open/floor/iron/dark,
/area/hallway/primary/starboard)
-"lTF" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Cryogenic Lounge"
- },
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/stripes/closeup{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/iron/grid,
-/area/crew_quarters/cryopods)
"lTM" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -47666,15 +47730,6 @@
},
/turf/open/floor/carpet,
/area/vacant_room/office)
-"lVl" = (
-/obj/structure/flora/ausbushes/leafybush,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/grass/no_border,
-/area/hallway/secondary/exit/departure_lounge)
"lVp" = (
/obj/item/stack/sheet/iron/fifty,
/obj/item/stack/sheet/iron/fifty,
@@ -47762,16 +47817,6 @@
},
/turf/open/floor/iron/grid/steel,
/area/science/xenobiology)
-"lWD" = (
-/obj/structure/flora/ausbushes/leafybush,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/grass/no_border,
-/area/hallway/secondary/exit/departure_lounge)
"lWR" = (
/obj/item/hand_labeler,
/obj/item/crowbar,
@@ -47874,17 +47919,6 @@
/obj/item/organ/eyes,
/turf/open/floor/iron,
/area/maintenance/department/security/brig)
-"lYj" = (
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/grassybush,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/grass/no_border,
-/area/hallway/secondary/exit/departure_lounge)
"lYr" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/security/glass{
@@ -48085,6 +48119,16 @@
},
/turf/open/floor/iron,
/area/hydroponics)
+"mbu" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"mbH" = (
/obj/machinery/power/apc/auto_name/north{
pixel_y = 24
@@ -48326,6 +48370,15 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"meL" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/catwalk_floor,
+/area/security/checkpoint/escape)
"meU" = (
/obj/effect/turf_decal/caution/stand_clear,
/obj/effect/turf_decal/stripes/closeup{
@@ -48362,6 +48415,17 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/engine,
/area/science/storage)
+"mfK" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"mfN" = (
/obj/machinery/reagentgrinder{
desc = "Used to grind things up into raw materials and liquids.";
@@ -48623,6 +48687,18 @@
},
/turf/open/floor/plating,
/area/security/prison)
+"mjz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/tiled/light,
+/area/medical/virology)
"mjB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/effect/turf_decal/trimline/green/filled/line{
@@ -48744,15 +48820,6 @@
},
/turf/open/floor/iron/dark,
/area/security/checkpoint)
-"mlu" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating/airless{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/science/shuttle)
"mlH" = (
/obj/effect/turf_decal/trimline/red/filled/line{
dir = 1
@@ -48894,16 +48961,6 @@
},
/turf/open/floor/iron/checker,
/area/quartermaster/storage)
-"mnZ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"moh" = (
/obj/structure/table/optable,
/obj/effect/turf_decal/bot_white,
@@ -48943,18 +49000,6 @@
},
/turf/open/floor/plating,
/area/engine/atmos)
-"moF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/engine/atmos)
"moJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
@@ -49015,18 +49060,6 @@
/obj/structure/filingcabinet/chestdrawer,
/turf/open/floor/iron,
/area/security/main)
-"mpv" = (
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/grass/no_border,
-/area/hallway/primary/port)
"mpB" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/structure/cable/yellow{
@@ -49595,16 +49628,19 @@
/obj/structure/window/reinforced,
/turf/open/floor/iron/dark,
/area/hallway/primary/central)
-"mxD" = (
-/obj/machinery/power/solar{
- id = "starboardsolar";
- name = "Starboard Solar Array"
+"mxt" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
},
-/obj/structure/cable{
- icon_state = "0-8"
+/obj/structure/window/reinforced{
+ dir = 4
},
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/port)
+/turf/open/floor/grass/no_border,
+/area/bridge)
"mxQ" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
@@ -49671,22 +49707,6 @@
/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/bridge)
-"myp" = (
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/leafybush,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/grass/no_border,
-/area/science/research)
"myD" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -50073,28 +50093,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/storage/tech)
-"mDl" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/machinery/door/airlock/external{
- name = "External Solar Access";
- req_access_txt = "10; 13"
- },
-/obj/effect/turf_decal/stripes/closeup{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/solars/starboard/fore)
"mDn" = (
/obj/effect/turf_decal/trimline/purple/filled/line{
dir = 5
@@ -50587,6 +50585,12 @@
/obj/structure/table/wood,
/turf/open/floor/carpet/purple,
/area/crew_quarters/dorms)
+"mJX" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor,
+/area/drydock/security)
"mJZ" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -50681,33 +50685,10 @@
dir = 10
},
/area/ai_monitored/storage/eva)
-"mKT" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"mKU" = (
/obj/machinery/firealarm/directional/north,
/turf/open/floor/iron,
/area/hallway/primary/port)
-"mKW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/table,
-/obj/effect/turf_decal/bot,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high,
-/obj/item/stock_parts/cell/high,
-/obj/machinery/firealarm/directional/south,
-/turf/open/floor/iron/grid/steel,
-/area/science/robotics/lab)
"mLd" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 8
@@ -50830,6 +50811,15 @@
},
/turf/open/floor/iron/techmaint,
/area/hallway/primary/central)
+"mME" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/science/shuttle)
"mMH" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
@@ -50843,16 +50833,6 @@
/obj/effect/turf_decal/siding/wood,
/turf/open/floor/wood,
/area/bridge/meeting_room/council)
-"mMR" = (
-/obj/machinery/power/solar{
- id = "starboardsolar";
- name = "Starboard Solar Array"
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/starboard/fore)
"mMX" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -50987,6 +50967,16 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
+"mOv" = (
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/medical2,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark/side{
+ dir = 5
+ },
+/area/medical/surgery)
"mOH" = (
/obj/structure/sign/painting/library{
pixel_x = -32
@@ -51239,23 +51229,6 @@
/obj/effect/turf_decal/siding/purple,
/turf/open/floor/iron/white,
/area/science/lobby)
-"mRL" = (
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/leafybush,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/light,
-/turf/open/floor/grass/no_border,
-/area/hallway/primary/port)
"mRN" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -51467,11 +51440,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron/dark,
/area/hallway/primary/central)
-"mUh" = (
-/obj/structure/window/reinforced,
-/obj/structure/flora/ausbushes/genericbush,
-/turf/open/floor/grass/no_border,
-/area/quartermaster/exploration_prep)
"mUr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 6
@@ -51482,16 +51450,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/port/central)
-"mUu" = (
-/obj/structure/table,
-/obj/item/storage/backpack/duffelbag/sec/surgery{
- pixel_y = 4
- },
-/obj/item/clothing/gloves/color/latex,
-/turf/open/floor/iron/white/side{
- dir = 1
- },
-/area/science/robotics/lab)
"mUv" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -51697,6 +51655,40 @@
},
/turf/closed/wall/r_wall,
/area/engine/supermatter)
+"mYq" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/button/door{
+ id = "rndlabext";
+ name = "External Research Shutters Control";
+ pixel_x = -6;
+ pixel_y = 24;
+ req_one_access_txt = "7;29"
+ },
+/obj/machinery/button/door{
+ id = "rndlabint";
+ name = "Internal Research Shutters Control";
+ pixel_x = 6;
+ pixel_y = 24;
+ req_one_access_txt = "7;29"
+ },
+/obj/structure/table,
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/storage/toolbox/mechanical,
+/obj/item/stack/cable_coil/white,
+/obj/item/stack/cable_coil/white{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/effect/turf_decal/trimline/purple/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron/grid/steel,
+/area/science/lab)
"mYB" = (
/obj/structure/sign/departments/minsky/security/security,
/turf/closed/wall/r_wall,
@@ -51765,6 +51757,19 @@
burnt = 1
},
/area/maintenance/port/central)
+"mZE" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=14.2-AftCrossRet";
+ location = "14.1-GravGen"
+ },
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"mZO" = (
/obj/item/toy/beach_ball,
/mob/living/carbon/monkey,
@@ -51877,10 +51882,6 @@
/obj/effect/turf_decal/tile/yellow/opposingcorners,
/turf/open/floor/iron/sepia,
/area/engine/engineering)
-"nbH" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/turf/open/floor/catwalk_floor,
-/area/engine/engine_room)
"nbL" = (
/obj/item/reagent_containers/syringe/antiviral{
pixel_x = 7;
@@ -51928,6 +51929,14 @@
/obj/effect/spawner/room/threexthree,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"ncf" = (
+/obj/machinery/newscaster{
+ pixel_y = 31
+ },
+/obj/item/folder,
+/obj/structure/table/wood,
+/turf/open/floor/cult,
+/area/library)
"nch" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/closeup,
@@ -51941,6 +51950,23 @@
},
/turf/open/floor/iron/techmaint,
/area/science/storage)
+"ncj" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/obj/structure/table/optable{
+ name = "Robotics Operating Table"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/obj/structure/table/optable{
+ name = "Robotics Operating Table"
+ },
+/turf/open/floor/iron/white/side{
+ dir = 1
+ },
+/area/science/robotics/lab)
"nck" = (
/obj/item/storage/toolbox/emergency,
/obj/effect/spawner/lootdrop/maintenance,
@@ -52019,18 +52045,6 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/genetics)
-"ndp" = (
-/obj/machinery/button/door{
- id = "qm_warehouse";
- name = "Warehouse Door Control";
- pixel_y = -24;
- req_access_txt = "31"
- },
-/obj/effect/turf_decal/tile/brown/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron/dark/side,
-/area/quartermaster/warehouse)
"ndM" = (
/obj/effect/turf_decal/guideline/guideline_in/red{
dir = 4
@@ -52045,12 +52059,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
-"ndN" = (
-/obj/structure/window/reinforced,
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/fullgrass,
-/turf/open/floor/grass/no_border,
-/area/quartermaster/exploration_prep)
"neg" = (
/obj/structure/chair/foldable{
dir = 8
@@ -52201,19 +52209,26 @@
"nfM" = (
/turf/closed/wall/rust,
/area/maintenance/disposal)
-"nfY" = (
-/obj/machinery/camera{
- c_tag = "Shuttle construction area - Security shuttle dock";
- dir = 9;
- name = "hallway camera"
- },
-/turf/open/floor/catwalk_floor,
-/area/drydock/security)
"nfZ" = (
/obj/effect/spawner/structure/window/plasma/reinforced,
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/visible,
/turf/open/floor/plating,
/area/engine/engine_room)
+"ngc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"ngf" = (
/obj/machinery/suit_storage_unit/standard_unit,
/obj/effect/turf_decal/stripes/line,
@@ -52279,6 +52294,9 @@
},
/turf/open/floor/plating,
/area/maintenance/port)
+"ngS" = (
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/maintenance/disposal/incinerator)
"ngZ" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
@@ -52765,6 +52783,15 @@
/obj/machinery/status_display/evac,
/turf/closed/wall,
/area/crew_quarters/bar)
+"nnW" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/drydock/security)
"nnZ" = (
/obj/effect/turf_decal/trimline/red/filled/line{
dir = 8
@@ -52906,17 +52933,6 @@
},
/turf/open/floor/wood,
/area/crew_quarters/bar/atrium)
-"npu" = (
-/obj/machinery/power/apc/auto_name/south{
- pixel_y = -24
- },
-/obj/structure/cable/yellow,
-/obj/machinery/light,
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/turf/open/floor/iron,
-/area/security/main)
"npK" = (
/obj/item/circular_saw,
/obj/item/scalpel{
@@ -53217,23 +53233,6 @@
},
/turf/open/floor/plating,
/area/ai_monitored/storage/eva)
-"nub" = (
-/obj/machinery/light_switch{
- pixel_x = 24;
- pixel_y = 24
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/tile/green/fourcorners/contrasted,
-/obj/item/radio/intercom{
- pixel_x = -28
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron/tiled,
-/area/medical/virology)
"nuc" = (
/obj/machinery/door/airlock{
id_tag = "Toilet1";
@@ -53306,6 +53305,14 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/bar/atrium)
+"nuH" = (
+/obj/machinery/camera{
+ c_tag = "Shuttle construction area - Custom shuttle dock";
+ dir = 6;
+ name = "hallway camera"
+ },
+/turf/open/floor/catwalk_floor,
+/area/drydock)
"nuM" = (
/obj/structure/table/wood,
/obj/item/radio/intercom,
@@ -53620,12 +53627,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"nzT" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/catwalk_floor,
-/area/engine/atmos)
"nzU" = (
/obj/structure/lattice/catwalk/over,
/obj/structure/table/reinforced,
@@ -53720,12 +53721,6 @@
},
/turf/open/floor/iron/dark,
/area/security/courtroom)
-"nBa" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 9
- },
-/turf/open/floor/catwalk_floor,
-/area/drydock)
"nBb" = (
/obj/machinery/airalarm{
dir = 8;
@@ -53999,6 +53994,14 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/apothecary)
+"nDz" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/box,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/dark,
+/area/crew_quarters/heads/cmo)
"nDQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -54296,6 +54299,25 @@
},
/turf/open/floor/iron/grid/steel,
/area/science/lobby)
+"nHh" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 6
+ },
+/area/hallway/secondary/service)
"nHl" = (
/obj/machinery/airalarm{
dir = 4;
@@ -54489,12 +54511,6 @@
},
/turf/open/floor/carpet/red,
/area/crew_quarters/dorms)
-"nJc" = (
-/obj/item/reagent_containers/food/drinks/bottle/vodka{
- desc = "Aah, vodka. Prime choice of drink AND fuel by Russians worldwide. This one used to hold many secrets..."
- },
-/turf/open/floor/cult,
-/area/chapel/office)
"nJm" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/atmospherics/components/unary/thermomachine/heater,
@@ -54523,6 +54539,13 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron/techmaint,
/area/science/server)
+"nJY" = (
+/obj/machinery/power/tracker,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/port/fore)
"nKa" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/machinery/portable_atmospherics/canister,
@@ -54620,16 +54643,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/security/checkpoint/engineering)
-"nLL" = (
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/grass/no_border,
-/area/hallway/secondary/exit/departure_lounge)
"nLR" = (
/obj/structure/table,
/obj/effect/turf_decal/bot,
@@ -54641,16 +54654,12 @@
/obj/item/slime_scanner,
/turf/open/floor/iron/grid/steel,
/area/science/xenobiology)
-"nMc" = (
-/obj/machinery/door/airlock/engineering{
- name = "Construction Area";
- req_access_txt = "32"
- },
-/obj/effect/mapping_helpers/airlock/abandoned,
+"nLU" = (
+/obj/structure/bookcase,
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 9
},
-/turf/open/floor/iron/techmaint,
+/turf/open/floor/plating,
/area/construction)
"nMg" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -54692,22 +54701,6 @@
},
/turf/open/floor/carpet,
/area/hallway/secondary/entry)
-"nMB" = (
-/obj/effect/turf_decal/trimline/red/filled/warning,
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/iron/dark,
-/area/security/checkpoint/medical)
"nMK" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
@@ -54867,6 +54860,19 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/supply)
+"nQr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/dark,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
"nQx" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/shutters{
@@ -54875,6 +54881,15 @@
},
/turf/open/floor/plating,
/area/crew_quarters/kitchen)
+"nQA" = (
+/obj/structure/window/reinforced,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/open/floor/grass/no_border,
+/area/quartermaster/exploration_prep)
"nQB" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -54939,6 +54954,19 @@
/obj/effect/turf_decal/tile/blue,
/turf/open/floor/iron/white,
/area/medical/medbay/central)
+"nRQ" = (
+/obj/machinery/advanced_airlock_controller{
+ pixel_x = 26;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"nSl" = (
/obj/machinery/gateway{
dir = 5
@@ -54999,24 +55027,6 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/turf/open/floor/iron/techmaint,
/area/science/shuttledock)
-"nTn" = (
-/obj/structure/table,
-/obj/effect/turf_decal/bot,
-/obj/item/bodypart/l_arm/robot{
- pixel_x = -3
- },
-/obj/item/bodypart/r_arm/robot{
- pixel_x = 3
- },
-/obj/item/assembly/flash/handheld/weak,
-/obj/item/assembly/flash/handheld/weak,
-/obj/item/assembly/flash/handheld/weak,
-/obj/item/assembly/flash/handheld/weak,
-/obj/item/assembly/flash/handheld/weak,
-/obj/item/assembly/flash/handheld/weak,
-/obj/item/stack/cable_coil/white,
-/turf/open/floor/iron/grid/steel,
-/area/science/robotics/lab)
"nTs" = (
/obj/structure/table,
/obj/item/paper_bin,
@@ -55183,6 +55193,23 @@
},
/turf/open/floor/iron/techmaint,
/area/quartermaster/office)
+"nVK" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table,
+/obj/item/clothing/mask/balaclava,
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_x = 5
+ },
+/obj/item/assembly/signaler{
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/obj/item/electropack,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/iron/techmaint,
+/area/security/execution/education)
"nVO" = (
/obj/structure/table/reinforced,
/obj/effect/turf_decal/bot,
@@ -55364,6 +55391,19 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron/grid/steel,
/area/crew_quarters/dorms)
+"nZf" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/grass/no_border,
+/area/bridge)
"nZg" = (
/obj/machinery/telecomms/server/presets/science,
/obj/effect/turf_decal/stripes/closeup,
@@ -55728,6 +55768,14 @@
},
/turf/open/floor/plating,
/area/maintenance/port)
+"ocA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"ocC" = (
/obj/effect/turf_decal/guideline/guideline_mid/darkblue{
dir = 1
@@ -55830,14 +55878,6 @@
},
/turf/open/floor/iron/white,
/area/science/research)
-"ods" = (
-/obj/structure/cable,
-/obj/machinery/power/solar{
- id = "aftstarboard";
- name = "Aft-Starboard Solar Array"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/port/aft)
"ody" = (
/obj/machinery/light,
/obj/effect/turf_decal/guideline/guideline_out_arrow_con/blue{
@@ -55866,15 +55906,6 @@
},
/turf/open/floor/iron/dark,
/area/construction/mining/aux_base)
-"odZ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/open/floor/iron,
-/area/security/main)
"oeh" = (
/obj/structure/sign/poster/official/random{
pixel_x = -32
@@ -56037,6 +56068,12 @@
dir = 5
},
/area/crew_quarters/fitness/recreation)
+"ogX" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/turf/open/floor/catwalk_floor,
+/area/drydock/security)
"ohn" = (
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
@@ -56100,6 +56137,14 @@
},
/turf/open/floor/carpet,
/area/vacant_room/office)
+"oix" = (
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/grass/no_border,
+/area/science/lobby)
"oiz" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
@@ -56610,9 +56655,6 @@
dir = 1
},
/area/hallway/primary/starboard)
-"opp" = (
-/turf/open/floor/glass/reinforced,
-/area/storage/primary)
"opr" = (
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -56660,14 +56702,6 @@
burnt = 1
},
/area/maintenance/port/central)
-"opV" = (
-/obj/structure/cable,
-/obj/machinery/power/solar{
- id = "forestarboard";
- name = "Fore-Starboard Solar Array"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/port/fore)
"oqa" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -57257,12 +57291,6 @@
/obj/effect/turf_decal/tile/yellow/opposingcorners,
/turf/open/floor/iron/sepia,
/area/engine/engineering)
-"ozB" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/turf/open/floor/catwalk_floor,
-/area/engine/atmos)
"ozD" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -58225,6 +58253,16 @@
/obj/structure/sign/poster/official/cleanliness,
/turf/closed/wall,
/area/janitor)
+"oNt" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/closeup,
+/obj/machinery/door/airlock/public/glass{
+ name = "Departures Lounge"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/iron/grid/steel,
+/area/hallway/secondary/exit/departure_lounge)
"oNU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/structure/disposalpipe/segment,
@@ -58620,29 +58658,18 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"oUj" = (
-/obj/structure/table/reinforced,
-/obj/item/pen,
-/obj/machinery/door/window/eastright{
- dir = 2;
- name = "Robotics Desk";
- req_access_txt = "29"
- },
-/obj/item/folder/white{
- pixel_x = 4;
- pixel_y = -3
+"oUu" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 6
},
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "robotics_shutters";
- name = "robotics shutters"
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
},
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/stripes/closeup,
-/obj/structure/desk_bell{
- pixel_x = -8
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
},
-/turf/open/floor/iron/techmaint,
-/area/science/robotics/lab)
+/turf/open/floor/iron/dark,
+/area/security/checkpoint/medical)
"oUA" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -59154,17 +59181,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/engine_smes)
-"pbp" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/iron/dark/side{
- dir = 4
- },
-/area/hallway/secondary/service)
"pbv" = (
/obj/machinery/telecomms/processor/preset_four,
/obj/effect/turf_decal/stripes/end{
@@ -59192,19 +59208,6 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
-"pbW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/tile/green/fourcorners/contrasted,
-/obj/item/storage/secure/safe{
- pixel_x = -23
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron/tiled,
-/area/medical/virology)
"pcC" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 4
@@ -59273,13 +59276,6 @@
},
/turf/open/floor/plating,
/area/engine/storage)
-"pdk" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/science/mixing)
"pdl" = (
/obj/effect/turf_decal/stripes/closeup{
dir = 6
@@ -59404,6 +59400,12 @@
dir = 1
},
/area/crew_quarters/fitness/recreation)
+"peX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/construction)
"peZ" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -59538,19 +59540,6 @@
},
/turf/open/floor/wood,
/area/crew_quarters/dorms)
-"pgH" = (
-/obj/effect/turf_decal/stripes/closeup,
-/obj/machinery/advanced_airlock_controller{
- pixel_y = -26
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer4{
- dir = 8
- },
-/turf/open/floor/catwalk_floor,
-/area/bridge)
"pgP" = (
/obj/effect/turf_decal/guideline/guideline_mid_arrow_con/purple{
dir = 10
@@ -59571,19 +59560,6 @@
/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/bridge)
-"pgV" = (
-/obj/machinery/advanced_airlock_controller{
- pixel_x = 26;
- pixel_y = 2
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"pgZ" = (
/obj/machinery/power/apc/auto_name/east,
/obj/structure/cable/yellow{
@@ -59681,6 +59657,18 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/quartermaster/sorting)
+"piE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/science/mixing)
"piJ" = (
/turf/closed/wall/r_wall,
/area/maintenance/department/security/brig)
@@ -59894,15 +59882,6 @@
},
/turf/open/floor/iron/techmaint,
/area/science/storage)
-"plT" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/obj/machinery/camera{
- c_tag = "Atmospherics - Engine Passage";
- dir = 4;
- name = "atmospherics camera"
- },
-/turf/open/floor/catwalk_floor,
-/area/engine/engine_room)
"plZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -60096,6 +60075,24 @@
name = "mainframe floor"
},
/area/tcommsat/server)
+"poU" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"poV" = (
/obj/structure/table,
/obj/item/camera_film,
@@ -60316,6 +60313,17 @@
},
/turf/open/floor/plating,
/area/security/checkpoint/escape)
+"prY" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/obj/item/storage/backpack/duffelbag/med/implant,
+/obj/item/storage/backpack/duffelbag/med/surgery{
+ pixel_y = 8
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/medical/surgery)
"psH" = (
/obj/effect/turf_decal/stripes/full,
/obj/effect/turf_decal/stripes/white/full,
@@ -60357,11 +60365,6 @@
burnt = 1
},
/area/maintenance/starboard/fore)
-"ptM" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/filingcabinet/chestdrawer,
-/turf/open/floor/iron/grid/steel,
-/area/science/robotics/lab)
"ptN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
@@ -60470,15 +60473,6 @@
/obj/effect/mapping_helpers/airlock/abandoned,
/turf/open/floor/iron/techmaint,
/area/maintenance/starboard/fore)
-"pvE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/turf/open/floor/iron,
-/area/crew_quarters/locker)
"pvL" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/closeup{
@@ -60646,6 +60640,15 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/turf/open/floor/carpet/red,
/area/library)
+"pxZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/dark/side,
+/area/hallway/secondary/service)
"pyf" = (
/obj/machinery/power/solar_control{
dir = 8;
@@ -60663,12 +60666,6 @@
/obj/structure/lattice/catwalk/over,
/turf/open/floor/plating/airless,
/area/maintenance/solars/starboard/fore)
-"pym" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/turf/open/floor/iron/dark/side,
-/area/hallway/secondary/service)
"pyo" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 1
@@ -60752,29 +60749,6 @@
/obj/effect/turf_decal/siding/wood,
/turf/open/floor/wood,
/area/hallway/primary/port)
-"pzz" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 26
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
-"pzB" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/catwalk_floor,
-/area/docking/bridge)
"pzF" = (
/obj/machinery/door/airlock{
name = "Bar Backroom";
@@ -60788,14 +60762,6 @@
},
/turf/open/floor/iron/techmaint,
/area/crew_quarters/bar)
-"pzT" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/iron/dark/side{
- dir = 8
- },
-/area/hallway/secondary/service)
"pzW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 8
@@ -60895,6 +60861,15 @@
dir = 6
},
/area/engine/atmos)
+"pAO" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer4,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"pBe" = (
/obj/effect/turf_decal/bot{
dir = 1
@@ -61683,6 +61658,16 @@
broken = 1
},
/area/maintenance/starboard/fore)
+"pKL" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/grass/no_border,
+/area/bridge)
"pKS" = (
/obj/structure/railing/corner{
dir = 4
@@ -62017,6 +62002,21 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
+"pPS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"pQq" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 8
@@ -62029,6 +62029,20 @@
/obj/effect/turf_decal/stripes/closeup,
/turf/open/floor/iron/techmaint,
/area/hallway/primary/central)
+"pQE" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/table/reinforced,
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/storage/box/lights/mixed,
+/obj/item/storage/box/lights/mixed,
+/obj/item/assembly/timer,
+/obj/item/assembly/timer,
+/obj/machinery/newscaster{
+ pixel_y = 31
+ },
+/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted,
+/turf/open/floor/iron,
+/area/storage/primary)
"pQI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 8
@@ -62280,15 +62294,6 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron/techmaint,
/area/ai_monitored/storage/eva)
-"pUP" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/catwalk_floor,
-/area/security/checkpoint/escape)
"pVe" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -62311,6 +62316,17 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"pVs" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron/stairs/right{
+ dir = 8
+ },
+/area/hallway/primary/aft)
"pVz" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -62375,13 +62391,6 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/tcommsat/server)
-"pWi" = (
-/obj/effect/decal/cleanable/oil,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/construction)
"pWk" = (
/obj/machinery/light/small{
dir = 4
@@ -62480,6 +62489,19 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
+"pYd" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/dark/hidden{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/maintenance/disposal/incinerator)
"pYk" = (
/obj/structure/window/reinforced{
dir = 8
@@ -62744,17 +62766,6 @@
},
/turf/open/floor/iron/dark,
/area/vacant_room/commissary/commissaryFood)
-"qba" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/turf/open/floor/iron/stairs/right{
- dir = 8
- },
-/area/hallway/primary/aft)
"qbd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 8
@@ -62970,17 +62981,6 @@
/obj/machinery/firealarm/directional/east,
/turf/open/floor/iron/freezer,
/area/crew_quarters/kitchen/coldroom)
-"qdA" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"qdH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 8
@@ -63266,6 +63266,19 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/library)
+"qgW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/green/fourcorners/contrasted,
+/obj/item/storage/secure/safe{
+ pixel_x = -23
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/tiled,
+/area/medical/virology)
"qhc" = (
/obj/machinery/shieldgen,
/turf/open/floor/iron/dark,
@@ -63570,6 +63583,24 @@
/obj/item/storage/firstaid/regular,
/turf/open/floor/iron,
/area/storage/primary)
+"qlo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"qls" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
@@ -63811,6 +63842,15 @@
/obj/structure/lattice/catwalk/over,
/turf/open/floor/plating,
/area/quartermaster/storage)
+"qoF" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"qoM" = (
/obj/structure/window/reinforced,
/obj/structure/table/reinforced,
@@ -64209,20 +64249,10 @@
/turf/open/floor/iron/dark,
/area/engine/gravity_generator)
"qtI" = (
-/obj/item/book/manual/wiki/atmospherics,
-/obj/item/clothing/head/utility/welding{
- pixel_x = -5;
- pixel_y = 3
- },
-/obj/item/clothing/head/utility/welding{
- pixel_x = -5;
- pixel_y = 3
- },
-/obj/item/multitool{
- layer = 4
- },
/obj/effect/turf_decal/bot,
/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/electrical,
+/obj/item/clothing/gloves/color/yellow,
/turf/open/floor/iron/dark,
/area/engine/atmos)
"qtM" = (
@@ -64455,6 +64485,23 @@
/obj/effect/turf_decal/tile/purple/opposingcorners,
/turf/open/floor/iron/grid/steel,
/area/medical/apothecary)
+"qvq" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=21-LobbyCorner";
+ location = "20-Lobby"
+ },
+/turf/open/floor/iron/goonplaque,
+/area/hallway/primary/port)
"qvt" = (
/obj/effect/turf_decal/trimline/red/filled/line{
dir = 8
@@ -64499,14 +64546,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron/dark,
/area/engine/atmos)
-"qwr" = (
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/light,
-/turf/open/floor/grass/no_border,
-/area/quartermaster/exploration_prep)
"qwL" = (
/obj/machinery/camera{
c_tag = "Arrivals - Inner corridor";
@@ -64608,6 +64647,12 @@
/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/open/floor/iron/techmaint,
/area/maintenance/disposal/incinerator)
+"qxU" = (
+/obj/structure/window/reinforced,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/open/floor/grass/no_border,
+/area/quartermaster/exploration_prep)
"qxZ" = (
/obj/machinery/newscaster{
pixel_x = -28;
@@ -64627,6 +64672,18 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron/sepia,
/area/engine/break_room)
+"qyj" = (
+/obj/machinery/button/door{
+ id = "qm_warehouse";
+ name = "Warehouse Door Control";
+ pixel_y = -24;
+ req_access_txt = "31"
+ },
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/side,
+/area/hallway/primary/port)
"qyq" = (
/obj/machinery/computer/security/telescreen/interrogation{
dir = 4;
@@ -64635,21 +64692,6 @@
},
/turf/open/floor/carpet/grimy,
/area/security/main)
-"qyr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/science/mixing)
"qyx" = (
/obj/machinery/disposal/bin,
/obj/effect/turf_decal/delivery,
@@ -64760,6 +64802,15 @@
/obj/effect/turf_decal/tile/neutral/opposingcorners,
/turf/open/floor/iron,
/area/crew_quarters/fitness/recreation)
+"qAi" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"qAl" = (
/obj/structure/easel,
/obj/item/canvas/twentythree_nineteen,
@@ -64991,16 +65042,6 @@
},
/turf/open/floor/iron/sepia,
/area/maintenance/department/engine)
-"qDL" = (
-/obj/machinery/power/solar{
- id = "portsolar";
- name = "Port Solar Array"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/starboard/fore)
"qDZ" = (
/obj/effect/turf_decal/trimline/red/filled/warning{
dir = 1
@@ -65164,6 +65205,16 @@
/obj/effect/turf_decal/trimline/blue/filled/line,
/turf/open/floor/iron/white,
/area/medical/medbay/lobby)
+"qFl" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/grass/no_border,
+/area/hallway/primary/port)
"qFB" = (
/obj/effect/turf_decal/bot,
/obj/effect/decal/cleanable/dirt,
@@ -65406,6 +65457,17 @@
/obj/structure/table/wood/poker,
/turf/open/floor/carpet/red,
/area/crew_quarters/bar/atrium)
+"qIz" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Construction Area";
+ req_access_txt = "32"
+ },
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/techmaint,
+/area/construction)
"qIB" = (
/obj/effect/turf_decal/plaque{
icon_state = "L1"
@@ -65426,25 +65488,6 @@
/obj/machinery/firealarm/directional/west,
/turf/open/floor/iron/dark,
/area/bridge)
-"qIM" = (
-/obj/structure/table,
-/obj/item/folder/red{
- pixel_x = 3
- },
-/obj/item/folder/white{
- pixel_x = -4;
- pixel_y = 2
- },
-/obj/item/storage/firstaid/regular,
-/obj/item/reagent_containers/syringe,
-/obj/effect/turf_decal/bot,
-/obj/machinery/camera{
- c_tag = "Security - Medbay";
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/techmaint,
-/area/security/main)
"qIO" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -65702,17 +65745,6 @@
"qLH" = (
/turf/closed/wall,
/area/hallway/secondary/exit/departure_lounge)
-"qLQ" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"qLR" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -65817,21 +65849,6 @@
},
/turf/open/floor/iron/techmaint,
/area/janitor)
-"qNG" = (
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/heads/captain)
"qNK" = (
/turf/closed/wall/r_wall,
/area/security/checkpoint/engineering)
@@ -66195,6 +66212,9 @@
},
/turf/open/floor/wood,
/area/bridge/meeting_room/council)
+"qSp" = (
+/turf/open/floor/glass/reinforced,
+/area/storage/primary)
"qSu" = (
/obj/structure/window/reinforced{
dir = 1
@@ -66350,6 +66370,12 @@
},
/turf/open/floor/iron,
/area/maintenance/disposal)
+"qTh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/security/main)
"qTo" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow{
@@ -66384,21 +66410,6 @@
broken = 1
},
/area/maintenance/department/medical)
-"qTK" = (
-/obj/effect/turf_decal/guideline/guideline_mid/purple{
- dir = 4
- },
-/obj/effect/turf_decal/guideline/guideline_out/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/guideline/guideline_in/blue{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/hallway/primary/central)
"qTL" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -66612,6 +66623,22 @@
/obj/item/clothing/head/soft/blue,
/turf/open/floor/iron/dark,
/area/crew_quarters/fitness/recreation)
+"qYg" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/storage/box/bodybags,
+/obj/item/reagent_containers/syringe{
+ name = "steel point"
+ },
+/obj/structure/table,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 1
+ },
+/obj/item/stack/medical/gauze,
+/turf/open/floor/iron/white,
+/area/security/main)
"qYs" = (
/obj/machinery/light/small{
dir = 4
@@ -66621,6 +66648,16 @@
},
/turf/open/floor/carpet/red,
/area/crew_quarters/bar/atrium)
+"qYv" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"qYA" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -66750,18 +66787,6 @@
},
/turf/open/floor/carpet/grimy,
/area/crew_quarters/locker)
-"raX" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"rbg" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -67278,25 +67303,6 @@
},
/turf/open/space/basic,
/area/space)
-"rim" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/iron/dark/side{
- dir = 6
- },
-/area/hallway/secondary/service)
"rio" = (
/obj/structure/closet/crate{
opened = 1
@@ -67689,6 +67695,16 @@
dir = 8
},
/area/hallway/primary/port)
+"rof" = (
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/solar{
+ id = "forestarboard";
+ name = "Fore-Starboard Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/port/fore)
"roh" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
@@ -67963,14 +67979,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"rrE" = (
-/obj/effect/turf_decal/plaque{
- icon_state = "L9"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"rrL" = (
/obj/structure/table/reinforced,
/obj/item/folder/yellow,
@@ -68016,12 +68024,6 @@
},
/turf/open/floor/plating,
/area/maintenance/department/medical)
-"rrY" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/drydock)
"rsb" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 1
@@ -68202,16 +68204,6 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
-"ruS" = (
-/obj/structure/flora/ausbushes/leafybush,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/grass/no_border,
-/area/medical/medbay/lobby)
"ruU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -68338,6 +68330,20 @@
},
/turf/open/floor/iron/dark,
/area/engine/atmos)
+"rwm" = (
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/sunnybush,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/grass/no_border,
+/area/ai_monitored/security/armory)
"rwr" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/half/contrasted,
@@ -68544,19 +68550,6 @@
},
/turf/open/floor/iron/dark,
/area/engine/engine_room)
-"ryB" = (
-/turf/open/floor/cult,
-/area/library)
-"ryG" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/iron/dark,
-/area/security/main)
"ryP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/structure/cable/yellow{
@@ -68729,6 +68722,14 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/maintenance/central/secondary)
+"rAB" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/open/floor/grass/no_border,
+/area/quartermaster/exploration_prep)
"rAC" = (
/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
@@ -69199,6 +69200,22 @@
},
/turf/open/floor/engine,
/area/maintenance/department/engine)
+"rGS" = (
+/obj/structure/table,
+/obj/effect/turf_decal/bot,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26
+ },
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/stack/sheet/plasteel{
+ amount = 15
+ },
+/obj/item/borg/upgrade/rename,
+/turf/open/floor/iron/grid/steel,
+/area/science/robotics/lab)
"rGT" = (
/obj/machinery/light/small{
dir = 4
@@ -69500,6 +69517,17 @@
},
/turf/open/floor/iron/dark,
/area/hallway/primary/starboard)
+"rKf" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/grass/no_border,
+/area/hallway/secondary/exit/departure_lounge)
"rKh" = (
/obj/effect/turf_decal/delivery,
/mob/living/simple_animal/bot/mulebot{
@@ -69857,27 +69885,6 @@
dir = 10
},
/area/engine/atmos)
-"rOp" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/advanced_airlock_controller{
- pixel_y = 26
- },
-/obj/machinery/light/small,
-/obj/structure/sign/warning/vacuum/external{
- pixel_y = -32
- },
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/solars/port)
"rOu" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow{
@@ -70110,25 +70117,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/carpet/orange,
/area/crew_quarters/heads/chief)
-"rPM" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/machinery/door/airlock/external{
- name = "External Solar Access";
- req_access_txt = "10; 13"
- },
-/obj/effect/turf_decal/stripes/closeup{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/layer_manifold{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/solars/starboard/fore)
"rPR" = (
/turf/closed/wall,
/area/security/courtroom)
@@ -70274,6 +70262,27 @@
/obj/machinery/firealarm/directional/east,
/turf/open/floor/iron/dark,
/area/bridge)
+"rRt" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads/captain)
"rRy" = (
/obj/structure/table/reinforced,
/obj/effect/turf_decal/delivery,
@@ -70338,14 +70347,6 @@
},
/turf/open/floor/iron/grid/steel,
/area/crew_quarters/dorms)
-"rSa" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"rSq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -70430,21 +70431,6 @@
"rTo" = (
/turf/closed/wall,
/area/maintenance/disposal/incinerator)
-"rTN" = (
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/auto_name/north{
- pixel_y = 24
- },
-/obj/machinery/light_switch{
- pixel_x = -24
- },
-/obj/effect/turf_decal/box,
-/turf/open/floor/plating/airless{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/drydock/security)
"rTT" = (
/obj/machinery/door/airlock/maintenance{
name = "Storage Room";
@@ -70523,20 +70509,6 @@
},
/turf/open/floor/engine/vacuum,
/area/science/mixing/chamber)
-"rVi" = (
-/obj/machinery/door/airlock/mining/glass{
- name = "Delivery Office";
- req_access_txt = "50"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/stripes/closeup{
- dir = 1
- },
-/turf/open/floor/iron/techmaint,
-/area/quartermaster/storage)
"rVk" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 4
@@ -70797,15 +70769,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron/dark/side,
/area/hallway/primary/fore)
-"rYM" = (
-/obj/structure/window/reinforced,
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/flora/ausbushes/sparsegrass,
-/obj/structure/flora/ausbushes/ywflowers,
-/turf/open/floor/grass/no_border,
-/area/quartermaster/exploration_prep)
"rYQ" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/dark,
@@ -70814,6 +70777,13 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/maintenance/starboard/fore)
+"rYW" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/open/floor/grass/no_border,
+/area/science/lobby)
"rZb" = (
/obj/effect/turf_decal/trimline/red/filled/line{
dir = 1
@@ -70847,6 +70817,23 @@
},
/turf/open/floor/iron/white,
/area/medical/storage)
+"rZd" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/open/floor/grass/no_border,
+/area/hallway/primary/port)
"rZf" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -71017,19 +71004,6 @@
},
/turf/open/floor/iron/techmaint,
/area/maintenance/department/engine)
-"sbl" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron/dark,
-/area/ai_monitored/turret_protected/ai_upload_foyer)
"sbs" = (
/obj/effect/turf_decal/trimline/purple/filled/line,
/turf/open/floor/iron/grid/steel,
@@ -71108,6 +71082,16 @@
},
/turf/open/floor/engine,
/area/engine/engine_room)
+"sck" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/grass/no_border,
+/area/bridge)
"scq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
@@ -71245,6 +71229,11 @@
"sdO" = (
/turf/open/floor/iron/dark,
/area/engine/gravity_generator)
+"sdV" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plating,
+/area/construction)
"sdX" = (
/obj/structure/table,
/obj/item/storage/briefcase{
@@ -71301,6 +71290,12 @@
},
/turf/open/floor/iron,
/area/storage/primary)
+"sff" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/side,
+/area/hallway/secondary/service)
"sfg" = (
/obj/machinery/camera{
c_tag = "Port Primary Hallway - Starboard";
@@ -71663,6 +71658,16 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"sjA" = (
+/obj/machinery/power/solar{
+ id = "portsolar";
+ name = "Port Solar Array"
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/starboard/fore)
"sjE" = (
/obj/structure/chair/fancy/bench/pew/right{
dir = 8
@@ -71843,6 +71848,15 @@
/obj/item/reagent_containers/glass/bucket,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
+"smc" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/entry)
"sme" = (
/obj/structure/sign/departments/security,
/turf/closed/wall/r_wall,
@@ -72170,16 +72184,6 @@
/obj/effect/turf_decal/stripes/closeup,
/turf/open/floor/plating,
/area/maintenance/disposal)
-"sqc" = (
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/grass/no_border,
-/area/bridge)
"sqg" = (
/obj/effect/turf_decal/trimline/purple/filled/line{
dir = 10
@@ -72195,21 +72199,6 @@
},
/turf/open/floor/iron/grid/steel,
/area/science/research)
-"sqh" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"sqw" = (
/obj/machinery/door/airlock/maintenance{
name = "Storage Room";
@@ -72218,23 +72207,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/techmaint,
/area/maintenance/aft)
-"sqF" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/disposalpipe/sorting/mail{
- dir = 4;
- name = "Testing Range Junction";
- sortType = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"sqU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plating,
@@ -72244,15 +72216,17 @@
broken = 1
},
/area/space/nearstation)
-"srr" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
+"sqX" = (
+/obj/structure/window/reinforced{
+ dir = 4
},
-/obj/structure/cable/yellow{
- icon_state = "1-8"
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/machinery/light{
+ dir = 8
},
-/turf/open/floor/catwalk_floor,
-/area/science/shuttle)
+/turf/open/floor/grass/no_border,
+/area/science/xenobiology)
"srw" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/blobstart,
@@ -72288,12 +72262,6 @@
},
/turf/open/floor/wood,
/area/library)
-"sso" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/open/floor/catwalk_floor,
-/area/drydock/security)
"ssq" = (
/obj/structure/disposalpipe/segment{
dir = 8
@@ -72343,18 +72311,6 @@
/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/port)
-"ssH" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/structure/disposalpipe/junction{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/entry)
"ssN" = (
/obj/machinery/light{
dir = 1
@@ -72687,6 +72643,24 @@
burnt = 1
},
/area/maintenance/aft)
+"sxf" = (
+/obj/machinery/power/solar{
+ id = "starboardsolar";
+ name = "Starboard Solar Array"
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/starboard/fore)
+"sxh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/science/mixing)
"sxk" = (
/turf/open/floor/plating,
/area/construction/mining/aux_base)
@@ -72842,22 +72816,6 @@
},
/turf/open/floor/vault,
/area/engine/engine_room)
-"syL" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/maintenance/disposal/incinerator)
"syR" = (
/obj/machinery/light,
/obj/structure/disposalpipe/segment{
@@ -72983,6 +72941,16 @@
},
/turf/open/floor/plating,
/area/gateway)
+"szQ" = (
+/obj/machinery/power/solar{
+ id = "portsolar";
+ name = "Port Solar Array"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/starboard/fore)
"sAh" = (
/obj/effect/turf_decal/siding/wood,
/turf/open/floor/wood,
@@ -73306,6 +73274,17 @@
},
/turf/open/floor/iron/techmaint,
/area/engine/engine_room)
+"sDU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/science/mixing)
"sEl" = (
/obj/effect/turf_decal/pool/corner{
dir = 8
@@ -73755,21 +73734,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/crew_quarters/heads/hos)
-"sMm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"sMt" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/segment{
@@ -74031,15 +73995,6 @@
/obj/effect/spawner/room/tenxfive,
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
-"sPf" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/rnd/production/circuit_imprinter/department/science,
-/obj/machinery/airalarm{
- pixel_y = 22
- },
-/obj/machinery/ecto_sniffer,
-/turf/open/floor/iron/grid/steel,
-/area/science/robotics/lab)
"sPi" = (
/obj/machinery/newscaster{
pixel_x = 28;
@@ -74099,6 +74054,23 @@
},
/turf/open/floor/iron/grid/steel,
/area/science/research)
+"sQy" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 4;
+ name = "Testing Range Junction";
+ sortType = 24
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"sQD" = (
/obj/structure/sink{
dir = 8;
@@ -74148,6 +74120,18 @@
},
/turf/open/floor/iron,
/area/vacant_room/commissary/commissary2)
+"sRe" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/science/mixing)
"sRl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 6
@@ -74496,6 +74480,12 @@
/obj/effect/turf_decal/tile/neutral/opposingcorners,
/turf/open/floor/iron,
/area/quartermaster/sorting)
+"sUJ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor,
+/area/engine/atmos)
"sUM" = (
/obj/machinery/atmospherics/pipe/simple/orange/visible,
/obj/structure/cable/orange{
@@ -74609,23 +74599,6 @@
},
/turf/open/floor/carpet/red,
/area/crew_quarters/heads/hos)
-"sVY" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/item/radio/intercom{
- pixel_x = 28
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"sVZ" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
@@ -74693,6 +74666,24 @@
"sWY" = (
/turf/open/floor/engine/n2/light,
/area/engine/atmos)
+"sXb" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"sXg" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/sand/plating,
@@ -75239,27 +75230,19 @@
},
/turf/open/floor/plating,
/area/hydroponics)
+"tdA" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/obj/machinery/camera{
+ c_tag = "Atmospherics - Engine Passage";
+ dir = 4;
+ name = "atmospherics camera"
+ },
+/turf/open/floor/catwalk_floor,
+/area/engine/engine_room)
"teq" = (
/obj/effect/turf_decal/tile/blue/anticorner/contrasted,
/turf/open/floor/iron/dark,
/area/bridge)
-"ter" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/iron/grid/steel,
-/area/medical/virology)
"teE" = (
/obj/structure/table/reinforced,
/obj/machinery/recharger{
@@ -75333,6 +75316,32 @@
/obj/effect/turf_decal/stripes/closeup,
/turf/open/floor/iron/techmaint,
/area/bridge/showroom/corporate)
+"tfx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 4;
+ name = "Xenobiology Junction";
+ sortType = 28
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"tfD" = (
/obj/machinery/door/airlock/command{
name = "Corporate Showroom";
@@ -75746,6 +75755,18 @@
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating,
/area/maintenance/port/aft)
+"tlm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/engine/atmos)
"tlp" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 4
@@ -75836,30 +75857,27 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/exit/departure_lounge)
-"tmg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
+"tmq" = (
/obj/structure/cable/yellow{
- icon_state = "1-4"
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+/turf/open/floor/iron,
+/area/engine/atmos)
+"tmC" = (
+/obj/effect/turf_decal/trimline/green/filled/warning{
dir = 8
},
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
},
/obj/structure/disposalpipe/segment{
- dir = 5
+ dir = 4
},
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
-"tmq" = (
/obj/structure/cable/yellow{
- icon_state = "1-2"
+ icon_state = "4-8"
},
-/turf/open/floor/iron,
-/area/engine/atmos)
+/turf/open/floor/iron/tiled/light,
+/area/medical/virology)
"tmM" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating{
@@ -75892,18 +75910,6 @@
},
/turf/open/floor/iron/techmaint,
/area/maintenance/solars/port/aft)
-"tnz" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/entry)
"tnS" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -76838,6 +76844,10 @@
broken = 1
},
/area/maintenance/aft)
+"tAK" = (
+/obj/machinery/light/small,
+/turf/open/floor/catwalk_floor,
+/area/drydock)
"tAS" = (
/obj/machinery/newscaster{
pixel_y = 31
@@ -77138,6 +77148,15 @@
/obj/effect/turf_decal/tile/yellow/opposingcorners,
/turf/open/floor/iron/sepia,
/area/engine/engineering)
+"tEz" = (
+/obj/structure/window/reinforced,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/grass/no_border,
+/area/science/shuttledock)
"tEB" = (
/obj/machinery/door/airlock/engineering{
name = "Auxiliary Construction Storage";
@@ -77234,6 +77253,22 @@
},
/turf/open/floor/iron/techmaint,
/area/security/prison)
+"tGQ" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/grass/no_border,
+/area/science/research)
"tGU" = (
/obj/structure/tank_dispenser/oxygen,
/obj/machinery/firealarm/directional/north,
@@ -77268,6 +77303,14 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"tHK" = (
+/obj/machinery/camera{
+ c_tag = "Shuttle construction area - Security shuttle dock";
+ dir = 9;
+ name = "hallway camera"
+ },
+/turf/open/floor/catwalk_floor,
+/area/drydock/security)
"tHR" = (
/obj/effect/turf_decal/siding/yellow{
dir = 4
@@ -77504,6 +77547,23 @@
},
/turf/open/floor/carpet/red,
/area/crew_quarters/dorms)
+"tKF" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron/stairs/right{
+ dir = 8
+ },
+/area/hallway/primary/aft)
"tKI" = (
/obj/effect/turf_decal/bot,
/turf/open/floor/iron/grid/steel,
@@ -77783,27 +77843,6 @@
/obj/effect/turf_decal/box,
/turf/open/floor/iron/dark,
/area/vacant_room/commissary/commissary2)
-"tOf" = (
-/obj/structure/table,
-/obj/item/stack/sheet/glass,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/item/stack/sheet/iron/fifty,
-/obj/item/stack/sheet/mineral/copper{
- amount = 5
- },
-/obj/item/clothing/glasses/welding,
-/obj/item/wrench,
-/obj/item/crowbar,
-/obj/machinery/requests_console{
- department = "Research Lab";
- name = "Research RC";
- pixel_x = 32;
- receive_ore_updates = 1
- },
-/turf/open/floor/iron/dark,
-/area/science/lab)
"tOs" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -77815,18 +77854,6 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"tOC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/engine/atmos)
"tOE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 8
@@ -78084,15 +78111,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"tRk" = (
-/obj/machinery/advanced_airlock_controller{
- pixel_x = 26;
- pixel_y = 2
- },
-/obj/machinery/atmospherics/pipe/layer_manifold,
-/obj/structure/lattice/catwalk/over,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"tRq" = (
/obj/machinery/requests_console{
department = "Medbay";
@@ -78302,6 +78320,25 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"tTV" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/end{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/red/end{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external/glass{
+ name = "Labour Shuttle airlock";
+ req_access_txt = "63"
+ },
+/obj/machinery/atmospherics/pipe/layer_manifold{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/bridge)
"tTX" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 4
@@ -78422,6 +78459,15 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
+"tVj" = (
+/obj/machinery/advanced_airlock_controller{
+ pixel_x = 26;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/pipe/layer_manifold,
+/obj/structure/lattice/catwalk/over,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"tVl" = (
/obj/machinery/door/poddoor/incinerator_atmos_main,
/obj/effect/turf_decal/stripes/closeup{
@@ -78608,21 +78654,6 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"tXL" = (
-/obj/effect/turf_decal/trimline/green/filled/warning{
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron/tiled/light,
-/area/medical/virology)
"tXM" = (
/turf/closed/wall,
/area/engine/engineering)
@@ -78714,6 +78745,23 @@
},
/turf/open/floor/wood,
/area/library/lounge)
+"tZw" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/obj/machinery/door/airlock/virology{
+ name = "Virology Breakroom";
+ req_access_txt = "39"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/grid/steel,
+/area/medical/virology)
"tZC" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/effect/turf_decal/bot,
@@ -78747,9 +78795,6 @@
/obj/structure/closet/emcloset,
/turf/open/floor/iron/dark,
/area/hallway/primary/starboard)
-"tZZ" = (
-/turf/open/floor/glass/reinforced,
-/area/hallway/secondary/service)
"uae" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -78825,6 +78870,21 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/hallway/primary/port)
+"uaL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"ubb" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -78860,17 +78920,6 @@
/obj/structure/closet/secure_closet/security/cargo,
/turf/open/floor/iron,
/area/security/checkpoint/supply)
-"ubk" = (
-/obj/structure/table/wood/fancy,
-/obj/item/soulstone/anybody/chaplain,
-/obj/item/organ/heart{
- pixel_x = 8;
- pixel_y = 7
- },
-/obj/item/reagent_containers/food/drinks/bottle/holywater,
-/obj/item/book/granter/spell/smoke/lesser,
-/turf/open/floor/cult,
-/area/chapel/office)
"ubo" = (
/obj/effect/spawner/randomvend/cola,
/obj/effect/turf_decal/delivery,
@@ -78893,15 +78942,28 @@
},
/turf/open/floor/iron/techmaint,
/area/medical/morgue)
-"ubz" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+"uby" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 4
},
-/obj/structure/cable/yellow{
- icon_state = "2-4"
+/obj/machinery/door/airlock/external{
+ name = "External Solar Access";
+ req_access_txt = "10; 13"
},
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/solars/starboard/fore)
"ubJ" = (
/obj/machinery/computer/security/labor{
dir = 8
@@ -78958,19 +79020,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"ucK" = (
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/leafybush,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/grass/no_border,
-/area/hallway/primary/port)
"ucO" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -78998,21 +79047,6 @@
},
/turf/open/floor/iron/techmaint,
/area/maintenance/disposal/incinerator)
-"udl" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"udr" = (
/obj/structure/ore_box,
/obj/effect/decal/cleanable/dirt,
@@ -79107,18 +79141,6 @@
},
/turf/open/floor/iron/tech/grid,
/area/medical/morgue)
-"uet" = (
-/obj/machinery/atmospherics/components/binary/valve{
- dir = 4;
- name = "mix to port"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/science/mixing)
"ueu" = (
/obj/structure/chair/office{
dir = 4
@@ -79134,6 +79156,15 @@
},
/turf/open/floor/iron/dark,
/area/engine/engineering)
+"uey" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/open/floor/iron/dark,
+/area/crew_quarters/heads/captain)
"ueE" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating,
@@ -79170,16 +79201,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/office)
-"ufq" = (
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/grass/no_border,
-/area/hallway/primary/port)
"ufw" = (
/obj/item/beacon,
/obj/structure/disposalpipe/segment,
@@ -79257,6 +79278,21 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
+"ugB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/science/mixing)
"ugD" = (
/obj/effect/turf_decal/trimline/red/filled/line{
dir = 4
@@ -79364,24 +79400,6 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"uif" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/end{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/red/end{
- dir = 4
- },
-/obj/machinery/door/airlock/external{
- name = "Labour Shuttle airlock"
- },
-/obj/machinery/atmospherics/pipe/layer_manifold{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/bridge)
"uir" = (
/obj/effect/spawner/randomvend/cola,
/obj/effect/turf_decal/delivery,
@@ -79580,6 +79598,16 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron/dark,
/area/quartermaster/sorting)
+"ukS" = (
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/grass/no_border,
+/area/hallway/secondary/exit/departure_lounge)
"ukZ" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 4
@@ -79789,17 +79817,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/security/checkpoint/engineering)
-"unK" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/iron/dark/side{
- dir = 10
- },
-/area/hallway/secondary/service)
"unN" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -80170,6 +80187,17 @@
/obj/effect/turf_decal/tile/yellow{
dir = 8
},
+/obj/item/clothing/head/utility/welding{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/clothing/head/utility/welding{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/multitool{
+ layer = 4
+ },
/turf/open/floor/iron/dark/side,
/area/engine/atmos)
"usI" = (
@@ -80490,19 +80518,6 @@
},
/turf/open/floor/carpet/grimy,
/area/crew_quarters/locker)
-"uvQ" = (
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/leafybush,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/grass/no_border,
-/area/science/research)
"uvS" = (
/mob/living/carbon/monkey,
/obj/effect/turf_decal/siding/dark_green{
@@ -80911,12 +80926,6 @@
},
/turf/open/floor/iron/dark,
/area/engine/engine_room)
-"uAv" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"uAA" = (
/obj/effect/turf_decal/trimline/purple/filled/line{
dir = 4
@@ -81194,6 +81203,9 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron/techmaint,
/area/science/server)
+"uEe" = (
+/turf/open/floor/glass/reinforced,
+/area/hallway/secondary/exit/departure_lounge)
"uEn" = (
/obj/machinery/conveyor{
dir = 8;
@@ -81235,12 +81247,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/maintenance/department/security/brig)
-"uEX" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/catwalk_floor,
-/area/drydock/security)
"uEZ" = (
/turf/closed/wall/r_wall,
/area/bridge/showroom/corporate)
@@ -81393,18 +81399,6 @@
/obj/effect/turf_decal/trimline/red/warning,
/turf/open/floor/prison,
/area/security/prison)
-"uGp" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/trimline/green/filled/line{
- dir = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron/tiled/light,
-/area/medical/virology)
"uGw" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 8
@@ -81625,15 +81619,6 @@
/obj/machinery/firealarm/directional/east,
/turf/open/floor/wood,
/area/crew_quarters/bar/atrium)
-"uJc" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 8
- },
-/turf/open/floor/catwalk_floor,
-/area/drydock)
"uJg" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/spawner/lootdrop/maintenance/three,
@@ -81655,6 +81640,12 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
+"uJo" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/drydock)
"uJr" = (
/obj/effect/spawner/xmastree,
/turf/open/floor/carpet,
@@ -81773,21 +81764,6 @@
/obj/machinery/vending/cigarette,
/turf/open/floor/carpet,
/area/hallway/secondary/entry)
-"uLm" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/table/reinforced,
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/storage/box/lights/mixed,
-/obj/item/storage/box/lights/mixed,
-/obj/item/assembly/timer,
-/obj/item/assembly/timer,
-/obj/machinery/newscaster{
- pixel_y = 31
- },
-/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/storage/primary)
"uLr" = (
/obj/structure/table/reinforced,
/obj/item/flashlight/lamp,
@@ -82259,6 +82235,16 @@
/obj/effect/turf_decal/tile/brown/opposingcorners,
/turf/open/floor/iron,
/area/construction)
+"uQZ" = (
+/obj/structure/table,
+/obj/item/storage/backpack/duffelbag/sec/surgery{
+ pixel_y = 4
+ },
+/obj/item/clothing/gloves/color/latex,
+/turf/open/floor/iron/white/side{
+ dir = 1
+ },
+/area/science/robotics/lab)
"uRe" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow{
@@ -82840,6 +82826,17 @@
/obj/effect/spawner/lootdrop/maintenance/two,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"uZg" = (
+/obj/effect/turf_decal/stripes/closeup,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/door/airlock/external{
+ name = "External Airlock";
+ req_one_access_txt = "13;24;10"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"uZj" = (
/obj/structure/extinguisher_cabinet{
pixel_y = -30
@@ -82876,6 +82873,15 @@
},
/turf/open/floor/iron/freezer,
/area/crew_quarters/toilet/auxiliary)
+"uZr" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/iron/dark,
+/area/hallway/primary/central)
"uZu" = (
/obj/effect/turf_decal/guideline/guideline_in/red,
/turf/open/floor/iron/dark/corner{
@@ -82919,6 +82925,16 @@
},
/turf/open/floor/carpet/grimy,
/area/crew_quarters/locker)
+"uZK" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron/grid/steel,
+/area/hallway/primary/aft)
"uZL" = (
/obj/machinery/light/small,
/obj/structure/reagent_dispensers/watertank,
@@ -83208,11 +83224,6 @@
},
/turf/open/floor/iron/techmaint,
/area/maintenance/port)
-"vcW" = (
-/obj/structure/flora/ausbushes/grassybush,
-/obj/structure/window/reinforced,
-/turf/open/floor/grass/no_border,
-/area/crew_quarters/bar/atrium)
"vcZ" = (
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
@@ -83286,18 +83297,6 @@
},
/turf/open/floor/iron,
/area/hydroponics)
-"vdK" = (
-/obj/structure/flora/ausbushes/lavendergrass,
-/obj/machinery/door/window/southright{
- name = "Sign door";
- req_one_access = "25"
- },
-/obj/machinery/camera{
- c_tag = "Cafeteria antechamber";
- name = "service camera"
- },
-/turf/open/floor/grass/no_border,
-/area/crew_quarters/bar/atrium)
"vdU" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -83335,13 +83334,6 @@
},
/turf/open/floor/iron/dark,
/area/security/prison)
-"ven" = (
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/leafybush,
-/obj/structure/window/reinforced,
-/turf/open/floor/grass/no_border,
-/area/crew_quarters/bar/atrium)
"veo" = (
/obj/structure/table/wood,
/obj/item/toy/cards/deck{
@@ -83449,17 +83441,6 @@
/obj/structure/rack,
/turf/open/floor/plating,
/area/maintenance/aft)
-"vfJ" = (
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/status_display/evac{
- pixel_y = 32
- },
-/turf/open/floor/grass/no_border,
-/area/crew_quarters/bar/atrium)
"vfL" = (
/obj/effect/turf_decal/sand/plating,
/obj/effect/turf_decal/stripes/corner{
@@ -84002,10 +83983,6 @@
"vlU" = (
/turf/closed/wall,
/area/storage/art)
-"vlX" = (
-/obj/machinery/light/small,
-/turf/open/floor/catwalk_floor,
-/area/drydock)
"vmb" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 8
@@ -84134,6 +84111,18 @@
broken = 1
},
/area/maintenance/starboard/fore)
+"vnD" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/docking/bridge)
"vnP" = (
/obj/effect/turf_decal/trimline/red/filled/line{
dir = 1
@@ -84327,22 +84316,6 @@
/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/maintenance/department/engine)
-"vpI" = (
-/obj/structure/table,
-/obj/effect/turf_decal/bot,
-/obj/item/stack/sheet/iron/fifty,
-/obj/item/stack/sheet/iron/fifty,
-/obj/item/stack/sheet/iron/fifty,
-/obj/item/stack/sheet/glass/fifty,
-/obj/item/stack/sheet/plasteel{
- amount = 15
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 26
- },
-/obj/item/borg/upgrade/rename,
-/turf/open/floor/iron/grid/steel,
-/area/science/robotics/lab)
"vpP" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -84659,6 +84632,12 @@
broken = 1
},
/area/maintenance/port)
+"vsQ" = (
+/obj/structure/window/reinforced,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/bush,
+/turf/open/floor/grass/no_border,
+/area/quartermaster/exploration_prep)
"vsR" = (
/obj/effect/turf_decal/trimline/red/filled/line{
dir = 1
@@ -84737,18 +84716,6 @@
/obj/effect/turf_decal/tile/purple/opposingcorners,
/turf/open/floor/iron/white,
/area/medical/genetics)
-"vtC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/science/mixing)
"vtG" = (
/obj/machinery/airalarm{
pixel_y = 22
@@ -85280,6 +85247,25 @@
},
/turf/open/floor/plating,
/area/maintenance/port/central)
+"vxO" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/turf/open/floor/iron/grid/steel,
+/area/hallway/primary/aft)
"vxQ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 8
@@ -85672,17 +85658,6 @@
},
/turf/open/floor/wood,
/area/crew_quarters/bar/atrium)
-"vBR" = (
-/obj/structure/extinguisher_cabinet{
- pixel_y = -30
- },
-/obj/structure/table/optable{
- name = "Robotics Operating Table"
- },
-/turf/open/floor/iron/white/side{
- dir = 1
- },
-/area/science/robotics/lab)
"vBV" = (
/obj/effect/turf_decal/trimline/red/line{
dir = 8
@@ -85801,15 +85776,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"vDP" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 6
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/turf/open/floor/iron/dark,
-/area/hallway/primary/central)
"vDS" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
@@ -85825,14 +85791,6 @@
"vDW" = (
/turf/closed/wall/r_wall,
/area/gateway)
-"vEa" = (
-/obj/machinery/newscaster{
- pixel_y = 31
- },
-/obj/item/folder,
-/obj/structure/table/wood,
-/turf/open/floor/cult,
-/area/library)
"vEb" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{
dir = 1
@@ -85985,9 +85943,6 @@
/obj/structure/girder,
/turf/open/floor/iron,
/area/maintenance/aft)
-"vGy" = (
-/turf/open/floor/glass/reinforced,
-/area/hallway/secondary/exit/departure_lounge)
"vGz" = (
/obj/effect/turf_decal/stripes/closeup,
/obj/effect/turf_decal/delivery,
@@ -86129,6 +86084,9 @@
},
/turf/open/floor/iron/dark,
/area/chapel/main)
+"vIF" = (
+/turf/open/floor/glass/reinforced,
+/area/crew_quarters/heads/captain)
"vIG" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -86404,23 +86362,6 @@
/obj/structure/lattice/catwalk,
/turf/open/space/basic,
/area/space/nearstation)
-"vLP" = (
-/obj/effect/landmark/start/virologist,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/effect/turf_decal/trimline/green/filled/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/iron/tiled/light,
-/area/medical/virology)
"vMl" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -86773,15 +86714,6 @@
/obj/effect/spawner/room/tenxfive,
/turf/open/floor/plating,
/area/maintenance/port/central)
-"vPh" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"vPl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/structure/disposalpipe/segment{
@@ -87040,17 +86972,6 @@
/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/bridge)
-"vRS" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/grass/no_border,
-/area/science/xenobiology)
"vSc" = (
/obj/effect/turf_decal/bot,
/obj/effect/decal/cleanable/dirt,
@@ -87159,12 +87080,6 @@
},
/turf/open/floor/engine/n2/light,
/area/engine/atmos)
-"vTj" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/maintenance/disposal/incinerator)
"vTm" = (
/turf/closed/wall/r_wall,
/area/security/checkpoint/customs)
@@ -87298,29 +87213,6 @@
},
/turf/open/floor/iron,
/area/vacant_room/commissary/commissary2)
-"vUV" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=18-BotanyCorner";
- location = "17-Departures"
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"vUZ" = (
/obj/structure/bookcase/random/religion,
/obj/effect/turf_decal/tile/neutral,
@@ -87459,6 +87351,16 @@
/obj/effect/turf_decal/tile/yellow/opposingcorners,
/turf/open/floor/iron/sepia,
/area/engine/engineering)
+"vXv" = (
+/obj/machinery/power/solar{
+ id = "portsolar";
+ name = "Port Solar Array"
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/port)
"vXA" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -87782,6 +87684,12 @@
},
/turf/open/floor/iron/grid/steel,
/area/science/lab)
+"wcq" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"wcw" = (
/obj/effect/landmark/event_spawn,
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
@@ -87820,6 +87728,17 @@
dir = 1
},
/area/quartermaster/office)
+"wcG" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/machinery/newscaster{
+ pixel_y = 31
+ },
+/turf/open/floor/cult,
+/area/library)
"wdb" = (
/obj/machinery/computer/card,
/obj/effect/turf_decal/tile/blue/half/contrasted{
@@ -87981,6 +87900,15 @@
},
/turf/open/floor/wood,
/area/bridge/meeting_room/council)
+"weJ" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/hallway/primary/central)
"weK" = (
/obj/effect/turf_decal/guideline/guideline_out/yellow{
dir = 4
@@ -88046,17 +87974,6 @@
/obj/effect/turf_decal/stripes/closeup,
/turf/open/floor/iron/grid,
/area/crew_quarters/toilet/restrooms)
-"wfj" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/status_display/evac{
- pixel_y = 32
- },
-/turf/open/floor/grass/no_border,
-/area/crew_quarters/bar/atrium)
"wfl" = (
/obj/machinery/atmospherics/pipe/manifold/supply/visible{
dir = 1
@@ -88221,6 +88138,10 @@
/obj/machinery/power/tesla_coil,
/turf/open/floor/iron/dark,
/area/engine/engine_room)
+"whP" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/floor/catwalk_floor,
+/area/engine/engine_room)
"whR" = (
/obj/effect/turf_decal/trimline/red/filled/warning{
dir = 9
@@ -88365,6 +88286,15 @@
},
/turf/open/floor/iron/dark,
/area/maintenance/department/engine)
+"wjV" = (
+/obj/effect/turf_decal/stripes/corner,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/dark/hidden{
+ dir = 5
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/maintenance/disposal/incinerator)
"wjZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/highsecurity{
@@ -88396,6 +88326,20 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/qm)
+"wks" = (
+/obj/machinery/door/airlock/mining/glass{
+ name = "Delivery Office";
+ req_access_txt = "50"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/turf/open/floor/iron/techmaint,
+/area/quartermaster/storage)
"wkx" = (
/obj/effect/turf_decal/caution/stand_clear,
/obj/effect/turf_decal/stripes/closeup{
@@ -89004,15 +88948,6 @@
},
/turf/open/floor/iron/grid/steel,
/area/quartermaster/exploration_prep)
-"wsA" = (
-/obj/effect/turf_decal/stripes/closeup,
-/obj/machinery/door/airlock/external{
- name = "External Airlock";
- req_one_access_txt = "13;24;10"
- },
-/obj/machinery/atmospherics/pipe/layer_manifold,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"wsD" = (
/obj/effect/turf_decal/siding/wood{
dir = 4
@@ -89052,6 +88987,13 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/techmaint,
/area/maintenance/solars/port/aft)
+"wsM" = (
+/obj/machinery/light/small,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/drydock)
"wsQ" = (
/turf/closed/mineral,
/area/quartermaster/office)
@@ -89091,6 +89033,23 @@
/obj/effect/turf_decal/tile/red/anticorner/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint/escape)
+"wtq" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ pixel_x = 28
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"wtt" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -89169,12 +89128,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron/dark,
/area/crew_quarters/bar/atrium)
-"wur" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"wuu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/structure/table,
@@ -89426,29 +89379,6 @@
},
/turf/open/floor/iron/white,
/area/science/research)
-"wxx" = (
-/obj/machinery/vending/wallmed{
- pixel_x = -24
- },
-/obj/machinery/camera{
- c_tag = "Medbay - Surgery";
- dir = 4;
- name = "medbay camera";
- network = list("ss13","medbay")
- },
-/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
- dir = 8
- },
-/obj/structure/table/reinforced,
-/obj/item/book/manual/wiki/surgery,
-/obj/item/clothing/gloves/color/latex{
- pixel_x = 4;
- pixel_y = 4
- },
-/turf/open/floor/iron/dark/side{
- dir = 10
- },
-/area/medical/surgery)
"wxB" = (
/obj/structure/showcase/machinery/cloning_pod,
/obj/structure/window/reinforced{
@@ -89475,6 +89405,12 @@
"wyg" = (
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
+"wym" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/drydock/security)
"wyr" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -89569,6 +89505,15 @@
},
/turf/open/floor/plating,
/area/maintenance/port)
+"wzs" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor,
+/area/drydock)
"wzw" = (
/obj/structure/sign/directions/science{
dir = 1;
@@ -89711,34 +89656,6 @@
/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/bridge)
-"wAK" = (
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/leafybush,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/toy/plush/moth/lovers,
-/turf/open/floor/grass/no_border,
-/area/ai_monitored/security/armory)
-"wAM" = (
-/obj/structure/flora/ausbushes/grassybush,
-/obj/structure/flora/ausbushes/lavendergrass,
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/sunnybush,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/grass/no_border,
-/area/ai_monitored/security/armory)
"wAT" = (
/obj/effect/turf_decal/stripes/closeup{
dir = 1
@@ -89765,6 +89682,29 @@
/obj/effect/turf_decal/tile/red/anticorner/contrasted,
/turf/open/floor/iron/dark,
/area/chapel/office)
+"wBi" = (
+/obj/machinery/vending/wallmed{
+ pixel_x = -24
+ },
+/obj/machinery/camera{
+ c_tag = "Medbay - Surgery";
+ dir = 4;
+ name = "medbay camera";
+ network = list("ss13","medbay")
+ },
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 8
+ },
+/obj/structure/table/reinforced,
+/obj/item/book/manual/wiki/surgery,
+/obj/item/clothing/gloves/color/latex{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 10
+ },
+/area/medical/surgery)
"wBn" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
/obj/structure/disposalpipe/segment,
@@ -89820,12 +89760,29 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/plating,
/area/maintenance/port/aft)
+"wBY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"wCd" = (
/obj/effect/turf_decal/stripes/full,
/obj/effect/turf_decal/stripes/white/full,
/obj/structure/holosign/barrier/atmos/robust,
/turf/open/floor/plating/airless,
/area/docking/arrival)
+"wCn" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor,
+/area/drydock)
"wCr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
@@ -90317,14 +90274,6 @@
/obj/machinery/atmospherics/pipe/layer_manifold,
/turf/open/floor/iron/techmaint,
/area/hallway/secondary/entry)
-"wJz" = (
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/light,
-/turf/open/floor/grass/no_border,
-/area/quartermaster/exploration_prep)
"wJL" = (
/obj/effect/turf_decal/trimline/purple/filled/line{
dir = 1
@@ -90436,6 +90385,30 @@
},
/turf/open/floor/plating,
/area/construction)
+"wLh" = (
+/obj/structure/table,
+/obj/item/computer_hardware/hard_drive/role/medical{
+ pixel_x = 6;
+ pixel_y = 3
+ },
+/obj/item/computer_hardware/hard_drive/role/medical{
+ pixel_x = 3
+ },
+/obj/item/computer_hardware/hard_drive/role/chemistry{
+ pixel_y = 6
+ },
+/obj/item/computer_hardware/hard_drive/role/medical{
+ pixel_x = -3
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/cafeteria,
+/area/crew_quarters/heads/cmo)
"wLl" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -90663,6 +90636,16 @@
},
/turf/open/floor/engine,
/area/engine/supermatter)
+"wNJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/item/beacon,
+/turf/open/floor/iron,
+/area/crew_quarters/locker)
"wNX" = (
/obj/effect/turf_decal/bot,
/obj/effect/turf_decal/trimline/purple/filled/warning{
@@ -91302,6 +91285,19 @@
},
/turf/open/floor/plating,
/area/science/robotics/lab)
+"wUJ" = (
+/obj/structure/bed/dogbed/renault,
+/mob/living/simple_animal/pet/fox/Renault{
+ desc = "Renault, the Captain's trustworthy fox. Shame it's not Peuegot..."
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads/captain)
"wUL" = (
/obj/structure/cable{
icon_state = "1-4"
@@ -91326,13 +91322,6 @@
},
/turf/open/floor/plating,
/area/maintenance/port/central)
-"wUQ" = (
-/obj/item/stack/cable_coil/cut/yellow,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/construction)
"wUX" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/modular_fabricator/exosuit_fab,
@@ -91910,6 +91899,16 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/port)
+"xag" = (
+/obj/effect/turf_decal/tile/yellow/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown/opposingcorners,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/construction)
"xam" = (
/obj/structure/showcase/machinery/implanter,
/obj/structure/sign/plaques/kiddie/perfect_man{
@@ -91960,6 +91959,21 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron/dark,
/area/engine/atmos)
+"xaZ" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads/captain)
"xbh" = (
/obj/machinery/camera{
c_tag = "Shuttle construction area - Fore";
@@ -92085,17 +92099,6 @@
},
/turf/open/floor/iron/dark,
/area/engine/storage_shared)
-"xcM" = (
-/obj/effect/turf_decal/stripes/closeup,
-/obj/machinery/door/airlock/external{
- name = "External Airlock";
- req_one_access_txt = "13;24;10"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"xcP" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -92108,22 +92111,6 @@
},
/turf/open/floor/iron,
/area/security/main)
-"xcR" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/item/storage/box/bodybags,
-/obj/item/reagent_containers/syringe{
- name = "steel point"
- },
-/obj/structure/table,
-/obj/effect/turf_decal/bot,
-/obj/effect/turf_decal/tile/red/anticorner/contrasted{
- dir = 1
- },
-/obj/item/stack/medical/gauze,
-/turf/open/floor/iron/white,
-/area/security/main)
"xcT" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/rack,
@@ -93817,6 +93804,13 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/port)
+"xuE" = (
+/obj/effect/decal/cleanable/vomit/old,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/construction)
"xuO" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -93919,6 +93913,16 @@
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/iron/techmaint,
/area/hallway/secondary/entry)
+"xvO" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/maintenance/disposal/incinerator)
"xvQ" = (
/obj/structure/frame/computer{
anchored = 1;
@@ -94048,6 +94052,11 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
+"xxm" = (
+/obj/structure/window/reinforced,
+/obj/structure/flora/ausbushes/leafybush,
+/turf/open/floor/grass/no_border,
+/area/quartermaster/exploration_prep)
"xxs" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron/grid/steel,
@@ -94140,6 +94149,16 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/science/shuttle)
+"xxO" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/science/mixing)
"xxY" = (
/obj/effect/turf_decal/guideline/guideline_in/red{
dir = 4
@@ -94376,16 +94395,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"xAE" = (
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/leafybush,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/grass/no_border,
-/area/bridge)
"xAI" = (
/obj/machinery/door/airlock/engineering/glass{
name = "Primary Tool Storage"
@@ -94881,6 +94890,23 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/engine,
/area/science/storage)
+"xEI" = (
+/obj/machinery/light_switch{
+ pixel_x = 24;
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/green/fourcorners/contrasted,
+/obj/item/radio/intercom{
+ pixel_x = -28
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/tiled,
+/area/medical/virology)
"xEK" = (
/turf/open/floor/iron/dark,
/area/maintenance/department/science)
@@ -94927,6 +94953,9 @@
},
/turf/open/floor/iron/dark,
/area/crew_quarters/bar)
+"xFs" = (
+/turf/open/floor/glass/reinforced,
+/area/hallway/secondary/service)
"xFu" = (
/obj/effect/turf_decal/stripes/closeup{
dir = 1
@@ -95108,6 +95137,13 @@
dir = 4
},
/area/hallway/primary/central)
+"xHj" = (
+/obj/effect/landmark/xeno_spawn,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/construction)
"xHm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 6
@@ -95178,6 +95214,17 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/dark,
/area/maintenance/department/security/brig)
+"xIh" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"xIk" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/turf/open/floor/iron/dark,
@@ -96143,6 +96190,21 @@
},
/turf/open/floor/iron/techmaint,
/area/science/mixing/chamber)
+"xQY" = (
+/obj/effect/turf_decal/guideline/guideline_mid/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/guideline/guideline_out/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/guideline/guideline_in/blue{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/central)
"xRi" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plating,
@@ -96430,12 +96492,40 @@
/obj/machinery/firealarm/directional/north,
/turf/open/floor/wood,
/area/quartermaster/qm)
+"xUH" = (
+/obj/structure/sign/poster/official/help_others{
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 4
+ },
+/obj/machinery/disposal/bin,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/iron/dark,
+/area/hallway/primary/central)
"xUL" = (
/turf/open/floor/iron,
/area/hallway/primary/port)
"xUO" = (
/turf/closed/mineral,
/area/engine/engine_room)
+"xUQ" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/maintenance/disposal/incinerator)
"xVd" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
@@ -96612,21 +96702,6 @@
},
/turf/open/floor/iron/dark,
/area/engine/engine_smes)
-"xXx" = (
-/obj/structure/flora/grass/jungle,
-/obj/structure/flora/ausbushes/grassybush,
-/obj/structure/flora/ausbushes/genericbush,
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/sunnybush,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/grass/no_border,
-/area/science/research)
"xXy" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -96939,19 +97014,6 @@
},
/turf/open/floor/iron/techmaint,
/area/crew_quarters/kitchen/coldroom)
-"yaB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/dark/hidden{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/maintenance/disposal/incinerator)
"yaE" = (
/obj/machinery/door/airlock/command{
name = "Emergency Escape";
@@ -97118,6 +97180,14 @@
"ycI" = (
/turf/closed/wall/r_wall,
/area/security/brig)
+"ycK" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 8
+ },
+/area/hallway/secondary/service)
"ycS" = (
/obj/machinery/door/airlock/highsecurity{
name = "Engineering Heavy-Equipment Storage";
@@ -97224,21 +97294,13 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"ydU" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/delivery,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/light,
-/turf/open/floor/iron/dark,
-/area/crew_quarters/heads/captain)
-"ydX" = (
-/obj/machinery/light/small{
- dir = 4
+"ydW" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/turf/open/floor/catwalk_floor,
-/area/drydock/security)
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/science/mixing)
"yeb" = (
/turf/closed/wall/r_wall,
/area/bridge)
@@ -97324,18 +97386,6 @@
},
/turf/open/floor/iron/dark,
/area/chapel/office)
-"yfa" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"yfi" = (
/obj/machinery/airalarm{
dir = 8;
@@ -97373,6 +97423,13 @@
/obj/structure/closet/wardrobe/black,
/turf/open/floor/iron/grid/steel,
/area/crew_quarters/locker)
+"yfP" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/obj/machinery/anesthetic_machine,
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/medical/surgery)
"yfU" = (
/turf/closed/wall,
/area/library)
@@ -97449,40 +97506,6 @@
},
/turf/open/floor/plating/asteroid,
/area/maintenance/department/science)
-"ygY" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/button/door{
- id = "rndlabext";
- name = "External Research Shutters Control";
- pixel_x = -6;
- pixel_y = 24;
- req_access_txt = "7"
- },
-/obj/machinery/button/door{
- id = "rndlabint";
- name = "Internal Research Shutters Control";
- pixel_x = 6;
- pixel_y = 24;
- req_access_txt = "7"
- },
-/obj/structure/table,
-/obj/item/storage/toolbox/mechanical{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/storage/toolbox/mechanical,
-/obj/item/stack/cable_coil/white,
-/obj/item/stack/cable_coil/white{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/effect/turf_decal/trimline/purple/filled/line{
- dir = 1
- },
-/turf/open/floor/iron/grid/steel,
-/area/science/lab)
"yhh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/effect/turf_decal/siding/yellow{
@@ -97942,6 +97965,9 @@
"ylW" = (
/turf/open/floor/engine,
/area/science/xenobiology)
+"ylZ" = (
+/turf/open/floor/cult,
+/area/library)
"ymc" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
@@ -104002,7 +104028,7 @@ nnx
nnx
csJ
nnx
-abH
+eKN
nnx
csJ
nnx
@@ -104763,27 +104789,27 @@ nnx
nnx
xJu
nnx
-eEW
-eEW
-eEW
-eEW
-eEW
-eEW
-eEW
-eEW
-eEW
+jRN
+jRN
+jRN
+jRN
+jRN
+jRN
+jRN
+jRN
+jRN
csJ
vwI
csJ
-eEW
-eEW
-eEW
-eEW
-eEW
-eEW
-eEW
-eEW
-eEW
+jRN
+jRN
+jRN
+jRN
+jRN
+jRN
+jRN
+jRN
+jRN
nnx
xJu
nnx
@@ -105277,27 +105303,27 @@ nnx
nnx
xJu
nnx
-lxK
-lxK
-lxK
-lxK
-lxK
-lxK
-lxK
-lxK
-lxK
+vXv
+vXv
+vXv
+vXv
+vXv
+vXv
+vXv
+vXv
+vXv
csJ
kPA
csJ
-mxD
-mxD
-mxD
-mxD
-mxD
-mxD
-mxD
-mxD
-lxK
+lGx
+lGx
+lGx
+lGx
+lGx
+lGx
+lGx
+lGx
+vXv
nnx
xJu
nnx
@@ -105791,27 +105817,27 @@ nnx
nnx
xJu
nnx
-eEW
-eEW
-eEW
-eEW
-eEW
-eEW
-eEW
-eEW
-eEW
+jRN
+jRN
+jRN
+jRN
+jRN
+jRN
+jRN
+jRN
+jRN
csJ
kPA
csJ
-eEW
-eEW
-eEW
-eEW
-eEW
-eEW
-eEW
-eEW
-eEW
+jRN
+jRN
+jRN
+jRN
+jRN
+jRN
+jRN
+jRN
+jRN
nnx
csJ
nnx
@@ -106305,27 +106331,27 @@ nnx
nnx
csJ
nnx
-lxK
-lxK
-lxK
-lxK
-lxK
-lxK
-lxK
-lxK
-lxK
+vXv
+vXv
+vXv
+vXv
+vXv
+vXv
+vXv
+vXv
+vXv
csJ
kPA
csJ
-mxD
-mxD
-mxD
-mxD
-mxD
-mxD
-mxD
-mxD
-lxK
+lGx
+lGx
+lGx
+lGx
+lGx
+lGx
+lGx
+lGx
+vXv
nnx
xJu
nnx
@@ -106819,27 +106845,27 @@ nnx
nnx
csJ
nnx
-eEW
-eEW
-eEW
-eEW
-eEW
-eEW
-eEW
-eEW
-eEW
+jRN
+jRN
+jRN
+jRN
+jRN
+jRN
+jRN
+jRN
+jRN
csJ
kPA
csJ
-eEW
-eEW
-eEW
-eEW
-eEW
-eEW
-eEW
-eEW
-eEW
+jRN
+jRN
+jRN
+jRN
+jRN
+jRN
+jRN
+jRN
+jRN
nnx
xJu
nnx
@@ -107333,27 +107359,27 @@ nnx
nnx
xJu
nnx
-mxD
-mxD
-mxD
-mxD
-mxD
-mxD
-mxD
-mxD
-lxK
+lGx
+lGx
+lGx
+lGx
+lGx
+lGx
+lGx
+lGx
+vXv
csJ
kPA
csJ
-mxD
-mxD
-mxD
-mxD
-mxD
-mxD
-mxD
-mxD
-lxK
+lGx
+lGx
+lGx
+lGx
+lGx
+lGx
+lGx
+lGx
+vXv
nnx
wMM
nnx
@@ -107847,27 +107873,27 @@ nnx
nnx
xJu
nnx
-eEW
-eEW
-eEW
-eEW
-eEW
-eEW
-eEW
-eEW
-eEW
+jRN
+jRN
+jRN
+jRN
+jRN
+jRN
+jRN
+jRN
+jRN
csJ
kPA
csJ
-eEW
-eEW
-eEW
-eEW
-eEW
-eEW
-eEW
-eEW
-eEW
+jRN
+jRN
+jRN
+jRN
+jRN
+jRN
+jRN
+jRN
+jRN
nnx
xJu
nnx
@@ -108361,27 +108387,27 @@ nnx
nnx
xJu
nnx
-mxD
-mxD
-mxD
-mxD
-mxD
-mxD
-mxD
-mxD
-lxK
+lGx
+lGx
+lGx
+lGx
+lGx
+lGx
+lGx
+lGx
+vXv
csJ
kPA
csJ
-mxD
-mxD
-mxD
-mxD
-mxD
-mxD
-mxD
-mxD
-lxK
+lGx
+lGx
+lGx
+lGx
+lGx
+lGx
+lGx
+lGx
+vXv
nnx
xJu
nnx
@@ -109913,7 +109939,7 @@ nnx
nnx
vLM
bTg
-jrZ
+hOz
bTg
vLM
nnx
@@ -110170,7 +110196,7 @@ nnx
nnx
vLM
wNw
-rOp
+glr
wNw
vLM
nnx
@@ -110427,7 +110453,7 @@ nnx
nnx
nsg
wNw
-izO
+aGm
wNw
nsg
nsg
@@ -112184,7 +112210,7 @@ nnx
nnx
nnx
gIl
-lQJ
+kBV
jAt
klC
tqK
@@ -112290,14 +112316,14 @@ cTG
cDP
vMr
aCf
-aDg
-uEX
-aDg
-aDg
-aDg
-aDg
-uEX
-aDg
+fKy
+mJX
+fKy
+fKy
+fKy
+fKy
+mJX
+fKy
fei
wJt
csJ
@@ -112441,7 +112467,7 @@ nnx
nnx
nnx
aGy
-pUP
+meL
jBG
gIl
kqb
@@ -112548,8 +112574,8 @@ cLe
lgv
aCf
hvt
-sso
-aDg
+ogX
+fKy
sOx
sOx
sOx
@@ -113562,7 +113588,7 @@ vDW
bII
phD
aCf
-uJc
+wzs
cRQ
cRQ
cRQ
@@ -113570,13 +113596,13 @@ hXx
cRQ
cRQ
cRQ
-jFh
+wsM
aCf
cQH
qYA
mZp
tyS
-fpq
+dJr
eTH
sOx
sOx
@@ -113732,11 +113758,11 @@ ijw
raz
sFZ
ktr
-lVl
+gJH
bBG
nak
ktr
-nLL
+beV
bSV
vdu
vit
@@ -113819,7 +113845,7 @@ vDW
rov
ibU
nfd
-nBa
+ibO
cRQ
cRQ
cRQ
@@ -113827,13 +113853,13 @@ cRQ
cRQ
cRQ
cRQ
-lxs
+uJo
cAH
dnd
cjs
iSy
xxN
-srr
+mME
eTH
sOx
sOx
@@ -113977,8 +114003,8 @@ cHU
swD
mnH
jXV
-ecP
-uAv
+lra
+fsH
xKt
nQT
qxZ
@@ -113989,11 +114015,11 @@ jXV
rde
sKZ
ktr
-lWD
+ukS
bSV
nak
ktr
-lYj
+rKf
bSV
vdu
vit
@@ -114076,7 +114102,7 @@ vDW
cje
bkO
cAH
-buz
+cqx
cRQ
cRQ
cRQ
@@ -114084,7 +114110,7 @@ cRQ
cRQ
cRQ
cRQ
-lxs
+uJo
cAH
cRz
dHZ
@@ -114234,16 +114260,16 @@ gdJ
sFJ
mwr
fow
-fcH
-vGy
-vGy
-vGy
-vGy
-vGy
-vGy
-ubz
-klI
-kJv
+dtI
+uEe
+uEe
+uEe
+uEe
+uEe
+uEe
+kCK
+kyp
+aoP
sSy
wMC
jhy
@@ -114333,7 +114359,7 @@ vDW
ggr
bkO
aCf
-eKw
+nuH
cRQ
xdK
cRQ
@@ -114341,7 +114367,7 @@ cRQ
cRQ
bQc
cRQ
-lxs
+uJo
aCf
cTp
pVM
@@ -114491,23 +114517,23 @@ guj
kEJ
vov
mRP
-udl
-vGy
-vGy
-vGy
-vGy
-vGy
-vGy
-yfa
-dCk
-rrE
+pPS
+uEe
+uEe
+uEe
+uEe
+uEe
+uEe
+jZZ
+oNt
+lBB
tmd
eKW
-lYj
+rKf
bSV
nak
ktr
-nLL
+beV
bSV
vdu
gUV
@@ -114590,7 +114616,7 @@ vDW
cAH
sRz
aCf
-dIB
+wCn
cRQ
cRQ
cRQ
@@ -114598,13 +114624,13 @@ cRQ
cRQ
cRQ
cRQ
-jFh
+wsM
aCf
jHH
cAH
aCf
aCf
-mlu
+inT
aCf
sOx
sOx
@@ -114748,23 +114774,23 @@ xKt
kRT
vhb
jXV
-sqh
-pzz
-sVY
-agp
-vUV
-agp
-qLQ
-bVS
+lpd
+ixR
+wtq
+wBY
+aZp
+wBY
+mfK
+fdQ
jXV
rvY
tSE
ktr
-lVl
+gJH
bSV
nak
ktr
-lWD
+ukS
bSV
lJQ
olY
@@ -114802,7 +114828,7 @@ oBk
wLn
nvW
taP
-ygc
+smc
mFs
tTj
gzo
@@ -114847,7 +114873,7 @@ vDW
suE
bns
cAH
-buz
+cqx
cRQ
cRQ
cRQ
@@ -114855,14 +114881,14 @@ cRQ
cRQ
cRQ
cRQ
-lxs
+uJo
cAH
uPJ
jtC
aCf
-rTN
-ewE
-aDg
+lhd
+nnW
+fKy
sOx
sOx
sOx
@@ -115008,8 +115034,8 @@ aKc
cdD
aKc
aKc
-fXH
-imL
+uZK
+vxO
qFL
qLH
jXV
@@ -115104,7 +115130,7 @@ vDW
fJy
eah
eNE
-buz
+cqx
cRQ
bQc
cRQ
@@ -115112,19 +115138,19 @@ cRQ
aHo
cRQ
cRQ
-rrY
+eII
scs
kwm
fJy
aCf
-aDg
-ydX
-aDg
-aDg
-nfY
-aDg
-ydX
-aDg
+fKy
+wym
+fKy
+fKy
+tHK
+fKy
+wym
+fKy
wUr
wJt
csJ
@@ -115265,8 +115291,8 @@ mTI
aHA
beF
aKc
-qba
-imM
+pVs
+tKF
hOZ
jXV
cia
@@ -115316,7 +115342,7 @@ iCD
odD
oxg
qiw
-tnz
+dOg
fiF
tNJ
djY
@@ -115361,7 +115387,7 @@ vDW
aCf
aCf
aCf
-buz
+cqx
cRQ
cRQ
cRQ
@@ -115369,7 +115395,7 @@ cRQ
cRQ
cRQ
cRQ
-buz
+cqx
aCf
aCf
aCf
@@ -115618,7 +115644,7 @@ kHH
kHH
kHH
aCf
-dIB
+wCn
cRQ
cRQ
cRQ
@@ -115626,7 +115652,7 @@ cRQ
cRQ
cRQ
cRQ
-vlX
+tAK
aCf
kHH
kHH
@@ -115875,7 +115901,7 @@ kHH
kHH
kHH
aCf
-buz
+cqx
cRQ
cRQ
cRQ
@@ -115883,7 +115909,7 @@ cRQ
cRQ
cRQ
cRQ
-buz
+cqx
aCf
kHH
kHH
@@ -116873,7 +116899,7 @@ qdt
qgC
qgC
qgC
-ssH
+jUU
qgC
qgC
qgC
@@ -117034,8 +117060,8 @@ abN
abN
kHH
yjW
-nJc
-ubk
+cBM
+fkk
yjW
aMO
byH
@@ -117130,7 +117156,7 @@ vEQ
xuO
wpP
uZN
-jFB
+gLi
xuO
xuO
fyG
@@ -117387,7 +117413,7 @@ uId
vSg
abm
abm
-nMc
+qIz
abm
sGf
abm
@@ -117563,7 +117589,7 @@ sJo
oQZ
yfU
dPk
-ceh
+aXg
dVt
yfU
dLn
@@ -117644,7 +117670,7 @@ uId
kvd
abm
chd
-cJP
+xag
wTj
klr
cIk
@@ -117901,7 +117927,7 @@ xqO
xqO
abm
msj
-gwC
+gTk
uQX
ftA
jpl
@@ -118158,7 +118184,7 @@ bOO
wWK
abm
wIf
-fro
+fOZ
lQM
xuW
bZE
@@ -118415,7 +118441,7 @@ xqO
ljs
abm
wIz
-kSZ
+xHj
qJg
xvQ
haj
@@ -118672,7 +118698,7 @@ qTB
vSj
abm
wKh
-pWi
+idB
qJg
xwp
wwp
@@ -118929,7 +118955,7 @@ uId
uId
abm
wKB
-ehP
+xuE
wgD
koV
xFZ
@@ -119114,11 +119140,11 @@ esb
iuH
jgb
yfU
-kuA
-ryB
+geS
+ylZ
yfU
-ryB
-kuA
+ylZ
+geS
yfU
jKy
une
@@ -119186,9 +119212,9 @@ xqO
vSF
abm
wLf
-hmo
+fSK
pkx
-wUQ
+blA
xxv
abm
oUS
@@ -119371,11 +119397,11 @@ hiR
bMo
lKq
yfU
-vEa
-dtG
+ncf
+ewQ
yfU
-iuB
-kcg
+wcG
+efQ
yfU
wZn
gFf
@@ -119443,7 +119469,7 @@ bOO
bOO
abm
wLC
-kuS
+peX
wIz
pSO
dIU
@@ -119699,8 +119725,8 @@ iPv
eNo
iPv
abm
-iXt
-jSu
+sdV
+nLU
oKs
xwM
ira
@@ -119908,8 +119934,8 @@ nMg
oaY
lkP
oVr
-pzT
-unK
+ycK
+eHH
qAE
mib
mib
@@ -120163,10 +120189,10 @@ ptN
iop
nMm
goz
-tZZ
-tZZ
-tZZ
-ecK
+xFs
+xFs
+xFs
+pxZ
qAN
mib
mib
@@ -120420,10 +120446,10 @@ mEU
iop
aeb
cGF
-ewj
+fof
mbL
-pbp
-rim
+gxd
+nHh
ltj
pLu
vnZ
@@ -120436,7 +120462,7 @@ kyo
hhj
iyS
jOJ
-wfj
+aaj
vmw
kwn
jOJ
@@ -120677,7 +120703,7 @@ ptN
kFI
ehF
kZd
-pym
+sff
xNi
pBe
mtl
@@ -120693,7 +120719,7 @@ czD
mib
iyS
wRF
-vcW
+kqp
vmw
gET
lOZ
@@ -120950,7 +120976,7 @@ fiV
mib
njG
jOJ
-iJC
+ltL
bwH
xnO
wuC
@@ -121207,7 +121233,7 @@ czD
mib
qrj
jOJ
-vdK
+bYW
mIB
xGG
jgo
@@ -121464,7 +121490,7 @@ mib
mib
osl
wRF
-ven
+jLq
vmw
eVr
lOZ
@@ -121721,7 +121747,7 @@ qjZ
qjZ
vqH
jOJ
-vfJ
+asj
vmw
doQ
jOJ
@@ -121976,7 +122002,7 @@ qIi
afj
afj
qIi
-ufq
+qFl
jOJ
lOZ
upt
@@ -122001,7 +122027,7 @@ xPG
svS
bqq
xGp
-ndp
+qyj
tDV
sTw
tVL
@@ -122502,7 +122528,7 @@ oUH
tUE
ylD
ceL
-cyN
+qvq
hmI
xTG
cnU
@@ -123286,7 +123312,7 @@ rWE
tzA
xlj
xGp
-mpv
+fWj
wRY
wRY
wRY
@@ -123508,10 +123534,10 @@ vQh
cST
qbo
pXj
-opp
-opp
-opp
-opp
+qSp
+qSp
+qSp
+qSp
usI
uag
jTV
@@ -123543,7 +123569,7 @@ fZA
xUL
rxI
xGp
-ucK
+gii
vxb
paE
vLj
@@ -123723,7 +123749,7 @@ vcT
oXE
dfc
ooa
-jTR
+lco
fiI
ubt
byo
@@ -123762,7 +123788,7 @@ phi
hPX
wYb
vQh
-uLm
+pQE
qbo
pXj
bfN
@@ -124314,7 +124340,7 @@ xTG
xUL
rws
xGp
-mRL
+rZd
wRY
drs
cmn
@@ -124511,7 +124537,7 @@ ceV
hRQ
xmu
jcx
-wxx
+wBi
bFp
ygM
ccd
@@ -125035,14 +125061,14 @@ byc
rmz
hLq
cOk
-jQy
+dkN
mhb
esg
fTN
jId
xAu
fdE
-ruS
+ibt
wqJ
sDy
qSQ
@@ -125085,7 +125111,7 @@ viG
xUL
rws
xGp
-mpv
+fWj
vxb
hJz
uue
@@ -125536,10 +125562,10 @@ cLx
ntR
pEs
ceV
-crN
-diA
+mOv
+yfP
fjl
-iIc
+prY
rIY
ceV
adk
@@ -126295,7 +126321,7 @@ pMM
cWI
dAM
aID
-ter
+axd
mfQ
gJq
eNd
@@ -126378,7 +126404,7 @@ uRe
wFZ
wFZ
wtF
-rVi
+wks
wtF
wtF
uCS
@@ -126552,7 +126578,7 @@ gQk
gcp
gLI
lfJ
-aoB
+hOb
mRZ
jDs
cWr
@@ -126577,14 +126603,14 @@ ceV
kcJ
tNk
etJ
-ruS
+ibt
mke
bwQ
nGH
bwQ
mke
bwQ
-jQy
+dkN
wqJ
sDy
wrM
@@ -126809,7 +126835,7 @@ gWX
xUl
rGy
rGy
-jOV
+tZw
rGy
aeJ
wgG
@@ -127066,7 +127092,7 @@ aeJ
aeJ
aeJ
wrS
-tXL
+tmC
eFz
aeJ
oWl
@@ -127320,15 +127346,15 @@ daE
dgw
aOU
dAz
-nub
-pbW
-uGp
-vLP
+xEI
+qgW
+mjz
+amm
wiv
wuW
-hxd
-lAQ
-cEY
+wLh
+nDz
+biN
grZ
eSp
xsG
@@ -127903,7 +127929,7 @@ wLe
iSJ
rno
xfi
-knu
+cxz
iSJ
jVm
sCI
@@ -128162,9 +128188,9 @@ rop
lKT
nkn
iSJ
-ejR
-ghx
-vDP
+xUH
+weJ
+uZr
xTG
mKU
cpS
@@ -128367,7 +128393,7 @@ ayc
bdg
vHr
wmy
-nMB
+gEv
kar
fGE
voQ
@@ -128421,7 +128447,7 @@ vUF
dPJ
onT
rhV
-qTK
+xQY
nBk
vNv
buH
@@ -128624,7 +128650,7 @@ ayc
vPc
vHr
vad
-lug
+oUu
fsa
pAH
pLE
@@ -128678,7 +128704,7 @@ lVX
xHG
auR
cci
-lkE
+ivw
lAj
gko
fCp
@@ -128717,19 +128743,19 @@ teK
teK
ncv
tus
-qdA
-hDL
-hKb
-hKb
-hKb
-hKb
-lhP
-mnZ
-hkZ
-raX
-eIf
-kfL
-gun
+bVU
+sXb
+qoF
+qoF
+qoF
+qoF
+gPz
+qYv
+dtH
+hwQ
+mZE
+kST
+ocA
wMr
xhb
lGL
@@ -128917,7 +128943,7 @@ wWu
vkW
aVN
bNb
-wAK
+cSU
jjX
ggO
xDn
@@ -128975,7 +129001,7 @@ pSd
qfG
qfG
xEK
-sMm
+ikE
xEK
ktD
xEK
@@ -129174,7 +129200,7 @@ wWu
cRA
uPR
aJs
-wAM
+rwm
iUg
rlY
pNu
@@ -129232,7 +129258,7 @@ xNW
xJG
qfG
iJx
-sMm
+ikE
rNq
ocP
lIP
@@ -129452,7 +129478,7 @@ hyl
meF
cnM
hZd
-iHX
+iOa
tTr
kIo
ltV
@@ -129489,7 +129515,7 @@ vjD
vjD
qfG
xEK
-sMm
+ikE
xEK
ygW
lIP
@@ -129746,7 +129772,7 @@ wwl
rFL
qfG
ojF
-sMm
+ikE
xEK
lIP
lIP
@@ -130003,10 +130029,10 @@ xip
xip
xip
imW
-sMm
+ikE
ktD
lIP
-mUh
+cdf
jeG
trp
ojp
@@ -130014,7 +130040,7 @@ lVK
oZg
wdF
lIP
-bHi
+eqn
bnZ
czW
bRq
@@ -130260,10 +130286,10 @@ vOS
lXa
xip
huh
-sMm
+ikE
dWP
lIP
-kQv
+xxm
dgL
trp
wrU
@@ -130271,7 +130297,7 @@ eMQ
apB
nyc
lIP
-gLR
+tEz
qbz
czW
bIn
@@ -130405,7 +130431,7 @@ lLM
boD
jID
vxN
-gUM
+hpS
xWn
xWn
xWn
@@ -130517,10 +130543,10 @@ xip
wbz
xip
kOi
-dtg
+iSa
xEK
lIP
-rYM
+nQA
lWR
vQk
dcd
@@ -130774,15 +130800,15 @@ ovU
iaw
xip
iJx
-sMm
+ikE
xEK
lIP
-ezq
+vsQ
fJb
trp
xiI
gTQ
-wJz
+fly
wTh
cbq
xxZ
@@ -131015,7 +131041,7 @@ xJP
mhe
bzK
goj
-mUu
+uQZ
yfq
cVw
xAs
@@ -131031,15 +131057,15 @@ jCn
uux
xip
xEK
-sMm
+ikE
xEK
lIP
-ndN
+qxU
bwD
oKv
wHY
vWb
-qwr
+rAB
wTh
gcs
pqX
@@ -131224,8 +131250,8 @@ xcP
oba
xJU
pUn
-odZ
-npu
+aup
+bHx
ycI
vsR
qqd
@@ -131272,7 +131298,7 @@ xJW
xph
eBc
jxi
-vBR
+ncj
yfq
jxZ
jxZ
@@ -131477,12 +131503,12 @@ kKG
lgf
wdt
scg
-hVF
+lGa
wTK
giZ
lMd
-hVF
-lxb
+lGa
+qTh
jnX
yhl
cfI
@@ -131545,7 +131571,7 @@ eZj
aWR
xip
tZF
-sMm
+ikE
xEK
siW
cwF
@@ -131553,7 +131579,7 @@ iOo
wpZ
eNZ
xDt
-vRS
+sqX
siW
siW
nvh
@@ -131734,12 +131760,12 @@ wBt
wBt
wBt
cLg
-hVF
+lGa
bjB
kXy
wPS
-hVF
-lxb
+lGa
+qTh
jTB
maO
qqd
@@ -131779,7 +131805,7 @@ bHe
cvE
bVQ
yfq
-sPf
+gGF
xph
xik
dhc
@@ -131802,7 +131828,7 @@ chN
tsq
xip
kOi
-dtg
+iSa
xEK
siW
aOa
@@ -131986,17 +132012,17 @@ vtm
wdS
vtm
vUR
-xcR
+qYg
dNT
pSe
knc
scg
-hVF
+lGa
wTK
chH
lMd
-hVF
-ryG
+lGa
+mbu
jnX
yhl
qqd
@@ -132040,7 +132066,7 @@ eOj
xph
bGo
xJW
-mKW
+aRU
uwE
rhg
uwE
@@ -132059,7 +132085,7 @@ jlz
dYL
xip
kJm
-sMm
+ikE
iHz
aZB
dBq
@@ -132293,7 +132319,7 @@ chI
nCN
vBG
wUH
-ptM
+lRj
xph
bGo
xJW
@@ -132316,7 +132342,7 @@ iQL
rYr
ntV
iJx
-sMm
+ikE
xEK
imz
xbT
@@ -132549,7 +132575,7 @@ wJL
chI
hZQ
vBG
-oUj
+cdd
eQc
xYS
mhe
@@ -132572,9 +132598,9 @@ piT
eHE
llI
vFx
-wur
-kYw
-dCc
+wcq
+tfx
+bTy
bTk
rJy
pJN
@@ -132807,9 +132833,9 @@ chI
hZQ
vBG
yfq
-krq
-vpI
-nTn
+bxW
+rGS
+ait
trH
kYH
wAn
@@ -132830,7 +132856,7 @@ lew
wgY
jam
xEK
-kBY
+ngc
xEK
pyA
qTc
@@ -133087,7 +133113,7 @@ kcS
kcS
wzw
ktD
-sMm
+ikE
ktD
aZB
oRx
@@ -133271,8 +133297,8 @@ vBi
mTT
oEj
vUR
-qIM
-kbK
+ffv
+iXA
oYn
xIV
iZK
@@ -133320,7 +133346,7 @@ chI
chI
hZQ
vBG
-aby
+oix
wVA
vym
wHc
@@ -133344,7 +133370,7 @@ cwb
kLJ
kcS
xEK
-sMm
+ikE
xEK
siW
siW
@@ -133462,17 +133488,17 @@ nnx
nnx
xJu
nnx
-cQf
+rof
tIf
-opV
+fjh
nnx
-cQf
+rof
tIf
-opV
+fjh
nnx
-cQf
+rof
tIf
-opV
+fjh
nnx
xJu
nnx
@@ -133542,7 +133568,7 @@ kkX
nVS
wvS
iyg
-amP
+nVK
nVS
eSR
hHi
@@ -133577,7 +133603,7 @@ ajd
vuf
rdC
vBG
-lbJ
+rYW
dFQ
gpC
jrR
@@ -133601,7 +133627,7 @@ fIG
swG
kcS
gmR
-sMm
+ikE
ktD
mrn
bNA
@@ -133719,17 +133745,17 @@ nnx
nnx
xJu
nnx
-cQf
+rof
vfe
-opV
+fjh
nnx
-cQf
+rof
vfe
-opV
+fjh
nnx
-cQf
+rof
vfe
-opV
+fjh
nnx
xJu
nnx
@@ -133834,7 +133860,7 @@ chI
lRo
hZQ
vBG
-lFV
+jYd
sEu
xpH
sFH
@@ -133858,11 +133884,11 @@ xDW
toB
kcS
iHt
-gEW
-vPh
-vPh
-mKT
-tmg
+poU
+qAi
+qAi
+xIh
+qlo
ikr
skP
pSl
@@ -133976,17 +134002,17 @@ nnx
nnx
xJu
nnx
-cQf
+rof
vfe
-opV
+fjh
nnx
-cQf
+rof
vfe
-opV
+fjh
nnx
-cQf
+rof
vfe
-opV
+fjh
nnx
xJu
nnx
@@ -134119,7 +134145,7 @@ fqT
xav
xav
dnu
-sMm
+ikE
xEK
rHU
fLu
@@ -134233,17 +134259,17 @@ nnx
nnx
xJu
nnx
-cQf
+rof
vfe
-opV
+fjh
nnx
-cQf
+rof
vfe
-opV
+fjh
nnx
-cQf
+rof
vfe
-opV
+fjh
nnx
xJu
nnx
@@ -134376,7 +134402,7 @@ kUt
kUt
kUt
sMM
-sMm
+ikE
xni
fRu
fRu
@@ -134490,17 +134516,17 @@ nnx
nnx
xJu
nnx
-cQf
+rof
vfe
-opV
+fjh
nnx
-cQf
+rof
vfe
-opV
+fjh
nnx
-cQf
+rof
vfe
-opV
+fjh
nnx
xJu
nnx
@@ -134747,17 +134773,17 @@ nnx
nnx
xJu
nnx
-cQf
+rof
vfe
-opV
+fjh
nnx
-cQf
+rof
vfe
-opV
+fjh
nnx
-cQf
+rof
vfe
-opV
+fjh
nnx
xJu
nnx
@@ -134890,7 +134916,7 @@ eYX
sWK
wUG
ktD
-sMm
+ikE
lXI
jGx
lqv
@@ -135004,17 +135030,17 @@ nnx
nnx
xJu
nnx
-cQf
+rof
vfe
-opV
+fjh
nnx
-cQf
+rof
vfe
-opV
+fjh
nnx
-cQf
+rof
vfe
-opV
+fjh
nnx
xJu
nnx
@@ -135147,7 +135173,7 @@ pIw
iaG
wUG
ktD
-sqF
+sQy
xeF
aPJ
mAi
@@ -135261,17 +135287,17 @@ nnx
nnx
xJu
nnx
-cQf
+rof
vfe
-opV
+fjh
nnx
-cQf
+rof
vfe
-opV
+fjh
nnx
-cQf
+rof
vfe
-opV
+fjh
nnx
xJu
nnx
@@ -135404,7 +135430,7 @@ tcZ
xZv
wUG
kOi
-dtg
+iSa
xEK
fRu
qAX
@@ -135518,17 +135544,17 @@ xJu
csJ
csJ
nnx
-cQf
+rof
vfe
-opV
+fjh
nnx
-cQf
+rof
vfe
-opV
+fjh
nnx
-cQf
+rof
vfe
-opV
+fjh
nnx
xJu
csJ
@@ -135661,7 +135687,7 @@ xMY
eRR
wUG
pJI
-sMm
+ikE
xEK
fbb
blx
@@ -135886,7 +135912,7 @@ jKi
rKy
wTM
gEs
-ygY
+mYq
dAl
sTe
sTe
@@ -135895,9 +135921,9 @@ wWV
jDt
dpN
xMs
-myp
-uvQ
-xXx
+tGQ
+aYp
+eXK
pzW
vQj
xSV
@@ -135905,7 +135931,7 @@ pNp
uUU
vzE
wDv
-kLZ
+dWZ
hZn
ioH
wUG
@@ -135918,7 +135944,7 @@ tcN
euN
wUG
xEK
-sMm
+ikE
vjw
fRu
uGw
@@ -136029,7 +136055,7 @@ nnx
nnx
wMM
nnx
-fwS
+nJY
adg
adg
agV
@@ -136162,7 +136188,7 @@ rzq
kLc
aWg
wDv
-qyr
+jWq
ape
gMU
wUG
@@ -136175,7 +136201,7 @@ iWp
bbM
wUG
ktD
-sMm
+ikE
rwH
fRu
fRu
@@ -136419,7 +136445,7 @@ xuS
oYh
auw
eiS
-qyr
+jWq
mmm
gwX
wUG
@@ -136432,7 +136458,7 @@ xFn
dNq
wUG
jUk
-sMm
+ikE
bkl
kUt
kUt
@@ -136546,17 +136572,17 @@ xJu
csJ
csJ
nnx
-cQf
+rof
aka
-opV
+fjh
nnx
-cQf
+rof
aka
-opV
+fjh
nnx
-cQf
+rof
aka
-opV
+fjh
nnx
xJu
csJ
@@ -136676,7 +136702,7 @@ fBJ
ccr
ccr
ccr
-jNj
+ugB
mcR
wOd
wUG
@@ -136689,7 +136715,7 @@ wUG
wUG
wUG
mra
-sMm
+ikE
cpU
qvW
rFZ
@@ -136803,17 +136829,17 @@ nnx
nnx
csJ
nnx
-cQf
+rof
aka
-opV
+fjh
nnx
-cQf
+rof
aka
-opV
+fjh
nnx
-cQf
+rof
aka
-opV
+fjh
nnx
xJu
nnx
@@ -136933,7 +136959,7 @@ nwM
wgV
wgV
wgV
-vtC
+sRe
tNd
aMc
vpQ
@@ -136946,7 +136972,7 @@ oqW
bOb
oqW
xEK
-sMm
+ikE
tSo
ktD
feq
@@ -137060,17 +137086,17 @@ nnx
nnx
xJu
nnx
-cQf
+rof
aka
-opV
+fjh
nnx
-cQf
+rof
aka
-opV
+fjh
nnx
-cQf
+rof
aka
-opV
+fjh
nnx
xJu
nnx
@@ -137171,7 +137197,7 @@ cfY
wdn
sQK
gEs
-tOf
+eNV
cUd
rlX
gad
@@ -137190,9 +137216,9 @@ gNB
xpc
rUi
lBE
-bCg
-pdk
-pdk
+bse
+ydW
+ydW
nch
mHV
buo
@@ -137203,7 +137229,7 @@ dHn
cNZ
nnw
xEK
-det
+uaL
xFN
lXI
blY
@@ -137317,17 +137343,17 @@ nnx
nnx
xJu
nnx
-cQf
+rof
aka
-opV
+fjh
nnx
-cQf
+rof
aka
-opV
+fjh
nnx
-cQf
+rof
aka
-opV
+fjh
nnx
xJu
nnx
@@ -137442,12 +137468,12 @@ wgM
xSV
rHf
vZw
-fnj
-dYs
-uet
-aWJ
-aWJ
-aQm
+xxO
+sDU
+jZy
+sxh
+sxh
+piE
bCW
rpo
oqW
@@ -137460,7 +137486,7 @@ oqW
cSS
oqW
ktD
-sMm
+ikE
pwm
pOi
fWL
@@ -137574,17 +137600,17 @@ nnx
nnx
xJu
nnx
-cQf
+rof
aka
-opV
+fjh
nnx
-cQf
+rof
aka
-opV
+fjh
nnx
-cQf
+rof
aka
-opV
+fjh
nnx
xJu
nnx
@@ -137831,17 +137857,17 @@ nnx
nnx
xJu
nnx
-cQf
+rof
aka
-opV
+fjh
nnx
-cQf
+rof
aka
-opV
+fjh
nnx
-cQf
+rof
aka
-opV
+fjh
nnx
xJu
nnx
@@ -138088,17 +138114,17 @@ nnx
nnx
xJu
nnx
-cQf
+rof
aka
-opV
+fjh
nnx
-cQf
+rof
aka
-opV
+fjh
nnx
-cQf
+rof
aka
-opV
+fjh
nnx
xJu
nnx
@@ -138345,17 +138371,17 @@ nnx
nnx
xJu
nnx
-cQf
+rof
aka
-opV
+fjh
nnx
-cQf
+rof
aka
-opV
+fjh
nnx
-cQf
+rof
aka
-opV
+fjh
nnx
xJu
nnx
@@ -138602,17 +138628,17 @@ nnx
nnx
xJu
nnx
-cQf
+rof
akb
-opV
+fjh
nnx
-cQf
+rof
akb
-opV
+fjh
nnx
-cQf
+rof
akb
-opV
+fjh
nnx
xJu
nnx
@@ -139928,13 +139954,13 @@ jeD
dRk
qoM
iuy
-xAE
+pKL
qRm
sfU
-sqc
+sck
oVu
fji
-sqc
+sck
aiP
pWT
gsv
@@ -140014,7 +140040,7 @@ kvJ
cys
oCf
jWE
-khR
+fxc
hzR
vmG
kiu
@@ -140185,13 +140211,13 @@ nHR
elQ
inh
iuy
-xAE
+pKL
tMh
ewH
-sqc
+sck
wdb
knt
-xAE
+pKL
dGm
doY
izc
@@ -140442,13 +140468,13 @@ nHR
elQ
oZh
iuy
-xAE
+pKL
ezK
ycp
-xAE
+pKL
jPK
vvB
-xAE
+pKL
pUw
uJm
izc
@@ -140699,13 +140725,13 @@ oXV
emd
aJD
iuy
-sqc
+sck
dZA
ewH
-xAE
+pKL
qWx
knt
-sqc
+sck
vJa
doY
izc
@@ -140780,7 +140806,7 @@ xAk
uUs
qtI
lVp
-moF
+aoC
puI
bAb
tMD
@@ -140956,13 +140982,13 @@ nHR
elQ
iKl
eNy
-eSY
+nZf
rXf
ntQ
-eSY
+nZf
mwN
teq
-hWn
+mxt
dbN
alG
izc
@@ -141294,7 +141320,7 @@ knz
uUs
sRB
iJl
-tOC
+tlm
eRj
ufF
kXt
@@ -143277,12 +143303,12 @@ hGM
hGw
hZN
iqP
-iFb
-qNG
-aNS
-aPc
+ciJ
+xaZ
+rRt
+gaM
jwg
-ydU
+uey
yiC
rPl
rDU
@@ -143534,10 +143560,10 @@ hGU
fuq
gBJ
wfA
-iFo
-gxY
-gxY
-iVZ
+lpt
+vIF
+vIF
+bBJ
hcD
hvr
yiC
@@ -143791,10 +143817,10 @@ iMl
aji
iMl
wfA
-iFy
-gxY
-gxY
-jjr
+cAI
+vIF
+vIF
+eJk
hcD
oFa
yiC
@@ -143871,7 +143897,7 @@ uLE
uzm
ijV
uzm
-uzm
+htz
uzm
ijV
mcv
@@ -144048,10 +144074,10 @@ fZh
akH
gBU
wfA
-hKJ
-ibk
-baY
-gBa
+erO
+gDy
+wUJ
+hzr
jwC
kfR
yiC
@@ -144629,7 +144655,7 @@ rPL
wTf
uUs
aGS
-ozB
+dLC
sup
xCv
hEO
@@ -145145,10 +145171,10 @@ uUs
nhL
xfR
adh
-cYz
+jEA
xZT
vzn
-nzT
+sUJ
mcp
oPF
yiB
@@ -145395,11 +145421,11 @@ lba
lMw
sEC
sDI
-nbH
-plT
-nbH
+whP
+tdA
+whP
xDS
-bps
+gap
xfR
wfl
iyk
@@ -146080,7 +146106,7 @@ nnx
nnx
bvJ
cxT
-hwR
+bfy
brZ
dqz
bYm
@@ -146101,9 +146127,9 @@ ykw
ibC
ydm
fZC
-gia
+axO
gEm
-hem
+jmm
hLg
gzT
ydm
@@ -146599,12 +146625,12 @@ aAL
drK
ubJ
yeb
-kWB
+gCc
yeb
dKp
dOA
yeb
-fwA
+hhM
yeb
nVa
vRR
@@ -146856,12 +146882,12 @@ cIg
dse
uzC
yeb
-fSb
+ity
cIg
-eDY
-pzB
+vnD
+eWe
uzC
-pgH
+gkS
yeb
yeb
yeb
@@ -146902,8 +146928,8 @@ wDO
wDO
cIi
cIi
-lTF
-cIF
+lyy
+ejI
cIi
cIi
uZI
@@ -147113,12 +147139,12 @@ bOn
dst
dst
yeb
-uif
+aaS
yeb
dLp
jhj
yeb
-aNh
+tTV
yeb
gsS
epQ
@@ -147247,17 +147273,17 @@ nnx
nnx
csJ
nnx
-cpP
+lsZ
anf
-ods
+gCF
nnx
-cpP
+lsZ
anf
-ods
+gCF
nnx
-cpP
+lsZ
anf
-ods
+gCF
nnx
xJu
nnx
@@ -147397,7 +147423,7 @@ cZZ
cZZ
jVH
cZZ
-kNb
+gQW
taC
xTa
xsq
@@ -147504,17 +147530,17 @@ nnx
nnx
csJ
nnx
-cpP
+lsZ
vMV
-ods
+gCF
nnx
-cpP
+lsZ
vMV
-ods
+gCF
nnx
-cpP
+lsZ
vMV
-ods
+gCF
nnx
xJu
nnx
@@ -147728,12 +147754,12 @@ uGV
tJY
gQn
gVe
-syL
-lrR
-lrR
-lrR
-lrR
-lrR
+dJm
+xUQ
+xUQ
+xUQ
+xUQ
+xUQ
jYj
gJY
gJY
@@ -147761,17 +147787,17 @@ nnx
nnx
csJ
nnx
-cpP
+lsZ
vMV
-ods
+gCF
nnx
-cpP
+lsZ
vMV
-ods
+gCF
nnx
-cpP
+lsZ
vMV
-ods
+gCF
nnx
xJu
nnx
@@ -147985,11 +148011,11 @@ jZL
wLN
rTo
tby
-jRp
+kps
uam
pip
uam
-ikx
+ngS
bPL
rTo
vXB
@@ -148018,17 +148044,17 @@ nnx
nnx
csJ
nnx
-cpP
+lsZ
vMV
-ods
+gCF
nnx
-cpP
+lsZ
vMV
-ods
+gCF
nnx
-cpP
+lsZ
vMV
-ods
+gCF
nnx
xJu
nnx
@@ -148242,11 +148268,11 @@ hgB
ble
rTo
wSL
-jRp
+kps
xyv
frM
gLO
-ikx
+ngS
bsm
rTo
air
@@ -148275,17 +148301,17 @@ nnx
nnx
csJ
nnx
-cpP
+lsZ
vMV
-ods
+gCF
nnx
-cpP
+lsZ
vMV
-ods
+gCF
nnx
-cpP
+lsZ
vMV
-ods
+gCF
nnx
xJu
nnx
@@ -148415,7 +148441,7 @@ eHQ
drE
sJD
eXI
-sbl
+nQr
fYs
sJD
lAI
@@ -148532,17 +148558,17 @@ nnx
nnx
csJ
nnx
-cpP
+lsZ
vMV
-ods
+gCF
nnx
-cpP
+lsZ
vMV
-ods
+gCF
nnx
-cpP
+lsZ
vMV
-ods
+gCF
nnx
xJu
nnx
@@ -148756,11 +148782,11 @@ hgB
rSR
rTo
wUB
-yaB
+pYd
ahp
qxK
kCA
-vTj
+hPb
ymc
rTo
vXB
@@ -148789,17 +148815,17 @@ nnx
nnx
csJ
nnx
-cpP
+lsZ
vMV
-ods
+gCF
nnx
-cpP
+lsZ
vMV
-ods
+gCF
nnx
-cpP
+lsZ
vMV
-ods
+gCF
nnx
csJ
nnx
@@ -149013,11 +149039,11 @@ hgB
itO
rTo
gzZ
-ltB
-eWk
+eOl
+wjV
apI
-bZz
-huY
+xvO
+hSM
hoD
rTo
mmz
@@ -149046,17 +149072,17 @@ abN
nnx
csJ
nnx
-cpP
+lsZ
vMV
-ods
+gCF
nnx
-cpP
+lsZ
vMV
-ods
+gCF
nnx
-cpP
+lsZ
vMV
-ods
+gCF
nnx
csJ
nnx
@@ -149303,17 +149329,17 @@ abN
nnx
csJ
nnx
-cpP
+lsZ
vMV
-ods
+gCF
nnx
-cpP
+lsZ
vMV
-ods
+gCF
nnx
-cpP
+lsZ
vMV
-ods
+gCF
nnx
csJ
csJ
@@ -149830,7 +149856,7 @@ lus
bii
xIL
xIL
-iIC
+dXV
csJ
wMM
nnx
@@ -150252,7 +150278,7 @@ ovZ
vQs
wEN
xiE
-pvE
+wNJ
wlU
xMx
duI
@@ -150331,17 +150357,17 @@ nnx
nnx
csJ
nnx
-cpP
+lsZ
wZr
-ods
+gCF
nnx
-cpP
+lsZ
wZr
-ods
+gCF
nnx
-cpP
+lsZ
wZr
-ods
+gCF
nnx
csJ
csJ
@@ -150542,10 +150568,10 @@ pSW
rXm
xCJ
rFB
-bQn
-rSa
-tRk
-xcM
+uZg
+eqb
+tVj
+dYe
vLM
nnx
nnx
@@ -150588,17 +150614,17 @@ nnx
nnx
csJ
nnx
-cpP
+lsZ
wZr
-ods
+gCF
nnx
-cpP
+lsZ
wZr
-ods
+gCF
nnx
-cpP
+lsZ
wZr
-ods
+gCF
nnx
csJ
nnx
@@ -150845,17 +150871,17 @@ csJ
csJ
csJ
nnx
-cpP
+lsZ
wZr
-ods
+gCF
nnx
-cpP
+lsZ
wZr
-ods
+gCF
nnx
-cpP
+lsZ
wZr
-ods
+gCF
nnx
csJ
nnx
@@ -151102,17 +151128,17 @@ nnx
nnx
csJ
nnx
-cpP
+lsZ
wZr
-ods
+gCF
nnx
-cpP
+lsZ
wZr
-ods
+gCF
nnx
-cpP
+lsZ
wZr
-ods
+gCF
nnx
xJu
nnx
@@ -151359,17 +151385,17 @@ nnx
nnx
csJ
nnx
-cpP
+lsZ
wZr
-ods
+gCF
nnx
-cpP
+lsZ
wZr
-ods
+gCF
nnx
-cpP
+lsZ
wZr
-ods
+gCF
nnx
xJu
nnx
@@ -151616,17 +151642,17 @@ nnx
nnx
csJ
nnx
-cpP
+lsZ
wZr
-ods
+gCF
nnx
-cpP
+lsZ
wZr
-ods
+gCF
nnx
-cpP
+lsZ
wZr
-ods
+gCF
nnx
xJu
nnx
@@ -151873,17 +151899,17 @@ nnx
nnx
csJ
nnx
-cpP
+lsZ
wZr
-ods
+gCF
nnx
-cpP
+lsZ
wZr
-ods
+gCF
nnx
-cpP
+lsZ
wZr
-ods
+gCF
nnx
xJu
nnx
@@ -152079,7 +152105,7 @@ rDo
vLM
rXm
rTd
-eHt
+jjc
hgB
rXm
xCJ
@@ -152130,17 +152156,17 @@ nnx
nnx
csJ
nnx
-cpP
+lsZ
wZr
-ods
+gCF
nnx
-cpP
+lsZ
wZr
-ods
+gCF
nnx
-cpP
+lsZ
wZr
-ods
+gCF
nnx
xJu
nnx
@@ -152288,7 +152314,7 @@ kHH
kHH
nRn
nRn
-mDl
+uby
nRn
jXP
kHH
@@ -152334,9 +152360,9 @@ ssu
ecS
ssu
vLM
-wsA
-ktQ
-pgV
+eEh
+pAO
+nRQ
kTI
rXm
elg
@@ -152387,17 +152413,17 @@ nnx
nnx
csJ
nnx
-cpP
+lsZ
wZr
-ods
+gCF
nnx
-cpP
+lsZ
wZr
-ods
+gCF
nnx
-cpP
+lsZ
xkE
-ods
+gCF
nnx
cZO
nnx
@@ -152545,7 +152571,7 @@ kHH
kHH
jZt
orP
-dxv
+bHm
pyl
unp
kHH
@@ -152802,7 +152828,7 @@ abN
abN
unp
otS
-rPM
+fkI
otS
unp
kHH
@@ -153569,27 +153595,27 @@ dyJ
nnx
nnx
nnx
-qDL
-qDL
-qDL
-qDL
-qDL
-qDL
-qDL
-qDL
-qDL
+szQ
+szQ
+szQ
+szQ
+szQ
+szQ
+szQ
+szQ
+szQ
qYE
qYE
qYE
-qDL
-qDL
-qDL
-qDL
-qDL
-qDL
-qDL
-qDL
-qDL
+szQ
+szQ
+szQ
+szQ
+szQ
+szQ
+szQ
+szQ
+szQ
nnx
wDO
qgi
@@ -154083,27 +154109,27 @@ abN
abN
csJ
nnx
-ctP
-ctP
-ctP
-ctP
-ctP
-ctP
-ctP
-ctP
-ctP
+sjA
+sjA
+sjA
+sjA
+sjA
+sjA
+sjA
+sjA
+sjA
qYE
qYE
qYE
-mMR
-mMR
-mMR
-mMR
-mMR
-mMR
-mMR
-mMR
-ctP
+sxf
+sxf
+sxf
+sxf
+sxf
+sxf
+sxf
+sxf
+sjA
nnx
wDO
nnx
@@ -154597,27 +154623,27 @@ abN
nnx
csJ
nnx
-qDL
-qDL
-qDL
-qDL
-qDL
-qDL
-qDL
-qDL
-qDL
+szQ
+szQ
+szQ
+szQ
+szQ
+szQ
+szQ
+szQ
+szQ
qYE
qYE
qYE
-qDL
-qDL
-qDL
-qDL
-qDL
-qDL
-qDL
-qDL
-qDL
+szQ
+szQ
+szQ
+szQ
+szQ
+szQ
+szQ
+szQ
+szQ
nnx
wMM
vLM
@@ -155111,27 +155137,27 @@ abN
nnx
csJ
nnx
-ctP
-ctP
-ctP
-ctP
-ctP
-ctP
-ctP
-ctP
-ctP
+sjA
+sjA
+sjA
+sjA
+sjA
+sjA
+sjA
+sjA
+sjA
qYE
qYE
qYE
-mMR
-mMR
-mMR
-mMR
-mMR
-mMR
-mMR
-mMR
-ctP
+sxf
+sxf
+sxf
+sxf
+sxf
+sxf
+sxf
+sxf
+sjA
nnx
csJ
nnx
@@ -155625,27 +155651,27 @@ abN
nnx
csJ
nnx
-qDL
-qDL
-qDL
-qDL
-qDL
-qDL
-qDL
-qDL
-qDL
+szQ
+szQ
+szQ
+szQ
+szQ
+szQ
+szQ
+szQ
+szQ
qYE
qYE
qYE
-qDL
-qDL
-qDL
-qDL
-qDL
-qDL
-qDL
-qDL
-qDL
+szQ
+szQ
+szQ
+szQ
+szQ
+szQ
+szQ
+szQ
+szQ
nnx
csJ
nnx
@@ -156139,27 +156165,27 @@ nnx
nnx
csJ
nnx
-mMR
-mMR
-mMR
-mMR
-mMR
-mMR
-mMR
-mMR
-ctP
+sxf
+sxf
+sxf
+sxf
+sxf
+sxf
+sxf
+sxf
+sjA
qYE
qYE
qYE
-mMR
-mMR
-mMR
-mMR
-mMR
-mMR
-mMR
-mMR
-ctP
+sxf
+sxf
+sxf
+sxf
+sxf
+sxf
+sxf
+sxf
+sjA
nnx
csJ
nnx
@@ -156653,27 +156679,27 @@ nnx
nnx
csJ
nnx
-qDL
-qDL
-qDL
-qDL
-qDL
-qDL
-qDL
-qDL
-qDL
+szQ
+szQ
+szQ
+szQ
+szQ
+szQ
+szQ
+szQ
+szQ
qYE
qYE
qYE
-qDL
-qDL
-qDL
-qDL
-qDL
-qDL
-qDL
-qDL
-qDL
+szQ
+szQ
+szQ
+szQ
+szQ
+szQ
+szQ
+szQ
+szQ
nnx
csJ
nnx
@@ -157167,27 +157193,27 @@ nnx
nnx
xJu
nnx
-mMR
-mMR
-mMR
-mMR
-mMR
-mMR
-mMR
-mMR
-ctP
+sxf
+sxf
+sxf
+sxf
+sxf
+sxf
+sxf
+sxf
+sjA
qYE
rBQ
qYE
-mMR
-mMR
-mMR
-mMR
-mMR
-mMR
-mMR
-mMR
-ctP
+sxf
+sxf
+sxf
+sxf
+sxf
+sxf
+sxf
+sxf
+sjA
nnx
xJu
nnx
@@ -157948,7 +157974,7 @@ nnx
nnx
csJ
nnx
-jNF
+lld
nnx
csJ
nnx
diff --git a/_maps/map_files/KiloStation/KiloStation.dmm b/_maps/map_files/KiloStation/KiloStation.dmm
index 2eadc4a915787..c962f1bb2c875 100644
--- a/_maps/map_files/KiloStation/KiloStation.dmm
+++ b/_maps/map_files/KiloStation/KiloStation.dmm
@@ -7228,7 +7228,13 @@
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
-/obj/item/storage/toolbox/emergency,
+/obj/item/storage/toolbox/emergency{
+ pixel_y = 8
+ },
+/obj/item/storage/toolbox/electrical,
+/obj/item/clothing/gloves/color/yellow{
+ pixel_y = 4
+ },
/turf/open/floor/iron/dark,
/area/engine/atmos)
"aGz" = (
@@ -81007,8 +81013,6 @@
"uBi" = (
/obj/structure/table,
/obj/item/clothing/gloves/color/yellow,
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/clothing/gloves/color/yellow,
/obj/item/clothing/suit/hazardvest,
/obj/item/clothing/suit/hazardvest,
/obj/item/clothing/suit/hazardvest,
diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm
index ecdfc8afb35b4..3fc18dec9c111 100644
--- a/_maps/map_files/MetaStation/MetaStation.dmm
+++ b/_maps/map_files/MetaStation/MetaStation.dmm
@@ -581,6 +581,12 @@
"aeq" = (
/turf/closed/wall/r_wall,
/area/ai_monitored/security/armory)
+"aer" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/tcommsat/server)
"aeu" = (
/obj/machinery/computer/prisoner/management,
/turf/open/floor/iron/dark,
@@ -1170,6 +1176,15 @@
"ajD" = (
/turf/closed/wall,
/area/security/main)
+"ajK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/siding/yellow/corner,
+/turf/open/floor/iron,
+/area/engine/break_room)
"ajO" = (
/obj/machinery/atmospherics/miner/station/nitrogen,
/turf/open/floor/engine/n2,
@@ -1399,6 +1414,9 @@
},
/turf/open/floor/iron,
/area/security/brig)
+"alV" = (
+/turf/open/floor/glass/reinforced,
+/area/medical/medbay/lobby)
"amb" = (
/obj/machinery/light/small{
dir = 8
@@ -1936,6 +1954,13 @@
/obj/effect/spawner/lootdrop/donkpockets,
/turf/open/floor/iron,
/area/security/main)
+"apZ" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
"aqa" = (
/turf/closed/wall/r_wall,
/area/security/main)
@@ -2470,6 +2495,17 @@
},
/turf/open/floor/wood,
/area/crew_quarters/dorms)
+"auh" = (
+/obj/structure/chair,
+/obj/effect/landmark/start/assistant,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/dark_blue{
+ dir = 3
+ },
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"auo" = (
/obj/effect/turf_decal/tile/red{
dir = 4
@@ -2794,6 +2830,13 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4,
/turf/open/floor/iron,
/area/engine/atmos)
+"axH" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/external{
+ name = "Escape Pod Four"
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"axL" = (
/obj/item/caution,
/obj/effect/turf_decal/stripes/line{
@@ -2801,6 +2844,15 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
+"axN" = (
+/obj/structure/chair,
+/obj/effect/landmark/start/assistant,
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple,
+/turf/open/floor/iron/white,
+/area/science/research)
"axP" = (
/obj/structure/safe,
/obj/item/storage/secure/briefcase{
@@ -2840,6 +2892,7 @@
req_access_txt = "10"
},
/obj/effect/turf_decal/delivery,
+/obj/structure/window/reinforced,
/turf/open/floor/iron,
/area/engine/engineering)
"axX" = (
@@ -2994,10 +3047,6 @@
dir = 4
},
/obj/effect/turf_decal/delivery,
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 2
- },
/turf/open/floor/iron,
/area/engine/engineering)
"ayY" = (
@@ -3145,24 +3194,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/engine/engineering)
-"aAp" = (
-/obj/structure/closet/secure_closet/engineering_personal,
-/obj/item/clothing/suit/hooded/wintercoat/engineering,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/iron,
-/area/engine/engineering)
-"aAr" = (
-/obj/item/radio/intercom{
- pixel_y = 21
- },
-/obj/machinery/camera{
- c_tag = "Engineering - Fore"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/engine/engineering)
"aAv" = (
/obj/machinery/disposal/bin,
/obj/machinery/firealarm{
@@ -3404,7 +3435,7 @@
pixel_x = -22
},
/obj/effect/turf_decal/stripes/line{
- dir = 9
+ dir = 8
},
/turf/open/floor/iron,
/area/engine/engineering)
@@ -4426,6 +4457,9 @@
},
/turf/open/floor/iron,
/area/construction/storage_wing)
+"aHu" = (
+/turf/open/floor/glass/reinforced,
+/area/science/research)
"aHx" = (
/turf/closed/wall/r_wall,
/area/hallway/primary/fore)
@@ -4518,8 +4552,6 @@
/area/engine/engineering)
"aHZ" = (
/obj/item/clothing/gloves/color/yellow,
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/clothing/gloves/color/yellow,
/obj/item/clothing/suit/hazardvest,
/obj/item/clothing/suit/hazardvest,
/obj/item/tank/internals/emergency_oxygen/engi,
@@ -5139,18 +5171,6 @@
/obj/item/clothing/glasses/sunglasses/advanced/big,
/turf/open/floor/carpet/green,
/area/lawoffice)
-"aLI" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/atmos)
"aLK" = (
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -7519,6 +7539,13 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/ai)
+"aYB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"aYC" = (
/obj/structure/sign/warning/docking,
/turf/closed/wall,
@@ -7758,22 +7785,6 @@
/obj/machinery/door/firedoor,
/turf/open/floor/wood,
/area/library)
-"aZP" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- areastring = "/area/maintenance/disposal/incinerator";
- dir = 1;
- name = "Incinerator APC";
- pixel_y = 24
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"aZQ" = (
/obj/effect/landmark/start/ai/secondary,
/obj/item/radio/intercom{
@@ -8165,6 +8176,13 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/hallway/primary/port)
+"bbX" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"bbY" = (
/turf/open/floor/iron,
/area/hallway/primary/port)
@@ -9174,6 +9192,18 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/patients_rooms)
+"bid" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/advanced_airlock_controller{
+ dir = 4;
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2,
+/turf/open/floor/catwalk_floor/iron,
+/area/maintenance/solars/port/aft)
"bie" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -9394,16 +9424,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"bjn" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engineering)
"bjo" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -9721,6 +9741,24 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/maintenance/starboard)
+"bkY" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/advanced_airlock_controller{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2,
+/turf/open/floor/catwalk_floor,
+/area/hallway/secondary/exit/departure_lounge)
+"blc" = (
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"blf" = (
/obj/structure/chair/stool/bar,
/turf/open/floor/iron/cafeteria_red,
@@ -9871,6 +9909,18 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/hallway/primary/central)
+"bmo" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"bmr" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
@@ -10012,7 +10062,7 @@
/turf/open/floor/iron,
/area/engine/break_room)
"bnc" = (
-/obj/structure/disposalpipe/segment{
+/obj/structure/disposalpipe/junction{
dir = 4
},
/turf/open/floor/iron,
@@ -10239,15 +10289,6 @@
"bnS" = (
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/cmo)
-"bnU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engineering)
"bok" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -10411,11 +10452,6 @@
},
/turf/open/floor/iron,
/area/engine/break_room)
-"bph" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/engine/storage_shared)
"bpn" = (
/obj/structure/window/reinforced{
dir = 8
@@ -10675,6 +10711,16 @@
},
/turf/open/floor/iron,
/area/hallway/primary/starboard)
+"brz" = (
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/solar{
+ id = "forestarboard";
+ name = "Fore-Starboard Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/starboard/fore)
"brC" = (
/obj/item/stack/package_wrap,
/obj/item/stack/package_wrap,
@@ -11018,6 +11064,13 @@
/obj/item/stamp/captain,
/turf/open/floor/wood,
/area/crew_quarters/heads/captain/private)
+"btg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"btu" = (
/obj/item/storage/toolbox/emergency,
/obj/effect/spawner/lootdrop/maintenance,
@@ -11089,16 +11142,6 @@
/obj/machinery/holopad,
/turf/open/floor/iron,
/area/engine/atmos)
-"btN" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/solar{
- id = "aftport";
- name = "Aft-Port Solar Array"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/port/aft)
"btO" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
@@ -11338,6 +11381,9 @@
/obj/effect/turf_decal/tile/yellow{
dir = 8
},
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
/turf/open/floor/iron/dark/corner,
/area/engine/storage_shared)
"bvj" = (
@@ -11484,6 +11530,19 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"bvR" = (
+/obj/machinery/holopad,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"bvW" = (
/turf/closed/wall,
/area/crew_quarters/toilet/auxiliary)
@@ -11563,6 +11622,15 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
+"bwD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"bwS" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -12074,12 +12142,6 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
-"bAi" = (
-/obj/effect/turf_decal/siding/white{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"bAm" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -12259,21 +12321,6 @@
},
/turf/open/space,
/area/space/nearstation)
-"bAZ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/light_switch{
- pixel_x = -20;
- pixel_y = -20
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/ai_monitored/turret_protected/ai_upload_foyer)
"bBb" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -13292,6 +13339,21 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/command)
+"bGJ" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/green/visible{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"bGL" = (
/obj/structure/chair{
dir = 1
@@ -13475,34 +13537,6 @@
},
/turf/open/floor/iron/dark/telecomms,
/area/tcommsat/server)
-"bHJ" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/table,
-/obj/item/reagent_containers/glass/bottle/epinephrine{
- pixel_x = 7;
- pixel_y = -3
- },
-/obj/item/reagent_containers/glass/bottle/charcoal{
- pixel_x = -4;
- pixel_y = -3
- },
-/obj/item/reagent_containers/syringe/epinephrine{
- pixel_x = 3;
- pixel_y = -2
- },
-/obj/item/reagent_containers/dropper,
-/obj/item/reagent_containers/glass/beaker{
- pixel_x = 8;
- pixel_y = 2
- },
-/obj/effect/turf_decal/tile/blue/half/contrasted{
- dir = 4
- },
-/obj/effect/turf_decal/siding/dark_blue,
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
"bHK" = (
/obj/item/book/manual/wiki/security_space_law{
pixel_x = -3;
@@ -14159,6 +14193,13 @@
/obj/structure/bookcase/random/reference,
/turf/open/floor/wood,
/area/library)
+"bLm" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 5
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
"bLn" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -15268,6 +15309,11 @@
/obj/structure/chair/office,
/turf/open/floor/wood,
/area/library)
+"bRm" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/obj/structure/lattice,
+/turf/open/space,
+/area/space/nearstation)
"bRn" = (
/obj/structure/bookcase{
name = "Forbidden Knowledge"
@@ -15526,26 +15572,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"bRW" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/siding/white/corner{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
-"bSb" = (
-/obj/structure/cable,
-/obj/machinery/power/solar{
- id = "aftport";
- name = "Aft-Port Solar Array"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/port/aft)
"bSd" = (
/obj/machinery/portable_atmospherics/canister,
/turf/open/floor/plating,
@@ -16486,6 +16512,22 @@
/obj/structure/closet/secure_closet/hydroponics,
/turf/open/floor/iron,
/area/hydroponics)
+"bWX" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"bXd" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -17064,6 +17106,17 @@
},
/turf/open/floor/iron,
/area/medical/chemistry)
+"cbC" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/goonplaque{
+ desc = "\"This is a plaque in honour of our comrades on the G4407 Stations. Hopefully TG4407 model can live up to your fame and fortune.\" Scratched in beneath that is a crude image of sentient postcards in a realm of darkness. The station model number is MSv42A-160516"
+ },
+/area/hallway/primary/port)
"cbG" = (
/obj/machinery/power/apc{
areastring = "/area/maintenance/solars/starboard/fore";
@@ -17638,41 +17691,6 @@
/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/bridge/showroom/corporate)
-"chy" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/flasher{
- id = "secentranceflasher";
- pixel_x = 25
- },
-/obj/machinery/door/airlock/security/glass{
- id_tag = "outerbrig";
- name = "Brig";
- req_access_txt = "63"
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 4
- },
-/obj/machinery/door/poddoor/preopen{
- id = "Secure Gate";
- name = "Brig Blast door"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
- cycle_id = "brig-entrance"
- },
-/turf/open/floor/iron,
-/area/security/brig)
"chB" = (
/obj/machinery/space_heater,
/obj/effect/landmark/blobstart,
@@ -17828,30 +17846,6 @@
},
/turf/open/floor/wood,
/area/crew_quarters/theatre)
-"ciw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research/glass{
- name = "Research Testing Range";
- req_one_access_txt = "49;47"
- },
-/obj/effect/turf_decal/tile/purple/half/contrasted{
- dir = 1
- },
-/obj/effect/turf_decal/tile/white/half/contrasted,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
- cycle_id = "sci-maint-passthrough"
- },
-/turf/open/floor/iron,
-/area/maintenance/department/science)
"cix" = (
/obj/machinery/firealarm{
dir = 1;
@@ -18432,13 +18426,6 @@
"cmu" = (
/turf/closed/wall,
/area/crew_quarters/heads/cmo)
-"cmB" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 6
- },
-/turf/open/space,
-/area/space/nearstation)
"cmF" = (
/obj/item/radio/intercom{
dir = 8;
@@ -18727,18 +18714,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron/grid/steel,
/area/medical/patients_rooms)
-"cqi" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/siding/white{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"cqw" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -19070,18 +19045,6 @@
},
/turf/open/floor/carpet/grimy,
/area/security/detectives_office)
-"csF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/atmos)
"csI" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 1
@@ -19515,18 +19478,10 @@
},
/turf/open/floor/circuit/green/telecomms/mainframe,
/area/science/server)
-"cwb" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/siding/white/corner{
- dir = 4
- },
+"cwx" = (
+/obj/effect/turf_decal/siding/yellow,
/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
+/area/engine/break_room)
"cwA" = (
/turf/open/floor/iron/white,
/area/medical/genetics)
@@ -19567,6 +19522,17 @@
},
/turf/open/floor/iron/white,
/area/science/research)
+"cwP" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/siding/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"cwY" = (
/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
dir = 1;
@@ -20264,6 +20230,16 @@
"cDL" = (
/turf/closed/wall/r_wall,
/area/medical/virology)
+"cDO" = (
+/obj/structure/table/wood,
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/obj/item/folder,
+/obj/item/folder,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/turf/open/floor/cult,
+/area/library)
"cDP" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 4
@@ -20350,14 +20326,17 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/maintenance/aft)
-"cFd" = (
-/obj/structure/noticeboard{
+"cEH" = (
+/obj/machinery/airalarm{
dir = 4;
- pixel_x = -27
+ pixel_x = -22
},
-/obj/effect/turf_decal/stripes/line{
+/obj/machinery/light{
dir = 8
},
+/obj/effect/turf_decal/bot,
+/obj/machinery/rnd/production/circuit_imprinter/department/science,
+/obj/machinery/ecto_sniffer,
/turf/open/floor/iron,
/area/science/robotics/lab)
"cFf" = (
@@ -20407,19 +20386,6 @@
},
/turf/open/floor/wood,
/area/crew_quarters/bar)
-"cFX" = (
-/obj/structure/table,
-/obj/item/folder/white{
- pixel_x = 4;
- pixel_y = -3
- },
-/obj/item/clothing/glasses/science,
-/obj/effect/turf_decal/tile/purple/half/contrasted{
- dir = 4
- },
-/obj/effect/turf_decal/siding/purple,
-/turf/open/floor/iron/white,
-/area/science/research)
"cGa" = (
/obj/machinery/computer/rdconsole/robotics{
dir = 4
@@ -20471,22 +20437,18 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
/area/science/test_area)
-"cGV" = (
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -22
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/turf_decal/bot,
-/obj/machinery/rnd/production/circuit_imprinter/department/science,
-/obj/machinery/ecto_sniffer,
-/turf/open/floor/iron,
-/area/science/robotics/lab)
"cGW" = (
/turf/closed/wall/r_wall,
/area/medical/morgue)
+"cGZ" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/tcommsat/server)
"cHb" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -20504,6 +20466,16 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/security/main)
+"cHi" = (
+/obj/machinery/door/airlock/public/glass{
+ name = "Holodeck Door"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "holodeck"
+ },
+/turf/open/floor/iron,
+/area/crew_quarters/fitness/recreation)
"cHk" = (
/obj/structure/cable,
/obj/machinery/power/tracker,
@@ -20584,6 +20556,17 @@
},
/turf/open/floor/wood,
/area/library)
+"cIo" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/iron,
+/area/engine/break_room)
"cIH" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -20742,6 +20725,21 @@
/obj/structure/girder,
/turf/open/floor/plating,
/area/maintenance/port)
+"cKe" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/newscaster{
+ pixel_x = 1;
+ pixel_y = 34
+ },
+/obj/item/storage/backpack/duffelbag/med/surgery{
+ pixel_y = 4
+ },
+/turf/open/floor/iron/white,
+/area/medical/surgery)
"cKg" = (
/obj/structure/grille,
/turf/open/floor/plating,
@@ -21017,16 +21015,6 @@
},
/turf/open/floor/plating,
/area/maintenance/department/medical/central)
-"cNu" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/siding/white/corner,
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"cNw" = (
/obj/machinery/power/compressor{
comp_id = "incineratorturbine";
@@ -21276,29 +21264,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/hallway/secondary/exit/departure_lounge)
-"cPx" = (
-/obj/machinery/door/airlock/atmos/glass{
- name = "Atmospherics Monitoring";
- req_access_txt = "24"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/atmos)
"cPz" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -21422,6 +21387,13 @@
},
/turf/open/floor/iron/white,
/area/science/research)
+"cQh" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 10
+ },
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
"cQl" = (
/turf/open/floor/iron/chapel,
/area/chapel/main)
@@ -21796,6 +21768,16 @@
"cSn" = (
/turf/open/floor/engine,
/area/science/xenobiology)
+"cSo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/crew_quarters/locker)
"cSq" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -21973,23 +21955,16 @@
},
/turf/open/floor/iron,
/area/science/lab)
+"cTP" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engineering)
"cTR" = (
/obj/effect/spawner/xmastree,
/turf/open/floor/wood,
/area/crew_quarters/bar)
-"cTU" = (
-/obj/structure/rack,
-/obj/machinery/camera{
- c_tag = "Brig - Infirmary";
- dir = 1
- },
-/obj/item/clothing/under/rank/medical/doctor/purple{
- pixel_y = -4
- },
-/obj/effect/turf_decal/tile/red/anticorner/contrasted,
-/obj/item/stack/medical/gauze,
-/turf/open/floor/iron/white,
-/area/security/brig)
"cUm" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -22250,6 +22225,16 @@
"cXA" = (
/turf/closed/wall/r_wall,
/area/security/checkpoint/engineering)
+"cXB" = (
+/obj/effect/turf_decal/siding/dark_blue/corner,
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
+"cXE" = (
+/obj/effect/turf_decal/siding/yellow/corner{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"cXG" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/power/apc{
@@ -22369,6 +22354,14 @@
dir = 4
},
/area/chapel/main)
+"cZE" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Cooling to Unfiltered"
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"cZO" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -22386,6 +22379,9 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/security/execution/education)
+"daj" = (
+/turf/open/floor/glass/reinforced,
+/area/hallway/secondary/exit/departure_lounge)
"das" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -22460,6 +22456,14 @@
},
/turf/open/floor/engine,
/area/engine/supermatter)
+"dbc" = (
+/obj/item/radio/intercom{
+ pixel_y = 21
+ },
+/obj/structure/closet/secure_closet/engineering_personal,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/engine/engineering)
"dbe" = (
/obj/machinery/keycard_auth{
pixel_x = 26
@@ -22532,6 +22536,20 @@
/obj/structure/cable,
/turf/open/space,
/area/solar/starboard/aft)
+"dcv" = (
+/obj/effect/landmark/start/cyborg,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/camera/motion{
+ c_tag = "AI Upload Foyer";
+ network = list("aiupload")
+ },
+/obj/machinery/airalarm{
+ pixel_y = 26
+ },
+/turf/open/floor/iron/dark,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
"dcH" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -23691,6 +23709,16 @@
},
/turf/open/floor/wood,
/area/crew_quarters/theatre)
+"dkr" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/advanced_airlock_controller{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2,
+/turf/open/floor/catwalk_floor,
+/area/hallway/secondary/entry)
"dkt" = (
/obj/machinery/vending/security,
/obj/machinery/firealarm{
@@ -23702,16 +23730,6 @@
},
/turf/open/floor/iron/showroomfloor,
/area/security/main)
-"dkJ" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin{
- pixel_x = -2;
- pixel_y = 6
- },
-/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
-/obj/item/pen,
-/turf/open/floor/iron,
-/area/medical/genetics)
"dkO" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow,
@@ -23748,12 +23766,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/tcommsat/computer)
-"dlc" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/tcommsat/server)
"dle" = (
/obj/effect/landmark/start/virologist,
/obj/structure/chair/office/light{
@@ -23956,6 +23968,12 @@
/obj/structure/closet/emcloset,
/turf/open/floor/plating,
/area/maintenance/port/fore)
+"dnx" = (
+/obj/effect/turf_decal/siding/purple/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"dnz" = (
/obj/machinery/space_heater,
/turf/open/floor/plating,
@@ -24076,6 +24094,16 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"dpn" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/engine/break_room)
"dpE" = (
/obj/machinery/light{
dir = 8
@@ -24163,6 +24191,18 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/maintenance/port/fore)
+"dru" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 9
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"drD" = (
/obj/machinery/door/airlock{
id_tag = "Cabin7";
@@ -24218,6 +24258,21 @@
/obj/machinery/light,
/turf/open/floor/iron/grid/steel,
/area/medical/patients_rooms)
+"drY" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/light_switch{
+ pixel_x = -20;
+ pixel_y = -20
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
"drZ" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -24494,38 +24549,6 @@
/obj/structure/table/reinforced,
/turf/open/floor/prison,
/area/security/prison)
-"dwB" = (
-/obj/structure/table,
-/obj/item/paper_bin{
- pixel_x = -2;
- pixel_y = 4
- },
-/obj/item/pen{
- pixel_x = -2;
- pixel_y = 4
- },
-/obj/machinery/status_display/evac{
- pixel_y = 32
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 24
- },
-/obj/machinery/camera{
- c_tag = "Research Division - Lobby";
- network = list("ss13","rd")
- },
-/obj/effect/turf_decal/tile/purple/half/contrasted{
- dir = 4
- },
-/obj/effect/turf_decal/siding/purple/corner{
- dir = 8
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"dwL" = (
/turf/closed/wall/r_wall,
/area/maintenance/starboard/secondary)
@@ -24722,6 +24745,12 @@
},
/turf/open/floor/iron,
/area/science/lab)
+"dBb" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"dBu" = (
/turf/closed/wall,
/area/engine/gravity_generator)
@@ -24804,18 +24833,6 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/iron,
/area/engine/engineering)
-"dCm" = (
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/junction/flip{
- dir = 2
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"dCo" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -25024,18 +25041,6 @@
/mob/living/carbon/monkey/punpun,
/turf/open/floor/wood/big,
/area/crew_quarters/bar)
-"dFt" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/siding/white/corner{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"dFv" = (
/obj/effect/turf_decal/tile/yellow/opposingcorners{
dir = 1
@@ -25059,22 +25064,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plating,
/area/maintenance/starboard/secondary)
-"dFS" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Holodeck Door"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
- cycle_id = "holodeck"
- },
-/turf/open/floor/iron,
-/area/crew_quarters/fitness/recreation)
"dFY" = (
/obj/structure/sign/map/left{
desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
@@ -25226,21 +25215,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
-"dKV" = (
-/obj/machinery/door/airlock/maintenance{
- req_one_access_txt = "49;47;12"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
- cycle_id = "sci-maint-passthrough"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/science)
"dLb" = (
/obj/machinery/chem_dispenser/drinks/beer,
/obj/structure/table/reinforced,
@@ -25343,23 +25317,6 @@
},
/turf/open/floor/prison,
/area/security/prison)
-"dNs" = (
-/obj/structure/table,
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/obj/item/storage/box/bodybags{
- pixel_y = 2
- },
-/obj/item/clothing/gloves/color/latex,
-/obj/item/razor{
- pixel_y = 5
- },
-/turf/open/floor/iron/white/side{
- dir = 4
- },
-/area/science/robotics/lab)
"dNv" = (
/obj/structure/table/reinforced,
/obj/item/storage/box/donkpockets{
@@ -25482,6 +25439,9 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/dark,
/area/aisat)
+"dPg" = (
+/turf/open/space,
+/area/space/nearstation)
"dPr" = (
/obj/structure/closet/secure_closet/security/med,
/obj/effect/turf_decal/tile/red/half/contrasted{
@@ -25531,16 +25491,6 @@
},
/turf/open/floor/wood,
/area/crew_quarters/bar)
-"dQl" = (
-/obj/machinery/holopad{
- pixel_x = 16;
- pixel_y = -16
- },
-/obj/effect/turf_decal/siding/purple{
- dir = 8
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"dQx" = (
/obj/effect/turf_decal/tile/green/fourcorners/contrasted,
/obj/structure/disposalpipe/segment{
@@ -25576,21 +25526,19 @@
/obj/effect/turf_decal/tile/brown/anticorner/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/port)
+"dRx" = (
+/obj/structure/closet/secure_closet/engineering_personal,
+/obj/item/clothing/suit/hooded/wintercoat/engineering,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/engine/engineering)
"dRB" = (
/obj/structure/sign/departments/medbay/alt,
/turf/closed/wall,
/area/medical/morgue)
-"dRM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/yellow/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"dRS" = (
/obj/machinery/status_display/ai,
/turf/closed/wall,
@@ -25765,6 +25713,22 @@
},
/turf/open/floor/iron,
/area/medical/storage)
+"dVd" = (
+/obj/machinery/door/airlock/public/glass{
+ name = "Holodeck Door"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "holodeck"
+ },
+/turf/open/floor/iron,
+/area/crew_quarters/fitness/recreation)
"dWb" = (
/obj/machinery/computer/shuttle_flight/mining{
dir = 4
@@ -25842,23 +25806,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron/dark,
/area/aisat)
-"dXZ" = (
-/obj/machinery/camera{
- c_tag = "Engineering Supermatter Fore";
- dir = 4;
- network = list("ss13","engine")
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -26
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engineering)
"dYi" = (
/obj/structure/closet/emcloset,
/obj/structure/sign/map/left{
@@ -25916,6 +25863,14 @@
},
/turf/open/floor/iron/white,
/area/science/research)
+"dZq" = (
+/obj/structure/chair,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/dark_blue,
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"dZH" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -25965,6 +25920,9 @@
},
/turf/open/floor/iron,
/area/science/shuttledock)
+"eas" = (
+/turf/closed/wall,
+/area/engine/break_room)
"eaF" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -26023,15 +25981,6 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"ebP" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/landmark/start/atmospheric_technician,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal/incinerator)
"ebR" = (
/obj/structure/chair/office/light{
dir = 8
@@ -26154,6 +26103,12 @@
},
/turf/open/floor/circuit/telecomms,
/area/maintenance/department/science/xenobiology)
+"efe" = (
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"efi" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -26285,6 +26240,19 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/security/armory)
+"ehv" = (
+/obj/structure/table,
+/obj/item/stack/medical/gauze,
+/obj/item/stack/medical/ointment,
+/obj/item/stack/medical/bruise_pack,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/dark_blue{
+ dir = 3
+ },
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"ehx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 1
@@ -26372,6 +26340,20 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"elb" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 1
+ },
+/obj/machinery/camera/autoname{
+ dir = 4;
+ network = list("ss13","medbay")
+ },
+/obj/item/storage/backpack/duffelbag/med/implant{
+ pixel_y = 4
+ },
+/turf/open/floor/iron/white,
+/area/medical/surgery)
"eln" = (
/obj/machinery/light/small{
dir = 1
@@ -26454,6 +26436,17 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/security/brig)
+"emu" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/poddoor/preopen{
+ id = "Engineering";
+ name = "Engineering Security Doors"
+ },
+/obj/structure/sign/warning/securearea{
+ pixel_y = 32
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"emC" = (
/obj/machinery/atmospherics/components/binary/pump/on,
/obj/structure/sign/warning/fire{
@@ -26514,6 +26507,15 @@
},
/turf/open/floor/plating,
/area/medical/chemistry)
+"enH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engineering)
"eob" = (
/obj/machinery/door/airlock/engineering{
name = "Port Quarter Solar Access";
@@ -26561,6 +26563,19 @@
/obj/item/bedsheet/medical,
/turf/open/floor/iron/white,
/area/medical/surgery)
+"epj" = (
+/obj/structure/rack,
+/obj/machinery/camera{
+ c_tag = "Brig - Infirmary";
+ dir = 1
+ },
+/obj/item/clothing/under/rank/medical/doctor/purple{
+ pixel_y = -4
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted,
+/obj/item/stack/medical/gauze,
+/turf/open/floor/iron/white,
+/area/security/brig)
"epn" = (
/obj/effect/landmark/secequipment,
/obj/effect/turf_decal/bot,
@@ -26595,12 +26610,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plating,
/area/maintenance/fore)
-"epE" = (
-/obj/machinery/door/morgue{
- name = "Chapel Garden"
- },
-/turf/open/floor/cult,
-/area/chapel/main)
"eqc" = (
/obj/structure/sign/warning/vacuum/external{
pixel_x = 32
@@ -26756,12 +26765,6 @@
/obj/machinery/telecomms/hub/preset/exploration,
/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
-"esQ" = (
-/obj/effect/turf_decal/tile/yellow/half/contrasted{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"esR" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -26799,6 +26802,26 @@
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/iron,
/area/maintenance/starboard/fore)
+"etM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/obj/machinery/door/airlock/atmos/glass{
+ name = "Distribution Loop";
+ req_access_txt = "24"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"etX" = (
/obj/structure/disposalpipe/segment{
dir = 10
@@ -26852,12 +26875,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/gateway)
-"ewn" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/reagent_dispensers/fueltank,
-/obj/item/storage/toolbox/emergency,
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"ewK" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance/three,
@@ -27080,12 +27097,6 @@
},
/turf/open/floor/iron,
/area/security/main)
-"eBQ" = (
-/obj/effect/turf_decal/siding/white/corner{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"eBT" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/item/kirbyplants/random,
@@ -27185,15 +27196,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/security/nuke_storage)
-"eDT" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/siding/dark_blue/corner{
- dir = 4
- },
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
"eEa" = (
/obj/machinery/door/airlock/maintenance{
name = "Disposal Access";
@@ -27232,6 +27234,15 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/command)
+"eEl" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/tcommsat/server)
"eEw" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -27435,18 +27446,6 @@
},
/turf/open/floor/iron/white,
/area/crew_quarters/heads/hor)
-"eHS" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/light_switch{
- pixel_x = 24;
- pixel_y = -24
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/ai_monitored/turret_protected/ai_upload)
"eId" = (
/obj/machinery/telecomms/broadcaster/preset_exploration,
/obj/structure/cable/yellow{
@@ -27732,13 +27731,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"ePp" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor/iron,
-/area/maintenance/aft)
"ePz" = (
/obj/structure/cable/yellow{
icon_state = "2-4"
@@ -27791,6 +27783,22 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/storage/eva)
+"eQJ" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/obj/structure/sign/warning/deathsposal{
+ pixel_y = 32
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"eQO" = (
/obj/machinery/power/apc{
areastring = "/area/security/checkpoint/science/research";
@@ -27865,18 +27873,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/maintenance/port)
-"eSY" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/tile/yellow/half/contrasted{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/iron,
-/area/engine/break_room)
"eTg" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -27908,13 +27904,6 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/iron,
/area/maintenance/starboard/fore)
-"eUc" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 5
- },
-/turf/open/space/basic,
-/area/space/nearstation)
"eUh" = (
/obj/structure/table,
/obj/item/paper_bin{
@@ -27926,18 +27915,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/qm)
-"eUo" = (
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/visible{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
"eUt" = (
/obj/effect/turf_decal/tile/neutral{
dir = 8
@@ -28242,6 +28219,21 @@
/obj/effect/turf_decal/bot_red,
/turf/open/floor/iron/dark,
/area/science/storage)
+"eZH" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"eZK" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
@@ -28288,31 +28280,6 @@
"faV" = (
/turf/open/floor/plating,
/area/maintenance/department/medical/central)
-"fbm" = (
-/obj/structure/table/reinforced,
-/obj/item/folder/white{
- pixel_x = 4;
- pixel_y = -3
- },
-/obj/machinery/door/window/eastright{
- dir = 8;
- name = "Genetics Desk";
- req_access_txt = "5;9"
- },
-/obj/machinery/door/firedoor,
-/obj/structure/desk_bell{
- pixel_x = -8
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "geneticslab";
- name = "Genetics Lab Shutters"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "quarantineshutters";
- name = "isolation shutters"
- },
-/turf/open/floor/plating,
-/area/medical/genetics)
"fbK" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 4
@@ -28360,6 +28327,38 @@
},
/turf/open/floor/engine,
/area/science/explab)
+"fcG" = (
+/obj/structure/rack,
+/obj/item/storage/firstaid/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/storage/firstaid/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/storage/firstaid/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/radio/headset/headset_sci{
+ pixel_x = -3
+ },
+/obj/effect/turf_decal/delivery,
+/obj/item/healthanalyzer{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/obj/item/healthanalyzer{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/obj/item/healthanalyzer{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/turf/open/floor/iron,
+/area/science/robotics/lab)
"fcY" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -28450,13 +28449,6 @@
},
/turf/open/floor/wood,
/area/crew_quarters/theatre)
-"ffP" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 5
- },
-/turf/open/space/basic,
-/area/space/nearstation)
"ffQ" = (
/obj/machinery/airalarm{
dir = 4;
@@ -28711,6 +28703,18 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/security/main)
+"fjB" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/advanced_airlock_controller{
+ dir = 4;
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2,
+/turf/open/floor/catwalk_floor,
+/area/hallway/secondary/exit/departure_lounge)
"fjM" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -28985,19 +28989,6 @@
},
/turf/open/floor/iron/dark,
/area/aisat)
-"fpx" = (
-/obj/machinery/holopad,
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/atmos)
"fpB" = (
/obj/machinery/airalarm{
dir = 4;
@@ -29376,33 +29367,6 @@
},
/turf/open/floor/wood,
/area/library)
-"fwY" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/door/airlock/security/glass{
- id_tag = "innerbrig";
- name = "Brig";
- req_access_txt = "63"
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 8
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
- cycle_id = "brig-entrance"
- },
-/turf/open/floor/iron,
-/area/security/brig)
"fxf" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -29414,13 +29378,12 @@
/obj/effect/turf_decal/siding/wood,
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
-"fxC" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 10
+"fxK" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 5
},
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/tcommsat/server)
"fxZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -29446,6 +29409,14 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/maintenance/department/medical/central)
+"fyu" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal/incinerator)
"fyG" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -29707,16 +29678,6 @@
},
/turf/open/floor/iron/white,
/area/crew_quarters/heads/cmo)
-"fBh" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/bot{
- dir = 1
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"fBi" = (
/obj/structure/chair/stool{
dir = 1
@@ -29992,6 +29953,18 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"fFQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/dark_blue{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"fFT" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -30167,17 +30140,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/command)
-"fJH" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/iron/goonplaque{
- desc = "\"This is a plaque in honour of our comrades on the G4407 Stations. Hopefully TG4407 model can live up to your fame and fortune.\" Scratched in beneath that is a crude image of sentient postcards in a realm of darkness. The station model number is MSv42A-160516"
- },
-/area/hallway/primary/port)
"fKN" = (
/obj/structure/closet/secure_closet/personal,
/obj/effect/turf_decal/box,
@@ -30208,13 +30170,6 @@
},
/turf/open/floor/iron/showroomfloor,
/area/crew_quarters/cryopods)
-"fLC" = (
-/obj/machinery/door/morgue{
- name = "Relic Closet";
- req_access_txt = "22"
- },
-/turf/open/floor/cult,
-/area/chapel/office)
"fLK" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -30248,6 +30203,9 @@
},
/turf/open/floor/iron/dark,
/area/science/nanite)
+"fMp" = (
+/turf/open/floor/glass/reinforced,
+/area/engine/break_room)
"fMs" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -30456,6 +30414,20 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"fPe" = (
+/obj/machinery/door/airlock/highsecurity{
+ name = "AI Upload";
+ req_access_txt = "16"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/ai_monitored/turret_protected/ai_upload)
"fPf" = (
/obj/machinery/light_switch{
pixel_y = -28
@@ -30617,18 +30589,6 @@
},
/turf/open/floor/iron,
/area/gateway)
-"fRn" = (
-/obj/machinery/holopad,
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/heat_exchanging/manifold,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/tcommsat/server)
"fRq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -30993,6 +30953,16 @@
/obj/effect/turf_decal/tile/neutral/opposingcorners,
/turf/open/floor/iron,
/area/vacant_room/commissary)
+"fWL" = (
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/solar{
+ id = "aftstarboard";
+ name = "Aft-Starboard Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/starboard/aft)
"fWX" = (
/obj/machinery/disposal/bin,
/obj/effect/turf_decal/bot,
@@ -31210,25 +31180,6 @@
},
/turf/open/floor/iron/white,
/area/science/research)
-"gaE" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/newscaster{
- pixel_x = 1;
- pixel_y = 34
- },
-/obj/item/storage/backpack/duffelbag/med/surgery{
- pixel_y = 4
- },
-/turf/open/floor/iron/white,
-/area/medical/surgery)
-"gaF" = (
-/obj/effect/turf_decal/siding/white,
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"gaH" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -31297,6 +31248,14 @@
/obj/structure/closet,
/turf/open/floor/carpet/grimy,
/area/security/detectives_office)
+"gcb" = (
+/obj/structure/closet/secure_closet/engineering_personal,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/camera{
+ c_tag = "Engineering - Fore"
+ },
+/turf/open/floor/iron,
+/area/engine/engineering)
"gcg" = (
/obj/machinery/door/airlock/engineering{
name = "Starboard Quarter Solar Access";
@@ -31458,6 +31417,41 @@
},
/turf/open/floor/circuit/telecomms,
/area/maintenance/department/science/xenobiology)
+"geZ" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/closed/wall,
+/area/engine/break_room)
+"gfm" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4;
+ pixel_x = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/science/storage)
+"gfD" = (
+/obj/structure/sign/warning/fire{
+ pixel_x = 32
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/binary/pump{
+ name = "Fuel Pipe to Incinerator"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
+"gfL" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4;
+ pixel_x = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron,
+/area/science/storage)
"ggj" = (
/obj/effect/turf_decal/trimline/purple/filled/line,
/turf/open/floor/iron,
@@ -31485,16 +31479,21 @@
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/atmos)
-"ghF" = (
-/obj/structure/extinguisher_cabinet{
- pixel_y = -31
+"gha" = (
+/obj/structure/sign/warning/vacuum/external{
+ pixel_y = -32
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/trinary/filter{
- dir = 8
+/obj/machinery/light/small{
+ dir = 1
},
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
+/obj/machinery/advanced_airlock_controller{
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/components/binary/dp_vent_pump{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/engine/atmos)
"ghP" = (
/obj/machinery/camera{
c_tag = "Research Division Hallway - Robotics";
@@ -31533,12 +31532,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/hallway/primary/starboard)
-"giH" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engineering)
"gjc" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -31604,14 +31597,6 @@
},
/turf/open/floor/iron,
/area/maintenance/aft)
-"gkC" = (
-/obj/structure/chair,
-/obj/effect/turf_decal/tile/blue/half/contrasted{
- dir = 4
- },
-/obj/effect/turf_decal/siding/dark_blue,
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
"gkS" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/components/binary/pump/on{
@@ -31798,12 +31783,6 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
-"goW" = (
-/obj/effect/turf_decal/siding/purple{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"gpf" = (
/obj/structure/window/reinforced{
dir = 1
@@ -31859,6 +31838,22 @@
},
/turf/open/floor/iron,
/area/hydroponics)
+"gqg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/maintenance/starboard/fore)
"gqB" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -31924,6 +31919,17 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"gsb" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/bottle/holywater{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/organ/heart,
+/obj/item/soulstone/anybody/chaplain,
+/obj/item/book/granter/spell/smoke/lesser,
+/turf/open/floor/cult,
+/area/chapel/office)
"gsj" = (
/obj/effect/turf_decal/stripes/corner{
dir = 1
@@ -31977,15 +31983,11 @@
},
/turf/open/floor/plating,
/area/security/brig)
-"guq" = (
-/obj/machinery/door/airlock/engineering{
- name = "Supermatter Engine";
- req_access_txt = "10"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/turf/open/floor/plating,
-/area/maintenance/starboard)
+"gui" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"gus" = (
/obj/effect/spawner/structure/window/reinforced/tinted,
/turf/open/floor/plating,
@@ -32035,26 +32037,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/maintenance/solars/port/aft)
-"gvf" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/obj/machinery/door/airlock/atmos/glass{
- name = "Distribution Loop";
- req_access_txt = "24"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/white/line{
- dir = 1
- },
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/atmos)
"gvg" = (
/obj/machinery/light/small,
/obj/machinery/airalarm{
@@ -32110,13 +32092,6 @@
},
/turf/open/floor/iron,
/area/maintenance/aft)
-"gxt" = (
-/obj/structure/table/glass,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"gxF" = (
/obj/machinery/light/small,
/obj/machinery/button/door{
@@ -32218,6 +32193,15 @@
/obj/structure/grille,
/turf/open/floor/iron,
/area/maintenance/aft)
+"gAz" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"gBh" = (
/obj/machinery/door/airlock/maintenance{
name = "Security Maintenance";
@@ -32278,6 +32262,20 @@
},
/turf/open/floor/iron,
/area/maintenance/aft)
+"gBX" = (
+/obj/item/radio/intercom{
+ pixel_x = -28
+ },
+/obj/structure/table,
+/obj/item/clothing/mask/balaclava,
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_x = 5
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/security/execution/education)
"gCm" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -32311,6 +32309,19 @@
},
/turf/open/floor/iron/white/corner,
/area/hallway/secondary/entry)
+"gCH" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"gDg" = (
/obj/effect/turf_decal/stripes/red/line,
/obj/effect/turf_decal/stripes/red/line{
@@ -32334,6 +32345,12 @@
},
/turf/open/floor/iron/showroomfloor,
/area/security/main)
+"gDP" = (
+/obj/effect/turf_decal/siding/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"gEg" = (
/obj/structure/grille,
/turf/open/floor/plating,
@@ -32473,14 +32490,6 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai_upload)
-"gGD" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engineering)
"gGF" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -32522,6 +32531,25 @@
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
/turf/open/floor/iron,
/area/engine/gravity_generator)
+"gHP" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/holopad,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/yellow/corner{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"gHS" = (
/obj/structure/chair/fancy/bench/pew/right,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -32541,21 +32569,6 @@
},
/turf/open/floor/iron/white,
/area/medical/surgery)
-"gIz" = (
-/turf/open/floor/glass/reinforced,
-/area/engine/break_room)
-"gIE" = (
-/obj/structure/table,
-/obj/item/radio/intercom{
- pixel_x = -29
- },
-/obj/item/storage/backpack/duffelbag/sec/surgery{
- pixel_y = 5
- },
-/turf/open/floor/iron/white/corner{
- dir = 4
- },
-/area/science/robotics/lab)
"gIK" = (
/obj/effect/turf_decal/tile/blue/opposingcorners{
dir = 1
@@ -32568,10 +32581,24 @@
},
/turf/open/floor/iron/white,
/area/crew_quarters/heads/cmo)
+"gIX" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"gJs" = (
/obj/effect/spawner/structure/window/plasma/reinforced,
/turf/open/floor/plating,
/area/engine/atmos)
+"gJB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"gKc" = (
/obj/machinery/mineral/stacking_unit_console{
machinedir = 8;
@@ -32733,6 +32760,12 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/gateway)
+"gNK" = (
+/obj/machinery/door/morgue{
+ name = "Study #2"
+ },
+/turf/open/floor/cult,
+/area/library)
"gNW" = (
/obj/structure/window/reinforced{
dir = 1
@@ -32787,6 +32820,13 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"gOw" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron,
+/area/maintenance/aft)
"gOz" = (
/obj/effect/landmark/start/scientist,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -32794,6 +32834,31 @@
},
/turf/open/floor/iron/dark,
/area/science/explab)
+"gOE" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/siding/purple{
+ dir = 4
+ },
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/science/research)
+"gOZ" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -31
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/trinary/filter{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"gPd" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -32809,6 +32874,23 @@
},
/turf/open/floor/wood,
/area/crew_quarters/bar)
+"gPw" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Atmos to Loop"
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"gPy" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -32937,12 +33019,6 @@
/obj/effect/turf_decal/tile/blue,
/turf/open/floor/iron/dark,
/area/bridge)
-"gRe" = (
-/obj/effect/turf_decal/siding/yellow{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"gRf" = (
/obj/structure/cable/yellow{
icon_state = "2-4"
@@ -33110,14 +33186,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/maintenance/starboard/aft)
-"gUu" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4;
- pixel_x = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor/iron,
-/area/science/storage)
"gUB" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -33201,6 +33269,14 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
+"gVf" = (
+/obj/machinery/vending/modularpc,
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple,
+/turf/open/floor/iron/white,
+/area/science/research)
"gVo" = (
/obj/machinery/door/airlock/maintenance{
req_one_access_txt = "12;22;25;37;38;46"
@@ -33259,6 +33335,14 @@
},
/turf/open/floor/carpet/royalblue,
/area/crew_quarters/heads/captain/private)
+"gVP" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"gWe" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -33361,18 +33445,6 @@
"gXq" = (
/turf/open/space/basic,
/area/space/nearstation)
-"gXM" = (
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 9
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
"gXN" = (
/obj/structure/chair{
dir = 1
@@ -33392,6 +33464,28 @@
},
/turf/open/floor/iron,
/area/security/main)
+"gYg" = (
+/obj/structure/table/glass,
+/obj/item/lightreplacer{
+ pixel_y = 7
+ },
+/obj/item/storage/belt/utility,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
+"gYl" = (
+/obj/machinery/power/smes{
+ capacity = 9e+006;
+ charge = 10000
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"gYo" = (
/obj/machinery/light/small{
dir = 8
@@ -33466,6 +33560,18 @@
/obj/item/xenoartifact,
/turf/open/floor/engine,
/area/science/explab)
+"har" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 9
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/tcommsat/server)
"hbi" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -33900,6 +34006,21 @@
},
/turf/open/floor/iron,
/area/hallway/primary/starboard)
+"hiY" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/dark/visible{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal/incinerator)
"hje" = (
/obj/structure/chair/office{
dir = 8
@@ -33982,6 +34103,41 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
+"hkj" = (
+/obj/machinery/turretid{
+ control_area = "/area/ai_monitored/turret_protected/ai_upload";
+ icon_state = "control_stun";
+ name = "AI Upload turret control";
+ pixel_y = 28
+ },
+/obj/item/radio/intercom{
+ broadcasting = 1;
+ frequency = 1447;
+ name = "Private AI Channel";
+ pixel_x = -24;
+ pixel_y = 24
+ },
+/obj/effect/landmark/start/cyborg,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/ai_monitored/turret_protected/ai_upload_foyer";
+ name = "AI Upload Access APC";
+ pixel_y = -24
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the AI Upload.";
+ dir = 4;
+ name = "AI Upload Monitor";
+ network = list("aiupload");
+ pixel_x = -29
+ },
+/turf/open/floor/iron/dark,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
"hkq" = (
/turf/open/floor/iron,
/area/engine/storage_shared)
@@ -34054,6 +34210,18 @@
},
/turf/open/floor/iron,
/area/quartermaster/qm)
+"hlF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"hlT" = (
/obj/structure/easel,
/obj/item/canvas/twentythree_twentythree,
@@ -34251,11 +34419,38 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/central)
+"hpB" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/dark_blue{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"hpQ" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/siding/wood,
/turf/open/floor/wood,
/area/lawoffice)
+"hpW" = (
+/obj/machinery/door/airlock/command{
+ name = "Corporate Showroom";
+ req_access_txt = "19";
+ security_level = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/siding/wood/end,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "showroom"
+ },
+/turf/open/floor/wood,
+/area/bridge/showroom/corporate)
"hql" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
@@ -34338,16 +34533,6 @@
},
/turf/open/floor/wood,
/area/bridge/showroom/corporate)
-"hrN" = (
-/obj/structure/table,
-/obj/item/pen,
-/obj/item/storage/firstaid/regular,
-/obj/effect/turf_decal/tile/blue/half/contrasted{
- dir = 4
- },
-/obj/effect/turf_decal/siding/dark_blue,
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
"hsd" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 8
@@ -34455,22 +34640,6 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/hallway/primary/port)
-"huY" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal/incinerator)
"hvh" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -34515,6 +34684,18 @@
/obj/effect/turf_decal/tile/red/anticorner/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint/science/research)
+"hwa" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/dark_blue/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"hwd" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -34742,17 +34923,14 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"hAo" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/poddoor/preopen{
- id = "Engineering";
- name = "Engineering Security Doors"
- },
-/obj/structure/sign/warning/securearea{
- pixel_y = 32
+"hzZ" = (
+/obj/structure/cable,
+/obj/machinery/power/solar{
+ id = "forestarboard";
+ name = "Fore-Starboard Solar Array"
},
-/turf/open/floor/iron,
-/area/engine/break_room)
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/starboard/fore)
"hAp" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/power/apc{
@@ -34815,11 +34993,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/warehouse)
-"hBr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/atmos)
"hBw" = (
/obj/machinery/power/apc{
areastring = "/area/maintenance/solars/port/fore";
@@ -35418,10 +35591,6 @@
},
/turf/open/floor/carpet/blue,
/area/crew_quarters/heads/cmo)
-"hLe" = (
-/obj/effect/turf_decal/siding/dark_blue/corner,
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
"hLw" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -35512,26 +35681,6 @@
},
/turf/open/floor/plating,
/area/science/xenobiology)
-"hME" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/sink/kitchen{
- desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
- name = "old sink";
- pixel_y = 28
- },
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
-"hMK" = (
-/obj/structure/table/reinforced,
-/obj/item/book/manual/wiki/surgery,
-/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
- dir = 8
- },
-/turf/open/floor/iron/white,
-/area/medical/surgery)
"hNf" = (
/obj/machinery/door/airlock{
id_tag = "sec Toilet 2";
@@ -35548,6 +35697,25 @@
},
/turf/open/floor/wood,
/area/library)
+"hNj" = (
+/obj/structure/table,
+/obj/item/stack/cable_coil,
+/obj/item/assembly/igniter{
+ pixel_x = -4;
+ pixel_y = -4
+ },
+/obj/item/screwdriver{
+ pixel_y = 16
+ },
+/obj/item/gps{
+ gpstag = "RD0"
+ },
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple,
+/turf/open/floor/iron/white,
+/area/science/research)
"hNl" = (
/obj/structure/closet/wardrobe/science_white,
/obj/structure/window/reinforced{
@@ -35593,6 +35761,12 @@
},
/turf/open/floor/iron/stairs,
/area/maintenance/department/science/xenobiology)
+"hPk" = (
+/obj/effect/turf_decal/siding/purple{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"hPp" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 1
@@ -35631,6 +35805,12 @@
},
/turf/open/floor/carpet/orange,
/area/crew_quarters/dorms)
+"hPX" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"hQd" = (
/obj/machinery/light{
dir = 1
@@ -35649,6 +35829,14 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
+"hQr" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"hQy" = (
/obj/machinery/door/airlock/security{
name = "Evidence Storage";
@@ -35828,6 +36016,14 @@
/obj/effect/landmark/blobstart,
/turf/open/floor/iron,
/area/maintenance/port/fore)
+"hTP" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/tcommsat/server)
"hTY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
@@ -36024,12 +36220,6 @@
},
/turf/open/floor/iron/dark,
/area/aisat)
-"hYA" = (
-/obj/effect/turf_decal/siding/yellow/corner{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"hYN" = (
/obj/item/radio/intercom{
pixel_y = -28
@@ -36129,12 +36319,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/crew_quarters/locker)
-"ibD" = (
-/obj/machinery/door/morgue{
- name = "Study #2"
- },
-/turf/open/floor/cult,
-/area/library)
"ibE" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -36351,6 +36535,15 @@
},
/turf/open/floor/iron/showroomfloor,
/area/crew_quarters/cryopods)
+"ieW" = (
+/obj/structure/table/glass,
+/obj/item/storage/box/donkpockets,
+/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"ifc" = (
/obj/structure/sign/plaques/deempisi{
pixel_y = 28
@@ -36394,6 +36587,12 @@
},
/turf/open/floor/iron,
/area/engine/engineering)
+"ifO" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/reagent_dispensers/fueltank,
+/obj/item/storage/toolbox/emergency,
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"ifW" = (
/obj/structure/disposalpipe/segment{
dir = 10
@@ -36515,6 +36714,11 @@
},
/turf/open/floor/iron,
/area/maintenance/port/fore)
+"iit" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
"iiJ" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -36929,13 +37133,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/dark,
/area/aisat)
-"iqD" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 10
- },
-/turf/open/space/basic,
-/area/space/nearstation)
"iqE" = (
/obj/effect/decal/cleanable/blood/old,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -37125,6 +37322,10 @@
},
/turf/open/floor/iron,
/area/maintenance/department/science)
+"iug" = (
+/obj/effect/turf_decal/siding/white,
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"ium" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/banner/medical/mundane,
@@ -37198,6 +37399,18 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/supply)
+"iwc" = (
+/obj/structure/table,
+/obj/item/radio/intercom{
+ pixel_x = -29
+ },
+/obj/item/storage/backpack/duffelbag/sec/surgery{
+ pixel_y = 5
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 4
+ },
+/area/science/robotics/lab)
"iwf" = (
/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -37215,21 +37428,6 @@
},
/turf/open/floor/plating,
/area/science/xenobiology)
-"iwT" = (
-/obj/structure/sign/warning/vacuum/external{
- pixel_y = -32
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/advanced_airlock_controller{
- pixel_y = 24
- },
-/obj/machinery/atmospherics/components/binary/dp_vent_pump{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/engine/atmos)
"ixc" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -37464,11 +37662,6 @@
/obj/effect/turf_decal/siding/wood,
/turf/open/floor/wood/big,
/area/crew_quarters/bar)
-"iCQ" = (
-/obj/effect/landmark/xeno_spawn,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"iCT" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -37571,6 +37764,18 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/engine/break_room)
+"iEj" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"iEo" = (
/obj/machinery/door/airlock/medical/glass{
name = "Medbay Storage";
@@ -37584,6 +37789,18 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/storage)
+"iEw" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"iEP" = (
/obj/structure/urinal{
pixel_y = 28
@@ -37625,6 +37842,12 @@
},
/turf/open/floor/plating,
/area/science/shuttledock)
+"iFE" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"iFW" = (
/obj/structure/closet/bombcloset,
/obj/machinery/power/apc{
@@ -37647,6 +37870,18 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/security/nuke_storage)
+"iGg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"iGB" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -37713,6 +37948,7 @@
"iHl" = (
/obj/machinery/vending/tool,
/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/segment,
/turf/open/floor/iron,
/area/engine/storage_shared)
"iHB" = (
@@ -37838,6 +38074,29 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/aft)
+"iJy" = (
+/obj/machinery/door/airlock/atmos/glass{
+ name = "Atmospherics Monitoring";
+ req_access_txt = "24"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"iJC" = (
/obj/machinery/power/apc/highcap/five_k{
areastring = "/area/bridge/showroom/corporate";
@@ -37941,9 +38200,6 @@
},
/turf/open/floor/holofloor/plating,
/area/holodeck/prison)
-"iKI" = (
-/turf/closed/wall,
-/area/engine/break_room)
"iKR" = (
/obj/structure/cable/yellow{
icon_state = "2-4"
@@ -38085,15 +38341,6 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron/dark,
/area/security/courtroom)
-"iNO" = (
-/obj/machinery/advanced_airlock_controller{
- dir = 8;
- pixel_x = 24
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2,
-/turf/open/floor/catwalk_floor,
-/area/hallway/secondary/exit/departure_lounge)
"iOf" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -38103,6 +38350,10 @@
/obj/machinery/atmospherics/pipe/simple/general/hidden,
/turf/open/floor/carpet/grimy,
/area/tcommsat/computer)
+"iOD" = (
+/obj/effect/turf_decal/siding/white/corner,
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"iOF" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 4
@@ -38399,6 +38650,12 @@
},
/turf/open/floor/plating,
/area/maintenance/aft/secondary)
+"iTw" = (
+/obj/structure/window/reinforced,
+/obj/machinery/modular_fabricator/autolathe,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/engine/storage_shared)
"iTz" = (
/obj/structure/disposalpipe/segment{
dir = 1
@@ -38449,6 +38706,16 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/locker)
+"iVe" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4;
+ pixel_x = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/science/storage)
"iVn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -38530,13 +38797,6 @@
},
/turf/open/floor/engine,
/area/science/xenobiology)
-"iWX" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
"iXf" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -27
@@ -38723,6 +38983,16 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/carpet/grimy,
/area/hallway/primary/port)
+"jaY" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"jbm" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
@@ -39090,6 +39360,33 @@
},
/turf/open/floor/plating,
/area/security/prison)
+"jji" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "innerbrig";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "brig-entrance"
+ },
+/turf/open/floor/iron,
+/area/security/brig)
"jjv" = (
/obj/structure/closet/firecloset,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -39214,14 +39511,18 @@
/obj/effect/turf_decal/tile/red/half/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint/science/research)
-"jlw" = (
-/obj/effect/turf_decal/siding/yellow,
-/obj/machinery/light{
- dir = 1
+"jls" = (
+/obj/machinery/holopad,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
},
-/obj/machinery/digital_clock/directional/north,
-/turf/open/floor/iron,
-/area/engine/break_room)
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/heat_exchanging/manifold,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/tcommsat/server)
"jmb" = (
/obj/structure/table/reinforced,
/obj/item/book/manual/wiki/security_space_law{
@@ -39260,6 +39561,17 @@
},
/turf/open/floor/engine,
/area/science/explab)
+"jmL" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = 30
+ },
+/turf/open/floor/cult,
+/area/library)
"jmN" = (
/obj/effect/decal/cleanable/blood/old,
/obj/effect/decal/cleanable/dirt,
@@ -39365,19 +39677,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/engine/engineering)
-"jpI" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/siding/purple/corner{
- dir = 4
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"jpJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -39755,6 +40054,13 @@
},
/turf/open/floor/iron,
/area/maintenance/port)
+"jyt" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 6
+ },
+/turf/open/space,
+/area/space/nearstation)
"jyu" = (
/obj/effect/turf_decal/tile/blue{
dir = 4
@@ -40039,6 +40345,18 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
+"jCt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal/incinerator)
"jCx" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -40048,14 +40366,6 @@
},
/turf/open/floor/iron,
/area/maintenance/central)
-"jCR" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/atmos)
"jDq" = (
/obj/effect/turf_decal/tile/blue,
/turf/open/floor/iron/white,
@@ -40127,6 +40437,16 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/command)
+"jEs" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/dark_blue/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"jFo" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -40173,19 +40493,6 @@
},
/turf/open/floor/iron,
/area/maintenance/department/science)
-"jGR" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"jHp" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -40419,6 +40726,22 @@
},
/turf/open/floor/iron/white,
/area/medical/chemistry)
+"jMc" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/dark/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal/incinerator)
"jMi" = (
/obj/structure/window/reinforced{
dir = 4
@@ -40459,25 +40782,6 @@
},
/turf/open/floor/iron,
/area/security/brig)
-"jMB" = (
-/obj/machinery/door/airlock/security/glass{
- id_tag = "innerbrig";
- name = "Brig";
- req_access_txt = "63"
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 8
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
- cycle_id = "brig-entrance"
- },
-/turf/open/floor/iron,
-/area/security/brig)
"jMN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
@@ -40561,6 +40865,20 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
+"jOb" = (
+/obj/structure/table,
+/obj/item/storage/box/bodybags{
+ pixel_x = 3;
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/dark_blue{
+ dir = 3
+ },
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"jOm" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -40632,12 +40950,15 @@
/obj/effect/turf_decal/tile/purple,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"jPQ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
+"jPp" = (
+/obj/machinery/advanced_airlock_controller{
+ dir = 8;
+ pixel_x = 24
},
-/turf/open/floor/engine,
-/area/engine/engineering)
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2,
+/turf/open/floor/catwalk_floor,
+/area/hallway/secondary/exit/departure_lounge)
"jPS" = (
/obj/item/radio/intercom{
pixel_y = -28
@@ -40928,6 +41249,30 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/prison,
/area/security/prison)
+"jVy" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research/glass{
+ name = "Research Testing Range";
+ req_one_access_txt = "49;47"
+ },
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/white/half/contrasted,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "sci-maint-passthrough"
+ },
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"jVZ" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -40974,6 +41319,27 @@
},
/turf/open/floor/iron,
/area/science/mixing)
+"jXp" = (
+/obj/machinery/airalarm/directional/north,
+/obj/structure/rack,
+/obj/item/rollerbed{
+ pixel_x = -2
+ },
+/obj/item/rollerbed{
+ pixel_x = 1;
+ pixel_y = 3
+ },
+/obj/item/rollerbed{
+ pixel_x = 5;
+ pixel_y = 8
+ },
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 1
+ },
+/obj/machinery/digital_clock/directional/west,
+/obj/effect/turf_decal/siding/dark_blue/corner,
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"jXr" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -41025,6 +41391,15 @@
},
/turf/open/floor/iron/dark,
/area/crew_quarters/heads/hor)
+"jYR" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Supermatter Engine";
+ req_access_txt = "10"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
"jZd" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -41051,6 +41426,12 @@
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/turf/open/floor/iron/white,
/area/science/research)
+"jZq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/tcommsat/server)
"jZO" = (
/obj/item/radio/intercom{
pixel_y = 21
@@ -41379,12 +41760,22 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"kea" = (
-/obj/machinery/door/morgue{
- name = "Study #1"
+"keh" = (
+/obj/machinery/holopad{
+ pixel_x = 16;
+ pixel_y = -16
},
-/turf/open/floor/cult,
-/area/library)
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/dark_blue{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"keB" = (
/obj/structure/table,
/obj/item/paper_bin{
@@ -41448,6 +41839,22 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/maintenance/department/science)
+"kfd" = (
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/solar{
+ id = "aftport";
+ name = "Aft-Port Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/port/aft)
+"kfz" = (
+/obj/machinery/meter,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"kfY" = (
/obj/structure/table/wood,
/obj/structure/window/reinforced,
@@ -41610,21 +42017,6 @@
},
/turf/open/floor/iron/white,
/area/science/research)
-"kja" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal/incinerator)
"kjq" = (
/obj/structure/window/reinforced{
dir = 4
@@ -41815,19 +42207,6 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron/checker,
/area/crew_quarters/kitchen)
-"kml" = (
-/obj/structure/table,
-/obj/item/stack/medical/gauze,
-/obj/item/stack/medical/ointment,
-/obj/item/stack/medical/bruise_pack,
-/obj/effect/turf_decal/tile/blue/half/contrasted{
- dir = 4
- },
-/obj/effect/turf_decal/siding/dark_blue{
- dir = 3
- },
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
"kmr" = (
/obj/machinery/computer/scan_consolenew{
dir = 4
@@ -41858,9 +42237,12 @@
},
/area/science/research)
"kmW" = (
-/obj/effect/turf_decal/siding/yellow,
-/turf/open/floor/iron,
-/area/engine/break_room)
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
"kmY" = (
/obj/structure/table,
/obj/item/assembly/igniter{
@@ -41940,12 +42322,6 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
-"koM" = (
-/obj/effect/turf_decal/siding/yellow{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"koR" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -42077,11 +42453,6 @@
dir = 8
},
/area/science/shuttledock)
-"krO" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"kse" = (
/obj/structure/chair/office/light{
dir = 1
@@ -42354,6 +42725,21 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"kxj" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Supermatter Engine";
+ req_access_txt = "10"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engineering)
"kxk" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -42475,14 +42861,6 @@
/obj/item/kirbyplants/random,
/turf/open/floor/iron,
/area/hallway/secondary/service)
-"kyt" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/siding/purple/corner,
-/turf/open/floor/iron/white,
-/area/science/research)
"kyV" = (
/obj/structure/closet/emcloset,
/obj/effect/decal/cleanable/blood/old,
@@ -42561,6 +42939,24 @@
},
/turf/open/floor/wood,
/area/library)
+"kAi" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 10
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/tcommsat/server)
"kAl" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -42675,6 +43071,18 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/security/brig)
+"kDj" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
+"kDy" = (
+/obj/effect/turf_decal/siding/dark_blue{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"kDG" = (
/obj/machinery/door/airlock/engineering{
name = "Tech Storage";
@@ -42712,14 +43120,6 @@
},
/turf/open/floor/iron,
/area/science/robotics/mechbay)
-"kDZ" = (
-/obj/machinery/vending/modularpc,
-/obj/effect/turf_decal/tile/purple/half/contrasted{
- dir = 4
- },
-/obj/effect/turf_decal/siding/purple,
-/turf/open/floor/iron/white,
-/area/science/research)
"kEa" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -42802,6 +43202,13 @@
},
/turf/open/floor/iron/freezer,
/area/security/prison)
+"kFv" = (
+/obj/item/cigbutt,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
"kFB" = (
/obj/effect/spawner/structure/window/plasma/reinforced,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -42871,12 +43278,6 @@
},
/turf/open/floor/carpet/grimy,
/area/tcommsat/computer)
-"kGm" = (
-/obj/machinery/meter,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"kGn" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/westleft{
@@ -43074,6 +43475,11 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/maintenance/starboard)
+"kKf" = (
+/obj/effect/landmark/xeno_spawn,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"kKh" = (
/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{
dir = 1
@@ -43117,19 +43523,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/exit/departure_lounge)
-"kKq" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal/incinerator)
"kKG" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
@@ -43429,13 +43822,6 @@
/obj/effect/loot_jobscale/armoury/disabler,
/turf/open/floor/iron/dark,
/area/ai_monitored/security/armory)
-"kPx" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/external{
- name = "Escape Pod Four"
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"kPZ" = (
/obj/structure/closet/emcloset,
/obj/machinery/status_display/supply{
@@ -43496,17 +43882,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/security/brig)
-"kRA" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp/green{
- pixel_x = 1;
- pixel_y = 5
- },
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = 30
- },
-/turf/open/floor/cult,
-/area/library)
"kRQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
@@ -43530,14 +43905,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
-"kSn" = (
-/obj/machinery/lapvend,
-/obj/effect/turf_decal/tile/purple/half/contrasted{
- dir = 4
- },
-/obj/effect/turf_decal/siding/purple,
-/turf/open/floor/iron/white,
-/area/science/research)
"kTa" = (
/obj/structure/bookcase,
/obj/effect/turf_decal/siding/wood{
@@ -43569,18 +43936,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/hallway/primary/central)
-"kTH" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/regular,
-/obj/item/reagent_containers/syringe,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -27
- },
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/security/brig)
"kTP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -43590,6 +43945,10 @@
},
/turf/open/floor/iron,
/area/science/shuttledock)
+"kTZ" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/tcommsat/server)
"kUc" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -43761,15 +44120,6 @@
},
/turf/open/floor/iron,
/area/hydroponics)
-"kWr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/siding/yellow/corner,
-/turf/open/floor/iron,
-/area/engine/break_room)
"kWA" = (
/obj/machinery/door/window{
name = "MiniSat Walkway Access"
@@ -43824,6 +44174,16 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"kYQ" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 6
+ },
+/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
+/obj/item/pen,
+/turf/open/floor/iron,
+/area/medical/genetics)
"kYZ" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -43854,18 +44214,16 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/central)
-"kZz" = (
-/obj/machinery/light/small{
- dir = 4
+"kZp" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/obj/machinery/advanced_airlock_controller{
- dir = 4;
- pixel_x = -24
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/siding/purple{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2,
-/turf/open/floor/catwalk_floor,
-/area/hallway/secondary/exit/departure_lounge)
+/turf/open/floor/iron/white,
+/area/science/research)
"kZQ" = (
/obj/structure/table/reinforced,
/obj/item/food/grown/carrot{
@@ -43973,6 +44331,12 @@
},
/turf/open/floor/iron,
/area/medical/patients_rooms)
+"lbV" = (
+/obj/machinery/door/morgue{
+ name = "Chapel Garden"
+ },
+/turf/open/floor/cult,
+/area/chapel/main)
"lcl" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 8
@@ -44042,29 +44406,12 @@
/obj/effect/turf_decal/tile/red/anticorner/contrasted,
/turf/open/floor/iron,
/area/hallway/secondary/exit/departure_lounge)
-"lep" = (
-/turf/open/floor/cult,
-/area/library)
"leM" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 4
},
/turf/open/floor/iron/checker,
/area/crew_quarters/kitchen)
-"leO" = (
-/obj/structure/table,
-/obj/item/storage/box/bodybags{
- pixel_x = 3;
- pixel_y = 2
- },
-/obj/effect/turf_decal/tile/blue/half/contrasted{
- dir = 4
- },
-/obj/effect/turf_decal/siding/dark_blue{
- dir = 3
- },
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
"leU" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -44144,28 +44491,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/storage/tools)
-"lfO" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/advanced_airlock_controller{
- dir = 8;
- pixel_x = 24
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2,
-/turf/open/floor/catwalk_floor,
-/area/hallway/secondary/entry)
-"lfZ" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/machinery/button/door{
- id = "robotics_shutters";
- name = "robotics shutters control";
- pixel_x = -26;
- pixel_y = 26;
- req_access_txt = "29"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/iron,
-/area/science/robotics/lab)
"lge" = (
/obj/effect/spawner/randomarcade,
/obj/machinery/airalarm{
@@ -44218,15 +44543,6 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
/turf/open/floor/iron,
/area/engine/gravity_generator)
-"lhF" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engineering)
"lhL" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -44412,12 +44728,6 @@
},
/turf/open/floor/iron,
/area/medical/break_room)
-"lmu" = (
-/obj/effect/turf_decal/siding/purple/corner{
- dir = 8
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"lmF" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -44504,6 +44814,21 @@
/obj/structure/lattice/catwalk/over,
/turf/open/floor/plating,
/area/maintenance/department/science/xenobiology)
+"lps" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/structure/transit_tube/crossing/horizontal,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space/nearstation)
"lpP" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 8
@@ -44790,36 +45115,6 @@
},
/turf/open/floor/wood,
/area/crew_quarters/bar)
-"lvG" = (
-/obj/machinery/power/apc{
- areastring = "/area/science/robotics/lab";
- dir = 1;
- name = "Robotics Lab APC";
- pixel_y = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/structure/table,
-/obj/item/paper_bin{
- pixel_x = -2;
- pixel_y = 4
- },
-/obj/item/assembly/prox_sensor{
- pixel_x = -8;
- pixel_y = 4
- },
-/obj/item/assembly/prox_sensor{
- pixel_x = -8;
- pixel_y = 4
- },
-/obj/effect/turf_decal/delivery,
-/obj/item/pen{
- pixel_x = -2;
- pixel_y = 6
- },
-/turf/open/floor/iron,
-/area/science/robotics/lab)
"lvM" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -44843,6 +45138,16 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"lwb" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/extinguisher,
+/obj/machinery/light/small,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/radio/intercom{
+ pixel_y = -29
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"lwd" = (
/obj/structure/sign/departments/minsky/research/robotics{
pixel_x = 32
@@ -44932,6 +45237,9 @@
/obj/machinery/light_switch{
pixel_y = -22
},
+/obj/item/stack/sheet/mineral/copper{
+ amount = 5
+ },
/turf/open/floor/iron/dark/corner,
/area/engine/storage_shared)
"lxS" = (
@@ -44958,17 +45266,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/fitness/recreation)
-"lyj" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/bottle/holywater{
- pixel_x = -2;
- pixel_y = 2
- },
-/obj/item/organ/heart,
-/obj/item/soulstone/anybody/chaplain,
-/obj/item/book/granter/spell/smoke/lesser,
-/turf/open/floor/cult,
-/area/chapel/office)
"lyF" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -44988,13 +45285,6 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/central)
-"lyX" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 10
- },
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
"lzc" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
/turf/open/floor/iron/dark,
@@ -45028,6 +45318,17 @@
},
/turf/open/floor/iron/dark/telecomms,
/area/tcommsat/server)
+"lzs" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"lzt" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -45065,16 +45366,6 @@
},
/turf/open/floor/wood,
/area/library)
-"lAV" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4;
- pixel_x = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/turf/open/floor/catwalk_floor/iron,
-/area/science/storage)
"lBd" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 4
@@ -45130,14 +45421,6 @@
/obj/effect/turf_decal/tile/brown/half/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/port)
-"lCi" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/tcommsat/server)
"lCt" = (
/obj/effect/turf_decal/tile/blue{
dir = 8
@@ -45216,9 +45499,42 @@
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/aft)
-"lDD" = (
-/turf/open/floor/glass/reinforced,
-/area/science/research)
+"lDw" = (
+/obj/machinery/camera{
+ c_tag = "Engineering Supermatter Fore";
+ dir = 4;
+ network = list("ss13","engine")
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -26
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engineering)
+"lDx" = (
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{
+ dir = 4
+ },
+/obj/machinery/advanced_airlock_controller{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/science/shuttledock)
"lDF" = (
/obj/effect/turf_decal/siding/wood/corner{
dir = 1
@@ -45405,23 +45721,20 @@
},
/turf/open/floor/iron,
/area/hallway/primary/starboard)
-"lIc" = (
-/obj/machinery/door/airlock/command{
- name = "Corporate Showroom";
- req_access_txt = "19";
- security_level = 1
- },
-/obj/effect/turf_decal/stripes/line,
+"lIm" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/siding/wood/end,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
- cycle_id = "showroom"
+/obj/machinery/advanced_airlock_controller{
+ dir = 8;
+ pixel_x = 24
},
-/turf/open/floor/wood,
-/area/bridge/showroom/corporate)
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor,
+/area/hallway/secondary/entry)
"lIC" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -45554,21 +45867,6 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/hallway/secondary/command)
-"lKx" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/atmos)
"lKE" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -45612,20 +45910,6 @@
},
/turf/open/floor/iron,
/area/science/robotics/mechbay)
-"lLf" = (
-/obj/machinery/door/airlock/highsecurity{
- name = "AI Upload";
- req_access_txt = "16"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/ai_monitored/turret_protected/ai_upload)
"lLC" = (
/obj/structure/rack,
/obj/item/clothing/under/color/blue,
@@ -45704,24 +45988,6 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
-"lMw" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/effect/turf_decal/siding/purple/corner{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"lMB" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -45928,6 +46194,10 @@
},
/turf/open/floor/carpet/grimy,
/area/security/detectives_office)
+"lPW" = (
+/obj/structure/table/glass,
+/turf/open/floor/iron,
+/area/engine/break_room)
"lQb" = (
/obj/structure/sign/warning/vacuum/external{
pixel_y = -32
@@ -46007,6 +46277,16 @@
},
/turf/open/floor/plating,
/area/maintenance/port/fore)
+"lRo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/crew_quarters/locker)
"lRI" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 4
@@ -46090,12 +46370,6 @@
},
/turf/open/floor/iron/dark,
/area/maintenance/department/science/xenobiology)
-"lSI" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/atmos)
"lTw" = (
/obj/structure/window/reinforced{
dir = 8;
@@ -46351,6 +46625,10 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/hallway/secondary/command)
+"lYn" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/engine/break_room)
"lYy" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -46379,22 +46657,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/engine/engineering)
-"lZw" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/dark/visible,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/light_switch{
- pixel_x = -24;
- pixel_y = 8
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal/incinerator)
"lZO" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -46537,21 +46799,6 @@
/obj/machinery/light,
/turf/open/floor/carpet/grimy,
/area/hallway/primary/central)
-"mdQ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/siding/purple{
- dir = 4
- },
-/turf/open/floor/iron/white/side{
- dir = 8
- },
-/area/science/research)
"mdY" = (
/obj/item/radio/intercom{
pixel_x = 1;
@@ -46628,14 +46875,6 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
-"mfH" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "Cooling to Unfiltered"
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
"mfS" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 8
@@ -46651,6 +46890,15 @@
"mgj" = (
/turf/open/floor/iron/dark,
/area/maintenance/department/science/xenobiology)
+"mgm" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/delivery,
+/obj/structure/sign/warning/nosmoking{
+ pixel_x = -28
+ },
+/obj/structure/closet/radiation,
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"mgI" = (
/obj/machinery/door/airlock/public/glass{
name = "Command Hallway"
@@ -46670,22 +46918,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/command)
-"mgK" = (
-/obj/machinery/holopad{
- pixel_x = 16;
- pixel_y = -16
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/effect/turf_decal/siding/dark_blue{
- dir = 8
- },
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
"mgN" = (
/obj/machinery/computer/mech_bay_power_console{
dir = 1
@@ -46875,20 +47107,14 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/bar)
-"mmr" = (
-/obj/structure/chair,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/engine/break_room)
-"mmQ" = (
-/obj/item/kirbyplants/random,
-/obj/effect/turf_decal/tile/yellow/half/contrasted{
+"mmN" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 4
},
+/obj/effect/turf_decal/siding/white,
/turf/open/floor/iron,
-/area/engine/break_room)
+/area/hallway/secondary/exit/departure_lounge)
"mnd" = (
/obj/effect/turf_decal/tile/green/fourcorners/contrasted,
/obj/structure/disposalpipe/segment{
@@ -47530,18 +47756,16 @@
/obj/item/kirbyplants/random,
/turf/open/floor/iron/white,
/area/medical/genetics/cloning)
-"mze" = (
-/obj/machinery/light/small{
- dir = 8
+"mzq" = (
+/obj/structure/cable{
+ icon_state = "0-8"
},
-/obj/machinery/advanced_airlock_controller{
- dir = 8;
- pixel_x = 24
+/obj/machinery/power/solar{
+ id = "aftstarboard";
+ name = "Aft-Starboard Solar Array"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2,
-/turf/open/floor/catwalk_floor,
-/area/hallway/secondary/exit/departure_lounge)
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/starboard/aft)
"mzt" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -47740,6 +47964,14 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
+"mCP" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"mDa" = (
/obj/machinery/light{
light_color = "#7AC3FF"
@@ -47821,19 +48053,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/security/courtroom)
-"mDH" = (
-/obj/machinery/hydroponics/soil{
- pixel_y = 8
- },
-/obj/item/food/grown/flower/harebell,
-/obj/item/food/grown/flower/harebell,
-/obj/item/food/grown/flower/harebell,
-/obj/item/food/grown/flower/harebell,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/cult,
-/area/chapel/main)
"mDK" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
@@ -47915,12 +48134,6 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
-"mEq" = (
-/obj/effect/turf_decal/siding/purple/corner{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"mEH" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -47938,6 +48151,15 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plating,
/area/maintenance/solars/port/fore)
+"mEU" = (
+/obj/machinery/advanced_airlock_controller{
+ dir = 4;
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2,
+/turf/open/floor/catwalk_floor,
+/area/hallway/secondary/exit/departure_lounge)
"mEV" = (
/obj/item/radio/intercom{
dir = 4;
@@ -47963,14 +48185,6 @@
/area/chapel/main)
"mFm" = (
/obj/structure/table,
-/obj/item/clothing/head/utility/welding{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/clothing/head/utility/welding{
- pixel_x = -5;
- pixel_y = 3
- },
/obj/machinery/airalarm{
pixel_y = 23
},
@@ -47980,6 +48194,16 @@
/obj/effect/turf_decal/tile/yellow{
dir = 8
},
+/obj/item/storage/toolbox/electrical,
+/obj/item/clothing/head/utility/welding{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/clothing/head/utility/welding{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/clothing/gloves/color/yellow,
/turf/open/floor/iron/dark/corner{
dir = 1
},
@@ -48037,19 +48261,6 @@
},
/turf/open/floor/engine,
/area/engine/engineering)
-"mFM" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
"mFN" = (
/obj/structure/disposalpipe/segment{
dir = 8
@@ -48235,13 +48446,21 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/maintenance/starboard/aft)
-"mKs" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/obj/machinery/light/small{
- dir = 8
+"mJA" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
},
-/turf/open/floor/plating,
-/area/maintenance/starboard)
+/mob/living/simple_animal/bot/medbot{
+ auto_patrol = 1;
+ desc = "A little medical robot, officially part of the Nanotrasen medical inspectorate. He looks somewhat underwhelmed.";
+ name = "Inspector Johnson"
+ },
+/obj/effect/turf_decal/siding/dark_blue/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"mLa" = (
/obj/structure/closet/emcloset,
/obj/structure/sign/warning/pods{
@@ -48250,24 +48469,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/fitness/recreation)
-"mLd" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/terminal{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/camera{
- c_tag = "Incinerator";
- dir = 8;
- network = list("ss13","turbine")
- },
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 10
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"mLe" = (
/obj/structure/chair/office/light,
/turf/open/floor/carpet/blue,
@@ -48352,38 +48553,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/exit/departure_lounge)
-"mMn" = (
-/obj/structure/rack,
-/obj/item/storage/firstaid/regular{
- empty = 1;
- name = "First-Aid (empty)"
- },
-/obj/item/storage/firstaid/regular{
- empty = 1;
- name = "First-Aid (empty)"
- },
-/obj/item/storage/firstaid/regular{
- empty = 1;
- name = "First-Aid (empty)"
- },
-/obj/item/radio/headset/headset_sci{
- pixel_x = -3
- },
-/obj/effect/turf_decal/delivery,
-/obj/item/healthanalyzer{
- pixel_x = 4;
- pixel_y = -4
- },
-/obj/item/healthanalyzer{
- pixel_x = 4;
- pixel_y = -4
- },
-/obj/item/healthanalyzer{
- pixel_x = 4;
- pixel_y = -4
- },
-/turf/open/floor/iron,
-/area/science/robotics/lab)
"mMC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 1
@@ -48538,12 +48707,15 @@
},
/turf/open/floor/iron,
/area/hydroponics)
-"mPw" = (
-/obj/effect/turf_decal/siding/dark_blue{
+"mPE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
},
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/engine/atmos)
"mPP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -48629,6 +48801,22 @@
},
/turf/open/floor/carpet/blue,
/area/crew_quarters/heads/cmo)
+"mQU" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/disposal/incinerator";
+ dir = 1;
+ name = "Incinerator APC";
+ pixel_y = 24
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"mRb" = (
/obj/structure/bed/dogbed/runtime,
/mob/living/simple_animal/pet/cat/Runtime,
@@ -48651,16 +48839,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/library)
-"mRy" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/turf/open/floor/catwalk_floor/iron,
-/area/crew_quarters/locker)
"mRK" = (
/obj/machinery/door/airlock/maintenance{
name = "Vacant Office Maintenance";
@@ -48874,6 +49052,18 @@
},
/turf/open/floor/iron/white,
/area/medical/chemistry)
+"mWM" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/visible{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"mWQ" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -49281,15 +49471,6 @@
},
/turf/open/floor/iron/dark,
/area/science/explab)
-"ncc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/engine/atmos)
"ncI" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -49635,6 +49816,14 @@
/obj/effect/landmark/start/chaplain,
/turf/open/floor/carpet/grimy,
/area/chapel/office)
+"njX" = (
+/obj/machinery/lapvend,
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple,
+/turf/open/floor/iron/white,
+/area/science/research)
"nkb" = (
/obj/structure/sign/warning/biohazard{
pixel_x = -32
@@ -49742,6 +49931,27 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"nmz" = (
+/obj/machinery/computer/turbine_computer{
+ dir = 1;
+ id = "incineratorturbine"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/machinery/button/door/incinerator_vent_atmos_aux{
+ pixel_x = 24;
+ pixel_y = 8
+ },
+/obj/machinery/button/door/incinerator_vent_atmos_main{
+ pixel_x = 24;
+ pixel_y = -8
+ },
+/obj/machinery/button/ignition/incinerator/atmos{
+ pixel_x = 38;
+ pixel_y = -7
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"nmL" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -49846,11 +50056,6 @@
},
/turf/open/floor/iron,
/area/security/brig)
-"noP" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/junction,
-/obj/effect/spawner/structure/window/plasma/reinforced,
-/turf/open/floor/plating,
-/area/engine/engineering)
"noQ" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/decal/cleanable/dirt,
@@ -49956,20 +50161,6 @@
},
/turf/open/floor/iron/showroomfloor,
/area/security/warden)
-"nrS" = (
-/obj/structure/table/glass,
-/obj/item/lightreplacer{
- pixel_y = 7
- },
-/obj/item/storage/belt/utility,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"nrZ" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -50031,6 +50222,16 @@
/obj/effect/turf_decal/tile/blue/half/contrasted,
/turf/open/floor/iron/white,
/area/medical/medbay/central)
+"ntt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/tcommsat/server)
+"ntI" = (
+/obj/effect/turf_decal/siding/purple/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"nuw" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -50134,6 +50335,15 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/aisat)
+"nwq" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/dark_blue{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"nwP" = (
/obj/structure/closet/crate,
/obj/effect/decal/cleanable/blood/old,
@@ -50719,15 +50929,6 @@
},
/turf/open/space/basic,
/area/space)
-"nGL" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
"nHn" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -50915,22 +51116,6 @@
/obj/machinery/fax/service,
/turf/open/floor/iron,
/area/hallway/secondary/service)
-"nKi" = (
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/white/line{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
"nKz" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -51029,16 +51214,6 @@
/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/security/execution/education)
-"nMk" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/item/extinguisher,
-/obj/machinery/light/small,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/radio/intercom{
- pixel_y = -29
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"nMr" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -51282,15 +51457,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/maintenance/starboard/fore)
-"nPx" = (
-/obj/structure/chair,
-/obj/effect/landmark/start/assistant,
-/obj/effect/turf_decal/tile/purple/half/contrasted{
- dir = 4
- },
-/obj/effect/turf_decal/siding/purple,
-/turf/open/floor/iron/white,
-/area/science/research)
"nPB" = (
/obj/machinery/door/airlock/public/glass{
name = "Cryogenic Lounge"
@@ -51337,16 +51503,6 @@
},
/turf/open/floor/iron/white,
/area/science/research)
-"nPS" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron,
-/area/crew_quarters/locker)
"nPW" = (
/obj/machinery/photocopier{
pixel_y = 3
@@ -51380,6 +51536,15 @@
},
/turf/open/floor/iron/white,
/area/science/research)
+"nQx" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/aug_manipulator,
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/science/robotics/lab)
"nQH" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -51657,6 +51822,13 @@
},
/turf/open/floor/iron/dark/corner,
/area/hallway/primary/starboard)
+"nUN" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/delivery,
+/obj/structure/window/reinforced,
+/obj/structure/closet/secure_closet/atmospherics,
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"nVb" = (
/obj/structure/cable/yellow{
icon_state = "2-4"
@@ -51827,6 +51999,12 @@
},
/turf/open/floor/iron,
/area/medical/surgery)
+"nXw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/tcommsat/server)
"nXA" = (
/obj/structure/rack{
icon = 'icons/obj/stationobjs.dmi';
@@ -51885,6 +52063,18 @@
/obj/effect/turf_decal/trimline/blue/filled/warning,
/turf/open/floor/iron/white,
/area/medical/medbay/aft)
+"nYC" = (
+/obj/machinery/airalarm/all_access{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"nZd" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=8";
@@ -51981,6 +52171,18 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/exit/departure_lounge)
+"oaZ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sink/kitchen{
+ desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
+ name = "old sink";
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"obf" = (
/obj/effect/turf_decal/trimline/purple/filled/line,
/turf/open/floor/iron/white,
@@ -52005,6 +52207,14 @@
},
/turf/open/floor/plating,
/area/construction/mining/aux_base)
+"occ" = (
+/obj/effect/turf_decal/siding/yellow,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/digital_clock/directional/north,
+/turf/open/floor/iron,
+/area/engine/break_room)
"oce" = (
/obj/structure/closet/emcloset,
/turf/open/floor/iron,
@@ -52091,15 +52301,6 @@
/obj/effect/turf_decal/tile/brown/anticorner/contrasted,
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
-"odm" = (
-/obj/effect/turf_decal/tile/blue/half/contrasted{
- dir = 1
- },
-/obj/effect/turf_decal/siding/dark_blue{
- dir = 4
- },
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
"odn" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -52153,18 +52354,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"odI" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/atmos)
"odT" = (
/obj/item/clothing/glasses/meson,
/obj/structure/closet/crate,
@@ -52204,14 +52393,6 @@
},
/turf/open/floor/iron,
/area/medical/break_room)
-"oeP" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 6
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"off" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -52225,15 +52406,6 @@
},
/turf/open/floor/plating,
/area/maintenance/port)
-"ofn" = (
-/obj/structure/table/wood,
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/obj/item/folder,
-/obj/item/folder,
-/turf/open/floor/cult,
-/area/library)
"ofI" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -52270,15 +52442,6 @@
},
/turf/open/floor/iron/white/corner,
/area/hallway/secondary/entry)
-"ofV" = (
-/obj/item/radio/intercom{
- pixel_y = 21
- },
-/obj/effect/turf_decal/tile/yellow/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"ofW" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -52396,6 +52559,16 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"oiw" = (
+/obj/structure/table,
+/obj/item/pen,
+/obj/item/storage/firstaid/regular,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/dark_blue,
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"ojf" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -52562,6 +52735,18 @@
},
/turf/open/floor/wood,
/area/bridge/showroom/corporate)
+"olB" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"olU" = (
/obj/effect/landmark/start/clown,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -52581,6 +52766,13 @@
},
/turf/open/floor/iron,
/area/quartermaster/office)
+"olZ" = (
+/obj/effect/landmark/event_spawn,
+/obj/effect/turf_decal/siding/purple{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"omg" = (
/obj/machinery/camera{
c_tag = "Xenobiology Lab - Pen #2";
@@ -52839,16 +53031,6 @@
},
/turf/open/floor/iron,
/area/maintenance/starboard/fore)
-"oqw" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/solar{
- id = "forestarboard";
- name = "Fore-Starboard Solar Array"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/starboard/fore)
"oqR" = (
/obj/structure/sign/departments/minsky/engineering/engineering{
pixel_y = 32
@@ -52946,6 +53128,11 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
+"orF" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/obj/machinery/meter,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
"orR" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 8
@@ -53938,12 +54125,6 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/lobby)
-"oJb" = (
-/obj/effect/turf_decal/siding/dark_blue{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
"oJA" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -54154,18 +54335,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"oMW" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/siding/white{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"oNb" = (
/obj/machinery/door/airlock{
name = "Bar Storage";
@@ -54304,18 +54473,6 @@
},
/turf/open/floor/plating,
/area/maintenance/department/science/central)
-"oRw" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 9
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/tcommsat/server)
"oRB" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -54584,11 +54741,16 @@
},
/turf/open/floor/plating,
/area/maintenance/department/science/xenobiology)
-"oXu" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
-/obj/structure/lattice,
-/turf/open/space,
-/area/space/nearstation)
+"oWR" = (
+/obj/structure/noticeboard{
+ dir = 4;
+ pixel_x = -27
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/science/robotics/lab)
"oXI" = (
/obj/structure/table,
/obj/item/radio/intercom{
@@ -54697,6 +54859,10 @@
},
/turf/open/floor/carpet/grimy,
/area/tcommsat/computer)
+"pbg" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/tcommsat/server)
"pbu" = (
/obj/structure/table,
/obj/item/analyzer,
@@ -54761,9 +54927,6 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/turf/open/floor/iron,
/area/hydroponics/garden)
-"peq" = (
-/turf/open/floor/glass/reinforced,
-/area/hallway/secondary/exit/departure_lounge)
"pfh" = (
/obj/effect/landmark/xeno_spawn,
/obj/structure/cable{
@@ -54772,26 +54935,6 @@
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/port/aft)
-"pfq" = (
-/obj/structure/table,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/obj/item/mmi,
-/obj/item/mmi{
- pixel_y = 4
- },
-/obj/item/mmi{
- pixel_y = 8
- },
-/turf/open/floor/iron/white/side{
- dir = 8
- },
-/area/science/robotics/lab)
"pfB" = (
/obj/effect/turf_decal/tile/brown/half/contrasted,
/turf/open/floor/iron,
@@ -55147,6 +55290,29 @@
},
/turf/open/floor/iron/dark,
/area/aisat)
+"pmo" = (
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "outerbrig";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "Secure Gate";
+ name = "Brig Blast door"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "brig-entrance"
+ },
+/turf/open/floor/iron,
+/area/security/brig)
"pmr" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -55178,17 +55344,6 @@
},
/turf/open/floor/iron,
/area/engine/break_room)
-"pmN" = (
-/obj/structure/chair,
-/obj/effect/landmark/start/assistant,
-/obj/effect/turf_decal/tile/blue/half/contrasted{
- dir = 4
- },
-/obj/effect/turf_decal/siding/dark_blue{
- dir = 3
- },
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
"pmT" = (
/obj/machinery/firealarm{
dir = 4;
@@ -55412,12 +55567,6 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"pst" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/tcommsat/server)
"psw" = (
/obj/structure/chair{
dir = 4
@@ -55566,6 +55715,11 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
+"pvJ" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/junction,
+/obj/effect/spawner/structure/window/plasma/reinforced,
+/turf/open/floor/plating,
+/area/engine/engineering)
"pvR" = (
/obj/structure/chair/stool,
/obj/structure/cable{
@@ -55637,6 +55791,15 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
+"pxK" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engineering)
"pyc" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -55653,6 +55816,21 @@
},
/turf/open/floor/iron,
/area/hallway/primary/starboard)
+"pyD" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
+"pyS" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/table,
+/obj/item/borg/upgrade/rename,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/science/robotics/lab)
"pyU" = (
/obj/effect/spawner/randomvend/cola,
/turf/open/floor/carpet,
@@ -55684,30 +55862,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
-"pzs" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
-"pzy" = (
-/obj/structure/table,
-/obj/item/stack/sheet/glass,
-/obj/item/electronics/airlock,
-/obj/item/assembly/timer{
- pixel_x = -4;
- pixel_y = 2
- },
-/obj/effect/turf_decal/tile/purple/half/contrasted{
- dir = 4
- },
-/obj/effect/turf_decal/siding/purple,
-/turf/open/floor/iron/white,
-/area/science/research)
"pzG" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -55833,18 +55987,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/heads/chief)
-"pCn" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/siding/white{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"pCp" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -55869,14 +56011,6 @@
dir = 5
},
/area/science/research)
-"pDG" = (
-/obj/structure/cable,
-/obj/machinery/power/solar{
- id = "forestarboard";
- name = "Fore-Starboard Solar Array"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/starboard/fore)
"pDJ" = (
/obj/structure/chair/stool{
dir = 1
@@ -56189,6 +56323,15 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
+"pJf" = (
+/obj/structure/table/wood,
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/obj/item/folder,
+/obj/item/folder,
+/turf/open/floor/cult,
+/area/library)
"pJi" = (
/obj/machinery/disposal/bin{
pixel_x = 2;
@@ -56203,12 +56346,6 @@
},
/turf/open/floor/wood,
/area/crew_quarters/bar)
-"pJB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/tcommsat/server)
"pJC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -56315,6 +56452,22 @@
},
/turf/open/floor/iron/white/corner,
/area/hallway/primary/aft)
+"pLT" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/space,
+/area/space/nearstation)
+"pLU" = (
+/obj/item/radio/intercom{
+ pixel_y = 21
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"pLY" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -56374,13 +56527,6 @@
},
/turf/open/floor/iron/checker,
/area/crew_quarters/kitchen)
-"pNd" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/closed/wall,
-/area/engine/break_room)
"pNj" = (
/obj/structure/rack,
/obj/item/stock_parts/matter_bin,
@@ -56426,6 +56572,41 @@
},
/turf/open/floor/iron,
/area/maintenance/department/medical/central)
+"pNE" = (
+/obj/machinery/holopad{
+ pixel_x = 16;
+ pixel_y = -16
+ },
+/obj/effect/turf_decal/siding/purple{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
+"pNF" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/machinery/door/window/eastright{
+ dir = 8;
+ name = "Genetics Desk";
+ req_access_txt = "5;9"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/desk_bell{
+ pixel_x = -8
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "geneticslab";
+ name = "Genetics Lab Shutters"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "quarantineshutters";
+ name = "isolation shutters"
+ },
+/turf/open/floor/plating,
+/area/medical/genetics)
"pNG" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -56446,6 +56627,12 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai_upload)
+"pOc" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/machinery/portable_atmospherics/canister,
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"pOk" = (
/obj/effect/landmark/xeno_spawn,
/obj/structure/cable/yellow{
@@ -56532,6 +56719,25 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/security/main)
+"pPT" = (
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "innerbrig";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "brig-entrance"
+ },
+/turf/open/floor/iron,
+/area/security/brig)
"pQr" = (
/obj/structure/disposalpipe/segment{
dir = 6
@@ -56583,6 +56789,12 @@
},
/turf/open/floor/iron,
/area/engine/break_room)
+"pRz" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/engine/break_room)
"pRG" = (
/obj/effect/turf_decal/trimline/purple/filled/line{
dir = 9
@@ -56737,20 +56949,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/maintenance/department/medical/central)
-"pTW" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/advanced_airlock_controller{
- dir = 8;
- pixel_x = 24
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{
- dir = 1
- },
-/turf/open/floor/catwalk_floor,
-/area/hallway/secondary/entry)
"pUh" = (
/obj/structure/table,
/obj/item/stack/sheet/mineral/copper{
@@ -56833,6 +57031,15 @@
/obj/item/cigbutt,
/turf/open/floor/iron/dark,
/area/medical/surgery)
+"pVo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/dark_blue/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"pVv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -56897,17 +57104,6 @@
},
/turf/open/floor/wood/big,
/area/crew_quarters/bar)
-"pWh" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/ai_monitored/turret_protected/ai_upload)
"pWm" = (
/obj/item/radio/intercom{
frequency = 1485;
@@ -57415,20 +57611,6 @@
dir = 1
},
/area/chapel/main)
-"qeC" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"qeK" = (
/obj/machinery/door/airlock/public/glass{
name = "Library"
@@ -57597,6 +57779,12 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/storage/tech)
+"qgP" = (
+/obj/machinery/door/morgue{
+ name = "Study #1"
+ },
+/turf/open/floor/cult,
+/area/library)
"qhf" = (
/obj/effect/turf_decal/tile/blue/half/contrasted{
dir = 1
@@ -57971,10 +58159,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/aisat)
-"qpw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/tcommsat/server)
"qpE" = (
/obj/structure/table,
/obj/machinery/cell_charger,
@@ -58369,13 +58553,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/maintenance/starboard/secondary)
-"qzm" = (
-/obj/item/cigbutt,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard)
"qzv" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -58533,6 +58710,30 @@
/obj/effect/turf_decal/tile/brown/half/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/port)
+"qBJ" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/command{
+ name = "Corporate Showroom";
+ req_access_txt = "19";
+ security_level = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/siding/wood/end{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "showroom"
+ },
+/turf/open/floor/wood,
+/area/bridge/showroom/corporate)
"qBL" = (
/obj/effect/decal/cleanable/oil,
/turf/open/floor/iron,
@@ -58638,6 +58839,19 @@
},
/turf/open/floor/iron,
/area/medical/break_room)
+"qCK" = (
+/obj/machinery/hydroponics/soil{
+ pixel_y = 8
+ },
+/obj/item/food/grown/flower/harebell,
+/obj/item/food/grown/flower/harebell,
+/obj/item/food/grown/flower/harebell,
+/obj/item/food/grown/flower/harebell,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/cult,
+/area/chapel/main)
"qDn" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -58651,24 +58865,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/security/brig)
-"qDA" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/advanced_airlock_controller{
- pixel_y = 24
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/solars/starboard/aft)
"qDN" = (
/obj/machinery/light/small{
dir = 8
@@ -58714,15 +58910,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/security/armory)
-"qEw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/atmos)
"qEx" = (
/obj/effect/turf_decal/siding/wood{
dir = 6
@@ -58843,13 +59030,16 @@
/turf/open/floor/iron,
/area/maintenance/port)
"qGr" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/sheet/mineral/copper{
- amount = 5
- },
/obj/effect/turf_decal/tile/yellow{
dir = 8
},
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
/turf/open/floor/iron/dark/corner,
/area/engine/storage_shared)
"qGx" = (
@@ -59010,16 +59200,6 @@
},
/turf/open/floor/iron/white,
/area/medical/surgery)
-"qJQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/tcommsat/server)
-"qKa" = (
-/obj/effect/turf_decal/siding/white/corner,
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"qKb" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -59035,21 +59215,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
-"qKn" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/siding/purple{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"qKA" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -59077,11 +59242,6 @@
},
/turf/open/floor/iron,
/area/security/brig)
-"qLa" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/obj/machinery/meter,
-/turf/open/floor/plating,
-/area/maintenance/starboard)
"qLf" = (
/obj/structure/table/wood,
/obj/item/storage/photo_album,
@@ -59213,6 +59373,14 @@
/obj/machinery/holopad,
/turf/open/floor/iron,
/area/hallway/primary/central)
+"qNU" = (
+/obj/structure/cable,
+/obj/machinery/power/solar{
+ id = "foreport";
+ name = "Fore-Port Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/port/fore)
"qOu" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -59325,20 +59493,6 @@
},
/turf/open/floor/iron/dark,
/area/science/xenobiology)
-"qQS" = (
-/obj/effect/landmark/start/cyborg,
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/camera/motion{
- c_tag = "AI Upload Foyer";
- network = list("aiupload")
- },
-/obj/machinery/airalarm{
- pixel_y = 26
- },
-/turf/open/floor/iron/dark,
-/area/ai_monitored/turret_protected/ai_upload_foyer)
"qRl" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -59501,20 +59655,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat/foyer)
-"qUk" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
- dir = 1
- },
-/obj/machinery/camera/autoname{
- dir = 4;
- network = list("ss13","medbay")
- },
-/obj/item/storage/backpack/duffelbag/med/implant{
- pixel_y = 4
- },
-/turf/open/floor/iron/white,
-/area/medical/surgery)
"qUm" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/chair/stool,
@@ -59565,13 +59705,6 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/engine/break_room)
-"qVh" = (
-/obj/effect/landmark/event_spawn,
-/obj/effect/turf_decal/siding/purple{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"qVi" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -59585,17 +59718,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/office)
-"qVH" = (
-/obj/machinery/power/smes{
- capacity = 9e+006;
- charge = 10000
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"qVS" = (
/obj/machinery/camera{
c_tag = "Arrivals - Middle Arm";
@@ -59715,18 +59837,6 @@
},
/turf/open/floor/iron/dark,
/area/engine/engineering)
-"qYh" = (
-/obj/machinery/airalarm/all_access{
- dir = 8;
- pixel_x = 24
- },
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"qYD" = (
/obj/item/radio/intercom{
pixel_x = 26
@@ -59834,6 +59944,13 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/maintenance/port/fore)
+"qZH" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 10
+ },
+/turf/open/space,
+/area/space/nearstation)
"qZI" = (
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -60180,12 +60297,6 @@
},
/turf/open/floor/plating,
/area/security/warden)
-"rhM" = (
-/obj/effect/turf_decal/siding/purple{
- dir = 8
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"rhP" = (
/obj/machinery/door/airlock/security/glass{
name = "Security Office";
@@ -60257,6 +60368,38 @@
/obj/effect/turf_decal/numbers/two_nine,
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
+"rjw" = (
+/obj/structure/table,
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/pen{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/machinery/status_display/evac{
+ pixel_y = 32
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/machinery/camera{
+ c_tag = "Research Division - Lobby";
+ network = list("ss13","rd")
+ },
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"rjC" = (
/obj/machinery/microwave{
pixel_y = 4
@@ -60265,6 +60408,12 @@
/obj/item/storage/box/donkpockets,
/turf/open/floor/carpet/grimy,
/area/tcommsat/computer)
+"rjD" = (
+/obj/effect/turf_decal/siding/yellow{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"rjF" = (
/obj/effect/turf_decal/trimline/purple/filled/line,
/obj/structure/extinguisher_cabinet{
@@ -60313,12 +60462,6 @@
/obj/effect/turf_decal/tile/blue,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat_interior)
-"rke" = (
-/obj/effect/turf_decal/siding/white/corner{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"rkA" = (
/obj/structure/disposalpipe/segment{
dir = 9
@@ -60426,12 +60569,6 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/aft)
-"rmo" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"rmt" = (
/obj/machinery/power/apc/highcap/five_k{
areastring = "/area/security/main";
@@ -60861,12 +60998,6 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"ruP" = (
-/obj/effect/turf_decal/siding/white{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"rvd" = (
/obj/item/storage/crayons,
/obj/machinery/light/small{
@@ -61133,6 +61264,12 @@
},
/turf/open/floor/iron/dark,
/area/science/server)
+"rBA" = (
+/obj/effect/turf_decal/siding/dark_blue{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"rBE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -61204,6 +61341,24 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
+"rDu" = (
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/camera{
+ c_tag = "Incinerator";
+ dir = 8;
+ network = list("ss13","turbine")
+ },
+/obj/machinery/atmospherics/pipe/simple/dark/visible{
+ dir = 10
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"rDz" = (
/obj/machinery/disposal/bin,
/obj/effect/turf_decal/bot,
@@ -61356,18 +61511,6 @@
},
/turf/open/floor/carpet/blue,
/area/crew_quarters/heads/hop)
-"rFh" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/siding/dark_blue{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
"rFo" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -61407,12 +61550,6 @@
"rFZ" = (
/turf/open/floor/iron/freezer,
/area/crew_quarters/kitchen)
-"rGb" = (
-/obj/structure/chair/fancy/comfy{
- dir = 1
- },
-/turf/open/floor/cult,
-/area/library)
"rGe" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -61441,29 +61578,6 @@
},
/turf/open/floor/wood,
/area/library)
-"rHx" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/green/visible{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
-"rHy" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/atmos)
"rHz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 9
@@ -61505,6 +61619,23 @@
/obj/effect/landmark/start/assistant,
/turf/open/floor/iron/freezer,
/area/crew_quarters/toilet/restrooms)
+"rIA" = (
+/obj/machinery/door/airlock/maintenance{
+ req_one_access_txt = "12;47"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "sci-maint-passthrough"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/science)
"rIV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 6
@@ -61514,27 +61645,6 @@
},
/turf/open/floor/iron/dark,
/area/aisat)
-"rJa" = (
-/obj/machinery/airalarm/directional/north,
-/obj/structure/rack,
-/obj/item/rollerbed{
- pixel_x = -2
- },
-/obj/item/rollerbed{
- pixel_x = 1;
- pixel_y = 3
- },
-/obj/item/rollerbed{
- pixel_x = 5;
- pixel_y = 8
- },
-/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
- dir = 1
- },
-/obj/machinery/digital_clock/directional/west,
-/obj/effect/turf_decal/siding/dark_blue/corner,
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
"rJg" = (
/obj/structure/bed{
dir = 4
@@ -61602,22 +61712,6 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"rKW" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/atmos)
"rLS" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -61806,6 +61900,18 @@
},
/turf/open/floor/iron,
/area/quartermaster/storage)
+"rPx" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"rPy" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -61985,29 +62091,10 @@
/obj/machinery/announcement_system,
/turf/open/floor/carpet/grimy,
/area/tcommsat/computer)
-"rSd" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/siding/purple{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"rSn" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
/area/maintenance/aft)
-"rSp" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/tcommsat/server)
"rSy" = (
/obj/structure/chair,
/obj/effect/turf_decal/pool,
@@ -62250,6 +62337,18 @@
/obj/effect/turf_decal/tile/red/anticorner/contrasted,
/turf/open/floor/iron,
/area/security/main)
+"rWv" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 6
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/tcommsat/server)
"rWA" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 8
@@ -62330,35 +62429,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/starboard)
-"rWS" = (
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{
- dir = 4
- },
-/obj/machinery/advanced_airlock_controller{
- dir = 1;
- pixel_y = -24
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/science/shuttledock)
-"rWW" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
-"rXi" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 5
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/tcommsat/server)
"rXp" = (
/obj/machinery/button/flasher{
id = "holdingflash";
@@ -62454,12 +62524,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plating,
/area/maintenance/fore)
-"rZU" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/engine/break_room)
"rZZ" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
@@ -62918,15 +62982,6 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/aft)
-"siM" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/siding/white{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"siT" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -63015,15 +63070,6 @@
},
/turf/open/floor/iron,
/area/science/mixing)
-"slv" = (
-/obj/machinery/advanced_airlock_controller{
- dir = 4;
- pixel_x = -24
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2,
-/turf/open/floor/catwalk_floor,
-/area/hallway/secondary/exit/departure_lounge)
"slA" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -63116,16 +63162,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/office)
-"snQ" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/solar{
- id = "foreport";
- name = "Fore-Port Solar Array"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/port/fore)
"soe" = (
/obj/structure/table,
/obj/item/paper_bin{
@@ -63139,20 +63175,6 @@
/obj/effect/turf_decal/tile/green/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"sos" = (
-/obj/item/radio/intercom{
- pixel_x = -28
- },
-/obj/structure/table,
-/obj/item/clothing/mask/balaclava,
-/obj/item/reagent_containers/spray/cleaner{
- pixel_x = 5
- },
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron/dark,
-/area/security/execution/education)
"soL" = (
/obj/structure/rack,
/obj/item/storage/box/firingpins{
@@ -63175,6 +63197,12 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"spf" = (
+/obj/structure/chair/fancy/comfy{
+ dir = 1
+ },
+/turf/open/floor/cult,
+/area/library)
"spm" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 8
@@ -63316,21 +63344,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"sqY" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable/cyan{
- icon_state = "4-8"
- },
-/obj/structure/transit_tube/crossing/horizontal,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/turf/open/space,
-/area/space/nearstation)
"srs" = (
/turf/open/floor/prison,
/area/security/prison)
@@ -63623,29 +63636,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/carpet/royalblue,
/area/crew_quarters/heads/captain/private)
-"svW" = (
-/obj/machinery/door/airlock/security/glass{
- id_tag = "outerbrig";
- name = "Brig";
- req_access_txt = "63"
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 4
- },
-/obj/machinery/door/poddoor/preopen{
- id = "Secure Gate";
- name = "Brig Blast door"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
- cycle_id = "brig-entrance"
- },
-/turf/open/floor/iron,
-/area/security/brig)
"sxa" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -63656,6 +63646,34 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/maintenance/starboard/secondary)
+"sxj" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/door/airlock/research{
+ name = "Xenobiology Lab";
+ req_access_txt = "55"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "xeno_blastdoor";
+ name = "Secure Lab Shutters"
+ },
+/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "sci-maint-passthrough"
+ },
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"sxu" = (
/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -64072,6 +64090,12 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/customs)
+"sFF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/tcommsat/server)
"sGm" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -64157,15 +64181,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/carpet/purple,
/area/vacant_room/office)
-"sHl" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/tcommsat/server)
"sHt" = (
/obj/machinery/light/small,
/obj/machinery/atmospherics/components/unary/portables_connector{
@@ -64296,6 +64311,14 @@
"sJW" = (
/turf/closed/wall/mineral/plastitanium,
/area/engine/break_room)
+"sKf" = (
+/obj/structure/cable,
+/obj/machinery/power/solar{
+ id = "aftport";
+ name = "Aft-Port Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/port/aft)
"sKj" = (
/obj/machinery/shower{
dir = 4
@@ -64350,24 +64373,6 @@
},
/turf/open/floor/iron,
/area/engine/gravity_generator)
-"sLA" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 10
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/tcommsat/server)
"sLD" = (
/obj/structure/sink{
dir = 4;
@@ -64380,6 +64385,19 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
/turf/open/floor/iron,
/area/hydroponics)
+"sLI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal/incinerator)
"sLY" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -64665,15 +64683,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/construction/mining/aux_base)
-"sRD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/siding/dark_blue{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
"sSg" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -64682,21 +64691,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/crew_quarters/locker)
-"sSn" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/machinery/door/airlock/engineering/glass{
- name = "Supermatter Engine";
- req_access_txt = "10"
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engineering)
"sSp" = (
/obj/structure/table/wood,
/obj/machinery/light/small{
@@ -64784,6 +64778,18 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
+"sTx" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/light_switch{
+ pixel_x = 24;
+ pixel_y = -24
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/ai_monitored/turret_protected/ai_upload)
"sTS" = (
/obj/effect/turf_decal/tile/green/fourcorners/contrasted,
/obj/structure/disposalpipe/segment{
@@ -65083,9 +65089,6 @@
/turf/open/floor/iron/white,
/area/science/mixing)
"taV" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
/obj/structure/cable/yellow{
icon_state = "2-4"
},
@@ -65265,6 +65268,15 @@
},
/turf/open/floor/iron,
/area/ai_monitored/storage/eva)
+"tep" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/dark_blue{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"tfc" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -65718,6 +65730,18 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/dark,
/area/chapel/office)
+"tmr" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"tmK" = (
/obj/structure/table,
/obj/item/crowbar,
@@ -65745,6 +65769,18 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
+"tmR" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/engine/break_room)
"tmV" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -65990,6 +66026,21 @@
/obj/structure/disposaloutlet,
/turf/open/floor/engine,
/area/science/xenobiology)
+"tqn" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"tqy" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -66084,16 +66135,6 @@
},
/turf/open/floor/iron/dark,
/area/science/server)
-"tsq" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/siding/purple{
- dir = 4
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"tsr" = (
/obj/machinery/door/airlock/security/glass{
name = "Security E.V.A. Storage";
@@ -66378,6 +66419,18 @@
},
/turf/open/space,
/area/space/nearstation)
+"txw" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = 30
+ },
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/cult,
+/area/library)
"txI" = (
/obj/structure/girder,
/obj/structure/grille,
@@ -66401,25 +66454,6 @@
},
/turf/open/floor/plating,
/area/medical/chemistry)
-"tyK" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/holopad,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/siding/yellow/corner{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"tyV" = (
/obj/machinery/firealarm{
dir = 4;
@@ -66468,6 +66502,14 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/exit/departure_lounge)
+"tAk" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"tAR" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -66493,15 +66535,6 @@
/mob/living/carbon/monkey,
/turf/open/floor/iron/freezer,
/area/medical/genetics)
-"tBl" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/tcommsat/server)
"tBB" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -66519,6 +66552,12 @@
/obj/machinery/atmospherics/components/unary/cryo_cell,
/turf/open/floor/iron,
/area/medical/patients_rooms)
+"tCo" = (
+/obj/effect/turf_decal/siding/purple{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"tCy" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -66600,17 +66639,6 @@
},
/turf/open/floor/engine,
/area/engine/supermatter)
-"tEl" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4;
- pixel_x = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/turf/open/floor/catwalk_floor/iron,
-/area/science/storage)
"tEq" = (
/obj/structure/disposalpipe/segment{
dir = 5
@@ -66863,6 +66891,18 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"tIB" = (
+/obj/structure/table,
+/obj/item/storage/firstaid/regular,
+/obj/item/reagent_containers/syringe,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/security/brig)
"tIU" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -67004,9 +67044,19 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"tMi" = (
-/turf/open/floor/glass/reinforced,
-/area/medical/medbay/lobby)
+"tLY" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"tMl" = (
/obj/structure/chair/office/light{
dir = 1
@@ -67060,24 +67110,6 @@
},
/turf/open/floor/carpet/grimy,
/area/chapel/office)
-"tNz" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4;
- pixel_x = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron,
-/area/science/storage)
"tND" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -67355,6 +67387,18 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"tTY" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"tUe" = (
/obj/machinery/light{
dir = 1
@@ -67452,6 +67496,24 @@
/obj/effect/spawner/room/fivexthree,
/turf/open/floor/plating,
/area/maintenance/department/medical/central)
+"tUQ" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/effect/turf_decal/siding/purple/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"tUS" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
@@ -67616,41 +67678,6 @@
/obj/machinery/light,
/turf/open/floor/iron,
/area/hydroponics)
-"tYY" = (
-/obj/machinery/turretid{
- control_area = "/area/ai_monitored/turret_protected/ai_upload";
- icon_state = "control_stun";
- name = "AI Upload turret control";
- pixel_y = 28
- },
-/obj/item/radio/intercom{
- broadcasting = 1;
- frequency = 1447;
- name = "Private AI Channel";
- pixel_x = -24;
- pixel_y = 24
- },
-/obj/effect/landmark/start/cyborg,
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- areastring = "/area/ai_monitored/turret_protected/ai_upload_foyer";
- name = "AI Upload Access APC";
- pixel_y = -24
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching the AI Upload.";
- dir = 4;
- name = "AI Upload Monitor";
- network = list("aiupload");
- pixel_x = -29
- },
-/turf/open/floor/iron/dark,
-/area/ai_monitored/turret_protected/ai_upload_foyer)
"tZv" = (
/obj/machinery/door/airlock/maintenance{
name = "Chapel Office Maintenance";
@@ -67678,9 +67705,11 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/captain/private)
-"ube" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating,
+"uaz" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/iron,
/area/engine/break_room)
"ubt" = (
/obj/structure/cable/yellow{
@@ -67776,6 +67805,24 @@
},
/turf/open/floor/iron/dark,
/area/aisat)
+"ucJ" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/advanced_airlock_controller{
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/solars/starboard/aft)
"ucX" = (
/obj/item/trash/candy,
/obj/effect/decal/cleanable/dirt,
@@ -67894,18 +67941,15 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
-"ufu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
+"ueQ" = (
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/atmos)
+/obj/effect/landmark/start/atmospheric_technician,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal/incinerator)
"ufT" = (
/obj/machinery/photocopier,
/obj/machinery/power/apc{
@@ -68121,6 +68165,24 @@
/obj/effect/turf_decal/tile/blue,
/turf/open/floor/iron/dark,
/area/bridge)
+"uiS" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4;
+ pixel_x = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/science/storage)
"uiY" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -68552,6 +68614,14 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plating,
/area/engine/engineering)
+"uro" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 6
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"urp" = (
/obj/structure/closet/toolcloset,
/obj/effect/turf_decal/tile/yellow/half/contrasted{
@@ -68646,11 +68716,6 @@
},
/turf/open/floor/iron,
/area/medical/break_room)
-"utL" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
"utM" = (
/obj/structure/window/reinforced{
dir = 4
@@ -68877,15 +68942,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/storage/eva)
-"uyf" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/aug_manipulator,
-/turf/open/floor/iron/white/corner{
- dir = 1
- },
-/area/science/robotics/lab)
"uyg" = (
/obj/machinery/power/apc/highcap/five_k{
areastring = "/area/ai_monitored/security/armory";
@@ -69014,6 +69070,12 @@
},
/turf/open/floor/iron/white,
/area/science/research)
+"uAy" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"uAI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -69110,9 +69172,19 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/maintenance/starboard)
-"uBV" = (
-/turf/open/space,
-/area/space/nearstation)
+"uBX" = (
+/obj/structure/table,
+/obj/item/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/clothing/glasses/science,
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple,
+/turf/open/floor/iron/white,
+/area/science/research)
"uCb" = (
/obj/machinery/photocopier,
/obj/machinery/camera{
@@ -69190,25 +69262,6 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
/turf/open/floor/iron,
/area/engine/gravity_generator)
-"uEd" = (
-/obj/structure/table,
-/obj/item/stack/cable_coil,
-/obj/item/assembly/igniter{
- pixel_x = -4;
- pixel_y = -4
- },
-/obj/item/screwdriver{
- pixel_y = 16
- },
-/obj/item/gps{
- gpstag = "RD0"
- },
-/obj/effect/turf_decal/tile/purple/half/contrasted{
- dir = 4
- },
-/obj/effect/turf_decal/siding/purple,
-/turf/open/floor/iron/white,
-/area/science/research)
"uEk" = (
/obj/machinery/suit_storage_unit/exploration,
/obj/structure/window/reinforced,
@@ -69236,6 +69289,12 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
+"uEN" = (
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"uEU" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -69272,16 +69331,6 @@
/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
/turf/open/floor/prison,
/area/security/prison)
-"uFV" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/solar{
- id = "aftstarboard";
- name = "Aft-Starboard Solar Array"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/starboard/aft)
"uFY" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
@@ -69290,6 +69339,26 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/turf/open/floor/carpet/green,
/area/library)
+"uHh" = (
+/obj/structure/table,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/item/mmi,
+/obj/item/mmi{
+ pixel_y = 4
+ },
+/obj/item/mmi{
+ pixel_y = 8
+ },
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/science/robotics/lab)
"uHp" = (
/obj/machinery/light_switch{
pixel_x = 23;
@@ -69371,18 +69440,6 @@
},
/turf/open/floor/iron,
/area/maintenance/port/fore)
-"uJG" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/advanced_airlock_controller{
- dir = 4;
- pixel_x = -24
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2,
-/turf/open/floor/catwalk_floor/iron,
-/area/maintenance/solars/port/aft)
"uJU" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -69505,14 +69562,6 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/medical)
-"uLK" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engineering)
"uMc" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/effect/turf_decal/bot,
@@ -69560,21 +69609,6 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/starboard/aft)
-"uNs" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/mob/living/simple_animal/bot/medbot{
- auto_patrol = 1;
- desc = "A little medical robot, officially part of the Nanotrasen medical inspectorate. He looks somewhat underwhelmed.";
- name = "Inspector Johnson"
- },
-/obj/effect/turf_decal/siding/dark_blue/corner{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
"uNB" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -69637,6 +69671,36 @@
},
/turf/open/floor/iron/dark/corner,
/area/hallway/primary/starboard)
+"uOp" = (
+/obj/machinery/power/apc{
+ areastring = "/area/science/robotics/lab";
+ dir = 1;
+ name = "Robotics Lab APC";
+ pixel_y = 24
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/structure/table,
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/effect/turf_decal/delivery,
+/obj/item/pen{
+ pixel_x = -2;
+ pixel_y = 6
+ },
+/turf/open/floor/iron,
+/area/science/robotics/lab)
"uOs" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -69685,6 +69749,13 @@
},
/turf/open/floor/plating,
/area/science/xenobiology)
+"uPT" = (
+/obj/machinery/door/morgue{
+ name = "Relic Closet";
+ req_access_txt = "22"
+ },
+/turf/open/floor/cult,
+/area/chapel/office)
"uPU" = (
/obj/machinery/door/poddoor/shutters/preopen{
id = "research_shutters";
@@ -69700,12 +69771,6 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron/white,
/area/science/lab)
-"uQa" = (
-/obj/effect/turf_decal/siding/yellow/corner{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"uQr" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -70205,6 +70270,14 @@
},
/turf/open/floor/iron/white,
/area/science/xenobiology)
+"vbz" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engineering)
"vbF" = (
/obj/effect/turf_decal/bot,
/obj/machinery/portable_atmospherics/scrubber,
@@ -70223,6 +70296,14 @@
},
/turf/open/floor/iron/dark,
/area/science/storage)
+"vbL" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/siding/purple/corner,
+/turf/open/floor/iron/white,
+/area/science/research)
"vcc" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -70258,23 +70339,6 @@
},
/turf/open/floor/iron,
/area/maintenance/starboard/secondary)
-"vcY" = (
-/obj/machinery/door/airlock/maintenance{
- req_one_access_txt = "12;47"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
- cycle_id = "sci-maint-passthrough"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/science)
"vdt" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 1
@@ -70511,17 +70575,6 @@
},
/turf/open/floor/iron,
/area/vacant_room/commissary)
-"vhn" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/siding/yellow{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"vho" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -70650,6 +70703,16 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/heads/chief)
+"vjZ" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engineering)
"vkd" = (
/obj/structure/closet/emcloset,
/turf/open/floor/iron,
@@ -70696,18 +70759,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/teleporter)
-"vkN" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal/incinerator)
"vlu" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -70739,6 +70790,18 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
+"vlM" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/machinery/button/door{
+ id = "robotics_shutters";
+ name = "robotics shutters control";
+ pixel_x = -26;
+ pixel_y = 26;
+ req_access_txt = "29"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/science/robotics/lab)
"vlO" = (
/obj/effect/turf_decal/tile/red/anticorner/contrasted{
dir = 8
@@ -71075,16 +71138,6 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"vrw" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/solar{
- id = "aftstarboard";
- name = "Aft-Starboard Solar Array"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/starboard/aft)
"vrF" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -71123,13 +71176,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
-"vsg" = (
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/turf/open/space,
-/area/space/nearstation)
"vsi" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/effect/decal/cleanable/dirt,
@@ -71357,14 +71403,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/storage/tech)
-"vwj" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/atmos)
"vwr" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -71491,15 +71529,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/locker)
-"vxJ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/delivery,
-/obj/structure/sign/warning/nosmoking{
- pixel_x = -28
- },
-/obj/structure/closet/radiation,
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"vyk" = (
/obj/machinery/camera{
c_tag = "Arrivals - Aft Arm - Far";
@@ -71843,6 +71872,10 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/heads/chief)
+"vFC" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"vFE" = (
/obj/structure/table/reinforced,
/obj/item/paper_bin,
@@ -71887,22 +71920,17 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron/dark,
/area/medical/morgue)
-"vGy" = (
+"vGx" = (
/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/obj/structure/sign/warning/deathsposal{
- pixel_y = 32
+ icon_state = "2-8"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/window/reinforced{
- dir = 8
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/ai_monitored/turret_protected/ai_upload)
"vGI" = (
/obj/structure/chair{
dir = 8;
@@ -72101,20 +72129,13 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/dark/corner,
/area/hallway/primary/starboard)
-"vKx" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/obj/machinery/light{
+"vKM" = (
+/obj/structure/chair,
+/obj/machinery/light/small{
dir = 1
},
-/obj/item/kirbyplants/random,
-/turf/open/floor/iron,
-/area/engine/engineering)
-"vKV" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/tcommsat/server)
+/turf/open/floor/plating,
+/area/engine/break_room)
"vKY" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -72140,6 +72161,10 @@
},
/turf/open/floor/iron,
/area/security/courtroom)
+"vLq" = (
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron,
+/area/engine/break_room)
"vLs" = (
/obj/machinery/ai_slipper{
uses = 10
@@ -72283,6 +72308,14 @@
},
/turf/open/floor/iron,
/area/maintenance/fore)
+"vNb" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engineering)
"vNe" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -72427,16 +72460,6 @@
},
/turf/open/floor/iron/dark/corner,
/area/engine/storage_shared)
-"vPH" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Holodeck Door"
- },
-/obj/machinery/door/firedoor,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
- cycle_id = "holodeck"
- },
-/turf/open/floor/iron,
-/area/crew_quarters/fitness/recreation)
"vQr" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -72705,6 +72728,41 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron/dark,
/area/maintenance/department/science)
+"vVU" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/flasher{
+ id = "secentranceflasher";
+ pixel_x = 25
+ },
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "outerbrig";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "Secure Gate";
+ name = "Brig Blast door"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "brig-entrance"
+ },
+/turf/open/floor/iron,
+/area/security/brig)
"vVW" = (
/obj/structure/rack,
/obj/effect/turf_decal/bot{
@@ -73064,15 +73122,6 @@
/obj/item/book/manual/wiki/sopservice,
/turf/open/floor/iron,
/area/hallway/secondary/service)
-"wdQ" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/atmos)
"wdT" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -73126,6 +73175,20 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/security/main)
+"weI" = (
+/obj/structure/table,
+/obj/item/stack/sheet/glass,
+/obj/item/electronics/airlock,
+/obj/item/assembly/timer{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple,
+/turf/open/floor/iron/white,
+/area/science/research)
"weN" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -73261,16 +73324,6 @@
/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
/turf/open/floor/iron,
/area/security/main)
-"wgH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/effect/turf_decal/siding/dark_blue/corner{
- dir = 8
- },
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
"wgX" = (
/obj/machinery/camera{
c_tag = "Xenobiology Lab - Fore";
@@ -73306,18 +73359,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/fitness/recreation)
-"whk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/effect/turf_decal/tile/blue/half/contrasted{
- dir = 1
- },
-/obj/effect/turf_decal/siding/dark_blue/corner{
- dir = 4
- },
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
"whR" = (
/obj/structure/table,
/obj/item/clothing/gloves/color/fyellow,
@@ -73533,34 +73574,6 @@
},
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"wlR" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/door/airlock/research{
- name = "Xenobiology Lab";
- req_access_txt = "55"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "xeno_blastdoor";
- name = "Secure Lab Shutters"
- },
-/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
- cycle_id = "sci-maint-passthrough"
- },
-/turf/open/floor/iron,
-/area/maintenance/department/science)
"wmI" = (
/obj/structure/disposalpipe/segment{
dir = 6
@@ -73931,13 +73944,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/maintenance/port/fore)
-"wtF" = (
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 5
- },
-/turf/open/space/basic,
-/area/space/nearstation)
"wtK" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -74144,13 +74150,6 @@
},
/turf/open/floor/iron,
/area/science/shuttledock)
-"wxD" = (
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 10
- },
-/turf/open/space,
-/area/space/nearstation)
"wxI" = (
/obj/structure/cable/yellow{
icon_state = "2-4"
@@ -74384,14 +74383,6 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/secondary)
-"wBO" = (
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/siding/white,
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"wBW" = (
/obj/structure/table,
/obj/item/stock_parts/subspace/treatment,
@@ -74515,30 +74506,6 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
/turf/open/floor/circuit,
/area/science/robotics/mechbay)
-"wDD" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/command{
- name = "Corporate Showroom";
- req_access_txt = "19";
- security_level = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/siding/wood/end{
- dir = 1
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
- cycle_id = "showroom"
- },
-/turf/open/floor/wood,
-/area/bridge/showroom/corporate)
"wDQ" = (
/obj/machinery/firealarm{
pixel_y = 32
@@ -74595,15 +74562,9 @@
/obj/effect/turf_decal/siding/wood,
/turf/open/floor/wood,
/area/crew_quarters/heads/captain/private)
-"wEY" = (
-/obj/structure/table/glass,
-/obj/item/storage/box/donkpockets,
-/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko{
- pixel_x = -6;
- pixel_y = 6
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+"wEE" = (
+/obj/effect/turf_decal/siding/yellow/corner{
+ dir = 1
},
/turf/open/floor/iron,
/area/engine/break_room)
@@ -74726,14 +74687,6 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/turf/open/floor/plating,
/area/maintenance/port)
-"wIz" = (
-/obj/structure/cable,
-/obj/machinery/power/solar{
- id = "foreport";
- name = "Fore-Port Solar Array"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/port/fore)
"wIB" = (
/obj/effect/turf_decal/tile/white/half/contrasted,
/obj/effect/turf_decal/tile/yellow{
@@ -74750,13 +74703,6 @@
},
/turf/open/floor/iron,
/area/medical/chemistry)
-"wII" = (
-/obj/effect/landmark/event_spawn,
-/obj/effect/turf_decal/siding/white{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"wIV" = (
/obj/effect/turf_decal/tile/blue/half/contrasted,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
@@ -74764,23 +74710,6 @@
},
/turf/open/floor/iron/white,
/area/medical/genetics/cloning)
-"wJa" = (
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/white/line{
- dir = 1
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "Atmos to Loop"
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
"wJg" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -74947,6 +74876,21 @@
},
/turf/open/floor/iron,
/area/medical/patients_rooms)
+"wLK" = (
+/obj/machinery/door/airlock/maintenance{
+ req_one_access_txt = "49;47;12"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "sci-maint-passthrough"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/science)
"wLL" = (
/obj/effect/turf_decal/plaque{
icon_state = "L5"
@@ -75273,12 +75217,6 @@
},
/turf/open/floor/plating,
/area/chapel/main)
-"wQo" = (
-/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"wQy" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
/turf/open/floor/iron/dark,
@@ -75480,6 +75418,16 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/security/execution/education)
+"wVv" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white/corner,
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"wVw" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -75614,18 +75562,22 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"wXJ" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp/green{
- pixel_x = 1;
- pixel_y = 5
+"wXM" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = 30
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
},
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/cult,
-/area/library)
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"wXO" = (
/obj/machinery/door/poddoor/preopen{
id = "xenobio1";
@@ -75650,6 +75602,14 @@
},
/turf/open/floor/wood,
/area/library)
+"wXX" = (
+/obj/structure/table/reinforced,
+/obj/item/book/manual/wiki/surgery,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/medical/surgery)
"wYc" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -75746,15 +75706,6 @@
/obj/item/canvas/twentythree_twentythree,
/turf/open/floor/iron,
/area/storage/art)
-"xan" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/table,
-/obj/item/borg/upgrade/rename,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/iron,
-/area/science/robotics/lab)
"xaq" = (
/obj/structure/flora/junglebush/b,
/obj/structure/window/reinforced,
@@ -75948,13 +75899,6 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron,
/area/medical/chemistry)
-"xeD" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"xeI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -76061,12 +76005,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/dark,
/area/medical/medbay/central)
-"xgB" = (
-/obj/effect/turf_decal/siding/white{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"xgP" = (
/obj/item/radio/intercom{
pixel_y = 20
@@ -76239,6 +76177,18 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/maintenance/port)
+"xiJ" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"xiL" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -76408,6 +76358,13 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/aft)
+"xls" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 5
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
"xlH" = (
/obj/structure/grille,
/obj/structure/lattice,
@@ -76559,13 +76516,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
-"xnJ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/delivery,
-/obj/structure/window/reinforced,
-/obj/structure/closet/secure_closet/atmospherics,
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"xnK" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/machinery/airalarm{
@@ -76745,6 +76695,18 @@
},
/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/ai)
+"xqQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"xqS" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 27
@@ -76812,16 +76774,6 @@
/obj/machinery/vending/wardrobe/det_wardrobe,
/turf/open/floor/carpet/grimy,
/area/security/detectives_office)
-"xsg" = (
-/obj/structure/table/wood,
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/obj/item/folder,
-/obj/item/folder,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/cult,
-/area/library)
"xsh" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -76852,6 +76804,7 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 8
},
+/obj/structure/disposalpipe/segment,
/turf/open/floor/iron,
/area/engine/storage_shared)
"xsB" = (
@@ -76901,18 +76854,6 @@
},
/turf/open/floor/iron,
/area/engine/gravity_generator)
-"xts" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 6
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/tcommsat/server)
"xty" = (
/obj/item/cigbutt,
/obj/structure/cable/yellow{
@@ -76924,13 +76865,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/plating,
/area/maintenance/starboard)
-"xtU" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"xtX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -76994,6 +76928,19 @@
},
/turf/open/floor/iron,
/area/science/robotics/mechbay)
+"xuG" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"xuR" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -77215,6 +77162,16 @@
},
/turf/open/floor/iron/dark,
/area/medical/morgue)
+"xzk" = (
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/solar{
+ id = "foreport";
+ name = "Fore-Port Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/port/fore)
"xzs" = (
/obj/machinery/firealarm/directional/west,
/obj/effect/turf_decal/delivery,
@@ -77323,14 +77280,6 @@
},
/turf/open/floor/iron,
/area/engine/break_room)
-"xAE" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal/incinerator)
"xAI" = (
/obj/machinery/light{
dir = 1
@@ -77464,6 +77413,23 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron/white,
/area/science/xenobiology)
+"xDI" = (
+/obj/structure/table,
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/item/storage/box/bodybags{
+ pixel_y = 2
+ },
+/obj/item/clothing/gloves/color/latex,
+/obj/item/razor{
+ pixel_y = 5
+ },
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/science/robotics/lab)
"xDR" = (
/obj/structure/disposalpipe/segment{
dir = 6
@@ -77619,18 +77585,6 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron/dark,
/area/maintenance/department/science)
-"xHh" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/siding/white/corner{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"xHo" = (
/obj/structure/chair/fancy/comfy{
dir = 8
@@ -77807,6 +77761,13 @@
},
/turf/open/floor/plating,
/area/maintenance/port/fore)
+"xJx" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 5
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
"xJM" = (
/obj/machinery/suit_storage_unit/standard_unit,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -77820,6 +77781,34 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/maintenance/aft)
+"xKC" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/table,
+/obj/item/reagent_containers/glass/bottle/epinephrine{
+ pixel_x = 7;
+ pixel_y = -3
+ },
+/obj/item/reagent_containers/glass/bottle/charcoal{
+ pixel_x = -4;
+ pixel_y = -3
+ },
+/obj/item/reagent_containers/syringe/epinephrine{
+ pixel_x = 3;
+ pixel_y = -2
+ },
+/obj/item/reagent_containers/dropper,
+/obj/item/reagent_containers/glass/beaker{
+ pixel_x = 8;
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/dark_blue,
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"xLb" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -77832,6 +77821,13 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/engine/break_room)
+"xLz" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 10
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
"xLI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -78017,6 +78013,9 @@
},
/turf/open/floor/iron,
/area/science/robotics/mechbay)
+"xNL" = (
+/turf/open/floor/cult,
+/area/library)
"xNM" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -78190,6 +78189,21 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/dark,
/area/security/brig)
+"xPL" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"xPP" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -78331,27 +78345,6 @@
},
/turf/open/floor/iron/dark,
/area/aisat)
-"xSc" = (
-/obj/machinery/computer/turbine_computer{
- dir = 1;
- id = "incineratorturbine"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/machinery/button/door/incinerator_vent_atmos_aux{
- pixel_x = 24;
- pixel_y = 8
- },
-/obj/machinery/button/door/incinerator_vent_atmos_main{
- pixel_x = 24;
- pixel_y = -8
- },
-/obj/machinery/button/ignition/incinerator/atmos{
- pixel_x = 38;
- pixel_y = -7
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"xSh" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 4
@@ -78485,14 +78478,6 @@
},
/turf/open/floor/iron/dark,
/area/maintenance/department/science)
-"xWi" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
- dir = 4
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"xWn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 10
@@ -78667,6 +78652,22 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/hallway/secondary/command)
+"xZn" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/dark/visible,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/light_switch{
+ pixel_x = -24;
+ pixel_y = 8
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal/incinerator)
"xZv" = (
/obj/effect/turf_decal/trimline/blue/filled/line{
dir = 8
@@ -78877,16 +78878,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/storage)
-"yeg" = (
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/obj/effect/turf_decal/siding/dark_blue{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
"yen" = (
/obj/structure/table,
/obj/structure/cable/yellow{
@@ -78940,6 +78931,13 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/command)
+"yeV" = (
+/obj/effect/landmark/event_spawn,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"yeX" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -79000,16 +78998,6 @@
},
/turf/open/floor/iron/grid/steel,
/area/science/shuttledock)
-"ygn" = (
-/obj/structure/sign/warning/fire{
- pixel_x = 32
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/binary/pump{
- name = "Fuel Pipe to Incinerator"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"ygo" = (
/obj/effect/landmark/xeno_spawn,
/obj/machinery/light/small,
@@ -79210,12 +79198,6 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/patients_rooms)
-"yjl" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/machinery/portable_atmospherics/canister,
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"yjy" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -90077,7 +90059,7 @@ aDb
tNJ
cXv
fOr
-lfO
+dkr
djC
aaa
aaa
@@ -90087,7 +90069,7 @@ aaa
aaa
aaa
aRW
-pTW
+lIm
oTr
jtl
lCP
@@ -91662,17 +91644,17 @@ aaa
anT
aaa
aaa
-btN
+kfd
cvd
-bSb
+sKf
aaf
-btN
+kfd
cvd
-bSb
+sKf
aaf
-btN
+kfd
cvd
-bSb
+sKf
aaa
aaf
aaa
@@ -91876,7 +91858,7 @@ aDb
jRt
cXv
fOr
-lfO
+dkr
djC
aaa
aaa
@@ -91886,7 +91868,7 @@ aaa
aaa
aaa
aRW
-pTW
+lIm
oTr
jtl
uZB
@@ -91919,17 +91901,17 @@ aaa
anT
aaf
aaf
-btN
+kfd
cve
-bSb
+sKf
aaf
-btN
+kfd
cve
-bSb
+sKf
aaa
-btN
+kfd
cve
-bSb
+sKf
aaa
aaa
aaa
@@ -92176,17 +92158,17 @@ aaa
anT
aaa
aaf
-btN
+kfd
cve
-bSb
+sKf
aaf
-btN
+kfd
cve
-bSb
+sKf
aaf
-btN
+kfd
cve
-bSb
+sKf
aaa
aaf
aaa
@@ -92433,17 +92415,17 @@ aaa
aaa
aaa
aaa
-btN
+kfd
cve
-bSb
+sKf
aaa
-btN
+kfd
cve
-bSb
+sKf
aaa
-btN
+kfd
cve
-bSb
+sKf
aaf
aaf
aaa
@@ -92690,17 +92672,17 @@ anT
aaa
aaa
aaa
-btN
+kfd
cve
-bSb
+sKf
aaf
-btN
+kfd
cve
-bSb
+sKf
aaf
-btN
+kfd
cve
-bSb
+sKf
aaa
aaf
aaa
@@ -93193,7 +93175,7 @@ kjs
gve
lGA
kKX
-uJG
+bid
jyQ
jkj
jkj
@@ -93718,17 +93700,17 @@ anT
aaa
aaa
aaa
-btN
+kfd
cvh
-bSb
+sKf
aaf
-btN
+kfd
cvh
-bSb
+sKf
aaf
-btN
+kfd
cvh
-bSb
+sKf
aaa
aaa
aaa
@@ -93975,17 +93957,17 @@ cJh
cJh
aaa
aaf
-btN
+kfd
cvh
-bSb
+sKf
aaa
-btN
+kfd
cvh
-bSb
+sKf
aaf
-btN
+kfd
cvh
-bSb
+sKf
aaa
anT
aaa
@@ -94232,17 +94214,17 @@ aup
cJh
aaa
aaf
-btN
+kfd
cvh
-bSb
+sKf
aaf
-btN
+kfd
cvh
-bSb
+sKf
aaf
-btN
+kfd
cvh
-bSb
+sKf
aaf
aai
aaa
@@ -94489,17 +94471,17 @@ bXE
cJh
aaa
aaf
-btN
+kfd
cvh
-bSb
+sKf
aaa
-btN
+kfd
cvh
-bSb
+sKf
aaa
-btN
+kfd
cvh
-bSb
+sKf
aaa
aaf
aaa
@@ -94746,17 +94728,17 @@ bXE
cJh
aaa
aaa
-btN
+kfd
cvi
-bSb
+sKf
aaf
-btN
+kfd
cvi
-bSb
+sKf
aaf
-btN
+kfd
cvi
-bSb
+sKf
aaa
anT
aaf
@@ -94902,17 +94884,17 @@ aaa
aaa
aaj
aaa
-snQ
+xzk
aan
-wIz
+qNU
aaa
-snQ
+xzk
aan
-wIz
+qNU
aaa
-snQ
+xzk
aan
-wIz
+qNU
aaf
aag
aaf
@@ -95159,17 +95141,17 @@ aaa
aaa
aag
aaf
-snQ
+xzk
aao
-wIz
+qNU
aaa
-snQ
+xzk
aao
-wIz
+qNU
aaa
-snQ
+xzk
aao
-wIz
+qNU
aaf
aaf
aaf
@@ -95416,17 +95398,17 @@ aaa
aaf
aag
aaf
-snQ
+xzk
aao
-wIz
+qNU
aaf
-snQ
+xzk
aao
-wIz
+qNU
aaf
-snQ
+xzk
aao
-wIz
+qNU
aaf
aaa
aaf
@@ -95673,17 +95655,17 @@ aaa
aaf
aaa
aaa
-snQ
+xzk
aao
-wIz
+qNU
aaa
-snQ
+xzk
aao
-wIz
+qNU
aaa
-snQ
+xzk
aao
-wIz
+qNU
aaf
aaa
aaf
@@ -95775,9 +95757,9 @@ dux
wLx
cia
wZm
-hMK
-gaE
-qUk
+wXX
+cKe
+elb
sVF
cia
sSr
@@ -95930,17 +95912,17 @@ aag
aaj
aaa
aaa
-snQ
+xzk
aao
-wIz
+qNU
aaa
-snQ
+xzk
aao
-wIz
+qNU
aaa
-snQ
+xzk
aao
-wIz
+qNU
aaf
aaf
aaf
@@ -96511,7 +96493,7 @@ biD
bkg
bme
fRZ
-fJH
+cbC
tMI
dod
bvW
@@ -96958,17 +96940,17 @@ aaj
aaj
aaa
aaf
-snQ
+xzk
aas
-wIz
+qNU
aaa
-snQ
+xzk
aas
-wIz
+qNU
aaa
-snQ
+xzk
aas
-wIz
+qNU
aaa
aaf
aaa
@@ -97215,17 +97197,17 @@ aaa
aaa
aaa
aaa
-snQ
+xzk
aas
-wIz
+qNU
aaf
-snQ
+xzk
aas
-wIz
+qNU
aaa
-snQ
+xzk
aas
-wIz
+qNU
aaa
aaf
aaa
@@ -97472,17 +97454,17 @@ aaa
aaa
aag
aaf
-snQ
+xzk
aas
-wIz
+qNU
aaa
-snQ
+xzk
aas
-wIz
+qNU
aaf
-snQ
+xzk
aas
-wIz
+qNU
aaf
aaf
aaf
@@ -97600,7 +97582,7 @@ avr
sxv
fSO
yhE
-ePp
+gOw
iOR
ack
ack
@@ -97729,17 +97711,17 @@ aaa
aaa
aai
aaf
-snQ
+xzk
aas
-wIz
+qNU
aaf
-snQ
+xzk
aas
-wIz
+qNU
aaa
-snQ
+xzk
aas
-wIz
+qNU
aaa
aaf
aaa
@@ -97986,17 +97968,17 @@ aaa
aaa
aaj
aaa
-snQ
+xzk
aat
-wIz
+qNU
aaa
-snQ
+xzk
aat
-wIz
+qNU
aaa
-snQ
+xzk
aat
-wIz
+qNU
aaa
aaf
aaa
@@ -99406,7 +99388,7 @@ cPB
cPZ
cQT
cMI
-mDH
+qCK
cPA
aaa
aaa
@@ -99663,7 +99645,7 @@ cPC
djX
cPC
cMI
-epE
+lbV
cMI
aaa
aaa
@@ -100112,9 +100094,9 @@ lhn
tnN
bsH
bue
-wXJ
-lep
-kea
+txw
+xNL
+qgP
lAz
bwc
kOK
@@ -100369,8 +100351,8 @@ hJL
bql
tMI
bue
-ofn
-rGb
+pJf
+spf
bue
pAL
bwc
@@ -100883,9 +100865,9 @@ hJL
bqw
tMI
bue
-kRA
-lep
-ibD
+jmL
+xNL
+gNK
lAz
dCX
kOK
@@ -101140,8 +101122,8 @@ fRZ
bqw
tMI
bue
-xsg
-rGb
+cDO
+spf
bue
opm
bwc
@@ -101452,7 +101434,7 @@ cCe
sub
kbc
cLa
-fLC
+uPT
cLa
cLa
cLa
@@ -101709,7 +101691,7 @@ cCe
eEV
jRz
cLa
-lyj
+gsb
cLa
oUI
cOh
@@ -103148,7 +103130,7 @@ acm
uAd
tbE
adm
-sos
+gBX
aeg
cZX
aaZ
@@ -103987,9 +103969,9 @@ aZa
jfB
bSS
bSS
-rJa
-odm
-whk
+jXp
+nwq
+hwa
vXT
nOZ
idd
@@ -104244,9 +104226,9 @@ aYX
sST
ooE
frP
-hrN
-tMi
-sRD
+oiw
+alV
+tep
eFh
trD
pOu
@@ -104465,7 +104447,7 @@ sIq
aPu
aRT
aJS
-tYY
+hkj
aUx
xiW
ehJ
@@ -104501,9 +104483,9 @@ aYX
iov
bXN
mdh
-bHJ
-tMi
-sRD
+xKC
+alV
+tep
lQG
wsV
wsV
@@ -104546,7 +104528,7 @@ lHx
kJe
tcZ
clT
-mze
+bkY
kzn
aaa
aaa
@@ -104719,10 +104701,10 @@ aLs
aMH
aOc
gGB
-pWh
-eHS
-lLf
-bAZ
+vGx
+sTx
+fPe
+drY
iLv
xHH
qNF
@@ -104758,9 +104740,9 @@ wXy
isj
bXN
frP
-gkC
-tMi
-rFh
+dZq
+alV
+fFQ
pWm
wsV
wsV
@@ -104794,11 +104776,11 @@ gqY
cKw
cLm
cLm
-qKa
-bAi
-bAi
-bAi
-rke
+iOD
+pyD
+pyD
+pyD
+efe
cLm
cMf
kMl
@@ -104979,7 +104961,7 @@ pNT
aMH
aRV
aJS
-qQS
+dcv
aUx
bDf
aYX
@@ -105015,9 +104997,9 @@ dCE
mLB
ttR
msp
-wgH
-mgK
-uNs
+jEs
+keh
+mJA
jKj
wsV
fHf
@@ -105051,16 +105033,16 @@ oju
cKw
fOM
cLm
-gaF
-peq
-peq
-peq
-ruP
+iug
+daj
+daj
+daj
+hPX
cLm
cQo
pPd
clT
-slv
+mEU
kzn
aaa
aaa
@@ -105204,7 +105186,7 @@ aaa
lMJ
ajm
wdz
-kTH
+tIB
lTw
hbB
xfg
@@ -105272,9 +105254,9 @@ aYX
ukx
bXN
chG
-hLe
-mPw
-eDT
+cXB
+kDy
+pVo
wlF
wsV
hVo
@@ -105308,11 +105290,11 @@ cPb
xjk
xvp
cLm
-gaF
-peq
-peq
-peq
-wII
+iug
+daj
+daj
+daj
+yeV
cLm
cMf
kMl
@@ -105529,9 +105511,9 @@ aYX
ukx
bXN
frP
-pmN
-tMi
-yeg
+auh
+alV
+hpB
jgw
eng
hcg
@@ -105565,11 +105547,11 @@ tfZ
vQr
cLr
cMe
-xHh
-cqi
-cqi
-cqi
-dFt
+olB
+iEj
+iEj
+iEj
+tmr
cPT
cMf
kMl
@@ -105786,9 +105768,9 @@ aYX
ukx
bXQ
mdh
-leO
-tMi
-oJb
+jOb
+alV
+rBA
oIR
mVY
acB
@@ -105977,7 +105959,7 @@ ajm
rrR
tpo
dEf
-cTU
+epj
aqa
aqa
aqa
@@ -106037,15 +106019,15 @@ bNc
dUr
pxk
dwv
-lIc
+hpW
bVm
bVe
xIO
bXN
frP
-kml
-tMi
-oJb
+ehv
+alV
+rBA
aAv
tiS
rrO
@@ -106069,7 +106051,7 @@ mYS
ydT
ctB
avd
-fbm
+pNF
ctB
lKn
ctB
@@ -106079,11 +106061,11 @@ oYA
gQQ
cLr
cMg
-cNu
-oMW
-oMW
-oMW
-cwb
+wVv
+tTY
+tTY
+tTY
+xiJ
fGz
cMf
kMl
@@ -106325,7 +106307,7 @@ ctB
nBf
ctB
ctB
-dkJ
+kYQ
erP
ctB
ctD
@@ -106336,11 +106318,11 @@ cPb
qrx
cLr
cLm
-gaF
-peq
-peq
-peq
-ruP
+iug
+daj
+daj
+daj
+hPX
cLm
cMf
kMl
@@ -106593,16 +106575,16 @@ keQ
kKl
cLr
cLm
-wBO
-peq
-peq
-peq
-ruP
+mmN
+daj
+daj
+daj
+hPX
cLm
cQp
pPd
clT
-iNO
+jPp
kzn
cYJ
aaa
@@ -106803,7 +106785,7 @@ vpq
nWm
ppx
ryD
-wDD
+qBJ
hrL
oxR
bQk
@@ -106850,11 +106832,11 @@ uWb
mjk
cLt
cMi
-bRW
-siM
-pCn
-xgB
-eBQ
+iEw
+gAz
+bmo
+kDj
+blc
cLm
cMf
kMl
@@ -107107,16 +107089,16 @@ hkS
bUQ
gdm
fSY
-pzs
+jaY
wOa
-jGR
+tLY
lMf
dvF
dWV
fNG
mCA
clT
-kZz
+fjB
kzn
aaa
aaa
@@ -107329,7 +107311,7 @@ xeU
raU
bZi
bZk
-mdQ
+gOE
kjw
bZj
cgd
@@ -107579,15 +107561,15 @@ bNi
rLS
bes
bqF
-lIc
+hpW
bVm
bVk
ljM
bXV
bZj
-kDZ
-lDD
-goW
+gVf
+aHu
+tCo
qpE
cgd
chi
@@ -107614,10 +107596,10 @@ cDa
kdt
cCq
cGa
-cGV
+cEH
cHP
-dNs
-gIE
+xDI
+iwc
cCq
jAk
cPb
@@ -107842,9 +107824,9 @@ aYX
ukx
bXW
bZk
-cFX
-lDD
-goW
+uBX
+aHu
+tCo
kaJ
cgd
chj
@@ -107867,9 +107849,9 @@ cwH
lKP
cBg
cCo
-lfZ
+vlM
wCo
-cFd
+oWR
cGb
cGb
cHQ
@@ -108099,9 +108081,9 @@ aYX
ukx
bXV
bZj
-kSn
-lDD
-qVh
+njX
+aHu
+olZ
dUd
cgd
chk
@@ -108303,10 +108285,10 @@ jKa
ulX
awq
vlO
-jMB
+pPT
uWw
hUy
-svW
+pmo
aDC
tSN
aDC
@@ -108356,9 +108338,9 @@ aYX
ukx
bXV
bZl
-lmu
-dQl
-mEq
+dnx
+pNE
+ntI
vMh
cge
chk
@@ -108387,8 +108369,8 @@ cFf
cFg
cFh
cHR
-pfq
-uyf
+uHh
+nQx
cCq
eXK
cPb
@@ -108613,9 +108595,9 @@ bVl
sGO
bXY
bZm
-kyt
-tsq
-jpI
+vbL
+kZp
+gCH
rGL
nuG
rzX
@@ -108817,10 +108799,10 @@ atT
jbZ
fVz
oQQ
-fwY
+jji
lbR
qye
-chy
+vVU
pqW
juP
fXK
@@ -108870,9 +108852,9 @@ wXy
tgr
bXV
bZj
-nPx
-lDD
-qKn
+axN
+aHu
+eZH
eAv
uPU
chm
@@ -108901,7 +108883,7 @@ cFh
cFg
cFf
cHR
-xan
+pyS
cJM
cCq
iTt
@@ -109127,9 +109109,9 @@ dCE
grR
bXV
bZk
-uEd
-lDD
-rSd
+hNj
+aHu
+tqn
rZv
cgg
cgd
@@ -109152,7 +109134,7 @@ czm
cAq
cBk
cDi
-lvG
+uOp
rqt
quh
qjd
@@ -109384,9 +109366,9 @@ aYX
seF
jOZ
bZj
-pzy
-lDD
-rSd
+weI
+aHu
+tqn
eAv
cgh
jrP
@@ -109413,7 +109395,7 @@ cQD
cEo
hFt
cGf
-mMn
+fcG
fOw
oKQ
cJN
@@ -109641,9 +109623,9 @@ goB
dcH
bSS
bZn
-dwB
-rhM
-lMw
+rjw
+hPk
+tUQ
qEV
wqe
hgy
@@ -110462,10 +110444,10 @@ fhJ
cUY
fZY
mXo
-tNz
-tEl
-gUu
-lAV
+uiS
+gfm
+gfL
+iVe
dvc
crR
aaa
@@ -113197,7 +113179,7 @@ axC
axC
axC
ndB
-nPS
+cSo
vxG
sSg
vfA
@@ -113454,7 +113436,7 @@ aHK
rIr
axC
kwK
-nPS
+cSo
neO
aOu
wTB
@@ -113711,7 +113693,7 @@ axC
axC
axC
nTT
-mRy
+lRo
hUx
suL
aQW
@@ -113968,7 +113950,7 @@ aHL
aJd
axC
wUd
-mRy
+lRo
dgD
aOw
aQX
@@ -114289,7 +114271,7 @@ thn
thn
cSd
oIM
-wlR
+sxj
oIM
cRi
cRi
@@ -114800,7 +114782,7 @@ lal
jVZ
sxa
lCX
-dKV
+wLK
ulA
kNZ
fls
@@ -114810,7 +114792,7 @@ keR
akM
uIA
czD
-vcY
+rIA
kOP
mzB
mml
@@ -115319,7 +115301,7 @@ mjJ
mjJ
mjJ
tVz
-ciw
+jVy
tVz
mjJ
eBh
@@ -116875,7 +116857,7 @@ aaa
aaa
aaa
ihd
-qDA
+ucJ
uHI
aaa
aaa
@@ -117284,10 +117266,10 @@ acP
acQ
acQ
acQ
-vPH
+cHi
acQ
acQ
-dFS
+dVd
acQ
acQ
acQ
@@ -117640,19 +117622,19 @@ aaa
aaa
aaa
lMJ
-vrw
-vrw
-vrw
-vrw
-vrw
+fWL
+fWL
+fWL
+fWL
+fWL
aaa
dbR
aaa
-vrw
-vrw
-vrw
-vrw
-vrw
+fWL
+fWL
+fWL
+fWL
+fWL
aaa
aqB
aaa
@@ -118154,19 +118136,19 @@ aaa
aaa
lMJ
lMJ
-uFV
-uFV
-uFV
-uFV
-uFV
+mzq
+mzq
+mzq
+mzq
+mzq
aav
tgz
aaf
-uFV
-uFV
-uFV
-uFV
-uFV
+mzq
+mzq
+mzq
+mzq
+mzq
aaa
anT
aaa
@@ -118380,11 +118362,11 @@ mwS
kbY
avs
bZE
-xWi
-vxJ
-xnJ
-ewn
-nMk
+gVP
+mgm
+nUN
+ifO
+lwb
bZE
ovj
ovj
@@ -118637,11 +118619,11 @@ slA
aad
bcs
bZE
-hME
-xeD
-krO
-krO
-oeP
+oaZ
+aYB
+gui
+gui
+uro
ciY
cmc
cmc
@@ -118668,19 +118650,19 @@ lMJ
aaa
lMJ
lMJ
-vrw
-vrw
-vrw
-vrw
-vrw
+fWL
+fWL
+fWL
+fWL
+fWL
aaf
vwy
aaa
-vrw
-vrw
-vrw
-vrw
-vrw
+fWL
+fWL
+fWL
+fWL
+fWL
aaf
anT
aaa
@@ -118894,11 +118876,11 @@ gWq
ise
bZE
bZE
-aZP
-xtU
-iCQ
-yjl
-ghF
+mQU
+btg
+kKf
+pOc
+gOZ
bZE
bZE
bZE
@@ -118916,7 +118898,7 @@ mjJ
kuN
gRW
mjJ
-rWS
+lDx
mjJ
sEf
aaa
@@ -119150,12 +119132,12 @@ alq
wMZ
xty
gUJ
-lZw
-kja
-vkN
-rWW
-rWW
-fxC
+xZn
+hiY
+jCt
+vFC
+vFC
+bbX
cjb
ckD
cjb
@@ -119182,19 +119164,19 @@ aaa
aaa
aaa
lMJ
-uFV
-uFV
-uFV
-uFV
-uFV
+mzq
+mzq
+mzq
+mzq
+mzq
aav
vwy
aav
-uFV
-uFV
-uFV
-uFV
-uFV
+mzq
+mzq
+mzq
+mzq
+mzq
aaa
anT
aaa
@@ -119352,8 +119334,8 @@ dnS
dnS
gks
wOK
-wOK
-koE
+gqg
+tfC
hqK
axY
aBH
@@ -119383,7 +119365,7 @@ iBo
bjF
wnz
pmL
-pNd
+geZ
ktu
bep
xhN
@@ -119407,12 +119389,12 @@ htP
cTF
apc
bZE
-vGy
-huY
-kKq
-ebP
-xAE
-xAE
+eQJ
+jMc
+sLI
+ueQ
+fyu
+fyu
kRR
mFX
cmd
@@ -119609,8 +119591,8 @@ ewK
qXc
dnh
dnh
-dnh
xrj
+dqT
axY
axY
aBI
@@ -119664,12 +119646,12 @@ alq
bXd
apc
bZE
-qVH
-mLd
-ygn
-kGm
-qYh
-xSc
+gYl
+rDu
+gfD
+kfz
+nYC
+nmz
rDY
ckF
cjb
@@ -119696,19 +119678,19 @@ aaa
aaa
aaa
lMJ
-vrw
-vrw
-vrw
-vrw
-vrw
+fWL
+fWL
+fWL
+fWL
+fWL
aav
vwy
aaa
-vrw
-vrw
-vrw
-vrw
-vrw
+fWL
+fWL
+fWL
+fWL
+fWL
aaf
anT
aaa
@@ -119854,10 +119836,10 @@ acQ
acQ
acQ
acP
-vPH
+cHi
acQ
acQ
-dFS
+dVd
acP
acP
acP
@@ -119866,10 +119848,10 @@ dnh
dnh
dnh
dqu
-dnS
ihN
-axY
+dqT
aAo
+aCO
aBJ
aEi
kEN
@@ -119905,7 +119887,7 @@ bxd
byT
bCi
lXH
-fpx
+bvR
duk
bBt
bBt
@@ -120123,12 +120105,12 @@ alJ
ftx
dnh
dnh
-dnh
xiC
-axY
-aAp
+dqT
+dRx
aCP
aHY
+aHY
hwu
xvA
mDs
@@ -120154,7 +120136,7 @@ iTF
vme
pRq
bnc
-bph
+iTw
iHl
xsn
bvg
@@ -120162,7 +120144,7 @@ bxd
eFV
bAE
bCi
-aLI
+rPx
bFJ
bHs
cVD
@@ -120210,19 +120192,19 @@ aaa
aaa
lMJ
aaf
-uFV
-uFV
-uFV
-uFV
-uFV
+mzq
+mzq
+mzq
+mzq
+mzq
lMJ
pCg
aaf
-uFV
-uFV
-uFV
-uFV
-uFV
+mzq
+mzq
+mzq
+mzq
+mzq
aaa
aaa
aaa
@@ -120380,10 +120362,10 @@ foK
jpJ
foK
fka
-nGL
tfC
-axY
-vKx
+dqT
+gcb
+aCP
taV
uhw
qiU
@@ -120407,9 +120389,9 @@ hdM
vfN
ihR
iDO
-eSY
+tmR
qVf
-dCm
+dpn
rxn
owR
sao
@@ -120419,7 +120401,7 @@ bxd
byV
bAF
bCl
-lKx
+xPL
jLo
bAR
bAR
@@ -120638,9 +120620,9 @@ hIX
dnh
koE
axY
-axT
axY
-aAr
+dbc
+aCP
mzt
aTO
aEq
@@ -120663,10 +120645,10 @@ toh
hGd
dgz
aBI
-hAo
+emu
iTF
rUa
-nrS
+gYg
bjL
tNI
hkq
@@ -120676,7 +120658,7 @@ bAR
bAR
bAR
bza
-cPx
+iJy
bza
bAR
bIN
@@ -120894,7 +120876,7 @@ efV
fOX
dBu
weN
-axY
+axT
axU
ayS
dCk
@@ -120919,11 +120901,11 @@ aYu
aYu
aYu
aYu
-iKI
-iKI
-ofV
+eas
+eas
+pLU
fvZ
-wEY
+ieW
bne
owR
owR
@@ -120933,7 +120915,7 @@ bAR
mFm
bAG
bCn
-aLI
+rPx
bFL
bHt
bDS
@@ -121176,11 +121158,11 @@ egv
wOJ
kkq
bfX
-wQo
-esQ
-rmo
+uEN
+iFE
+uaz
fvZ
-gxt
+lPW
bjL
bpg
owR
@@ -121190,7 +121172,7 @@ bxd
byX
bAH
bCo
-rKW
+wXM
bFM
bHu
bHu
@@ -121433,23 +121415,23 @@ bbC
gCm
rqv
pST
-dRM
-kWr
-vhn
-tyK
-qeC
+lzs
+ajK
+cwP
+gHP
+cIo
rti
eSd
xLb
xIq
xbs
wuR
-vwj
-rHy
-hBr
-wdQ
-ufu
-qEw
+tAk
+hQr
+gJB
+gIX
+iGg
+bwD
bYx
bKx
bMd
@@ -121690,11 +121672,11 @@ vCn
ycb
bIn
bfX
-mmQ
-kmW
-gIz
-gRe
-bnc
+iTF
+cwx
+fMp
+rjD
+bjL
bng
iRz
btD
@@ -121705,8 +121687,8 @@ bAJ
bAJ
bCq
bDV
-csF
-lSI
+xqQ
+dBb
bIS
bKy
bMe
@@ -121939,8 +121921,8 @@ mvZ
dlI
dfp
dfp
-mFM
-nKi
+xuG
+bWX
cXA
cXA
cXA
@@ -121948,10 +121930,10 @@ cXA
cXA
cXA
bhT
-jlw
-gIz
-gRe
-fBh
+occ
+fMp
+rjD
+vLq
bhT
uuF
bhT
@@ -121962,7 +121944,7 @@ bza
bza
bza
bza
-gvf
+etM
bza
bIS
bCi
@@ -122155,17 +122137,17 @@ aaa
aaa
aag
aaa
-oqw
+brz
abO
-pDG
+hzZ
aaa
-oqw
+brz
abO
-pDG
+hzZ
aaa
-oqw
+brz
abO
-pDG
+hzZ
aaa
aaf
ajb
@@ -122181,10 +122163,10 @@ ajb
tUi
axY
axZ
-lhF
-dXZ
-gGD
-sSn
+pxK
+lDw
+vNb
+kxj
opl
der
deD
@@ -122196,18 +122178,18 @@ dfb
dfj
dlI
deD
-rHx
-wJa
-guq
+bGJ
+gPw
+jYR
dgi
-mKs
-qLa
-qzm
+apZ
+orF
+kFv
apc
aWu
-uQa
-koM
-hYA
+cXE
+gDP
+wEE
bls
bhT
eCM
@@ -122218,8 +122200,8 @@ bhT
mba
eXa
axD
-jCR
-odI
+mCP
+hlF
bHw
bIT
bKA
@@ -122412,17 +122394,17 @@ aaa
aaa
aag
aaf
-oqw
+brz
abP
-pDG
+hzZ
aaa
-oqw
+brz
abP
-pDG
+hzZ
aaa
-oqw
+brz
abP
-pDG
+hzZ
aaa
aaf
ajb
@@ -122438,7 +122420,7 @@ ajb
cIH
axY
ddO
-bjn
+vjZ
ddT
sjC
aCZ
@@ -122463,7 +122445,7 @@ dgo
cYj
bhT
bie
-kPx
+axH
bie
bhT
oxc
@@ -122669,17 +122651,17 @@ aaa
aaa
aag
aaf
-oqw
+brz
abP
-pDG
+hzZ
aaf
-oqw
+brz
abP
-pDG
+hzZ
aaf
-oqw
+brz
abP
-pDG
+hzZ
aaf
aaf
ajb
@@ -122695,7 +122677,7 @@ ajb
cIH
axY
aya
-bjn
+vjZ
ddU
aBQ
aCZ
@@ -122719,9 +122701,9 @@ alr
dgp
atm
bhT
-mmr
-rZU
-ube
+vKM
+pRz
+lYn
bhT
bpv
raC
@@ -122926,17 +122908,17 @@ aaa
aaa
aag
aaf
-oqw
+brz
abP
-pDG
+hzZ
aaa
-oqw
+brz
abP
-pDG
+hzZ
aaa
-oqw
+brz
abP
-pDG
+hzZ
aaa
aaf
aaf
@@ -122952,7 +122934,7 @@ dnS
gpL
axY
ddO
-bjn
+vjZ
ddV
aBQ
aCZ
@@ -122969,12 +122951,12 @@ daY
djt
dbg
dfR
-noP
-oXu
+pvJ
+bRm
dgj
gXq
-iqD
-wtF
+xLz
+xls
bhT
wOY
adF
@@ -123183,17 +123165,17 @@ aai
aaj
aag
aaa
-oqw
+brz
abP
-pDG
+hzZ
aaa
-oqw
+brz
abP
-pDG
+hzZ
aaa
-oqw
+brz
abP
-pDG
+hzZ
aaa
aaa
aaf
@@ -123209,10 +123191,10 @@ dnR
gpL
axY
ayc
-bnU
-uLK
-giH
-sSn
+enH
+vbz
+cTP
+kxj
mFI
aFD
deD
@@ -123229,9 +123211,9 @@ dfS
aCZ
aaf
aYx
-uBV
+dPg
aaf
-vsg
+pLT
sJW
aaa
aaa
@@ -123481,15 +123463,15 @@ dfd
deN
dft
dBB
-eUo
-mfH
-noP
-ffP
+mWM
+cZE
+pvJ
+bLm
aYx
dgf
dgj
-wxD
-eUc
+qZH
+xJx
aaa
aaa
aaa
@@ -123738,15 +123720,15 @@ dfe
dBz
dfu
dfz
-gXM
-jPQ
+dru
+uAy
axY
aye
azd
azd
azd
dgB
-iWX
+kmW
aaa
aaa
aaa
@@ -124003,7 +123985,7 @@ dgk
dgt
dgk
dgv
-iWX
+kmW
aaa
cUL
aaa
@@ -124211,17 +124193,17 @@ aaj
aai
aaj
aaf
-oqw
+brz
abT
-pDG
+hzZ
aaa
-oqw
+brz
abT
-pDG
+hzZ
aaa
-oqw
+brz
abT
-pDG
+hzZ
aaa
aaa
aaf
@@ -124260,7 +124242,7 @@ dgk
dgt
dgk
dgB
-iWX
+kmW
anT
lMJ
lMJ
@@ -124271,7 +124253,7 @@ aaf
aaf
aaf
aaf
-cmB
+jyt
dgw
bCz
dgw
@@ -124291,7 +124273,7 @@ bFY
aaf
aaf
bAR
-iwT
+gha
bAR
aaf
aaf
@@ -124468,17 +124450,17 @@ aaa
aaa
aag
aaa
-oqw
+brz
abT
-pDG
+hzZ
aaa
-oqw
+brz
abT
-pDG
+hzZ
aaa
-oqw
+brz
abT
-pDG
+hzZ
aaf
aaa
aaf
@@ -124517,7 +124499,7 @@ azd
azd
azd
dgv
-iWX
+kmW
aaa
aaa
aaa
@@ -124548,7 +124530,7 @@ bFZ
bAR
aaf
bAR
-ncc
+mPE
bAR
aaf
aaa
@@ -124725,17 +124707,17 @@ aaa
aaa
aag
aaf
-oqw
+brz
abT
-pDG
+hzZ
aaf
-oqw
+brz
abT
-pDG
+hzZ
aaf
-oqw
+brz
abT
-pDG
+hzZ
aaa
aaa
aaf
@@ -124774,7 +124756,7 @@ dgk
dgt
dgk
dgB
-iWX
+kmW
aaf
lMJ
aaf
@@ -124982,17 +124964,17 @@ aaa
aaa
aag
aaf
-oqw
+brz
abT
-pDG
+hzZ
aaa
-oqw
+brz
abT
-pDG
+hzZ
aaa
-oqw
+brz
abT
-pDG
+hzZ
aaa
aaa
aaf
@@ -125031,7 +125013,7 @@ dgk
dgk
dgk
dgv
-iWX
+kmW
aaa
aaa
aaa
@@ -125239,17 +125221,17 @@ aaa
aaa
aaj
aaa
-oqw
+brz
abU
-pDG
+hzZ
aaa
-oqw
+brz
abU
-pDG
+hzZ
aaa
-oqw
+brz
abU
-pDG
+hzZ
aaf
aaf
aag
@@ -125288,13 +125270,13 @@ dgm
dgu
dgm
dgB
-lyX
+cQh
dgw
-utL
-utL
+iit
+iit
xjq
dgw
-sqY
+lps
dgw
dgw
dgw
@@ -133528,7 +133510,7 @@ rjC
bCD
bEg
vOd
-dlc
+jZq
bJm
bNX
bGd
@@ -133785,7 +133767,7 @@ sHt
bCD
bEh
bGd
-pJB
+aer
bKL
bNY
bGd
@@ -134042,12 +134024,12 @@ ndq
bCE
bCE
bCE
-xts
-rSp
-rSp
-rXi
+rWv
+pbg
+pbg
+fxK
slE
-pst
+sFF
bUL
aRy
bvt
@@ -134299,12 +134281,12 @@ iOf
mcw
bMQ
lWY
-fRn
+jls
npF
dsr
-tBl
-qpw
-vKV
+eEl
+ntt
+kTZ
bNZ
aRy
bvt
@@ -134556,12 +134538,12 @@ fqm
bCE
bCE
bCE
-sLA
-lCi
-lCi
-oRw
+kAi
+hTP
+hTP
+har
eId
-sHl
+cGZ
cgy
aRy
bvt
@@ -134813,7 +134795,7 @@ vAP
bCD
bEj
bGd
-pJB
+aer
bKP
bOb
bGd
@@ -135070,7 +135052,7 @@ wlg
bCD
bEg
vOd
-qJQ
+nXw
bKN
bOa
bGd
diff --git a/_maps/map_files/RadStation/RadStation.dmm b/_maps/map_files/RadStation/RadStation.dmm
index f49a1a84fc700..a6737d1a392ee 100644
--- a/_maps/map_files/RadStation/RadStation.dmm
+++ b/_maps/map_files/RadStation/RadStation.dmm
@@ -78,21 +78,6 @@
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"aaF" = (
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_y = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/light/floor{
- brightness = 15;
- bulb_colour = "#FFE4CE";
- bulb_vacuum_brightness = 15;
- nightshift_brightness = 10;
- nightshift_light_color = "#E6EBFF"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"aaI" = (
/obj/structure/table/wood,
/obj/item/flashlight/lamp/green{
@@ -168,14 +153,6 @@
},
/turf/open/floor/iron/dark,
/area/crew_quarters/dorms)
-"abq" = (
-/obj/machinery/computer/security/mining{
- dir = 1;
- name = "Ion engine camera console";
- network = list("Ion")
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"aby" = (
/obj/structure/chair/office/light,
/turf/open/floor/iron/grid/steel,
@@ -298,6 +275,17 @@
},
/turf/open/floor/iron/white,
/area/medical/chemistry)
+"acK" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"acL" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 8
@@ -393,6 +381,14 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/maintenance/port/aft)
+"afF" = (
+/obj/structure/window/reinforced,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"afH" = (
/obj/effect/turf_decal/tile/neutral/anticorner{
dir = 6
@@ -407,6 +403,14 @@
},
/turf/open/floor/iron,
/area/maintenance/department/science)
+"afN" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"afW" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -434,29 +438,6 @@
/obj/effect/turf_decal/box,
/turf/open/floor/iron/dark,
/area/medical/morgue)
-"agA" = (
-/obj/structure/railing/corner{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/machinery/camera/autoname{
- view_range = 12
- },
-/obj/effect/turf_decal/siding/wideplating/dark/corner{
- dir = 4
- },
-/obj/machinery/newscaster{
- pixel_y = 34
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/iron/dark/corner{
- dir = 4
- },
-/area/hallway/primary/central)
"agF" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -584,6 +565,12 @@
/obj/structure/chair,
/turf/open/floor/iron,
/area/science/shuttledock)
+"aix" = (
+/obj/effect/turf_decal/loading_area{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/science/robotics)
"aiC" = (
/obj/effect/landmark/start/assistant,
/obj/machinery/requests_console{
@@ -629,15 +616,61 @@
/obj/item/book/manual/wiki/sopsecurity,
/turf/open/floor/carpet/blue,
/area/crew_quarters/heads/hos)
-"ajn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
+"aje" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer4{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
+"ajt" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "Engidesk";
+ name = "engineering security door"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/northleft{
+ dir = 2;
+ name = "Engi Desk";
+ req_one_access_txt = "32;19"
+ },
+/obj/item/paper_bin{
+ pixel_x = 7;
+ pixel_y = 2
+ },
+/obj/item/pen{
+ pixel_x = 7;
+ pixel_y = 4
+ },
+/obj/structure/desk_bell{
+ pixel_x = -6
+ },
+/turf/open/floor/iron/dark,
+/area/engine/engineering)
+"ajC" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/starboard/aft)
+"ajF" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/power/apc/auto_name/south{
+ pixel_y = -24
+ },
+/obj/structure/cable/yellow,
+/obj/machinery/iv_drip,
+/turf/open/floor/iron,
+/area/security/brig/medbay)
"ajK" = (
/obj/structure/sign/departments/minsky/research/dorms,
/turf/closed/wall,
@@ -843,6 +876,13 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"aot" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/medical/morgue)
"aoz" = (
/obj/effect/turf_decal/tile/purple/half/contrasted,
/obj/machinery/disposal/bin,
@@ -928,6 +968,21 @@
},
/turf/open/floor/iron,
/area/engine/atmospherics_engine)
+"apR" = (
+/obj/effect/landmark/start/assistant,
+/obj/effect/turf_decal/siding/white{
+ dir = 6
+ },
+/turf/open/floor/glass/reinforced,
+/area/hallway/primary/central{
+ dynamic_lighting = 2;
+ lighting_brightness_tube = 11;
+ lighting_colour_bulb = "#DDE6FF";
+ lighting_colour_night = "#DDE6FF";
+ lighting_colour_tube = "#DDE6FF";
+ lighting_overlay_colour = "#DDE6FF";
+ power_light = 0
+ })
"aqc" = (
/obj/machinery/door/firedoor,
/obj/machinery/button/door{
@@ -959,10 +1014,6 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
-"aqm" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/central)
"aqv" = (
/obj/structure/chair/fancy/comfy{
buildstackamount = 0;
@@ -1027,25 +1078,6 @@
},
/turf/open/floor/engine,
/area/engine/supermatter)
-"ard" = (
-/obj/effect/turf_decal/guideline/guideline_out/brown{
- dir = 8
- },
-/obj/effect/spawner/lootdrop/glowstick/lit,
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/iron/techmaint,
-/area/maintenance/central)
"arH" = (
/obj/effect/turf_decal/delivery,
/obj/structure/curtain,
@@ -1201,35 +1233,21 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/office)
-"aty" = (
-/obj/structure/railing/corner{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
+"atF" = (
+/obj/machinery/camera/autoname{
+ dir = 8;
+ network = list("ss13","security")
},
-/obj/effect/turf_decal/siding/wideplating/dark/corner{
- dir = 8
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
},
/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/iron/dark/corner{
- dir = 8
- },
-/area/hallway/primary/central)
-"atI" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 2
+ icon_state = "1-2"
},
-/turf/open/floor/iron/dark/smooth_edge,
-/area/hallway/primary/central)
+/turf/open/floor/iron/dark,
+/area/security/brig{
+ name = "Brig Evidence"
+ })
"aue" = (
/obj/structure/sign/departments/minsky/research/dorms,
/turf/closed/wall,
@@ -1261,18 +1279,6 @@
},
/turf/open/floor/iron/dark,
/area/security/courtroom)
-"auq" = (
-/obj/structure/window/reinforced{
- dir = 4;
- layer = 2.9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"auu" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -1577,16 +1583,6 @@
},
/turf/open/space/basic,
/area/solar/port/fore)
-"azn" = (
-/obj/effect/spawner/lootdrop/glowstick,
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/bridge)
"azp" = (
/obj/item/cigbutt{
pixel_x = 9;
@@ -1626,18 +1622,6 @@
},
/turf/open/floor/iron,
/area/engine/engineering)
-"azJ" = (
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_y = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"azX" = (
/obj/effect/turf_decal/tile/dark_green/fourcorners/contrasted,
/obj/effect/turf_decal/delivery,
@@ -1658,6 +1642,17 @@
},
/turf/open/space/basic,
/area/space/nearstation)
+"aAo" = (
+/obj/structure/railing/corner,
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"aAF" = (
/obj/machinery/requests_console{
department = "Security";
@@ -1688,21 +1683,13 @@
},
/turf/open/floor/iron/dark,
/area/teleporter)
-"aAO" = (
-/obj/structure/chair/fancy/bench/right{
- dir = 8
- },
-/obj/machinery/power/apc/auto_name/south{
- pixel_y = -24
- },
+"aAP" = (
+/obj/effect/decal/cleanable/dirt/dust,
/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/structure/sign/poster/contraband/random{
- pixel_x = 32
+ icon_state = "4-8"
},
-/turf/open/floor/iron/techmaint,
-/area/security/prison/shielded)
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/medical/morgue)
"aAT" = (
/obj/machinery/power/apc/auto_name/north{
pixel_y = 24
@@ -1841,6 +1828,18 @@
/obj/structure/lattice,
/turf/open/space,
/area/space/nearstation)
+"aDQ" = (
+/obj/structure/table,
+/obj/item/book/manual/wiki/sopsecurity{
+ pixel_x = 4;
+ pixel_y = 5
+ },
+/obj/item/toy/plush/nukeplushie{
+ pixel_x = -3;
+ pixel_y = -9
+ },
+/turf/open/floor/wood,
+/area/security/prison)
"aDR" = (
/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -1856,10 +1855,41 @@
/area/security/prison{
name = "Prison Visitation"
})
+"aDX" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/mob/living/simple_animal/butterfly{
+ name = "Lisa, PsyD"
+ },
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/turf/open/floor/grass/no_border,
+/area/medical/sleeper)
"aEE" = (
/obj/machinery/smartfridge/chemistry,
/turf/closed/wall,
/area/medical/apothecary)
+"aEF" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ alpha = 180
+ },
+/obj/structure/closet/secure_closet/engineering_personal,
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/iron,
+/area/engine/storage)
"aEI" = (
/obj/machinery/door/airlock/maintenance_hatch{
id_tag = "commissarydoor2";
@@ -1915,6 +1945,19 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"aEU" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/machinery/vending/snack/orange,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"aEY" = (
/obj/effect/spawner/room/threexthree,
/turf/open/floor/plating,
@@ -1953,6 +1996,21 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"aGj" = (
+/obj/effect/turf_decal/guideline/guideline_in/green{
+ color = "#439C1E"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/dark_green/half{
+ dir = 8
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
"aGl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -1968,6 +2026,22 @@
/area/security/main{
name = "Security Break Room"
})
+"aGz" = (
+/obj/effect/turf_decal/guideline/guideline_out/brown{
+ dir = 1
+ },
+/obj/effect/landmark/xeno_spawn,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/techmaint,
+/area/hallway/secondary/service)
"aGA" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/splatter,
@@ -2048,6 +2122,30 @@
dir = 1
},
/area/science/research)
+"aIv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/machinery/conveyor_switch/oneway{
+ dir = 8;
+ id = "garbage";
+ name = "disposal conveyor"
+ },
+/obj/machinery/door/window/southleft{
+ dir = 1;
+ icon_state = "right";
+ id_tag = "Bountydoors";
+ req_access_txt = null;
+ req_one_access_txt = "31;48;26"
+ },
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal)
"aIw" = (
/turf/open/floor/iron/dark,
/area/bridge/meeting_room)
@@ -2223,6 +2321,27 @@
},
/turf/open/floor/iron/dark,
/area/teleporter)
+"aKM" = (
+/obj/effect/landmark/start/randommaint/vip,
+/obj/effect/landmark/observer_start,
+/obj/machinery/holopad{
+ pixel_x = 16;
+ pixel_y = 16
+ },
+/obj/item/beacon{
+ pixel_x = 16;
+ pixel_y = 19
+ },
+/turf/open/floor/glass/reinforced,
+/area/hallway/primary/central{
+ dynamic_lighting = 2;
+ lighting_brightness_tube = 11;
+ lighting_colour_bulb = "#DDE6FF";
+ lighting_colour_night = "#DDE6FF";
+ lighting_colour_tube = "#DDE6FF";
+ lighting_overlay_colour = "#DDE6FF";
+ power_light = 0
+ })
"aKQ" = (
/obj/structure/closet/emcloset/anchored,
/obj/machinery/advanced_airlock_controller{
@@ -2230,17 +2349,12 @@
},
/turf/open/floor/plating,
/area/engine/engine_room)
-"aLk" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/obj/machinery/power/apc/auto_name/south{
- pixel_y = -24
- },
-/obj/structure/cable/yellow,
-/obj/machinery/iv_drip,
-/turf/open/floor/iron,
-/area/security/brig/medbay)
+"aLa" = (
+/obj/structure/window/reinforced,
+/obj/structure/closet/firecloset/full,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"aLm" = (
/obj/effect/turf_decal/siding/wood{
dir = 5
@@ -2471,6 +2585,18 @@
},
/turf/open/floor/iron/tech,
/area/engine/engine_room)
+"aPb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/aft)
"aPp" = (
/obj/structure/bookcase/manuals/medical,
/turf/open/floor/plating,
@@ -2611,6 +2737,19 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/science/storage)
+"aRU" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_y = 1
+ },
+/obj/structure/closet/firecloset/full,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"aSr" = (
/obj/machinery/door/airlock/maintenance_hatch{
id_tag = "commissarydoor";
@@ -2676,6 +2815,9 @@
},
/turf/open/floor/prison,
/area/security/prison)
+"aTe" = (
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal)
"aTs" = (
/obj/machinery/door/airlock/security{
aiControlDisabled = 1;
@@ -2828,6 +2970,13 @@
/obj/effect/turf_decal/guideline/guideline_in/purple,
/turf/open/floor/iron,
/area/science/shuttledock)
+"aUk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/structure/railing/corner,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"aUt" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -2954,6 +3103,17 @@
initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
},
/area/tcommsat/computer)
+"aWv" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/guideline/guideline_edge/blue{
+ dir = 4
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 8
+ },
+/area/medical/surgery)
"aWC" = (
/obj/machinery/atmospherics/components/binary/pump{
name = "Mix to Ports"
@@ -3025,19 +3185,6 @@
},
/turf/open/floor/iron/dark,
/area/engine/atmos)
-"aXE" = (
-/obj/structure/window/reinforced{
- dir = 4;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/machinery/vending/snack/orange,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"aXO" = (
/obj/machinery/atmospherics/pipe/simple/dark/visible{
dir = 4
@@ -3052,6 +3199,18 @@
/obj/structure/chair/wood/normal,
/turf/open/floor/wood,
/area/crew_quarters/theatre)
+"aYq" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"aYr" = (
/obj/structure/sign/poster/random,
/turf/closed/wall,
@@ -3084,18 +3243,21 @@
/turf/open/floor/iron,
/area/science/misc_lab)
"aYW" = (
-/obj/structure/bed/double/maint,
-/obj/effect/landmark/start/randommaint/backalley_doc,
-/obj/item/paper/crumpled/bloody/docsdeathnote{
- pixel_x = 5;
- pixel_y = -1
+/obj/effect/turf_decal/guideline/guideline_in/blue{
+ dir = 8
},
-/obj/item/toy/plush/runtime{
- pixel_x = -8;
- pixel_y = 4
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue/half{
+ dir = 1
+ },
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
"aZg" = (
/turf/closed/wall,
/area/science/research)
@@ -3145,6 +3307,18 @@
/obj/item/storage/fancy/donut_box,
/turf/open/floor/iron,
/area/ai_monitored/security/armory)
+"aZY" = (
+/obj/structure/railing{
+ layer = 3.1
+ },
+/obj/structure/chair/fancy/comfy{
+ buildstackamount = 0;
+ color = "#742925";
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wideplating/dark,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"bad" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -3323,15 +3497,26 @@
},
/turf/open/floor/iron/white,
/area/science/xenobiology)
-"bcH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+"bdw" = (
+/obj/structure/window/reinforced{
+ dir = 4
},
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/aft)
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/fernybush,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "hopqueue";
+ name = "HoP Queue Shutters"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/grass/no_border,
+/area/crew_quarters/heads/hop)
"bdB" = (
/obj/effect/turf_decal/loading_area{
dir = 8
@@ -3403,19 +3588,6 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/bridge)
-"bfa" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/mob/living/basic/cockroach,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/central)
"bfm" = (
/obj/effect/turf_decal/delivery,
/obj/item/radio/intercom{
@@ -3423,6 +3595,19 @@
},
/turf/open/floor/iron/dark,
/area/engine/atmos)
+"bfC" = (
+/obj/structure/bed/double/maint,
+/obj/effect/landmark/start/randommaint/backalley_doc,
+/obj/item/paper/crumpled/bloody/docsdeathnote{
+ pixel_x = 5;
+ pixel_y = -1
+ },
+/obj/item/toy/plush/runtime{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
"bfF" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -3546,13 +3731,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/tech,
/area/engine/engine_room)
-"bha" = (
-/obj/structure/grille,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/medical/morgue)
"bhc" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 4
@@ -3599,6 +3777,20 @@
/obj/structure/lattice,
/turf/open/space/basic,
/area/space/nearstation)
+"bhS" = (
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
"bia" = (
/obj/effect/turf_decal/bot,
/obj/structure/disposalpipe/trunk{
@@ -3685,14 +3877,6 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security)
-"blg" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/starboard/aft)
"blm" = (
/obj/effect/turf_decal/tile/brown/half/contrasted{
dir = 1
@@ -3770,6 +3954,18 @@
/obj/effect/mapping_helpers/airlock/abandoned,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"blM" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 4
+ },
+/area/hallway/primary/central)
"blP" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -3838,6 +4034,10 @@
/obj/effect/spawner/lootdrop/glowstick/lit,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"bnk" = (
+/obj/structure/closet/crate/coffin,
+/turf/open/floor/carpet/purple,
+/area/chapel/main)
"bnm" = (
/obj/structure/chair/fancy/shuttle{
dir = 4
@@ -3916,22 +4116,6 @@
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/iron,
/area/maintenance/department/medical)
-"boy" = (
-/obj/effect/turf_decal/guideline/guideline_out_arrow/brown{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/mob/living/basic/cockroach,
-/turf/open/floor/iron/techmaint,
-/area/hallway/secondary/service)
"boR" = (
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/engine,
@@ -3962,6 +4146,22 @@
},
/turf/open/floor/iron,
/area/janitor)
+"bpr" = (
+/obj/effect/turf_decal/guideline/guideline_out_arrow/brown{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/oil/streak,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/techmaint,
+/area/hallway/secondary/service)
"bpQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 5
@@ -3973,6 +4173,19 @@
dir = 1
},
/area/hallway/primary/central)
+"bpZ" = (
+/obj/effect/landmark/start/assistant,
+/obj/effect/turf_decal/siding/white,
+/turf/open/floor/glass/reinforced,
+/area/hallway/primary/central{
+ dynamic_lighting = 2;
+ lighting_brightness_tube = 11;
+ lighting_colour_bulb = "#DDE6FF";
+ lighting_colour_night = "#DDE6FF";
+ lighting_colour_tube = "#DDE6FF";
+ lighting_overlay_colour = "#DDE6FF";
+ power_light = 0
+ })
"bqh" = (
/obj/machinery/button/door{
id = "meetingshutter";
@@ -4056,23 +4269,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"bra" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
-/obj/structure/disposalpipe/junction{
- dir = 8
- },
-/obj/effect/turf_decal/guideline/guideline_in/green{
- color = "#439C1E"
- },
-/obj/effect/turf_decal/tile/dark_green/half{
- dir = 8
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
"brc" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -4104,21 +4300,6 @@
},
/turf/open/floor/iron,
/area/vacant_room/commissary/commissary2)
-"brn" = (
-/obj/structure/railing/corner{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"brq" = (
/obj/machinery/processor,
/turf/open/floor/iron/cafeteria,
@@ -4171,14 +4352,20 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/storage)
-"bsl" = (
-/obj/machinery/door/window/brigdoor/security/cell/eastleft{
- id = "cell";
- name = "Solitary Confinement";
- req_one_access_txt = "2"
+"bss" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1
},
-/turf/open/floor/iron/dark,
-/area/security/prison/shielded)
+/obj/effect/turf_decal/guideline/guideline_in/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/yellow/half,
+/obj/effect/turf_decal/tile/yellow/half,
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
"bsA" = (
/obj/effect/turf_decal/guideline/guideline_edge/red{
dir = 1
@@ -4326,6 +4513,31 @@
},
/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/ai_upload)
+"buN" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer2{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"buP" = (
/obj/machinery/computer/card/minor/hos{
dir = 4
@@ -4364,18 +4576,6 @@
/obj/effect/turf_decal/stripes/closeup,
/turf/open/floor/iron,
/area/security/warden)
-"bvz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/starboard/aft)
"bvB" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -4506,6 +4706,25 @@
"byb" = (
/turf/closed/wall,
/area/crew_quarters/heads/hor)
+"byj" = (
+/obj/effect/turf_decal/guideline/guideline_out/brown{
+ dir = 8
+ },
+/obj/effect/spawner/lootdrop/glowstick/lit,
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/iron/techmaint,
+/area/maintenance/central)
"byu" = (
/obj/machinery/light/small,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -4516,6 +4735,14 @@
},
/turf/open/floor/iron/dark,
/area/security/prison/shielded)
+"byG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/starboard/aft)
"bzb" = (
/turf/open/floor/iron/dark,
/area/security/prison{
@@ -4571,10 +4798,6 @@
"bzO" = (
/turf/closed/wall,
/area/vacant_room/commissary/commissary2)
-"bAe" = (
-/obj/machinery/light,
-/turf/open/floor/iron/dark,
-/area/chapel/office)
"bAj" = (
/turf/closed/wall/r_wall,
/area/security/execution/education)
@@ -4708,23 +4931,6 @@
},
/turf/open/floor/iron,
/area/medical/sleeper)
-"bCx" = (
-/obj/effect/turf_decal/tile/yellow/half/contrasted{
- alpha = 180
- },
-/obj/effect/turf_decal/bot,
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/machinery/airalarm/directional/east,
-/obj/structure/closet/secure_closet/engineering_personal,
-/obj/item/clothing/gloves/color/yellow,
-/turf/open/floor/iron,
-/area/engine/storage)
"bCz" = (
/obj/structure/flora/ausbushes/lavendergrass,
/mob/living/simple_animal/chicken{
@@ -4744,16 +4950,6 @@
},
/turf/open/floor/iron/sepia,
/area/quartermaster/office)
-"bDq" = (
-/obj/machinery/firealarm/directional/south,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/turf/open/floor/iron/dark,
-/area/chapel/office)
"bDs" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/obj/structure/closet/secure_closet/warden{
@@ -4774,14 +4970,6 @@
/obj/effect/landmark/start/cyborg,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat/foyer)
-"bDH" = (
-/obj/structure/window/reinforced,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"bDJ" = (
/obj/structure/disposalpipe/segment{
dir = 2
@@ -4840,6 +5028,15 @@
/obj/effect/spawner/structure/window/plasma/reinforced,
/turf/open/floor/plating,
/area/engine/engine_room)
+"bEj" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_y = 1
+ },
+/obj/machinery/vending/coffee,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"bEk" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -4906,6 +5103,19 @@
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
/area/hallway/primary/central)
+"bHa" = (
+/obj/machinery/stasis{
+ dir = 1
+ },
+/obj/machinery/camera/autoname{
+ dir = 5;
+ network = list("ss13","security")
+ },
+/obj/machinery/defibrillator_mount{
+ pixel_x = -32
+ },
+/turf/open/floor/iron/white,
+/area/security/brig/medbay)
"bHb" = (
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -5013,15 +5223,6 @@
/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/quartermaster/storage)
-"bIz" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/security)
"bIG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -5231,6 +5432,10 @@
},
/turf/open/floor/wood,
/area/maintenance/central)
+"bLD" = (
+/obj/machinery/vendor/exploration,
+/turf/open/floor/iron/dark,
+/area/quartermaster/exploration_prep)
"bLS" = (
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -5265,6 +5470,16 @@
/area/security/main{
name = "Security Viewing Hall"
})
+"bMq" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"bMv" = (
/obj/machinery/camera{
c_tag = "Medbay - Break Room";
@@ -5281,15 +5496,6 @@
/obj/machinery/firealarm/directional/east,
/turf/open/floor/iron,
/area/medical/break_room)
-"bMC" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/open/floor/grass/no_border,
-/area/hallway/secondary/exit/departure_lounge)
"bME" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -5315,6 +5521,16 @@
},
/turf/open/floor/iron/white,
/area/medical/office)
+"bNd" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Maintenance Hatch";
+ req_one_access_txt = "12;31"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/port/central)
"bNo" = (
/obj/effect/turf_decal/tile/neutral,
/obj/effect/turf_decal/guideline/guideline_edge_alt/red{
@@ -5340,6 +5556,17 @@
/obj/structure/girder,
/turf/open/floor/iron,
/area/maintenance/department/security)
+"bNC" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=5-WHall";
+ location = "4-CenterNW"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"bNL" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -5354,6 +5581,15 @@
},
/turf/open/floor/iron/cafeteria,
/area/maintenance/port/aft)
+"bOb" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"bOe" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 8
@@ -5380,6 +5616,18 @@
},
/turf/open/floor/carpet/royalblue,
/area/crew_quarters/heads/captain)
+"bOn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/starboard/aft)
"bOq" = (
/obj/effect/turf_decal/tile/neutral{
dir = 8
@@ -5400,22 +5648,17 @@
dir = 8
},
/area/medical/sleeper)
-"bOF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/aft)
"bOH" = (
/obj/effect/decal/cleanable/oil,
/turf/open/floor/plating,
/area/maintenance/department/engine)
+"bPn" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"bPo" = (
/obj/structure/sign/departments/minsky/research/dorms,
/turf/closed/wall,
@@ -5473,6 +5716,21 @@
/obj/structure/sign/poster/random,
/turf/closed/wall,
/area/security/brig/medbay)
+"bQz" = (
+/obj/effect/landmark/start/assistant,
+/obj/effect/turf_decal/siding/white{
+ dir = 5
+ },
+/turf/open/floor/glass/reinforced,
+/area/hallway/primary/central{
+ dynamic_lighting = 2;
+ lighting_brightness_tube = 11;
+ lighting_colour_bulb = "#DDE6FF";
+ lighting_colour_night = "#DDE6FF";
+ lighting_colour_tube = "#DDE6FF";
+ lighting_overlay_colour = "#DDE6FF";
+ power_light = 0
+ })
"bQA" = (
/obj/structure/disposalpipe/segment{
dir = 8
@@ -5529,6 +5787,9 @@
/obj/item/pipe_dispenser,
/turf/open/floor/iron,
/area/engine/engine_room)
+"bQU" = (
+/turf/open/floor/glass/reinforced,
+/area/chapel/main)
"bRf" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
@@ -5682,24 +5943,21 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
-"bTL" = (
-/obj/structure/cable{
- icon_state = "0-4"
+"bTD" = (
+/obj/structure/railing{
+ dir = 8
},
-/obj/machinery/power/solar{
- id = "portsolar";
- name = "Port Solar Array"
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 8
},
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/port/fore)
-"bTR" = (
-/obj/item/kirbyplants/random,
-/obj/structure/window/reinforced{
- dir = 8;
- layer = 3
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
},
-/turf/open/floor/circuit/green/telecomms/mainframe,
-/area/quartermaster/exploration_prep)
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"bUn" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/light{
@@ -5752,6 +6010,13 @@
},
/turf/open/floor/engine/co2,
/area/engine/atmos)
+"bUN" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"bUQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -5923,6 +6188,15 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/hallway/primary/starboard)
+"bZr" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 4
+ },
+/area/hallway/primary/central)
"bZA" = (
/obj/effect/turf_decal/tile/dark_green/half/contrasted{
dir = 8
@@ -5994,19 +6268,6 @@
},
/turf/open/floor/iron/white,
/area/medical/apothecary)
-"bZJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/effect/turf_decal/guideline/guideline_in/yellow{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/yellow/half,
-/obj/effect/turf_decal/tile/yellow/half,
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
"bZU" = (
/obj/effect/turf_decal/guideline/guideline_edge/neutral{
alpha = 255;
@@ -6028,19 +6289,6 @@
},
/turf/open/floor/wood,
/area/security/prison)
-"caI" = (
-/obj/structure/sign/warning/radiation_shelter{
- pixel_x = 1;
- pixel_y = 32
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/engine/engine_room)
"caP" = (
/obj/machinery/door/window/brigdoor{
dir = 8;
@@ -6065,6 +6313,24 @@
"cbf" = (
/turf/open/floor/iron/dark,
/area/quartermaster/miningdock)
+"cbi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/guideline/guideline_in/green{
+ color = "#439C1E"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/dark_green/half{
+ dir = 8
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
"cbk" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
@@ -6095,6 +6361,36 @@
"cbX" = (
/turf/closed/wall,
/area/crew_quarters/heads/hos)
+"ccp" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_y = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
+"ccs" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_y = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/machinery/light/floor{
+ brightness = 15;
+ bulb_colour = "#FFE4CE";
+ bulb_vacuum_brightness = 15;
+ nightshift_brightness = 10;
+ nightshift_light_color = "#E6EBFF"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"ccv" = (
/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
alpha = 180
@@ -6146,6 +6442,19 @@
},
/turf/open/floor/engine,
/area/science/xenobiology)
+"cdb" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"cdn" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 4
@@ -6158,6 +6467,16 @@
},
/turf/open/floor/iron/dark/side,
/area/hallway/secondary/exit/departure_lounge)
+"cdw" = (
+/obj/structure/railing,
+/obj/effect/turf_decal/siding/wideplating/dark,
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 1
+ },
+/area/hallway/primary/central)
"cdH" = (
/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted,
/obj/effect/decal/cleanable/dirt,
@@ -6198,6 +6517,14 @@
},
/turf/open/floor/plating,
/area/ai_monitored/storage/satellite)
+"ceE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"ceM" = (
/obj/structure/disposalpipe/segment{
dir = 2
@@ -6340,15 +6667,6 @@
},
/turf/open/floor/iron/dark,
/area/security/detectives_office)
-"cfT" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 9
- },
-/turf/open/floor/iron,
-/area/quartermaster/exploration_prep)
"cgb" = (
/obj/structure/disposalpipe/segment{
dir = 2
@@ -6522,20 +6840,22 @@
/obj/machinery/firealarm/directional/north,
/turf/open/floor/wood,
/area/crew_quarters/theatre/backstage)
+"cir" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_y = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"ciA" = (
/obj/item/stack/medical/gauze,
/obj/structure/rack,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"ciQ" = (
-/obj/effect/turf_decal/guideline/guideline_in/yellow{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/tile/yellow/half,
-/obj/effect/turf_decal/tile/yellow/half,
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
"ciT" = (
/obj/structure/sign/departments/minsky/security/security,
/turf/closed/wall/r_wall,
@@ -6582,19 +6902,6 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/engine,
/area/science/xenobiology)
-"ckg" = (
-/obj/effect/landmark/start/assistant,
-/obj/effect/turf_decal/siding/white,
-/turf/open/floor/glass/reinforced,
-/area/hallway/primary/central{
- dynamic_lighting = 2;
- lighting_brightness_tube = 11;
- lighting_colour_bulb = "#DDE6FF";
- lighting_colour_night = "#DDE6FF";
- lighting_colour_tube = "#DDE6FF";
- lighting_overlay_colour = "#DDE6FF";
- power_light = 0
- })
"ckl" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -6664,26 +6971,18 @@
},
/turf/open/floor/plating,
/area/construction/mining/aux_base)
-"ckP" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
+"ckQ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/xeno_spawn,
+/obj/item/paper/crumpled/bloody/docsdeathnote{
+ default_raw_text = "They tried to take it from us... our precious...";
+ pixel_x = -7;
+ pixel_y = 5
},
-/obj/effect/turf_decal/box,
-/mob/living/simple_animal/sloth/citrus{
- density = 0
+/turf/open/floor/plating{
+ burnt = 1
},
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/quartermaster/storage)
+/area/maintenance/department/medical)
"clj" = (
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -6801,6 +7100,15 @@
/area/security/prison{
name = "Prison Processing"
})
+"cmP" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/open/floor/grass/no_border,
+/area/hallway/secondary/exit/departure_lounge)
"cnr" = (
/obj/machinery/airalarm/directional/west,
/obj/machinery/computer/slot_machine,
@@ -6809,18 +7117,6 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/cafeteria)
-"cnK" = (
-/obj/structure/chair/fancy/comfy{
- buildstackamount = 0;
- color = "#742925";
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_y = 1
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"cnM" = (
/obj/effect/turf_decal/tile/brown/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -6909,6 +7205,20 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron/white,
/area/medical/chemistry)
+"coE" = (
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
"coF" = (
/obj/machinery/reagentgrinder,
/obj/structure/table,
@@ -7089,22 +7399,6 @@
/area/security/brig{
name = "Brig Evidence"
})
-"crF" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 28
- },
-/obj/structure/table/glass,
-/obj/item/circular_saw,
-/obj/item/blood_filter{
- pixel_x = -1;
- pixel_y = 5
- },
-/obj/item/hemostat,
-/obj/item/scalpel{
- pixel_y = 12
- },
-/turf/open/floor/iron,
-/area/medical/surgery)
"crW" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -7125,6 +7419,24 @@
},
/turf/closed/wall/r_wall,
/area/engine/atmos)
+"csJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/quartermaster/storage)
"csW" = (
/obj/machinery/conveyor{
dir = 8;
@@ -7169,6 +7481,19 @@
},
/turf/closed/wall/r_wall,
/area/security/warden)
+"ctf" = (
+/obj/effect/turf_decal/guideline/guideline_in/brown,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown/half{
+ dir = 8
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
"cti" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -7362,12 +7687,6 @@
},
/turf/open/floor/iron,
/area/security/brig)
-"cuU" = (
-/obj/structure/railing/corner{
- dir = 8
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"cve" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 6
@@ -7404,19 +7723,6 @@
},
/turf/open/floor/plating,
/area/hydroponics)
-"cvt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/railing/corner{
- dir = 4
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"cvC" = (
/turf/closed/wall,
/area/medical/sleeper)
@@ -7453,6 +7759,12 @@
},
/turf/open/floor/iron,
/area/engine/engine_room)
+"cwz" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/chapel/main)
"cwJ" = (
/obj/machinery/door/airlock/grunge{
name = "Chapel Morgue";
@@ -7647,22 +7959,6 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/lobby)
-"cyb" = (
-/obj/effect/turf_decal/guideline/guideline_in/blue{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue/half{
- dir = 1
- },
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
"cyy" = (
/turf/closed/wall,
/area/security/main{
@@ -7850,19 +8146,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/cafeteria)
-"cBO" = (
-/obj/effect/turf_decal/guideline/guideline_in/blue{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/blue/half{
- dir = 1
- },
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
"cCl" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -7899,20 +8182,6 @@
"cCS" = (
/turf/open/floor/plating,
/area/maintenance/department/science)
-"cDk" = (
-/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{
- alpha = 180
- },
-/obj/structure/chair/fancy/corp{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/item/toy/plush/slimeplushie/red{
- pixel_x = 2;
- pixel_y = 1
- },
-/turf/open/floor/iron/dark,
-/area/ai_monitored/turret_protected/aisat/foyer)
"cDx" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -8043,12 +8312,6 @@
},
/turf/open/floor/iron/dark,
/area/storage/tech)
-"cFx" = (
-/obj/structure/railing/corner{
- dir = 4
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"cFD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 5
@@ -8138,16 +8401,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/kitchen/coldroom)
-"cHR" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/bridge)
"cHW" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -8240,6 +8493,12 @@
},
/turf/open/floor/plating,
/area/maintenance/department/engine)
+"cIB" = (
+/obj/effect/turf_decal/siding/wideplating/dark/corner{
+ dir = 1
+ },
+/turf/open/floor/glass/reinforced,
+/area/chapel/main)
"cIF" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/northleft{
@@ -8286,6 +8545,33 @@
},
/turf/open/floor/iron,
/area/hallway/primary/starboard)
+"cIY" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/button/door{
+ id = "evashutter";
+ name = "EVA Shutter Control";
+ pixel_x = 6;
+ pixel_y = -25;
+ req_access_txt = "18"
+ },
+/obj/machinery/door/airlock/command{
+ name = "EVA Storage";
+ req_access_txt = "18"
+ },
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/dark,
+/area/ai_monitored/storage/eva)
"cJi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -8404,18 +8690,6 @@
"cKB" = (
/turf/closed/wall,
/area/medical/apothecary)
-"cKR" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/starboard/aft)
"cLj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -8497,21 +8771,6 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"cMl" = (
-/obj/effect/landmark/start/assistant,
-/obj/effect/turf_decal/siding/white{
- dir = 10
- },
-/turf/open/floor/glass/reinforced,
-/area/hallway/primary/central{
- dynamic_lighting = 2;
- lighting_brightness_tube = 11;
- lighting_colour_bulb = "#DDE6FF";
- lighting_colour_night = "#DDE6FF";
- lighting_colour_tube = "#DDE6FF";
- lighting_overlay_colour = "#DDE6FF";
- power_light = 0
- })
"cME" = (
/obj/structure/table/reinforced,
/obj/effect/turf_decal/stripes{
@@ -8588,25 +8847,9 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/escape)
-"cMV" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/medical/morgue)
"cMW" = (
/turf/closed/wall,
/area/quartermaster/exploration_prep)
-"cMZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/obj/structure/railing/corner{
- dir = 1
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"cNj" = (
/obj/machinery/atmospherics/pipe/simple/orange/visible{
dir = 4
@@ -8670,12 +8913,36 @@
/obj/effect/landmark/start/assistant,
/turf/open/floor/iron/cafeteria_red,
/area/crew_quarters/cafeteria)
+"cOc" = (
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"cOp" = (
/obj/structure/chair/fancy/sofa/old/left,
/turf/open/floor/wood{
icon_state = "wood-broken5"
},
/area/maintenance/central)
+"cOv" = (
+/obj/structure/railing{
+ dir = 9
+ },
+/obj/machinery/vending/custom,
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 9
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"cOA" = (
/turf/closed/wall/rust,
/area/maintenance/port/central)
@@ -8685,6 +8952,25 @@
},
/turf/closed/wall,
/area/hydroponics)
+"cOJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"cOL" = (
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -8902,26 +9188,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/tcommsat/computer)
-"cTa" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
-"cTh" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/kirbyplants/random,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/glass/reinforced,
-/area/crew_quarters/cafeteria)
"cTn" = (
/obj/structure/sign/barsign,
/turf/closed/wall,
@@ -8941,6 +9207,17 @@
"cUa" = (
/turf/closed/wall,
/area/security/brig)
+"cUk" = (
+/obj/machinery/camera/autoname{
+ dir = 8;
+ network = list("ss13","cargo")
+ },
+/obj/machinery/firealarm/directional/east,
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal)
"cUq" = (
/obj/structure/table/wood,
/obj/item/kirbyplants/random{
@@ -9105,18 +9382,18 @@
/obj/machinery/airalarm/directional/north,
/turf/open/floor/iron/tech,
/area/engine/engine_room)
-"cXM" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+"cXL" = (
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/structure/disposalpipe/segment{
- dir = 2
+/obj/structure/window/reinforced{
+ dir = 4
},
-/turf/open/floor/iron/white,
-/area/science/research)
+/obj/structure/window/reinforced,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/item/kirbyplants/random,
+/turf/open/floor/grass/no_border,
+/area/hallway/secondary/exit/departure_lounge)
"cXU" = (
/obj/structure/disposalpipe/segment{
dir = 5
@@ -9217,13 +9494,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/starboard)
-"cZj" = (
-/obj/machinery/door/airlock/grunge{
- name = "Morgue";
- req_access_txt = "6"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/department/medical/morgue)
"cZo" = (
/obj/machinery/door/window/eastright{
base_state = "left";
@@ -9258,6 +9528,19 @@
/obj/structure/closet/emcloset,
/turf/open/floor/plating,
/area/maintenance/port/central)
+"day" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{
+ alpha = 180
+ },
+/obj/structure/chair/fancy/corp{
+ dir = 8
+ },
+/obj/item/toy/plush/slimeplushie/blue{
+ pixel_x = -3
+ },
+/turf/open/floor/iron/dark,
+/area/ai_monitored/turret_protected/aisat/foyer)
"dbc" = (
/obj/structure/disposalpipe/segment{
dir = 8
@@ -9291,21 +9574,25 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating,
/area/maintenance/port/aft)
-"dbo" = (
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 1
+"dbq" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
},
-/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
- alpha = 180;
- color = "#DE3A3A"
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
},
-/obj/structure/disposalpipe/sorting/mail{
- sortType = 30
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/radio/intercom{
+ pixel_y = 22
},
/turf/open/floor/iron,
-/area/security/main{
- name = "Security Viewing Hall"
- })
+/area/engine/engine_room)
+"dbA" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal)
"dbB" = (
/obj/structure/dresser,
/obj/item/bikehorn{
@@ -9351,6 +9638,26 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/security/courtroom)
+"dbO" = (
+/obj/structure/table/reinforced,
+/obj/item/gun/energy/e_gun{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/item/gun/energy/e_gun{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/machinery/door/window/brigdoor/westleft{
+ name = "energy guns";
+ req_access_txt = "3"
+ },
+/obj/structure/window/reinforced,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/ai_monitored/security/armory)
"dbP" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted{
alpha = 200;
@@ -9419,10 +9726,24 @@
},
/turf/open/floor/iron/dark,
/area/crew_quarters/bar)
-"dcu" = (
-/obj/effect/decal/cleanable/dirt,
+"dch" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ alpha = 180
+ },
+/obj/structure/closet/secure_closet/engineering_personal,
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
+ },
+/obj/item/storage/fancy/candle_box{
+ name = "Ignis' candle pack";
+ pixel_x = -2;
+ pixel_y = 8
+ },
/turf/open/floor/iron,
-/area/science/robotics)
+/area/engine/storage)
"dcw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 6
@@ -9481,6 +9802,18 @@
},
/turf/open/floor/plating,
/area/quartermaster/qm)
+"dcX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Maintenance Hatch";
+ req_one_access_txt = "12;63"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/department/security)
"ddl" = (
/obj/effect/landmark/start/cook,
/turf/open/floor/iron/cafeteria,
@@ -9494,6 +9827,14 @@
},
/turf/open/floor/plating,
/area/maintenance/disposal)
+"ddt" = (
+/obj/item/kirbyplants/random,
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 3
+ },
+/turf/open/floor/circuit/green/telecomms/mainframe,
+/area/quartermaster/exploration_prep)
"ddL" = (
/obj/effect/turf_decal/tile/yellow/half/contrasted{
alpha = 180;
@@ -9622,11 +9963,6 @@
/obj/structure/sign/poster/random,
/turf/closed/wall,
/area/hallway/secondary/exit/departure_lounge)
-"dfy" = (
-/turf/open/floor/iron/stairs/medium{
- dir = 1
- },
-/area/hallway/primary/central)
"dfI" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -9639,22 +9975,22 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/engine,
/area/engine/atmos)
-"dfX" = (
-/turf/open/space/basic,
-/area/space/nearstation)
-"dga" = (
-/obj/effect/turf_decal/guideline/guideline_in/brown,
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
+"dfU" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/effect/turf_decal/tile/brown/half{
- dir = 8
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
},
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 32
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/iron,
+/area/engine/engine_room)
+"dfX" = (
+/turf/open/space/basic,
+/area/space/nearstation)
"dgg" = (
/obj/structure/sign/poster/random,
/turf/closed/wall/r_wall,
@@ -9701,6 +10037,22 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"dhg" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/obj/effect/turf_decal/guideline/guideline_edge/red{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/machinery/camera/autoname{
+ dir = 4;
+ network = list("ss13","security")
+ },
+/turf/open/floor/iron,
+/area/security/brig)
"dhn" = (
/obj/structure/chair/fancy/bench/pew/right{
dir = 1
@@ -9739,6 +10091,21 @@
/obj/effect/turf_decal/bot_white,
/turf/open/floor/prison,
/area/security/prison)
+"dhX" = (
+/obj/effect/turf_decal/guideline/guideline_out/brown{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/techmaint,
+/area/hallway/secondary/service)
"dhY" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/structure/frame/machine,
@@ -10108,17 +10475,6 @@
/obj/effect/decal/cleanable/oil,
/turf/open/floor/iron/sepia,
/area/quartermaster/storage)
-"dmU" = (
-/obj/effect/turf_decal/tile/yellow/half/contrasted{
- alpha = 180
- },
-/obj/structure/closet/secure_closet/engineering_personal,
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/item/clothing/gloves/color/yellow,
-/turf/open/floor/iron,
-/area/engine/storage)
"dno" = (
/obj/effect/turf_decal/tile/yellow{
dir = 8
@@ -10134,31 +10490,13 @@
},
/turf/open/floor/iron/dark,
/area/storage/primary)
-"dnF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/starboard/aft)
-"dnH" = (
+"dob" = (
+/obj/effect/decal/cleanable/generic,
/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/effect/decal/cleanable/blood/old,
-/obj/structure/disposalpipe/segment{
- dir = 6
+ icon_state = "1-4"
},
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"doe" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/preopen{
@@ -10231,21 +10569,6 @@
/area/security/brig{
name = "Brig Interrogation"
})
-"dqc" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/aft)
"dqd" = (
/obj/machinery/button/door{
id = "cmoprivacy";
@@ -10285,25 +10608,6 @@
},
/turf/open/floor/iron,
/area/medical/sleeper)
-"dqt" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer4{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"dqx" = (
/obj/effect/turf_decal/guideline/guideline_edge/red{
dir = 1
@@ -10323,6 +10627,20 @@
},
/turf/open/floor/plating,
/area/security/checkpoint/auxiliary)
+"dqO" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"dqV" = (
/obj/item/storage/secure/safe{
pixel_x = 37;
@@ -10355,6 +10673,20 @@
"drp" = (
/turf/closed/wall,
/area/engine/atmos)
+"drx" = (
+/obj/structure/railing,
+/obj/machinery/light/floor{
+ brightness = 15;
+ bulb_colour = "#FFE4CE";
+ bulb_vacuum_brightness = 15;
+ nightshift_brightness = 10;
+ nightshift_light_color = "#E6EBFF"
+ },
+/obj/effect/turf_decal/siding/wideplating/dark,
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 1
+ },
+/area/hallway/primary/central)
"drI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -10386,6 +10718,21 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"dsd" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_y = 1
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/light/floor{
+ brightness = 15;
+ bulb_colour = "#FFE4CE";
+ bulb_vacuum_brightness = 15;
+ nightshift_brightness = 10;
+ nightshift_light_color = "#E6EBFF"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"dst" = (
/obj/machinery/status_display/evac,
/turf/closed/wall,
@@ -10658,6 +11005,16 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/medical/sleeper)
+"dwv" = (
+/obj/machinery/firealarm/directional/south,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/turf/open/floor/iron/dark,
+/area/chapel/office)
"dwF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/structure/cable/yellow{
@@ -10684,20 +11041,6 @@
},
/turf/open/floor/iron/dark,
/area/science/nanite)
-"dwP" = (
-/obj/effect/turf_decal/tile/neutral/half,
-/obj/machinery/camera/autoname{
- dir = 8
- },
-/obj/machinery/light_switch{
- pixel_x = -20;
- pixel_y = -21
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/turf/open/floor/iron/dark,
-/area/chapel/office)
"dwT" = (
/obj/machinery/computer/security/hos{
dir = 8
@@ -10712,6 +11055,20 @@
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"dwW" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Disposal Access";
+ req_one_access_txt = "31;48;26"
+ },
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/quartermaster/office)
"dxa" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted{
@@ -10816,18 +11173,6 @@
"dyM" = (
/turf/open/floor/wood,
/area/vacant_room/office)
-"dyS" = (
-/obj/structure/table,
-/obj/item/book/manual/wiki/sopsecurity{
- pixel_x = 4;
- pixel_y = 5
- },
-/obj/item/toy/plush/nukeplushie{
- pixel_x = -3;
- pixel_y = -9
- },
-/turf/open/floor/wood,
-/area/security/prison)
"dzf" = (
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -10855,6 +11200,19 @@
},
/turf/open/floor/iron,
/area/crew_quarters/cafeteria)
+"dzr" = (
+/obj/structure/railing{
+ dir = 10
+ },
+/obj/machinery/light/floor{
+ brightness = 15;
+ bulb_colour = "#FFE4CE";
+ bulb_vacuum_brightness = 15;
+ nightshift_brightness = 10;
+ nightshift_light_color = "#E6EBFF"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"dzx" = (
/obj/item/radio/intercom{
pixel_x = -31;
@@ -10926,19 +11284,6 @@
},
/turf/open/floor/iron/sepia,
/area/maintenance/port/central)
-"dAb" = (
-/obj/machinery/stasis{
- dir = 1
- },
-/obj/machinery/camera/autoname{
- dir = 5;
- network = list("ss13","security")
- },
-/obj/machinery/defibrillator_mount{
- pixel_x = -32
- },
-/turf/open/floor/iron/white,
-/area/security/brig/medbay)
"dAc" = (
/obj/machinery/atmospherics/components/binary/pump/on{
dir = 8
@@ -10955,20 +11300,13 @@
/turf/open/floor/plating,
/area/maintenance/central)
"dAm" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/guideline/guideline_in/green{
- color = "#439C1E"
- },
-/obj/effect/turf_decal/tile/dark_green/half{
- dir = 8
+/obj/machinery/door/window/brigdoor/security/cell/eastleft{
+ id = "cell";
+ name = "Solitary Confinement";
+ req_one_access_txt = "2"
},
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
+/turf/open/floor/iron/dark,
+/area/security/prison/shielded)
"dAy" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 8
@@ -10991,6 +11329,20 @@
/obj/machinery/holopad,
/turf/open/floor/iron/dark,
/area/security/brig/dock)
+"dAK" = (
+/obj/structure/railing{
+ dir = 6;
+ layer = 3.1
+ },
+/obj/structure/chair/fancy/comfy{
+ color = "#596479";
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 6
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"dAL" = (
/obj/structure/disposaloutlet{
dir = 8
@@ -11110,6 +11462,13 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"dCf" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Maintenance Hatch";
+ req_access_txt = "50"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/central)
"dCs" = (
/obj/machinery/shieldwallgen,
/obj/effect/turf_decal/bot,
@@ -11159,6 +11518,25 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat/foyer)
+"dCW" = (
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/item/radio/intercom{
+ desc = "Talk through this. It looks like it has been modified to not broadcast.";
+ freerange = 1;
+ name = "Prison intercom";
+ pixel_y = 25;
+ prison_radio = 1
+ },
+/turf/open/floor/prison,
+/area/security/prison{
+ name = "Prison Visitation"
+ })
"dCY" = (
/obj/structure/sign/poster/random{
pixel_x = 2
@@ -11169,6 +11547,22 @@
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
/area/maintenance/department/science)
+"dDd" = (
+/obj/effect/turf_decal/guideline/guideline_out_arrow/brown{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/mob/living/basic/cockroach,
+/turf/open/floor/iron/techmaint,
+/area/hallway/secondary/service)
"dDl" = (
/obj/effect/turf_decal/tile/white/anticorner,
/turf/open/floor/iron,
@@ -11178,25 +11572,35 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/carpet/royalblack,
/area/library)
-"dDD" = (
-/obj/machinery/light/floor{
- brightness = 15;
- bulb_colour = "#FFE4CE";
- bulb_vacuum_brightness = 15;
- nightshift_brightness = 10;
- nightshift_light_color = "#E6EBFF"
+"dDA" = (
+/obj/structure/table/reinforced,
+/obj/item/paper/guides/recycler,
+/obj/machinery/button/massdriver{
+ id = "TrashDisp";
+ pixel_x = -29;
+ pixel_y = 8
},
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 4
+/obj/machinery/button/door{
+ id = "TrashDoor";
+ name = "Disposal Vent Control";
+ pixel_x = -39;
+ pixel_y = 7;
+ req_access_txt = "12"
},
-/obj/structure/railing/corner{
- dir = 4
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_x = -34;
+ pixel_y = -7
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron/dark/smooth_edge{
- dir = 8
+/obj/machinery/light_switch{
+ pixel_x = -21;
+ pixel_y = 8
},
-/area/hallway/primary/central)
+/obj/item/toy/plush/lizard_plushie{
+ name = "Eats-The-Rubbish"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal)
"dDR" = (
/obj/machinery/status_display/evac{
pixel_x = 32
@@ -11385,15 +11789,6 @@
},
/turf/open/floor/plating,
/area/ai_monitored/storage/satellite)
-"dGC" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/railing/corner{
- dir = 8
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"dGE" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -11530,16 +11925,18 @@
},
/turf/open/floor/prison,
/area/security/prison)
-"dHP" = (
-/obj/structure/railing/corner{
- dir = 8
+"dHQ" = (
+/obj/structure/railing{
+ dir = 10;
+ layer = 3.1
},
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/chair/fancy/comfy{
+ buildstackamount = 0;
+ color = "#742925";
+ dir = 1
},
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 10
},
/turf/open/floor/iron/dark/smooth_large,
/area/hallway/primary/central)
@@ -11812,6 +12209,27 @@
},
/turf/open/floor/iron,
/area/science/lab)
+"dLA" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/generic,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/bridge)
+"dLW" = (
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/solar{
+ id = "portsolar";
+ name = "Port Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/port/fore)
"dMi" = (
/obj/structure/window/reinforced{
dir = 4
@@ -11841,46 +12259,6 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron/dark,
/area/engine/atmos)
-"dMH" = (
-/obj/structure/rack,
-/obj/item/storage/box/rubbershot{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/storage/box/rubbershot{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/storage/box/rubbershot{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/storage/box/rubbershot{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/storage/box/rubbershot{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/storage/box/rubbershot{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/storage/box/breacherslug,
-/obj/item/storage/box/breacherslug,
-/obj/item/storage/box/breacherslug,
-/obj/effect/turf_decal/bot,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/light{
- bulb_colour = "#DE3A3A";
- dir = 8;
- nightshift_light_color = "#DE3A3A"
- },
-/turf/open/floor/iron,
-/area/ai_monitored/security/armory)
"dMN" = (
/obj/structure/disposalpipe/segment{
dir = 1
@@ -11892,6 +12270,11 @@
dir = 10
},
/area/science/lobby)
+"dMS" = (
+/obj/machinery/space_heater,
+/obj/effect/decal/cleanable/generic,
+/turf/open/floor/plating,
+/area/maintenance/central)
"dMT" = (
/obj/structure/table/wood,
/obj/structure/extinguisher_cabinet{
@@ -11942,6 +12325,29 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
+"dNq" = (
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/camera/autoname{
+ view_range = 12
+ },
+/obj/effect/turf_decal/siding/wideplating/dark/corner{
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ pixel_y = 34
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
"dNu" = (
/obj/structure/table/reinforced,
/obj/item/storage/firstaid/regular{
@@ -12041,15 +12447,6 @@
"dOb" = (
/turf/open/floor/plating/airless,
/area/science/test_area)
-"dOi" = (
-/obj/effect/decal/cleanable/crayon,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/food/spaghetti/butternoodles,
-/turf/open/floor/plating{
- burnt = 1
- },
-/area/maintenance/department/medical)
"dOx" = (
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plating,
@@ -12227,6 +12624,11 @@
},
/turf/open/floor/iron,
/area/security/brig/medbay)
+"dRK" = (
+/turf/open/floor/iron/stairs/medium{
+ dir = 1
+ },
+/area/hallway/primary/central)
"dRO" = (
/obj/structure/sign/poster/random,
/turf/closed/wall,
@@ -12440,42 +12842,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/engine/engine_room)
-"dVi" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4,
-/obj/machinery/atmospherics/components/binary/valve/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
-"dVj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/aft)
"dVp" = (
/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{
alpha = 180
@@ -12568,6 +12934,17 @@
/obj/structure/table/wood,
/turf/open/floor/carpet/green,
/area/crew_quarters/cafeteria)
+"dWL" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/chair/fancy/comfy{
+ color = "#596479";
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"dWN" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 4
@@ -12659,6 +13036,18 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/turf/open/floor/iron,
/area/security/brig)
+"dYe" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"dYk" = (
/obj/structure/table/reinforced,
/obj/item/toy/figure/chef,
@@ -12674,6 +13063,14 @@
/obj/machinery/firealarm/directional/east,
/turf/open/floor/carpet/purple,
/area/chapel/main)
+"dYo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/starboard/aft)
"dYt" = (
/obj/structure/curtain,
/obj/item/soap/nanotrasen,
@@ -12752,6 +13149,13 @@
/obj/structure/railing,
/turf/open/floor/wood,
/area/crew_quarters/theatre)
+"dZx" = (
+/obj/machinery/smartfridge/sci{
+ initial_contents = list(/obj/item/stock_parts/capacitor = 2, /obj/item/stock_parts/manipulator = 2, /obj/item/stock_parts/micro_laser = 2, /obj/item/stock_parts/matter_bin = 2, /obj/item/stock_parts/scanning_module = 2);
+ name = "Science vender"
+ },
+/turf/closed/wall,
+/area/science/lab)
"dZF" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -12766,21 +13170,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/engine/atmos)
-"eaw" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera/autoname{
- dir = 1
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/bridge)
"eaz" = (
/obj/effect/turf_decal/tile/neutral{
dir = 8
@@ -13028,41 +13417,6 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/exploration_prep)
-"efl" = (
-/obj/machinery/button/door{
- id = "brigentrance";
- name = "Brig Lockdown Control";
- pixel_x = -23;
- pixel_y = 6;
- req_access_txt = "3"
- },
-/obj/item/radio/intercom{
- dir = 1;
- pixel_x = -37;
- pixel_y = 4
- },
-/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
- dir = 8
- },
-/obj/machinery/button/door{
- id = "Prisongate";
- name = "Prison Wing Lockdown";
- pixel_x = -23;
- pixel_y = -6;
- req_access_txt = "3"
- },
-/obj/machinery/photocopier,
-/obj/effect/turf_decal/bot,
-/obj/item/radio/intercom{
- desc = "Talk through this. It looks like it has been modified to not broadcast.";
- freerange = 1;
- name = "Prison intercom";
- pixel_x = -37;
- pixel_y = -10;
- prison_radio = 1
- },
-/turf/open/floor/iron/dark,
-/area/security/warden)
"efp" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow{
@@ -13185,15 +13539,6 @@
},
/turf/open/floor/iron/dark,
/area/engine/engine_room)
-"ehk" = (
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_y = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"ehV" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
@@ -13255,11 +13600,6 @@
"eiL" = (
/turf/open/floor/engine/plasma,
/area/engine/atmos)
-"eiW" = (
-/obj/item/clothing/suit/hooded/cultrobes/alt,
-/obj/item/toy/toy_dagger,
-/turf/open/floor/cult,
-/area/chapel/office)
"ejb" = (
/obj/effect/turf_decal/bot,
/obj/structure/sign/painting/library{
@@ -13285,21 +13625,6 @@
},
/turf/open/floor/plating,
/area/security/checkpoint/escape)
-"ejB" = (
-/obj/effect/turf_decal/guideline/guideline_out/brown{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/iron/techmaint,
-/area/maintenance/central)
"ejQ" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -13438,6 +13763,12 @@
},
/turf/open/floor/iron/cafeteria,
/area/crew_quarters/kitchen)
+"ems" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/chapel/main)
"emB" = (
/obj/effect/turf_decal/tile/neutral/half{
dir = 4
@@ -13562,6 +13893,18 @@
/obj/structure/closet/emcloset,
/turf/open/floor/plating,
/area/security/brig/medbay)
+"eoS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"eoT" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -13584,6 +13927,13 @@
},
/turf/open/floor/iron/dark,
/area/engine/engineering)
+"epu" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/iron/dark,
+/area/science/robotics)
"epw" = (
/obj/structure/table,
/obj/machinery/reagentgrinder{
@@ -13630,6 +13980,20 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/iron,
/area/engine/engine_room)
+"epQ" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/thinplating/light{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 4
+ },
+/area/hallway/primary/central)
"epS" = (
/obj/machinery/door/airlock/public/glass{
name = "Primary Hallway"
@@ -13680,18 +14044,6 @@
"eqb" = (
/turf/closed/wall,
/area/library)
-"eqi" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"eqr" = (
/obj/effect/turf_decal/stripes/corner,
/obj/machinery/atmospherics/pipe/manifold/green/visible{
@@ -13796,13 +14148,6 @@
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/iron,
/area/maintenance/department/engine)
-"esM" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/closet/crate/trashcart,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal)
"esO" = (
/obj/machinery/rnd/production/protolathe/department/science,
/obj/effect/turf_decal/stripes/line{
@@ -13896,6 +14241,40 @@
},
/turf/open/floor/iron/dark,
/area/security/brig/dock)
+"euN" = (
+/obj/machinery/light{
+ dir = 2
+ },
+/obj/effect/turf_decal/guideline/guideline_edge/purple,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white/side{
+ dir = 1
+ },
+/area/science/research)
+"euO" = (
+/obj/effect/turf_decal/guideline/guideline_in/red{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/dark_red/half{
+ color = "#DE3A3A"
+ },
+/obj/effect/turf_decal/tile/dark_red/half{
+ color = "#DE3A3A"
+ },
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
+"euQ" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/medical/morgue)
"euS" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -13906,16 +14285,6 @@
/obj/machinery/telecomms/bus/preset_one,
/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/server)
-"euT" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/bridge)
"euY" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -13979,31 +14348,11 @@
},
/turf/open/floor/carpet/blue,
/area/crew_quarters/heads/hop)
-"evO" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/flora/ausbushes/fullgrass,
-/turf/open/floor/grass/no_border,
-/area/hallway/secondary/exit/departure_lounge)
"ewf" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/structure/lattice/catwalk,
/turf/open/space/basic,
/area/space/nearstation)
-"ewh" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"ewi" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/turf/open/floor/iron/dark,
@@ -14165,21 +14514,6 @@
},
/turf/open/floor/iron,
/area/science/robotics)
-"eyM" = (
-/obj/machinery/power/smes/engineering{
- charge = 2e+007
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"eyT" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 4
@@ -14253,6 +14587,15 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/turf/open/floor/iron/white,
/area/science/research)
+"eAz" = (
+/obj/machinery/light/small{
+ brightness = 3
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/medical/morgue)
"eAC" = (
/turf/closed/wall,
/area/security/checkpoint/medical)
@@ -14508,21 +14851,6 @@
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"eEf" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"eEg" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -14530,6 +14858,29 @@
},
/turf/open/space/basic,
/area/solar/port/fore)
+"eEp" = (
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/effect/turf_decal/siding/wideplating/dark/corner{
+ dir = 1
+ },
+/obj/machinery/camera/autoname{
+ view_range = 12
+ },
+/obj/machinery/status_display/evac{
+ pixel_y = 32
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
"eED" = (
/obj/structure/bodycontainer/morgue,
/obj/machinery/camera/autoname{
@@ -14537,19 +14888,6 @@
},
/turf/open/floor/iron/dark,
/area/medical/morgue)
-"eEJ" = (
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/bridge)
"eEY" = (
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -14812,13 +15150,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"eIE" = (
-/obj/effect/decal/cleanable/crayon,
-/obj/item/food/butteredtoast,
-/turf/open/floor/plating{
- broken = 1
- },
-/area/maintenance/department/medical)
"eIH" = (
/obj/machinery/door/airlock/science{
name = "Toxins Lab";
@@ -14914,6 +15245,25 @@
/area/security/main{
name = "Security Viewing Hall"
})
+"eJT" = (
+/obj/effect/turf_decal/guideline/guideline_in/red{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/obj/effect/turf_decal/tile/dark_red/half{
+ color = "#DE3A3A"
+ },
+/obj/effect/turf_decal/tile/dark_red/half{
+ color = "#DE3A3A"
+ },
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
"eJV" = (
/turf/closed/wall/r_wall,
/area/security/brig{
@@ -15084,52 +15434,6 @@
},
/turf/open/floor/engine,
/area/engine/atmos)
-"eMU" = (
-/obj/effect/landmark/start/randommaint/vip,
-/obj/effect/landmark/observer_start,
-/obj/machinery/holopad{
- pixel_x = 16;
- pixel_y = 16
- },
-/obj/item/beacon{
- pixel_x = 16;
- pixel_y = 19
- },
-/turf/open/floor/glass/reinforced,
-/area/hallway/primary/central{
- dynamic_lighting = 2;
- lighting_brightness_tube = 11;
- lighting_colour_bulb = "#DDE6FF";
- lighting_colour_night = "#DDE6FF";
- lighting_colour_tube = "#DDE6FF";
- lighting_overlay_colour = "#DDE6FF";
- power_light = 0
- })
-"eNe" = (
-/obj/structure/table/reinforced,
-/obj/item/gun/ballistic/shotgun/riot{
- pixel_x = -3;
- pixel_y = 2
- },
-/obj/item/gun/ballistic/shotgun/riot{
- pixel_x = -2;
- pixel_y = -2
- },
-/obj/machinery/door/window/brigdoor/westleft{
- name = "shotguns";
- req_access_txt = "3"
- },
-/obj/structure/window/reinforced,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/light{
- bulb_colour = "#DE3A3A";
- dir = 4;
- nightshift_light_color = "#DE3A3A"
- },
-/turf/open/floor/iron,
-/area/ai_monitored/security/armory)
"eNg" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -15284,19 +15588,6 @@
"ePI" = (
/turf/closed/wall/rust,
/area/quartermaster/sorting)
-"ePP" = (
-/obj/effect/turf_decal/guideline/guideline_in/brown,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown/half{
- dir = 8
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
"ePS" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/carpet/royalblack,
@@ -15308,20 +15599,6 @@
},
/turf/open/floor/engine/airless,
/area/engine/atmos)
-"eQf" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 4
- },
-/obj/structure/railing{
- dir = 4
- },
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/bot,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"eQk" = (
/obj/effect/turf_decal/tile/dark_blue{
alpha = 180;
@@ -15368,6 +15645,30 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/sepia,
/area/quartermaster/storage)
+"eRw" = (
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer2{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"eRx" = (
/obj/effect/turf_decal/bot{
dir = 1
@@ -15397,6 +15698,34 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/techmaint,
/area/storage/tech)
+"eSj" = (
+/obj/effect/turf_decal/guideline/guideline_in/neutral{
+ alpha = 255;
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
+ },
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
+ },
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
+ },
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
"eSn" = (
/obj/effect/turf_decal/tile/red/half/contrasted,
/obj/structure/closet/secure_closet/genpop,
@@ -15604,20 +15933,6 @@
/obj/effect/decal/cleanable/glass,
/turf/open/floor/plating,
/area/maintenance/port/aft)
-"eTH" = (
-/obj/structure/railing{
- dir = 6;
- layer = 3.1
- },
-/obj/structure/chair/fancy/comfy{
- color = "#596479";
- dir = 1
- },
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 6
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"eUb" = (
/obj/structure/lattice/catwalk,
/obj/machinery/camera/autoname{
@@ -15741,22 +16056,6 @@
},
/turf/open/floor/iron/tech,
/area/engine/atmos)
-"eUV" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/chair/fancy/sofa/old/right{
- dir = 4
- },
-/obj/machinery/vending/wallmed{
- pixel_y = -32;
- products = list(/obj/item/stack/medical/gauze = 4, /obj/item/reagent_containers/hypospray/medipen = 3, /obj/item/reagent_containers/hypospray/medipen/dexalin = 3, /obj/item/reagent_containers/glass/bottle/epinephrine = 2, /obj/item/reagent_containers/glass/bottle/charcoal = 2)
- },
-/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 2
- },
-/turf/open/floor/carpet/green,
-/area/crew_quarters/cafeteria)
"eVa" = (
/obj/machinery/atmospherics/pipe/simple/purple/visible{
dir = 4
@@ -15766,21 +16065,6 @@
},
/turf/open/floor/iron/tech,
/area/engine/atmos)
-"eVc" = (
-/obj/effect/turf_decal/guideline/guideline_out_arrow/brown{
- dir = 9
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/iron/techmaint,
-/area/maintenance/central)
"eVj" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 8
@@ -15846,6 +16130,15 @@
},
/turf/open/floor/iron,
/area/crew_quarters/cafeteria)
+"eWt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/structure/railing/corner,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"eWu" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -15890,6 +16183,21 @@
},
/turf/open/floor/iron/cafeteria_red,
/area/crew_quarters/bar)
+"eWO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"eWX" = (
/obj/effect/decal/cleanable/glass{
dir = 1
@@ -15953,41 +16261,12 @@
},
/turf/open/space/basic,
/area/space/nearstation)
-"eXQ" = (
-/obj/structure/railing{
- dir = 10
- },
-/obj/machinery/light/floor{
- brightness = 15;
- bulb_colour = "#FFE4CE";
- bulb_vacuum_brightness = 15;
- nightshift_brightness = 10;
- nightshift_light_color = "#E6EBFF"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"eXZ" = (
/obj/structure/table/wood,
/obj/item/instrument/guitar,
/obj/machinery/firealarm/directional/west,
/turf/open/floor/wood,
/area/library)
-"eYc" = (
-/obj/effect/turf_decal/tile/neutral/half,
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/iron/dark,
-/area/chapel/office)
"eYe" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -16048,6 +16327,12 @@
/obj/effect/decal/cleanable/glass,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"eYS" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 9
+ },
+/turf/open/floor/glass/reinforced,
+/area/chapel/main)
"eZm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -16066,27 +16351,26 @@
/obj/effect/landmark/start/atmospheric_technician,
/turf/open/floor/iron/tech,
/area/engine/atmos)
-"eZr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"eZy" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 8
},
/turf/open/floor/engine,
/area/engine/supermatter)
+"eZz" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4,
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/binary/volume_pump,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"eZA" = (
/obj/effect/turf_decal/tile/red/anticorner/contrasted{
alpha = 180;
@@ -16118,19 +16402,6 @@
/obj/item/stock_parts/cell/high,
/turf/open/floor/iron/dark,
/area/engine/engineering)
-"eZQ" = (
-/obj/structure/musician/piano{
- icon_state = "piano"
- },
-/obj/machinery/light{
- light_color = "#7AC3FF"
- },
-/obj/machinery/camera/autoname{
- c_tag = "Captain's Quarters";
- dir = 1
- },
-/turf/open/floor/glass/reinforced,
-/area/crew_quarters/cafeteria)
"fan" = (
/obj/effect/landmark/start/cargo_technician,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -16229,6 +16500,28 @@
},
/turf/open/floor/plating,
/area/maintenance/department/science)
+"fbT" = (
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/obj/machinery/camera/autoname{
+ dir = 9;
+ network = list("ss13","prison")
+ },
+/obj/item/radio/intercom{
+ desc = "Talk through this. It looks like it has been modified to not broadcast.";
+ freerange = 1;
+ name = "Prison intercom";
+ pixel_x = 25;
+ prison_radio = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"fbY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -16272,25 +16565,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron,
/area/crew_quarters/dorms)
-"fcE" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/lavendergrass,
-/obj/structure/flora/rock/jungle,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "hopqueue";
- name = "HoP Queue Shutters"
- },
-/turf/open/floor/grass/no_border,
-/area/crew_quarters/heads/hop)
"fcK" = (
/obj/structure/cable{
icon_state = "1-4"
@@ -16352,18 +16626,6 @@
},
/turf/open/floor/plating,
/area/maintenance/department/medical/morgue)
-"fdc" = (
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/obj/effect/turf_decal/guideline/guideline_in/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple/half{
- dir = 4
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
"fdq" = (
/obj/effect/turf_decal/siding/wood{
dir = 5
@@ -16419,21 +16681,6 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
-"feg" = (
-/obj/structure/railing{
- dir = 10;
- layer = 3.1
- },
-/obj/structure/chair/fancy/comfy{
- buildstackamount = 0;
- color = "#742925";
- dir = 1
- },
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 10
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"fem" = (
/obj/machinery/door/airlock/maintenance_hatch{
id_tag = "commissarydoor";
@@ -16443,6 +16690,18 @@
/obj/effect/mapping_helpers/airlock/abandoned,
/turf/open/floor/plating,
/area/maintenance/port/central)
+"fes" = (
+/obj/structure/chair/fancy/comfy{
+ buildstackamount = 0;
+ color = "#742925";
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_y = 1
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"feL" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
@@ -16454,6 +16713,13 @@
},
/turf/open/floor/plating,
/area/science/research)
+"feO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"ffa" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -16512,6 +16778,15 @@
},
/turf/open/floor/iron/white,
/area/crew_quarters/heads/cmo)
+"fgH" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"fhl" = (
/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
dir = 8
@@ -16528,26 +16803,6 @@
/area/security/main{
name = "Security Locker Room"
})
-"fhK" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 5
- },
-/obj/machinery/button/door{
- id = "detectivewindows";
- name = "Detective Private Shutters";
- pixel_x = 25;
- pixel_y = -8;
- req_access_txt = "4"
- },
-/obj/machinery/vending/boozeomat/all_access{
- req_access_txt = "4"
- },
-/obj/structure/noticeboard{
- name = "Evidence board";
- pixel_y = 32
- },
-/turf/open/floor/carpet/red,
-/area/security/detectives_office)
"fhV" = (
/obj/machinery/dna_scannernew,
/turf/open/floor/iron/white,
@@ -16619,9 +16874,6 @@
},
/turf/open/floor/plating,
/area/science/xenobiology)
-"fiB" = (
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/central)
"fiM" = (
/obj/structure/disposalpipe/segment{
dir = 6
@@ -16652,16 +16904,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/engine/engine_room)
-"fiS" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"fiW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -16725,20 +16967,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/maintenance/central)
-"fjM" = (
-/obj/structure/railing/corner{
- dir = 8
- },
-/obj/structure/disposalpipe/junction{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron/dark/corner{
- dir = 8
- },
-/area/hallway/primary/central)
"fjN" = (
/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -16954,37 +17182,12 @@
/obj/structure/chair/office,
/turf/open/floor/carpet/blue,
/area/crew_quarters/heads/hop)
-"flY" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/neutral/half,
-/obj/effect/turf_decal/tile/purple/half/contrasted{
- dir = 1
- },
-/obj/effect/turf_decal/caution{
- pixel_y = -17
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/iron,
-/area/maintenance/port/aft)
"fme" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/aisat_interior)
-"fmg" = (
-/obj/effect/decal/cleanable/glass,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/bridge)
"fmv" = (
/obj/machinery/atmospherics/pipe/manifold/purple/visible{
dir = 1
@@ -17065,34 +17268,21 @@
},
/turf/open/floor/carpet/red,
/area/crew_quarters/theatre/backstage)
-"fna" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
+"fnx" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
},
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=16-EHall";
- location = "15-CenterSE"
+/obj/machinery/power/smes/engineering{
+ charge = 2e+007
},
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
-"fne" = (
-/obj/effect/landmark/start/assistant,
-/obj/effect/turf_decal/siding/white{
- dir = 9
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
},
-/turf/open/floor/glass/reinforced,
-/area/hallway/primary/central{
- dynamic_lighting = 2;
- lighting_brightness_tube = 11;
- lighting_colour_bulb = "#DDE6FF";
- lighting_colour_night = "#DDE6FF";
- lighting_colour_tube = "#DDE6FF";
- lighting_overlay_colour = "#DDE6FF";
- power_light = 0
- })
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"fnz" = (
/obj/structure/chair/stool{
dir = 4
@@ -17132,13 +17322,6 @@
/obj/structure/rack,
/turf/open/floor/plating,
/area/maintenance/department/medical/morgue)
-"fom" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
"fon" = (
/obj/structure/bed,
/obj/item/bedsheet/hos,
@@ -17278,6 +17461,14 @@
/obj/item/clothing/mask/vape,
/turf/open/floor/iron/grid/steel,
/area/hydroponics)
+"fqu" = (
+/obj/structure/table/glass,
+/obj/item/storage/backpack/duffelbag/med/implant,
+/obj/item/storage/backpack/duffelbag/med/surgery{
+ pixel_y = 7
+ },
+/turf/open/floor/iron,
+/area/medical/surgery)
"fqE" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -17373,6 +17564,35 @@
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating,
/area/maintenance/department/medical/morgue)
+"fsl" = (
+/obj/structure/closet/secure_closet/detective,
+/obj/item/assembly/flash/handheld,
+/obj/item/restraints/handcuffs,
+/obj/item/clothing/head/fedora/det_hat{
+ icon_state = "curator"
+ },
+/obj/item/clothing/suit/jacket/det_suit{
+ icon_state = "curator"
+ },
+/obj/item/reagent_containers/food/drinks/flask/det,
+/obj/effect/turf_decal/siding/wood{
+ dir = 9
+ },
+/obj/machinery/light_switch{
+ pixel_x = -25;
+ pixel_y = -8
+ },
+/obj/item/storage/secure/safe{
+ pixel_x = -25;
+ pixel_y = 8
+ },
+/obj/machinery/requests_console{
+ department = "Detective's office";
+ pixel_y = 25
+ },
+/obj/item/holosign_creator/security,
+/turf/open/floor/carpet/red,
+/area/security/detectives_office)
"fsn" = (
/obj/effect/turf_decal/tile/red/half/contrasted{
dir = 8
@@ -17490,6 +17710,12 @@
},
/turf/open/floor/wood,
/area/security/prison)
+"fuP" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 5
+ },
+/turf/open/floor/glass/reinforced,
+/area/chapel/main)
"fuX" = (
/obj/machinery/portable_atmospherics/canister/plasma,
/obj/effect/turf_decal/delivery,
@@ -17507,15 +17733,21 @@
},
/turf/open/floor/iron/white/corner,
/area/science/research)
-"fvE" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 8
+"fvV" = (
+/obj/effect/landmark/start/assistant,
+/obj/effect/turf_decal/siding/white{
+ dir = 10
},
-/turf/open/floor/iron,
-/area/quartermaster/exploration_prep)
+/turf/open/floor/glass/reinforced,
+/area/hallway/primary/central{
+ dynamic_lighting = 2;
+ lighting_brightness_tube = 11;
+ lighting_colour_bulb = "#DDE6FF";
+ lighting_colour_night = "#DDE6FF";
+ lighting_colour_tube = "#DDE6FF";
+ lighting_overlay_colour = "#DDE6FF";
+ power_light = 0
+ })
"fvW" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/computer/upload/ai,
@@ -17539,6 +17771,21 @@
/obj/structure/table/wood/fancy/purple,
/turf/open/floor/iron/dark,
/area/chapel/main)
+"fwu" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Maintenance Hatch";
+ req_one_access_txt = "12;31;63"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/department/security)
"fwx" = (
/obj/structure/altar_of_gods,
/obj/effect/turf_decal/siding/wideplating/dark{
@@ -17738,6 +17985,23 @@
},
/turf/open/floor/iron,
/area/medical/apothecary)
+"fza" = (
+/obj/machinery/camera/autoname{
+ dir = 9;
+ network = list("ss13","prison")
+ },
+/obj/item/radio/intercom{
+ desc = "Talk through this. It looks like it has been modified to not broadcast.";
+ freerange = 1;
+ name = "Prison intercom";
+ pixel_x = 25;
+ prison_radio = 1
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/security/prison)
"fzc" = (
/obj/effect/turf_decal/siding/wood{
dir = 1
@@ -17763,20 +18027,6 @@
/obj/effect/turf_decal/box,
/turf/open/floor/wood,
/area/crew_quarters/heads/captain)
-"fzk" = (
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/effect/turf_decal/guideline/guideline_in/yellow{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/effect/turf_decal/tile/yellow/half,
-/obj/effect/turf_decal/tile/yellow/half,
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
"fzo" = (
/obj/structure/table/reinforced,
/obj/item/paper_bin{
@@ -17810,14 +18060,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/medical/genetics/cloning)
-"fzK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/aft)
"fzS" = (
/turf/closed/wall/r_wall/rust,
/area/teleporter)
@@ -17862,21 +18104,6 @@
},
/turf/open/floor/plating,
/area/library)
-"fAH" = (
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/power/smes/engineering{
- charge = 2e+007
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"fAX" = (
/obj/effect/turf_decal/tile/purple/half/contrasted{
dir = 4
@@ -17959,19 +18186,6 @@
},
/turf/open/floor/plating,
/area/maintenance/department/bridge)
-"fCN" = (
-/obj/effect/turf_decal/guideline/guideline_in/red{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/tile/dark_red/half{
- color = "#DE3A3A"
- },
-/obj/effect/turf_decal/tile/dark_red/half{
- color = "#DE3A3A"
- },
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
"fCR" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
@@ -18056,6 +18270,19 @@
},
/turf/open/floor/iron,
/area/maintenance/department/security)
+"fEe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/effect/turf_decal/guideline/guideline_in/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/tile/yellow/half,
+/obj/effect/turf_decal/tile/yellow/half,
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
"fEl" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
/obj/effect/decal/cleanable/dirt/dust,
@@ -18080,21 +18307,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/cafeteria)
-"fEz" = (
-/obj/structure/railing/corner{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"fET" = (
/obj/effect/turf_decal/guideline/guideline_edge/purple{
dir = 1
@@ -18128,18 +18340,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/storage)
-"fFo" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/aft)
"fFC" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable/orange{
@@ -18220,6 +18420,13 @@
},
/turf/open/floor/iron/sepia,
/area/quartermaster/office)
+"fGV" = (
+/obj/machinery/door/window/brigdoor/northleft{
+ name = "Telecommunications";
+ req_access_txt = "49"
+ },
+/turf/open/floor/iron/dark,
+/area/quartermaster/exploration_prep)
"fHa" = (
/mob/living/simple_animal/slime{
name = "yucca"
@@ -18242,12 +18449,6 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
/turf/open/floor/iron/freezer,
/area/crew_quarters/kitchen/coldroom)
-"fHs" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 1
- },
-/turf/open/floor/glass/reinforced,
-/area/chapel/main)
"fHx" = (
/turf/closed/wall,
/area/medical/chemistry)
@@ -18368,16 +18569,6 @@
/obj/structure/sign/departments/minsky/supply/hydroponics2,
/turf/closed/wall,
/area/crew_quarters/cafeteria)
-"fJh" = (
-/obj/effect/landmark/start/cargo_technician,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/quartermaster/storage)
"fJJ" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
@@ -18568,24 +18759,6 @@
},
/turf/open/floor/iron/tech,
/area/engine/engine_room)
-"fMD" = (
-/obj/effect/turf_decal/guideline/guideline_out/brown{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/iron/techmaint,
-/area/maintenance/central)
"fME" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -18757,21 +18930,6 @@
},
/turf/open/floor/carpet/royalblack,
/area/library)
-"fPi" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/starboard/aft)
"fPs" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 1
@@ -19013,6 +19171,22 @@
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plating,
/area/maintenance/port/aft)
+"fSw" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/turf_decal/bot,
+/obj/structure/table/reinforced,
+/obj/item/mmi{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/item/mmi{
+ pixel_y = 11
+ },
+/obj/item/storage/box/bodybags,
+/turf/open/floor/iron/white,
+/area/science/robotics)
"fSH" = (
/turf/closed/wall/r_wall,
/area/science/shuttledock)
@@ -19024,16 +19198,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/quartermaster/storage)
-"fSM" = (
-/obj/structure/window/reinforced{
- dir = 4;
- layer = 2.9
- },
-/obj/structure/closet/emcloset,
-/obj/effect/turf_decal/bot,
-/obj/structure/window/reinforced,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"fSY" = (
/obj/item/radio/intercom{
pixel_y = 35
@@ -19224,6 +19388,18 @@
/obj/structure/marker_beacon,
/turf/open/floor/engine/o2,
/area/ai_monitored/turret_protected/ai)
+"fXB" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/item/storage/pod{
+ pixel_x = 32
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"fXJ" = (
/turf/closed/wall/r_wall/rust,
/area/engine/engine_room)
@@ -19258,9 +19434,6 @@
},
/turf/open/floor/noslip/standard,
/area/quartermaster/miningdock)
-"fYr" = (
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal)
"fYs" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -19297,14 +19470,6 @@
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"fYI" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/starboard/aft)
"fZb" = (
/obj/structure/table/wood,
/obj/effect/turf_decal/siding/wood{
@@ -19336,6 +19501,16 @@
/obj/machinery/smartfridge/sci,
/turf/closed/wall,
/area/science/robotics)
+"fZl" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/chapel/office)
"fZt" = (
/obj/structure/table,
/obj/item/storage/box/papersack{
@@ -19440,6 +19615,17 @@
},
/turf/open/floor/iron/white,
/area/science/xenobiology)
+"gao" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/effect/turf_decal/guideline/guideline_in/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow/half,
+/obj/effect/turf_decal/tile/yellow/half,
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
"gau" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/curtain/directional{
@@ -19722,24 +19908,6 @@
/area/security/prison{
name = "Prison Visitation"
})
-"gee" = (
-/obj/structure/closet/crate/freezer/blood,
-/obj/item/rollerbed,
-/obj/item/rollerbed{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/structure/closet/crate/medical,
-/obj/machinery/firealarm/directional/east,
-/obj/item/reagent_containers/blood/OMinus,
-/obj/item/clothing/suit/jacket/straight_jacket,
-/obj/item/clothing/glasses/blindfold{
- pixel_x = -4;
- pixel_y = 8
- },
-/obj/item/clothing/mask/muzzle,
-/turf/open/floor/iron/white,
-/area/security/brig/medbay)
"gep" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 6
@@ -19945,13 +20113,6 @@
/obj/machinery/airalarm/directional/north,
/turf/open/floor/iron,
/area/hallway/primary/starboard)
-"ggC" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/railing/corner,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"ggJ" = (
/turf/closed/wall,
/area/science/lab)
@@ -20046,16 +20207,6 @@
},
/turf/open/floor/iron/white,
/area/medical/sleeper)
-"ghx" = (
-/obj/effect/decal/cleanable/glass,
-/obj/machinery/light{
- bulb_colour = "#22bfa2";
- bulb_vacuum_colour = "#22bfa2";
- dir = 4;
- nightshift_light_color = "#22bfa2"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"ghy" = (
/obj/machinery/button/door{
id = "xeno2";
@@ -20083,16 +20234,6 @@
"ghC" = (
/turf/closed/wall,
/area/medical/exam_room)
-"ghK" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"ghU" = (
/obj/item/radio/intercom{
dir = 1;
@@ -20118,13 +20259,6 @@
"gig" = (
/turf/open/floor/iron,
/area/bridge)
-"gis" = (
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/obj/structure/railing/corner,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"giD" = (
/obj/effect/landmark/blobstart,
/turf/open/floor/wood,
@@ -20187,19 +20321,6 @@
},
/turf/open/floor/iron/dark,
/area/security/warden)
-"gjB" = (
-/obj/structure/table,
-/obj/item/stack/sheet/glass{
- amount = 30
- },
-/obj/item/stack/sheet/iron{
- amount = 30
- },
-/obj/item/rcl/pre_loaded,
-/obj/item/wrench,
-/obj/item/crowbar/red,
-/turf/open/floor/iron/tech,
-/area/engine/atmos)
"gjJ" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 1
@@ -20220,6 +20341,23 @@
},
/turf/open/floor/iron,
/area/security/brig)
+"gjQ" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
+ alpha = 180;
+ color = "#DE3A3A"
+ },
+/obj/item/radio/intercom{
+ desc = "Talk through this. It looks like it has been modified to not broadcast.";
+ freerange = 1;
+ name = "Prison intercom";
+ pixel_y = -25;
+ prison_radio = 1
+ },
+/turf/open/floor/iron,
+/area/security/prison{
+ name = "Prison Visitation"
+ })
"gjW" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -20239,6 +20377,16 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
+"gkv" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"gky" = (
/obj/structure/flora/ausbushes/fullgrass,
/obj/structure/flora/ausbushes/fullgrass,
@@ -20255,18 +20403,6 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/engine/atmos)
-"gli" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 8
- },
-/obj/structure/chair/fancy/bench/pew/left{
- dir = 4
- },
-/obj/machinery/camera/autoname{
- dir = 1
- },
-/turf/open/floor/glass/reinforced,
-/area/chapel/main)
"glm" = (
/obj/structure/lattice/catwalk,
/obj/structure/chair/fancy/plastic{
@@ -20283,6 +20419,21 @@
},
/turf/open/floor/iron,
/area/maintenance/port/aft)
+"glv" = (
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"glw" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 8
@@ -20501,46 +20652,6 @@
},
/turf/open/floor/plating,
/area/maintenance/department/bridge)
-"gnE" = (
-/obj/structure/closet/secure_closet/detective,
-/obj/item/assembly/flash/handheld,
-/obj/item/restraints/handcuffs,
-/obj/item/clothing/head/fedora/det_hat{
- icon_state = "curator"
- },
-/obj/item/clothing/suit/jacket/det_suit{
- icon_state = "curator"
- },
-/obj/item/reagent_containers/food/drinks/flask/det,
-/obj/effect/turf_decal/siding/wood{
- dir = 9
- },
-/obj/machinery/light_switch{
- pixel_x = -25;
- pixel_y = -8
- },
-/obj/item/storage/secure/safe{
- pixel_x = -25;
- pixel_y = 8
- },
-/obj/machinery/requests_console{
- department = "Detective's office";
- pixel_y = 25
- },
-/obj/item/holosign_creator/security,
-/turf/open/floor/carpet/red,
-/area/security/detectives_office)
-"gnU" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=25-NHall";
- location = "24-CenterNE"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"goe" = (
/obj/effect/turf_decal/tile/dark_red{
dir = 1
@@ -20569,21 +20680,35 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/starboard/fore)
-"goF" = (
-/obj/machinery/light/small{
- brightness = 3
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/medical/morgue)
"goU" = (
/turf/closed/wall/rust,
/area/storage/primary)
"goV" = (
/turf/open/floor/iron,
/area/vacant_room/commissary/commissary1)
+"goW" = (
+/obj/effect/turf_decal/guideline/guideline_in/darkblue{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 1;
+ name = "Janie";
+ sortType = 22
+ },
+/obj/effect/turf_decal/tile/dark_blue/half{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/dark_blue/half{
+ dir = 1
+ },
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
"goY" = (
/obj/machinery/vending/wardrobe/sec_wardrobe,
/obj/effect/turf_decal/bot,
@@ -20604,6 +20729,35 @@
},
/turf/open/floor/iron/tech/grid,
/area/engine/engineering)
+"gpA" = (
+/obj/structure/railing/corner,
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/dark/corner,
+/area/hallway/primary/central)
+"gpB" = (
+/obj/effect/turf_decal/guideline/guideline_in/darkblue{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/tile/dark_blue/half{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/dark_blue/half{
+ dir = 1
+ },
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
"gpK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -20728,32 +20882,6 @@
},
/turf/open/floor/plating,
/area/bridge/meeting_room)
-"grI" = (
-/obj/effect/turf_decal/guideline/guideline_in/neutral{
- alpha = 255;
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
- },
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
- },
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
- },
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
"gsA" = (
/obj/structure/lattice,
/turf/open/space/basic,
@@ -20903,14 +21031,6 @@
},
/turf/open/floor/iron/dark,
/area/medical/morgue)
-"gut" = (
-/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted{
- alpha = 180;
- color = "#DE3A3A";
- dir = 4
- },
-/turf/open/floor/iron/dark,
-/area/security/warden)
"guA" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -20973,6 +21093,12 @@
},
/turf/open/floor/iron,
/area/engine/engineering)
+"gvo" = (
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"gvz" = (
/obj/effect/turf_decal/tile/neutral{
dir = 4
@@ -21289,15 +21415,6 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
-"gCa" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 5
- },
-/obj/structure/chair/fancy/bench/pew/left{
- dir = 8
- },
-/turf/open/floor/glass/reinforced,
-/area/chapel/main)
"gCh" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -21408,16 +21525,6 @@
/obj/effect/turf_decal/box,
/turf/open/floor/wood,
/area/security/detectives_office)
-"gDg" = (
-/obj/effect/landmark/start/chaplain,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/chapel/office)
"gDB" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
@@ -21469,24 +21576,6 @@
/area/security/prison{
name = "Prison Botany"
})
-"gEE" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/guideline/guideline_in/green{
- color = "#439C1E"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/effect/turf_decal/tile/dark_green/half{
- dir = 8
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
"gEQ" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable/orange{
@@ -21494,12 +21583,6 @@
},
/turf/open/space/basic,
/area/solar/port/fore)
-"gEV" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/iron/dark,
-/area/chapel/main)
"gFj" = (
/obj/effect/turf_decal/bot,
/obj/structure/closet/wardrobe/white,
@@ -21600,21 +21683,6 @@
burnt = 1
},
/area/maintenance/department/medical)
-"gGx" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"gGz" = (
/obj/machinery/firealarm{
dir = 4;
@@ -21750,26 +21818,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/storage)
-"gHS" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/flora/ausbushes/lavendergrass,
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/structure/flora/ausbushes/fernybush,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "hopqueue";
- name = "HoP Queue Shutters"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/grass/no_border,
-/area/crew_quarters/heads/hop)
"gHZ" = (
/turf/open/floor/plating{
broken = 1
@@ -21780,12 +21828,45 @@
/area/security/prison{
name = "Prison Toilet"
})
+"gIw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"gIQ" = (
/obj/structure/table,
/obj/item/circuitboard/machine/paystand,
/obj/machinery/airalarm/directional/north,
/turf/open/floor/iron/dark,
/area/vacant_room/commissary/commissary2)
+"gIR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/aft)
"gIU" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -21912,16 +21993,6 @@
"gKY" = (
/turf/open/floor/iron,
/area/teleporter)
-"gLa" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"gLb" = (
/turf/closed/wall/r_wall,
/area/engine/atmospherics_engine)
@@ -21968,6 +22039,18 @@
/obj/item/stack/sheet/wood/ten,
/turf/open/floor/wood,
/area/library)
+"gLU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/aft)
"gLV" = (
/obj/effect/turf_decal/bot,
/obj/machinery/computer/card/minor/ce{
@@ -22061,6 +22144,19 @@
},
/turf/open/floor/carpet,
/area/maintenance/port/aft)
+"gNq" = (
+/obj/effect/turf_decal/guideline/guideline_in/brown,
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/brown/half{
+ dir = 8
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
"gNs" = (
/obj/structure/table,
/obj/effect/turf_decal/stripes/line{
@@ -22176,14 +22272,6 @@
/obj/structure/sign/departments/minsky/security/command,
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/hop)
-"gOl" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/sunnybush,
-/turf/open/floor/grass/no_border,
-/area/hallway/secondary/exit/departure_lounge)
"gOr" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
/obj/structure/disposalpipe/segment{
@@ -22253,12 +22341,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/dark,
/area/engine/atmos)
-"gPt" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/medical/morgue)
"gPy" = (
/obj/structure/table,
/obj/item/stack/cable_coil/white{
@@ -22473,6 +22555,20 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/dark,
/area/engine/atmos)
+"gTv" = (
+/obj/structure/bed,
+/obj/item/bedsheet/dorms,
+/obj/item/toy/plush/beeplushie{
+ desc = "A cute toy that resembles an even cuter beetle.";
+ name = "beetle plushie"
+ },
+/obj/structure/sign/poster/contraband/random{
+ pixel_x = 32
+ },
+/turf/open/floor/prison,
+/area/security/prison{
+ name = "Prison Dorms"
+ })
"gTz" = (
/obj/machinery/camera/autoname{
dir = 4
@@ -22601,30 +22697,6 @@
},
/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/ai_upload)
-"gUF" = (
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/machinery/conveyor_switch/oneway{
- dir = 8;
- id = "garbage";
- name = "disposal conveyor"
- },
-/obj/machinery/door/window/southleft{
- dir = 1;
- icon_state = "right";
- id_tag = "Bountydoors";
- req_access_txt = null;
- req_one_access_txt = "31;48;26"
- },
-/obj/effect/mapping_helpers/airlock/unres{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal)
"gUK" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow{
@@ -22636,6 +22708,15 @@
},
/turf/open/floor/plating,
/area/security/brig)
+"gUM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal)
"gUO" = (
/obj/effect/turf_decal/guideline/guideline_in/darkblue{
dir = 8
@@ -22669,6 +22750,19 @@
/obj/effect/spawner/lootdrop/maintenance/three,
/turf/open/floor/iron,
/area/maintenance/department/science)
+"gVy" = (
+/obj/effect/turf_decal/guideline/guideline_in/blue{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/blue/half{
+ dir = 1
+ },
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
"gVH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -22710,13 +22804,6 @@
/obj/effect/turf_decal/tile/blue,
/turf/open/floor/iron,
/area/maintenance/department/medical/morgue)
-"gWq" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 3
- },
-/turf/open/floor/iron/dark,
-/area/quartermaster/exploration_prep)
"gWz" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/tile/yellow/half/contrasted{
@@ -22729,10 +22816,18 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/hallway/primary/aft)
-"gWE" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
+"gWJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/aft)
"gXs" = (
/obj/effect/decal/cleanable/oil,
/turf/open/floor/wood,
@@ -22787,6 +22882,19 @@
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
/area/medical/chemistry)
+"gYQ" = (
+/obj/structure/window/reinforced,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/leafybush,
+/obj/item/toy/gun{
+ desc = "It has his name engraved in the barrel. On closer inspection it's just a toy";
+ name = "Tony's gun";
+ pixel_x = -12;
+ pixel_y = 5
+ },
+/turf/open/floor/grass/no_border,
+/area/hallway/secondary/exit/departure_lounge)
"gYR" = (
/obj/structure/closet/emcloset,
/obj/effect/turf_decal/stripes/line{
@@ -22972,6 +23080,23 @@
"haY" = (
/turf/closed/wall/r_wall,
/area/bridge)
+"hbn" = (
+/obj/structure/sign/warning/vacuum/external{
+ pixel_y = 32
+ },
+/obj/structure/table/wood/fancy,
+/obj/item/food/grown/flower/harebell{
+ pixel_y = 3
+ },
+/obj/item/candle/infinite{
+ pixel_x = 9;
+ pixel_y = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/turf/open/floor/iron/dark,
+/area/chapel/main)
"hbo" = (
/obj/structure/sink{
dir = 1;
@@ -23027,6 +23152,18 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/tech,
/area/engine/atmos)
+"hcc" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/central)
"hcf" = (
/mob/living/simple_animal/pet/dog/pug{
density = 0;
@@ -23127,15 +23264,13 @@
},
/turf/open/floor/iron/dark,
/area/engine/storage)
-"hcU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
+"hdh" = (
/obj/structure/cable/yellow{
- icon_state = "4-8"
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/generic,
+/obj/structure/disposalpipe/segment{
+ dir = 1
},
/turf/open/floor/catwalk_floor,
/area/maintenance/department/engine)
@@ -23184,25 +23319,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/sepia,
/area/maintenance/port/central)
-"heS" = (
-/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/item/radio/intercom{
- desc = "Talk through this. It looks like it has been modified to not broadcast.";
- freerange = 1;
- name = "Prison intercom";
- pixel_y = 25;
- prison_radio = 1
- },
-/turf/open/floor/prison,
-/area/security/prison{
- name = "Prison Visitation"
- })
"hff" = (
/obj/item/kirbyplants/random,
/obj/structure/disposalpipe/segment{
@@ -23320,6 +23436,13 @@
},
/turf/open/floor/iron/white,
/area/medical/cryo)
+"hgC" = (
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_y = -34
+ },
+/turf/open/floor/glass/reinforced,
+/area/chapel/main)
"hhn" = (
/obj/effect/spawner/room/tenxfive,
/turf/open/floor/plating,
@@ -23480,18 +23603,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/cafeteria)
-"hjN" = (
-/obj/structure/railing{
- layer = 3.1
- },
-/obj/structure/chair/fancy/comfy{
- buildstackamount = 0;
- color = "#742925";
- dir = 1
- },
-/obj/effect/turf_decal/siding/wideplating/dark,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"hjQ" = (
/obj/effect/turf_decal/siding/wideplating/dark{
dir = 1
@@ -23526,12 +23637,6 @@
dir = 10
},
/area/medical/medbay/central)
-"hky" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/medical/morgue)
"hkB" = (
/turf/closed/wall/rust,
/area/gateway)
@@ -23613,15 +23718,19 @@
/obj/effect/spawner/structure/window/plasma/reinforced,
/turf/open/floor/engine/n2,
/area/engine/atmos)
-"hmg" = (
-/obj/structure/railing/corner,
+"hmk" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 4
+ },
/obj/structure/disposalpipe/segment{
- dir = 1
+ dir = 4
},
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 8
},
-/turf/open/floor/iron/dark/corner,
/area/hallway/primary/central)
"hmn" = (
/obj/effect/landmark/start/medical_doctor,
@@ -23730,26 +23839,6 @@
},
/turf/open/floor/plating,
/area/science/mixing)
-"hop" = (
-/obj/structure/table/glass,
-/obj/item/surgicaldrill{
- pixel_x = 1;
- pixel_y = 7
- },
-/obj/item/razor{
- pixel_x = -6;
- pixel_y = 1
- },
-/obj/item/cautery{
- pixel_x = -1;
- pixel_y = 1
- },
-/obj/item/retractor{
- pixel_x = -2;
- pixel_y = 2
- },
-/turf/open/floor/iron,
-/area/medical/surgery)
"hoG" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable{
@@ -23856,6 +23945,25 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron/dark,
/area/engine/atmos)
+"hrN" = (
+/obj/effect/turf_decal/guideline/guideline_out/brown{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/effect/landmark/blobstart,
+/turf/open/floor/iron/techmaint,
+/area/hallway/secondary/service)
"hrP" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
@@ -24081,15 +24189,6 @@
},
/turf/open/floor/iron/tech,
/area/engine/engine_room)
-"hvO" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/machinery/meter,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"hvW" = (
/turf/open/floor/carpet,
/area/maintenance/port/aft)
@@ -24197,6 +24296,29 @@
},
/turf/open/floor/iron/dark,
/area/hallway/secondary/exit/departure_lounge)
+"hxx" = (
+/obj/machinery/computer/pod/old{
+ density = 0;
+ icon = 'icons/obj/airlock_machines.dmi';
+ icon_state = "airlock_control_standby";
+ id = "chapelgun";
+ layer = 4;
+ name = "Mass Driver Controller";
+ pixel_y = 32
+ },
+/obj/structure/table/wood/fancy,
+/obj/item/food/grown/flower/harebell{
+ pixel_y = 3
+ },
+/obj/item/candle/infinite{
+ pixel_x = -8;
+ pixel_y = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/turf/open/floor/iron/dark,
+/area/chapel/main)
"hxB" = (
/obj/machinery/flasher{
id = "aicore";
@@ -24233,6 +24355,16 @@
},
/turf/closed/wall/r_wall,
/area/maintenance/department/bridge)
+"hyp" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_y = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"hyw" = (
/obj/machinery/light,
/obj/item/radio/intercom{
@@ -24242,46 +24374,6 @@
},
/turf/open/floor/iron/sepia,
/area/quartermaster/office)
-"hyD" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/turf/open/floor/iron/dark,
-/area/chapel/main)
-"hyQ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/iron/dark,
-/area/science/robotics)
-"hyX" = (
-/obj/machinery/power/terminal{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2{
- dir = 6
- },
-/obj/structure/extinguisher_cabinet{
- pixel_y = 32
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"hzd" = (
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
@@ -24323,6 +24415,18 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"hAe" = (
+/obj/structure/railing{
+ dir = 6;
+ layer = 3.1
+ },
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 6
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/vending/hydroseeds,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"hAk" = (
/obj/effect/turf_decal/tile/dark_green/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -24407,18 +24511,6 @@
dir = 8
},
/area/medical/medbay/central)
-"hBG" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"hBK" = (
/turf/closed/wall/r_wall,
/area/security/main{
@@ -24591,15 +24683,6 @@
},
/turf/open/floor/iron/dark,
/area/engine/engine_room)
-"hEC" = (
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal)
"hEF" = (
/obj/structure/window/reinforced{
dir = 8
@@ -24632,6 +24715,10 @@
},
/turf/open/floor/iron,
/area/science/lobby)
+"hFw" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"hFC" = (
/obj/effect/landmark/start/station_engineer,
/obj/effect/turf_decal/tile/neutral/half/contrasted,
@@ -24698,35 +24785,6 @@
/obj/effect/spawner/room/fivexthree,
/turf/open/floor/plating,
/area/maintenance/port/central)
-"hGt" = (
-/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
-/obj/machinery/camera/autoname{
- dir = 9;
- network = list("ss13","prison")
- },
-/obj/item/radio/intercom{
- desc = "Talk through this. It looks like it has been modified to not broadcast.";
- freerange = 1;
- name = "Prison intercom";
- pixel_x = 25;
- prison_radio = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/prison,
-/area/security/prison)
-"hGy" = (
-/obj/structure/railing,
-/obj/effect/turf_decal/siding/wideplating/dark,
-/turf/open/floor/iron/dark/smooth_edge{
- dir = 1
- },
-/area/hallway/primary/central)
"hGI" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
@@ -24755,30 +24813,18 @@
/obj/item/folder/white,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat_interior)
-"hHo" = (
-/obj/machinery/power/terminal{
+"hHs" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "0-2"
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
},
/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer2{
- dir = 8
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
+/turf/open/floor/catwalk_floor,
+/area/maintenance/starboard/aft)
"hHD" = (
/obj/item/kirbyplants/random,
/obj/machinery/firealarm/directional/north,
@@ -24816,25 +24862,6 @@
},
/turf/open/floor/carpet/purple,
/area/chapel/main)
-"hIE" = (
-/obj/effect/turf_decal/guideline/guideline_in/darkblue{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/effect/turf_decal/tile/dark_blue/half{
- dir = 1
- },
-/obj/effect/turf_decal/tile/dark_blue/half{
- dir = 1
- },
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
"hJe" = (
/obj/machinery/camera/autoname{
dir = 8
@@ -24851,12 +24878,6 @@
/obj/structure/closet/cardboard,
/turf/open/floor/iron/dark,
/area/quartermaster/storage)
-"hJh" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal)
"hJD" = (
/obj/effect/turf_decal/delivery,
/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{
@@ -24886,21 +24907,6 @@
},
/turf/open/floor/circuit/telecomms/server,
/area/science/xenobiology)
-"hJK" = (
-/obj/effect/landmark/start/assistant,
-/obj/effect/turf_decal/siding/white{
- dir = 6
- },
-/turf/open/floor/glass/reinforced,
-/area/hallway/primary/central{
- dynamic_lighting = 2;
- lighting_brightness_tube = 11;
- lighting_colour_bulb = "#DDE6FF";
- lighting_colour_night = "#DDE6FF";
- lighting_colour_tube = "#DDE6FF";
- lighting_overlay_colour = "#DDE6FF";
- power_light = 0
- })
"hJO" = (
/obj/effect/turf_decal/tile/brown/half/contrasted{
dir = 8
@@ -25081,6 +25087,20 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/maintenance/port/aft)
+"hLx" = (
+/obj/machinery/atmospherics/pipe/layer_manifold,
+/obj/structure/table/reinforced,
+/obj/item/clothing/glasses/meson/engine{
+ pixel_x = -2;
+ pixel_y = 6
+ },
+/obj/item/clothing/glasses/meson/engine{
+ pixel_x = 2
+ },
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/engine/engine_room)
"hLD" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 10
@@ -25109,6 +25129,18 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"hMb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"hMe" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -25123,29 +25155,6 @@
},
/turf/open/floor/iron,
/area/gateway)
-"hMp" = (
-/obj/structure/railing/corner{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/effect/turf_decal/siding/wideplating/dark/corner{
- dir = 1
- },
-/obj/machinery/camera/autoname{
- view_range = 12
- },
-/obj/machinery/status_display/evac{
- pixel_y = 32
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/iron/dark/corner{
- dir = 1
- },
-/area/hallway/primary/central)
"hMs" = (
/obj/structure/closet/secure_closet/security,
/obj/effect/turf_decal/tile/red/half/contrasted{
@@ -25202,6 +25211,15 @@
/obj/structure/lattice,
/turf/open/space/basic,
/area/space/nearstation)
+"hNj" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"hNq" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
@@ -25278,13 +25296,6 @@
/obj/structure/sign/warning/vacuum,
/turf/closed/wall/r_wall,
/area/security/checkpoint/escape)
-"hOH" = (
-/obj/machinery/door/window/brigdoor/northleft{
- name = "Telecommunications";
- req_access_txt = "49"
- },
-/turf/open/floor/iron/dark,
-/area/quartermaster/exploration_prep)
"hOJ" = (
/obj/structure/window/reinforced{
dir = 4
@@ -25373,21 +25384,6 @@
/obj/machinery/light,
/turf/open/floor/iron,
/area/medical/sleeper)
-"hPr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"hPE" = (
/obj/structure/closet,
/obj/item/crowbar/red,
@@ -25459,11 +25455,43 @@
/obj/effect/landmark/prisonspawn,
/turf/open/floor/prison,
/area/security/prison)
+"hQo" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/grille/broken,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/aft)
"hQy" = (
/obj/effect/turf_decal/bot,
/obj/machinery/vending/medical,
/turf/open/floor/iron/dark,
/area/medical/medbay/central)
+"hQH" = (
+/obj/effect/turf_decal/guideline/guideline_edge/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/obj/structure/sign/poster/random{
+ pixel_x = 32
+ },
+/obj/machinery/camera/autoname{
+ dir = 8;
+ network = list("ss13","security")
+ },
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/landmark/start/security_officer,
+/turf/open/floor/iron/dark,
+/area/security/brig/dock)
"hQN" = (
/obj/structure/bookcase/random/fiction,
/obj/effect/decal/cleanable/cobweb,
@@ -25536,6 +25564,26 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/sepia,
/area/quartermaster/storage)
+"hSy" = (
+/obj/structure/table/glass,
+/obj/item/surgicaldrill{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/razor{
+ pixel_x = -6;
+ pixel_y = 1
+ },
+/obj/item/cautery{
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/item/retractor{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/turf/open/floor/iron,
+/area/medical/surgery)
"hSG" = (
/obj/structure/table/reinforced,
/obj/item/paper_bin{
@@ -25546,12 +25594,6 @@
/obj/item/book/manual/wiki/sopengineering,
/turf/open/floor/carpet/royalblue,
/area/crew_quarters/heads/chief)
-"hSL" = (
-/obj/machinery/computer/apc_control{
- dir = 1
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"hSX" = (
/obj/effect/landmark/start/roboticist,
/obj/effect/decal/cleanable/dirt,
@@ -25606,15 +25648,6 @@
/obj/machinery/camera/autoname,
/turf/open/floor/iron/dark,
/area/storage/primary)
-"hTM" = (
-/obj/structure/closet/emcloset,
-/obj/effect/turf_decal/bot,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"hTN" = (
/obj/effect/turf_decal/stripes/corner{
dir = 1
@@ -25630,6 +25663,46 @@
dir = 1
},
/area/hallway/primary/central)
+"hUh" = (
+/obj/structure/rack,
+/obj/item/storage/box/rubbershot{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/storage/box/rubbershot{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/storage/box/rubbershot{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/storage/box/rubbershot{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/storage/box/rubbershot{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/storage/box/rubbershot{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/storage/box/breacherslug,
+/obj/item/storage/box/breacherslug,
+/obj/item/storage/box/breacherslug,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light{
+ bulb_colour = "#DE3A3A";
+ dir = 8;
+ nightshift_light_color = "#DE3A3A"
+ },
+/turf/open/floor/iron,
+/area/ai_monitored/security/armory)
"hUK" = (
/obj/effect/turf_decal/tile/brown/half/contrasted{
dir = 8
@@ -25858,6 +25931,15 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron/tech,
/area/engine/engine_room)
+"hZM" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/engine/engine_room)
"hZQ" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -25909,6 +25991,7 @@
pixel_x = -19;
pixel_y = 1
},
+/obj/item/clothing/gloves/color/yellow,
/turf/open/floor/iron/dark,
/area/engine/storage)
"iaG" = (
@@ -25941,18 +26024,6 @@
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
/area/crew_quarters/kitchen)
-"ibc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/starboard/aft)
"ibv" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
@@ -26129,13 +26200,6 @@
/obj/structure/cable/yellow,
/turf/open/floor/iron,
/area/quartermaster/sorting)
-"ieI" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/central)
"ieQ" = (
/obj/effect/turf_decal/bot,
/obj/effect/landmark/start/cyborg,
@@ -26193,6 +26257,15 @@
/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/server)
+"ifP" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 4
+ },
+/obj/structure/railing/corner,
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 8
+ },
+/area/hallway/primary/central)
"igf" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/preopen{
@@ -26212,6 +26285,16 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/maintenance/department/engine)
+"igH" = (
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/solar{
+ id = "portsolar";
+ name = "Port Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/starboard/aft)
"igJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -26248,21 +26331,22 @@
},
/turf/open/floor/iron,
/area/security/brig/medbay)
-"ihy" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/solar{
- id = "portsolar";
- name = "Port Solar Array"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/starboard/fore)
"ihz" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/white/half/contrasted,
/turf/open/floor/iron,
/area/maintenance/department/medical/morgue)
+"ihE" = (
+/obj/structure/railing{
+ dir = 5
+ },
+/obj/machinery/vending/cigarette,
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 5
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"iim" = (
/obj/structure/closet/l3closet/virology,
/obj/effect/turf_decal/bot,
@@ -26431,17 +26515,6 @@
},
/turf/open/floor/plating,
/area/science/xenobiology)
-"ikF" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_y = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"ikR" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
@@ -26529,12 +26602,6 @@
},
/turf/open/floor/iron,
/area/construction/mining/aux_base)
-"ilS" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"ilX" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -26560,24 +26627,6 @@
},
/turf/open/floor/iron/sepia,
/area/quartermaster/storage)
-"imo" = (
-/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
- alpha = 180;
- color = "#DE3A3A"
- },
-/obj/machinery/light_switch{
- pixel_x = -24;
- pixel_y = 25
- },
-/obj/machinery/button/door{
- id = "armory";
- name = "Armory Shutters";
- pixel_x = -40;
- pixel_y = 25;
- req_access_txt = "3"
- },
-/turf/open/floor/iron/dark,
-/area/security/warden)
"imA" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -26618,6 +26667,22 @@
/obj/machinery/firealarm/directional/east,
/turf/open/floor/wood,
/area/crew_quarters/theatre)
+"inT" = (
+/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
+ alpha = 180;
+ color = "#DE3A3A"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 8;
+ name = "HOS"
+ },
+/turf/open/floor/iron,
+/area/security/brig)
"inZ" = (
/obj/effect/turf_decal/guideline/guideline_tri/purple{
dir = 8
@@ -26643,6 +26708,24 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
+"ios" = (
+/obj/structure/closet/crate/freezer/blood,
+/obj/item/rollerbed,
+/obj/item/rollerbed{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/structure/closet/crate/medical,
+/obj/machinery/firealarm/directional/east,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/item/clothing/suit/jacket/straight_jacket,
+/obj/item/clothing/glasses/blindfold{
+ pixel_x = -4;
+ pixel_y = 8
+ },
+/obj/item/clothing/mask/muzzle,
+/turf/open/floor/iron/white,
+/area/security/brig/medbay)
"iov" = (
/obj/structure/railing/corner{
dir = 1
@@ -26650,42 +26733,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron/sepia,
/area/quartermaster/office)
-"ioG" = (
-/obj/effect/turf_decal/guideline/guideline_out/brown{
- dir = 1
- },
-/obj/effect/landmark/xeno_spawn,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/iron/techmaint,
-/area/hallway/secondary/service)
-"ips" = (
-/obj/structure/table/reinforced,
-/obj/item/gun/energy/e_gun{
- pixel_x = 1;
- pixel_y = 5
- },
-/obj/item/gun/energy/e_gun{
- pixel_x = 4;
- pixel_y = 3
- },
-/obj/machinery/door/window/brigdoor/westleft{
- name = "energy guns";
- req_access_txt = "3"
- },
-/obj/structure/window/reinforced,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/ai_monitored/security/armory)
"ipw" = (
/obj/effect/turf_decal/tile/brown/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -26881,20 +26928,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/security/brig)
-"iqX" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/grille/broken,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/aft)
"iqZ" = (
/obj/machinery/door/poddoor/incinerator_atmos_aux,
/turf/open/floor/engine/vacuum,
@@ -26954,17 +26987,16 @@
},
/turf/open/floor/iron/sepia,
/area/quartermaster/office)
-"isJ" = (
-/obj/effect/turf_decal/tile/neutral/half/contrasted,
-/obj/effect/turf_decal/bot,
-/obj/machinery/computer/security{
- dir = 8;
- network = list("security")
+"isG" = (
+/obj/machinery/light/small{
+ dir = 1
},
-/turf/open/floor/iron/dark,
-/area/security/main{
- name = "Security Locker Room"
- })
+/obj/structure/grille/broken,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/central)
"isP" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
@@ -27003,10 +27035,6 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/storage/eva)
-"itB" = (
-/obj/structure/railing/corner,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"itL" = (
/obj/machinery/modular_fabricator/exosuit_fab{
output_direction = 8
@@ -27067,25 +27095,6 @@
/obj/item/storage/belt/utility,
/turf/open/floor/iron/sepia,
/area/maintenance/port/central)
-"ivY" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4{
- dir = 10
- },
-/obj/machinery/firealarm/directional/north,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"iwl" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -27208,6 +27217,26 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/science/xenobiology)
+"ixG" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/dark_red{
+ alpha = 180;
+ color = "#DE3A3A";
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/auto_name/north{
+ pixel_y = 24
+ },
+/turf/open/floor/iron/dark,
+/area/security/warden)
"ixI" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -27257,12 +27286,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/cryopods)
-"iyq" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/turf/open/floor/glass/reinforced,
-/area/crew_quarters/cafeteria)
"iyG" = (
/obj/machinery/disposal/bin,
/obj/effect/turf_decal/bot,
@@ -27286,6 +27309,15 @@
},
/turf/open/floor/plating,
/area/ai_monitored/storage/satellite)
+"iyP" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/central)
"iyR" = (
/obj/effect/turf_decal/tile/dark_green/fourcorners/contrasted,
/obj/machinery/camera/autoname{
@@ -27303,6 +27335,24 @@
/obj/machinery/firealarm/directional/west,
/turf/open/floor/iron/grid/steel,
/area/hydroponics)
+"iyV" = (
+/obj/effect/turf_decal/guideline/guideline_out/brown{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/iron/techmaint,
+/area/maintenance/central)
"izg" = (
/obj/machinery/door/airlock/research{
name = "Genetics Lab";
@@ -27373,12 +27423,44 @@
},
/turf/open/floor/iron,
/area/science/storage)
-"iAu" = (
-/obj/effect/turf_decal/siding/wideplating/dark/corner{
- dir = 4
- },
+"izQ" = (
+/obj/effect/landmark/start/assistant,
/turf/open/floor/glass/reinforced,
-/area/chapel/main)
+/area/hallway/primary/central{
+ dynamic_lighting = 2;
+ lighting_brightness_tube = 11;
+ lighting_colour_bulb = "#DDE6FF";
+ lighting_colour_night = "#DDE6FF";
+ lighting_colour_tube = "#DDE6FF";
+ lighting_overlay_colour = "#DDE6FF";
+ power_light = 0
+ })
+"iAo" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/light/floor{
+ brightness = 15;
+ bulb_colour = "#FFE4CE";
+ bulb_vacuum_brightness = 15;
+ nightshift_brightness = 10;
+ nightshift_light_color = "#E6EBFF"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
+"iAv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/security)
"iAx" = (
/obj/effect/turf_decal/stripes/corner,
/obj/structure/cable{
@@ -27398,6 +27480,21 @@
},
/turf/closed/wall/rust,
/area/chapel/main)
+"iBo" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/guideline/guideline_in/green{
+ color = "#439C1E"
+ },
+/obj/effect/turf_decal/tile/dark_green/half{
+ dir = 8
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
"iBq" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/obj/structure/extinguisher_cabinet{
@@ -27486,6 +27583,27 @@
},
/turf/open/floor/iron/white,
/area/science/explab)
+"iDp" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/sheet/mineral/plasma{
+ amount = 5;
+ pixel_x = -5;
+ pixel_y = 16
+ },
+/obj/item/reagent_containers/glass/beaker/large{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/reagent_containers/dropper{
+ pixel_x = -3;
+ pixel_y = -2
+ },
+/obj/item/toy/plush/slimeplushie/pink{
+ pixel_x = -12;
+ pixel_y = 7
+ },
+/turf/open/floor/iron/grid/steel,
+/area/science/xenobiology)
"iDw" = (
/obj/effect/turf_decal/tile/neutral/anticorner{
dir = 5
@@ -27532,21 +27650,6 @@
"iEd" = (
/turf/closed/wall/r_wall,
/area/science/xenobiology)
-"iEz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
-"iEI" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Maintenance Hatch";
- req_access_txt = "50"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/central)
"iEK" = (
/obj/machinery/light{
dir = 4
@@ -27554,6 +27657,21 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/engine/engine_room)
+"iEM" = (
+/obj/effect/turf_decal/guideline/guideline_in/brown,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
+/obj/structure/disposalpipe/junction/flip{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/brown/half{
+ dir = 8
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
"iEO" = (
/turf/closed/wall,
/area/engine/storage)
@@ -27572,6 +27690,17 @@
},
/turf/open/floor/iron,
/area/science/storage)
+"iFf" = (
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/obj/item/radio/intercom{
+ desc = "Talk through this. It looks like it has been modified to not broadcast.";
+ freerange = 1;
+ name = "Prison intercom";
+ pixel_y = -25;
+ prison_radio = 1
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"iFD" = (
/obj/structure/closet/l3closet/virology,
/obj/effect/turf_decal/bot,
@@ -27594,6 +27723,21 @@
/obj/effect/turf_decal/box,
/turf/open/floor/iron/dark,
/area/storage/tech)
+"iFL" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
+ alpha = 180;
+ color = "#DE3A3A"
+ },
+/obj/structure/disposalpipe/sorting/mail{
+ sortType = 30
+ },
+/turf/open/floor/iron,
+/area/security/main{
+ name = "Security Viewing Hall"
+ })
"iFM" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -27767,18 +27911,6 @@
},
/turf/open/floor/plating,
/area/maintenance/department/engine)
-"iJd" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/starboard/aft)
"iJe" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 4
@@ -27798,6 +27930,27 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
+"iJr" = (
+/obj/structure/railing/corner,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
+"iJF" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 3
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark,
+/area/quartermaster/exploration_prep)
"iJI" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -27825,24 +27978,22 @@
/obj/structure/sign/departments/minsky/medical/chemistry/chemical2,
/turf/closed/wall/rust,
/area/maintenance/starboard/aft)
-"iKw" = (
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_y = 1
+"iKp" = (
+/obj/effect/turf_decal/tile/neutral/half,
+/obj/structure/disposalpipe/segment{
+ dir = 5
},
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/machinery/light/floor{
- brightness = 15;
- bulb_colour = "#FFE4CE";
- bulb_vacuum_brightness = 15;
- nightshift_brightness = 10;
- nightshift_light_color = "#E6EBFF"
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
},
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/chapel/office)
"iKy" = (
/obj/machinery/door/airlock{
name = "Service Hall";
@@ -28012,19 +28163,6 @@
},
/turf/open/floor/iron/dark,
/area/security/courtroom)
-"iNo" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_y = 1
- },
-/obj/structure/chair/fancy/comfy{
- buildstackamount = 0;
- color = "#742925";
- dir = 4
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"iNB" = (
/obj/machinery/gateway{
dir = 9
@@ -28159,18 +28297,12 @@
"iQe" = (
/turf/open/floor/wood,
/area/crew_quarters/dorms)
-"iQm" = (
-/obj/structure/railing/corner{
- dir = 4
- },
-/obj/structure/disposalpipe/junction,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron/dark/corner{
- dir = 4
+"iQh" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
},
-/area/hallway/primary/central)
+/turf/open/floor/iron/dark,
+/area/science/robotics)
"iQp" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -28180,14 +28312,6 @@
},
/turf/open/floor/iron/tech,
/area/engine/atmos)
-"iQt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/railing/corner,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"iQH" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -28280,15 +28404,6 @@
},
/turf/open/floor/iron/tech,
/area/engine/engine_room)
-"iRN" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/medical/morgue)
"iRY" = (
/turf/closed/wall/r_wall,
/area/engine/atmos)
@@ -28298,16 +28413,6 @@
},
/turf/open/floor/wood,
/area/security/courtroom)
-"iSN" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/solar{
- id = "portsolar";
- name = "Port Solar Array"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/port/aft)
"iST" = (
/turf/closed/wall/r_wall,
/area/tcommsat/computer)
@@ -28362,6 +28467,22 @@
/obj/machinery/airalarm/directional/east,
/turf/open/floor/wood,
/area/security/prison)
+"iUC" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{
+ dir = 4;
+ initialize_directions = 4
+ },
+/turf/open/floor/iron/dark,
+/area/quartermaster/exploration_prep)
+"iUK" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_edge,
+/area/hallway/primary/central)
"iUW" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -28656,6 +28777,21 @@
},
/turf/open/floor/iron/dark,
/area/security/brig)
+"iZG" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/tile/neutral/half,
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 1
+ },
+/obj/effect/turf_decal/caution{
+ pixel_y = -17
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/iron,
+/area/maintenance/port/aft)
"iZK" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted{
alpha = 200;
@@ -28721,6 +28857,15 @@
/mob/living/basic/cockroach,
/turf/open/floor/wood,
/area/vacant_room/office)
+"jat" = (
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal)
"jaC" = (
/obj/structure/chair/office/light{
dir = 1
@@ -28754,18 +28899,6 @@
},
/turf/open/floor/iron,
/area/engine/engineering)
-"jaG" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/iron/techmaint,
-/area/maintenance/central)
"jaQ" = (
/obj/structure/chair/office/light{
dir = 8
@@ -28953,18 +29086,15 @@
dir = 8
},
/area/hallway/secondary/exit/departure_lounge)
-"jdh" = (
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/glass/reinforced,
-/area/hallway/primary/central{
- dynamic_lighting = 2;
- lighting_brightness_tube = 11;
- lighting_colour_bulb = "#DDE6FF";
- lighting_colour_night = "#DDE6FF";
- lighting_colour_tube = "#DDE6FF";
- lighting_overlay_colour = "#DDE6FF";
- power_light = 0
- })
+"jds" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/guideline/guideline_in/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow/half,
+/obj/effect/turf_decal/tile/yellow/half,
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
"jdz" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/tile/yellow/half/contrasted{
@@ -29023,13 +29153,21 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating,
/area/maintenance/port/central)
-"jdW" = (
+"jeb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
/obj/structure/cable/yellow{
- icon_state = "1-2"
+ icon_state = "2-4"
},
-/obj/effect/landmark/blobstart,
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/starboard/aft)
"jeK" = (
/turf/closed/wall,
/area/security/prison{
@@ -29063,6 +29201,15 @@
/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior,
/turf/open/floor/engine,
/area/engine/atmospherics_engine)
+"jfg" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/quartermaster/exploration_prep)
"jfn" = (
/obj/structure/table/reinforced,
/obj/effect/turf_decal/siding/wideplating/dark{
@@ -29070,13 +29217,25 @@
},
/turf/open/floor/iron/cafeteria,
/area/crew_quarters/kitchen)
-"jfD" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Maintenance Hatch";
- req_one_access_txt = "12;6"
+"jfo" = (
+/obj/effect/turf_decal/guideline/guideline_in/blue{
+ dir = 8
},
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/department/medical/morgue)
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue/half{
+ dir = 1
+ },
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
+"jfF" = (
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/central)
"jfG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
@@ -29107,6 +29266,27 @@
/area/security/main{
name = "Security Locker Room"
})
+"jfV" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/sunnybush,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "hopqueue";
+ name = "HoP Queue Shutters"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/grass/no_border,
+/area/crew_quarters/heads/hop)
"jgz" = (
/obj/structure/railing/corner{
dir = 8
@@ -29190,14 +29370,6 @@
},
/turf/open/floor/plating,
/area/security/brig/dock)
-"jgU" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/generic,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/medical/morgue)
"jho" = (
/obj/effect/turf_decal/guideline/guideline_edge/neutral{
alpha = 255;
@@ -29237,6 +29409,19 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"jhy" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/mob/living/basic/cockroach,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/central)
"jhX" = (
/obj/machinery/computer/nanite_chamber_control{
dir = 4
@@ -29293,15 +29478,6 @@
/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior,
/turf/open/floor/engine,
/area/engine/atmospherics_engine)
-"jjB" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/landmark/blobstart,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/security)
"jkc" = (
/obj/structure/table/reinforced,
/obj/item/storage/fancy/donut_box{
@@ -29420,6 +29596,18 @@
},
/turf/open/floor/plating,
/area/quartermaster/warehouse)
+"jmt" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"jmw" = (
/obj/item/reagent_containers/food/drinks/drinkingglass{
pixel_x = -7;
@@ -29484,15 +29672,6 @@
},
/turf/open/floor/carpet/purple,
/area/crew_quarters/heads/hor)
-"jof" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/obj/structure/railing/corner,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"joH" = (
/obj/structure/table/reinforced,
/obj/item/reagent_containers/food/condiment/saltshaker{
@@ -29595,23 +29774,6 @@
dir = 4
},
/area/science/lab)
-"jpI" = (
-/obj/structure/window/reinforced{
- dir = 4;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/machinery/light/floor{
- brightness = 15;
- bulb_emergency_brightness_mul = 2;
- bulb_vacuum_brightness = 15;
- nightshift_brightness = 10
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"jpK" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -29684,6 +29846,21 @@
/obj/machinery/firealarm/directional/south,
/turf/open/floor/iron/dark,
/area/engine/atmos)
+"jrn" = (
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"jrE" = (
/obj/machinery/light{
dir = 8
@@ -29781,22 +29958,6 @@
/obj/effect/landmark/start/virologist,
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
-"jsh" = (
-/obj/effect/turf_decal/guideline/guideline_in/darkblue{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/dark_blue/half{
- dir = 1
- },
-/obj/effect/turf_decal/tile/dark_blue/half{
- dir = 1
- },
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
"jsk" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/components/binary/pump/on{
@@ -29856,21 +30017,6 @@
},
/turf/open/floor/engine,
/area/science/mixing/chamber)
-"jsT" = (
-/obj/effect/turf_decal/guideline/guideline_in/brown,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
-/obj/structure/disposalpipe/junction/flip{
- dir = 8
- },
-/obj/effect/turf_decal/tile/brown/half{
- dir = 8
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
"jth" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -29993,6 +30139,18 @@
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
/area/maintenance/department/medical/morgue)
+"jvi" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"jvl" = (
/obj/effect/turf_decal/delivery,
/obj/effect/turf_decal/stripes/line{
@@ -30112,22 +30270,6 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/iron/white,
/area/science/xenobiology)
-"jxc" = (
-/obj/machinery/computer/security{
- pixel_y = -3
- },
-/obj/machinery/camera/autoname{
- network = list("ss13","security")
- },
-/obj/machinery/computer/security/telescreen{
- network = list("ss13");
- pixel_y = 25
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/turf/open/floor/carpet/red,
-/area/security/detectives_office)
"jxf" = (
/obj/structure/chair/office/light{
dir = 8
@@ -30228,15 +30370,6 @@
},
/turf/open/space/basic,
/area/solar/port/fore)
-"jyo" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/chapel/office)
"jyu" = (
/turf/open/floor/iron/white,
/area/security/brig/medbay)
@@ -30250,28 +30383,6 @@
},
/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
-"jyD" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "Engidesk";
- name = "engineering security door"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/northleft{
- dir = 2;
- name = "Engi Desk";
- req_one_access_txt = "32;19"
- },
-/obj/item/paper_bin{
- pixel_x = 7;
- pixel_y = 2
- },
-/obj/item/pen{
- pixel_x = 7;
- pixel_y = 4
- },
-/turf/open/floor/iron/dark,
-/area/engine/engineering)
"jyI" = (
/obj/structure/table/reinforced,
/obj/effect/turf_decal/stripes{
@@ -30309,6 +30420,13 @@
dir = 1
},
/area/medical/medbay/central)
+"jzf" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"jzB" = (
/obj/structure/chair/office{
dir = 8;
@@ -30351,6 +30469,19 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/engine/atmos)
+"jAh" = (
+/obj/structure/sign/warning/radiation_shelter{
+ pixel_x = 33;
+ pixel_y = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/bridge)
"jAx" = (
/obj/item/ammo_casing/c46x30mm,
/obj/item/ammo_casing/c46x30mm,
@@ -30384,31 +30515,9 @@
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/iron/sepia,
/area/maintenance/port/central)
-"jBo" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Maintenance Hatch";
- req_one_access_txt = "12;6"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/medical/morgue)
"jBw" = (
/turf/closed/wall,
/area/maintenance/department/security)
-"jBF" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/item/kirbyplants/random,
-/turf/open/floor/grass/no_border,
-/area/hallway/secondary/exit/departure_lounge)
"jBO" = (
/obj/structure/reagent_dispensers/peppertank{
pixel_y = -30
@@ -30464,16 +30573,6 @@
},
/turf/open/floor/iron/white,
/area/medical/sleeper)
-"jCl" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/components/binary/pump/on{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"jCt" = (
/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
alpha = 180;
@@ -30925,18 +31024,6 @@
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plating,
/area/construction/mining/aux_base)
-"jIv" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"jII" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
@@ -30962,6 +31049,13 @@
},
/turf/open/floor/carpet/blue,
/area/crew_quarters/heads/captain)
+"jJx" = (
+/obj/structure/grille,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/medical/morgue)
"jJz" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/structure/chair/fancy/comfy{
@@ -31041,18 +31135,6 @@
},
/turf/open/floor/plating,
/area/maintenance/department/bridge)
-"jKr" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/item/storage/pod{
- pixel_x = 32
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"jKx" = (
/turf/open/floor/iron/cafeteria,
/area/crew_quarters/kitchen)
@@ -31089,31 +31171,12 @@
"jLF" = (
/turf/closed/wall,
/area/tcommsat/server)
-"jMh" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/medical/morgue)
"jMi" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/department/science)
-"jMm" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_y = 1
- },
-/obj/structure/closet/firecloset/full,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"jMp" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -31175,6 +31238,12 @@
/obj/structure/closet/crate/miningcar,
/turf/open/floor/iron/sepia,
/area/maintenance/port/central)
+"jNz" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/medical/morgue)
"jNG" = (
/obj/structure/table/reinforced,
/obj/machinery/computer/med_data/laptop{
@@ -31198,20 +31267,6 @@
},
/turf/open/floor/iron/white,
/area/medical/apothecary)
-"jOj" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/item/kirbyplants/random,
-/turf/open/floor/grass/no_border,
-/area/hallway/secondary/exit/departure_lounge)
"jOp" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -31246,6 +31301,15 @@
dir = 8
},
/area/medical/medbay/central)
+"jOL" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/chapel/office)
"jOP" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 1
@@ -31308,17 +31372,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron/dark,
/area/bridge)
-"jPF" = (
-/obj/structure/window/reinforced{
- dir = 4;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"jPJ" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow{
@@ -31422,19 +31475,6 @@
},
/turf/open/floor/iron/dark,
/area/security/nuke_storage)
-"jRe" = (
-/obj/structure/railing{
- dir = 5
- },
-/obj/machinery/light/floor{
- brightness = 15;
- bulb_colour = "#FFE4CE";
- bulb_vacuum_brightness = 15;
- nightshift_brightness = 10;
- nightshift_light_color = "#E6EBFF"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"jRg" = (
/turf/open/floor/plating,
/area/hallway/secondary/service)
@@ -31551,15 +31591,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
-"jSt" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 9
- },
-/obj/structure/chair/fancy/bench/pew/right{
- dir = 4
- },
-/turf/open/floor/glass/reinforced,
-/area/chapel/main)
"jSx" = (
/turf/open/floor/iron,
/area/vacant_room/commissary/commissary2)
@@ -31608,6 +31639,21 @@
},
/turf/open/floor/wood,
/area/security/prison)
+"jTC" = (
+/obj/effect/turf_decal/guideline/guideline_out_arrow/brown{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/techmaint,
+/area/hallway/secondary/service)
"jTQ" = (
/obj/effect/turf_decal/loading_area{
dir = 1
@@ -31620,6 +31666,16 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
+"jTS" = (
+/mob/living/basic/cockroach,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"jTY" = (
/obj/machinery/camera/motion{
c_tag = "Armory - Internal";
@@ -31652,6 +31708,23 @@
},
/turf/open/floor/circuit/green,
/area/science/robotics/mechbay)
+"jUF" = (
+/turf/open/floor/iron/white,
+/area/science/robotics)
+"jUP" = (
+/obj/machinery/door/airlock/grunge{
+ name = "Chapel Office";
+ req_access_txt = "27"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/chapel/office)
"jVj" = (
/obj/structure/grille/broken,
/turf/open/floor/plating,
@@ -31713,6 +31786,21 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/exploration_prep)
+"jWT" = (
+/obj/effect/landmark/start/assistant,
+/obj/effect/turf_decal/siding/white{
+ dir = 9
+ },
+/turf/open/floor/glass/reinforced,
+/area/hallway/primary/central{
+ dynamic_lighting = 2;
+ lighting_brightness_tube = 11;
+ lighting_colour_bulb = "#DDE6FF";
+ lighting_colour_night = "#DDE6FF";
+ lighting_colour_tube = "#DDE6FF";
+ lighting_overlay_colour = "#DDE6FF";
+ power_light = 0
+ })
"jWV" = (
/obj/structure/table/reinforced,
/obj/effect/turf_decal/stripes/line,
@@ -31733,6 +31821,18 @@
/obj/item/book/manual/wiki/sopengineering,
/turf/open/floor/iron/dark,
/area/engine/engineering)
+"jXb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/guideline/guideline_in/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple/half{
+ dir = 4
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
"jXu" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -31754,18 +31854,6 @@
dir = 1
},
/area/medical/sleeper)
-"jXA" = (
-/obj/machinery/light{
- dir = 2
- },
-/obj/effect/turf_decal/guideline/guideline_edge/purple,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/iron/white/side{
- dir = 1
- },
-/area/science/research)
"jXI" = (
/obj/effect/turf_decal/tile/blue/half{
dir = 4
@@ -31778,6 +31866,21 @@
},
/turf/open/floor/iron/dark,
/area/engine/engine_room)
+"jYc" = (
+/obj/effect/turf_decal/guideline/guideline_in/red{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/dark_red/half{
+ color = "#DE3A3A"
+ },
+/obj/effect/turf_decal/tile/dark_red/half{
+ color = "#DE3A3A"
+ },
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
"jYe" = (
/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{
dir = 1
@@ -31872,6 +31975,13 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/lobby)
+"jZz" = (
+/obj/machinery/door/airlock/grunge{
+ name = "Morgue";
+ req_access_txt = "6"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/department/medical/morgue)
"jZA" = (
/obj/structure/grille,
/turf/open/floor/plating/rust,
@@ -31923,6 +32033,26 @@
/obj/effect/turf_decal/box,
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
+"kap" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4,
+/obj/machinery/atmospherics/components/binary/valve/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"kaq" = (
/obj/structure/disposalpipe/segment{
dir = 6
@@ -32072,6 +32202,16 @@
},
/turf/open/floor/iron,
/area/hydroponics)
+"kdl" = (
+/obj/structure/grille/broken,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/bridge)
"kdE" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -32086,6 +32226,21 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/iron,
/area/engine/engine_room)
+"keh" = (
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"keJ" = (
/obj/structure/disposalpipe/segment{
dir = 1
@@ -32107,6 +32262,22 @@
/obj/machinery/atmospherics/pipe/simple/dark/visible,
/turf/open/floor/iron/tech,
/area/engine/atmos)
+"keN" = (
+/obj/effect/turf_decal/siding/wideplating/dark,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/turf/open/floor/carpet/purple,
+/area/chapel/main)
"keV" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
@@ -32134,6 +32305,14 @@
},
/turf/open/floor/iron,
/area/crew_quarters/cafeteria)
+"kfk" = (
+/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted{
+ alpha = 180;
+ color = "#DE3A3A";
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/security/warden)
"kfn" = (
/obj/structure/chair/fancy/sofa/old/right{
color = "#742925";
@@ -32211,21 +32390,6 @@
/obj/structure/cable/yellow,
/turf/open/floor/iron,
/area/science/robotics)
-"kgi" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"kgx" = (
/obj/structure/window/reinforced{
dir = 4
@@ -32264,6 +32428,14 @@
},
/turf/open/space/basic,
/area/solar/port/fore)
+"kgZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"khc" = (
/obj/structure/weightmachine/weightlifter,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -32271,15 +32443,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
-"khg" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/machinery/computer/security/telescreen/rd{
- pixel_y = 32
- },
-/turf/open/floor/carpet/purple,
-/area/crew_quarters/heads/hor)
"kht" = (
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -32449,6 +32612,25 @@
},
/turf/open/floor/iron/dark,
/area/engine/atmos)
+"kjn" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4{
+ dir = 10
+ },
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"kjs" = (
/obj/machinery/light,
/obj/effect/decal/cleanable/dirt/dust,
@@ -32485,22 +32667,6 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/central)
-"kkq" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
- },
-/obj/structure/extinguisher_cabinet{
- pixel_y = 32
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/iron,
-/area/engine/engine_room)
"kkv" = (
/obj/structure/closet/secure_closet/personal,
/obj/effect/turf_decal/guideline/guideline_edge/blue{
@@ -32524,6 +32690,24 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
+"kkK" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/machinery/light/floor{
+ brightness = 15;
+ bulb_colour = "#FFE4CE";
+ bulb_vacuum_brightness = 15;
+ nightshift_brightness = 10;
+ nightshift_light_color = "#E6EBFF"
+ },
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 8
+ },
+/area/hallway/primary/central)
"kkV" = (
/obj/effect/turf_decal/tile/dark_red/half/contrasted{
alpha = 180;
@@ -32623,18 +32807,22 @@
/obj/machinery/airalarm/directional/north,
/turf/open/floor/iron/grid/steel,
/area/hydroponics)
-"kma" = (
-/obj/structure/railing{
- dir = 10;
- layer = 3.1
+"klV" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
},
-/obj/effect/spawner/randomvend/cola,
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 10
+/obj/structure/table/glass,
+/obj/item/circular_saw,
+/obj/item/blood_filter{
+ pixel_x = -1;
+ pixel_y = 5
},
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
+/obj/item/hemostat,
+/obj/item/scalpel{
+ pixel_y = 12
+ },
+/turf/open/floor/iron,
+/area/medical/surgery)
"kml" = (
/obj/structure/table/reinforced,
/obj/item/clipboard{
@@ -32691,16 +32879,6 @@
},
/turf/open/floor/iron/dark,
/area/science/nanite)
-"knr" = (
-/mob/living/basic/cockroach,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"knx" = (
/obj/effect/turf_decal/tile/yellow{
dir = 4
@@ -32739,6 +32917,21 @@
/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/medical/virology)
+"kok" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/guideline/guideline_in/purple{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple/half{
+ dir = 4
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
"kor" = (
/turf/closed/wall/r_wall/rust,
/area/science/storage)
@@ -33016,21 +33209,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/wood,
/area/maintenance/port/aft)
-"ktQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/guideline/guideline_in/purple{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple/half{
- dir = 4
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
"kuA" = (
/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
alpha = 180;
@@ -33162,6 +33340,16 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/dark,
/area/engine/engine_room)
+"kwd" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Maintenance Hatch";
+ req_one_access_txt = "12;6"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/department/medical/morgue)
"kwh" = (
/turf/closed/wall,
/area/engine/engineering)
@@ -33222,13 +33410,6 @@
},
/turf/open/floor/plating,
/area/security/checkpoint/medical)
-"kxr" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"kxz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 9
@@ -33401,6 +33582,15 @@
},
/turf/open/floor/iron/sepia,
/area/maintenance/port/central)
+"kBh" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4,
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"kBs" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -33522,6 +33712,18 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/engine/engine_room)
+"kCX" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron/dark,
+/area/science/robotics)
"kDi" = (
/obj/structure/railing{
dir = 4
@@ -33612,16 +33814,6 @@
/obj/effect/spawner/structure/window/plasma/reinforced,
/turf/open/floor/plating,
/area/engine/engine_room)
-"kFb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/railing/corner{
- dir = 4
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"kFd" = (
/turf/closed/wall,
/area/crew_quarters/heads/chief)
@@ -33634,12 +33826,6 @@
"kFx" = (
/turf/closed/wall/r_wall,
/area/security/brig/medbay)
-"kFE" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/aft)
"kFI" = (
/obj/structure/cable{
icon_state = "0-8"
@@ -33747,6 +33933,18 @@
},
/turf/open/floor/iron/sepia,
/area/quartermaster/office)
+"kHx" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"kHy" = (
/obj/effect/turf_decal/delivery,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -33849,6 +34047,20 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/starboard/fore)
+"kJc" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/button/door{
+ id = "brigentrance";
+ name = "Brig Lockdown Control";
+ pixel_x = -25;
+ req_access_txt = "1"
+ },
+/turf/open/floor/iron/dark,
+/area/security/main{
+ name = "Security Locker Room"
+ })
"kJm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
@@ -33906,6 +34118,15 @@
},
/turf/open/floor/iron/tech/grid,
/area/engine/engine_room)
+"kJR" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/guideline/guideline_edge/blue{
+ dir = 8
+ },
+/obj/structure/closet/crate/freezer/surplus_limbs,
+/obj/item/organ/ears/cat,
+/turf/open/floor/iron,
+/area/medical/surgery)
"kJT" = (
/obj/machinery/conveyor{
dir = 4;
@@ -33918,10 +34139,6 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/storage)
-"kJY" = (
-/obj/machinery/vendor/exploration,
-/turf/open/floor/iron/dark,
-/area/quartermaster/exploration_prep)
"kKf" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -33993,26 +34210,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
-"kKG" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4{
- dir = 6
- },
-/obj/effect/decal/cleanable/greenglow,
-/obj/machinery/light{
- bulb_colour = "#22bfa2";
- bulb_vacuum_colour = "#22bfa2";
- dir = 8;
- nightshift_light_color = "#22bfa2"
- },
-/obj/machinery/power/smes/engineering{
- charge = 2e+007
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"kKQ" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/tile/neutral/half/contrasted,
@@ -34246,6 +34443,16 @@
},
/turf/open/floor/iron,
/area/science/lab)
+"kPR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/computer/security/telescreen/rd{
+ pixel_y = 32
+ },
+/obj/machinery/computer/card/minor/rd,
+/turf/open/floor/carpet/purple,
+/area/crew_quarters/heads/hor)
"kPT" = (
/obj/structure/flora/ausbushes/sparsegrass,
/turf/open/floor/grass,
@@ -34360,6 +34567,12 @@
},
/turf/open/floor/carpet/blue,
/area/bridge/meeting_room)
+"kSF" = (
+/obj/effect/landmark/start/chaplain,
+/obj/machinery/holopad,
+/obj/effect/turf_decal/box,
+/turf/open/floor/glass/reinforced,
+/area/chapel/main)
"kSP" = (
/obj/effect/turf_decal/loading_area{
dir = 8
@@ -34553,6 +34766,20 @@
},
/turf/open/floor/iron,
/area/science/misc_lab)
+"kVc" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_y = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"kVe" = (
/obj/effect/decal/cleanable/blood/old,
/obj/effect/decal/cleanable/dirt,
@@ -34621,6 +34848,13 @@
},
/turf/open/floor/iron/dark,
/area/engine/engine_room)
+"kWF" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/obj/structure/railing/corner,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"kWN" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -34841,6 +35075,9 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/bridge)
+"kYW" = (
+/turf/open/floor/catwalk_floor,
+/area/maintenance/central)
"kZd" = (
/obj/machinery/door/poddoor/preopen{
id = "Engineering";
@@ -34849,21 +35086,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/noslip/standard,
/area/engine/engineering)
-"kZj" = (
-/obj/structure/railing/corner{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"kZq" = (
/obj/effect/turf_decal/tile/dark_blue{
alpha = 180;
@@ -34906,24 +35128,6 @@
/area/security/main{
name = "Security Viewing Hall"
})
-"kZA" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"kZE" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
/obj/structure/disposalpipe/segment{
@@ -35056,6 +35260,20 @@
},
/turf/open/floor/iron/tech,
/area/engine/engine_room)
+"lbr" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/central)
"lbs" = (
/turf/open/floor/iron,
/area/engine/engine_room)
@@ -35088,6 +35306,15 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"lbF" = (
+/obj/effect/decal/cleanable/crayon,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/food/spaghetti/butternoodles,
+/turf/open/floor/plating{
+ burnt = 1
+ },
+/area/maintenance/department/medical)
"lbK" = (
/obj/machinery/door/poddoor/shutters/radiation/preopen{
id = "engsm";
@@ -35356,21 +35583,6 @@
/obj/item/storage/bag/tray,
/turf/open/floor/plating,
/area/maintenance/port/aft)
-"lfW" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/bot,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"lfX" = (
/mob/living/basic/mothroach,
/obj/structure/sign/poster/official/moth2{
@@ -35403,9 +35615,6 @@
},
/turf/open/floor/plating,
/area/maintenance/department/medical/morgue)
-"lgK" = (
-/turf/open/floor/glass/reinforced,
-/area/chapel/main)
"lgV" = (
/obj/effect/turf_decal/bot,
/obj/machinery/light,
@@ -35418,7 +35627,6 @@
/obj/structure/closet/secure_closet/atmospherics{
anchored = 1
},
-/obj/item/clothing/gloves/color/yellow,
/turf/open/floor/iron/dark,
/area/engine/atmos)
"lgY" = (
@@ -35432,6 +35640,16 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/engine/atmos)
+"lhk" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Maintenance Hatch";
+ req_one_access_txt = "12;6"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/medical/morgue)
"lhn" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/landmark/xeno_spawn,
@@ -35457,6 +35675,14 @@
},
/turf/open/floor/engine/o2,
/area/ai_monitored/turret_protected/ai)
+"lhK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/light_switch{
+ pixel_x = 21
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/wood,
+/area/chapel/office)
"lhM" = (
/obj/effect/turf_decal/tile/neutral,
/obj/effect/turf_decal/tile/purple{
@@ -35464,35 +35690,31 @@
},
/turf/open/floor/iron,
/area/maintenance/port/aft)
-"lhV" = (
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/window/reinforced{
+"lih" = (
+/obj/effect/turf_decal/guideline/guideline_in/neutral{
+ alpha = 255;
dir = 1
},
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
+/obj/structure/disposalpipe/segment{
dir = 8
},
-/mob/living/simple_animal/butterfly{
- name = "Lisa, PsyD"
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
},
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/disposalpipe/segment{
- dir = 8
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
},
-/turf/open/floor/grass/no_border,
-/area/medical/sleeper)
-"lhX" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
},
-/obj/structure/railing/corner{
- dir = 8
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
},
-/turf/open/floor/iron/dark/smooth_large,
+/turf/open/floor/iron/half,
/area/hallway/primary/central)
"lii" = (
/obj/structure/disposalpipe/segment{
@@ -35506,12 +35728,19 @@
dir = 1
},
/area/medical/medbay/central)
-"liz" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
+"ljm" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
},
-/turf/open/floor/iron/dark,
-/area/chapel/main)
+/obj/effect/landmark/xeno_spawn,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/central)
"ljt" = (
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -35585,15 +35814,6 @@
"lkl" = (
/turf/closed/wall/rust,
/area/vacant_room/commissary/commissary2)
-"lkm" = (
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/obj/structure/railing/corner{
- dir = 4
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"lko" = (
/obj/structure/sign/poster/contraband/clown{
pixel_x = -30
@@ -35632,13 +35852,6 @@
},
/turf/open/floor/iron/dark,
/area/chapel/main)
-"lkA" = (
-/obj/effect/landmark/start/cargo_technician,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/quartermaster/storage)
"lkC" = (
/obj/effect/turf_decal/guideline/guideline_edge/purple{
dir = 8
@@ -35770,18 +35983,6 @@
},
/turf/open/floor/plating,
/area/crew_quarters/heads/captain)
-"lnQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Maintenance Hatch";
- req_one_access_txt = "12;63"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/department/security)
"lnW" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -35880,6 +36081,15 @@
},
/turf/open/floor/iron/white,
/area/science/explab)
+"lpb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"lph" = (
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/cmo)
@@ -36018,25 +36228,6 @@
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"lrB" = (
-/obj/effect/turf_decal/guideline/guideline_in/red{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/effect/turf_decal/tile/dark_red/half{
- color = "#DE3A3A"
- },
-/obj/effect/turf_decal/tile/dark_red/half{
- color = "#DE3A3A"
- },
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
"lrK" = (
/obj/effect/turf_decal/stripes/end{
dir = 4
@@ -36078,13 +36269,6 @@
/obj/structure/closet/emcloset,
/turf/open/floor/plating,
/area/crew_quarters/dorms)
-"lsK" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"lsS" = (
/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
alpha = 180;
@@ -36158,14 +36342,6 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/qm)
-"ltK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/starboard/aft)
"ltO" = (
/obj/effect/turf_decal/delivery,
/obj/effect/turf_decal/guideline/guideline_edge/blue{
@@ -36234,13 +36410,6 @@
},
/turf/open/floor/iron/dark,
/area/engine/engine_room)
-"luw" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/central)
"luB" = (
/obj/structure/disposalpipe/segment{
dir = 2
@@ -36273,6 +36442,21 @@
/obj/machinery/computer/teleporter,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat_interior)
+"luR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"luY" = (
/obj/effect/turf_decal/tile/blue/opposingcorners{
dir = 1
@@ -36310,20 +36494,16 @@
},
/turf/open/floor/wood,
/area/crew_quarters/dorms)
+"lvH" = (
+/obj/structure/railing/corner,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"lvJ" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/iron,
/area/medical/medbay/lobby)
-"lvK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/railing/corner{
- dir = 8
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"lwh" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
@@ -36359,17 +36539,6 @@
},
/turf/open/floor/iron,
/area/medical/apothecary)
-"lxb" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/generic,
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/bridge)
"lxi" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -36386,17 +36555,6 @@
},
/turf/open/floor/iron,
/area/science/mixing)
-"lxl" = (
-/obj/structure/railing{
- dir = 9
- },
-/obj/machinery/vending/custom,
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 9
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"lxm" = (
/obj/machinery/light/small{
brightness = 3;
@@ -36409,10 +36567,6 @@
/area/security/prison{
name = "Prison Dorms"
})
-"lxn" = (
-/obj/structure/closet/crate/coffin,
-/turf/open/floor/carpet/purple,
-/area/chapel/main)
"lxt" = (
/obj/effect/turf_decal/guideline/guideline_edge/purple,
/obj/structure/closet/emcloset,
@@ -36442,6 +36596,15 @@
initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
},
/area/engine/gravity_generator)
+"lxI" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_y = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"lyc" = (
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
@@ -36569,6 +36732,14 @@
},
/turf/open/floor/carpet/blue,
/area/medical/exam_room)
+"lAz" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/backpack/duffelbag/sec/surgery{
+ pixel_y = 4
+ },
+/obj/item/clothing/gloves/color/latex,
+/turf/open/floor/iron/white,
+/area/science/robotics)
"lAP" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -36713,15 +36884,6 @@
dir = 8
},
/area/hallway/secondary/exit/departure_lounge)
-"lCr" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"lCv" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -36803,6 +36965,21 @@
icon_state = "wood-broken2"
},
/area/vacant_room/office)
+"lEc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"lEh" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 1
@@ -36854,35 +37031,6 @@
/obj/item/bikehorn/rubberducky,
/turf/open/floor/noslip/standard,
/area/crew_quarters/toilet)
-"lFf" = (
-/obj/effect/turf_decal/guideline/guideline_in/neutral{
- alpha = 255;
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
- },
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
- },
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
- },
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
"lFn" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -36908,6 +37056,16 @@
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
/turf/open/floor/iron/cafeteria,
/area/crew_quarters/kitchen)
+"lGc" = (
+/obj/effect/decal/cleanable/glass,
+/obj/machinery/light{
+ bulb_colour = "#22bfa2";
+ bulb_vacuum_colour = "#22bfa2";
+ dir = 4;
+ nightshift_light_color = "#22bfa2"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"lGL" = (
/obj/machinery/power/apc/auto_name/north{
pixel_y = 24
@@ -36958,6 +37116,13 @@
},
/turf/open/floor/iron/white,
/area/medical/genetics)
+"lHr" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/medical/morgue)
"lHv" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -36983,6 +37148,19 @@
/obj/effect/spawner/lootdrop/maintenance/three,
/turf/open/floor/plating,
/area/maintenance/disposal)
+"lIb" = (
+/obj/effect/turf_decal/guideline/guideline_in/brown,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/brown/half{
+ dir = 8
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
"lIf" = (
/obj/structure/cable/yellow{
icon_state = "2-4"
@@ -37287,15 +37465,6 @@
/obj/machinery/smartfridge/drinks,
/turf/closed/wall,
/area/maintenance/port/aft)
-"lOQ" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 4
- },
-/obj/structure/railing/corner,
-/turf/open/floor/iron/dark/smooth_edge{
- dir = 8
- },
-/area/hallway/primary/central)
"lPf" = (
/turf/closed/wall/r_wall,
/area/engine/break_room)
@@ -37360,6 +37529,24 @@
},
/turf/open/floor/iron/dark,
/area/engine/atmos)
+"lPX" = (
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
+"lQl" = (
+/turf/open/floor/glass/reinforced,
+/area/engine/gravity_generator)
"lQp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -37375,6 +37562,21 @@
},
/turf/open/floor/iron/dark,
/area/chapel/main)
+"lQy" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/aft)
"lQB" = (
/turf/closed/wall,
/area/medical/genetics/cloning)
@@ -37407,6 +37609,24 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/engine/atmos)
+"lRI" = (
+/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"lRK" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
@@ -37521,6 +37741,11 @@
},
/turf/open/floor/iron,
/area/engine/engine_room)
+"lTL" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/landmark/blobstart,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/central)
"lUa" = (
/obj/machinery/newscaster{
pixel_x = 32;
@@ -37712,6 +37937,22 @@
},
/turf/open/floor/prison,
/area/security/prison)
+"lWe" = (
+/obj/effect/turf_decal/guideline/guideline_in/darkblue{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/tile/dark_blue/half{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/dark_blue/half{
+ dir = 1
+ },
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
"lWf" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/ruinloot/medical,
@@ -37830,22 +38071,6 @@
dir = 1
},
/area/science/research)
-"lXM" = (
-/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
- alpha = 180;
- color = "#DE3A3A"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/sorting/mail{
- dir = 8;
- name = "HOS"
- },
-/turf/open/floor/iron,
-/area/security/brig)
"lXO" = (
/obj/structure/table/reinforced,
/obj/machinery/cell_charger,
@@ -38007,6 +38232,17 @@
},
/turf/open/floor/iron/dark,
/area/security/checkpoint/auxiliary)
+"lZH" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"lZI" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
@@ -38269,6 +38505,18 @@
},
/turf/open/floor/plating,
/area/maintenance/port/aft)
+"mea" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/starboard/aft)
"mec" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -38387,31 +38635,6 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/exploration_prep)
-"mge" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer2{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"mgp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -38597,26 +38820,6 @@
},
/turf/open/space/basic,
/area/space/nearstation)
-"mkt" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/dark_red{
- alpha = 180;
- color = "#DE3A3A";
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/auto_name/north{
- pixel_y = 24
- },
-/turf/open/floor/iron/dark,
-/area/security/warden)
"mky" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -38811,16 +39014,12 @@
/area/security/prison{
name = "Prison Processing"
})
-"mnB" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
+"mns" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/closet/secure_closet/medical2,
-/obj/item/clothing/suit/apron/surgical,
-/turf/open/floor/iron,
-/area/medical/surgery)
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/aft)
"mnD" = (
/obj/effect/decal/cleanable/dirt/dust,
/turf/closed/wall/rust,
@@ -38927,21 +39126,6 @@
/obj/effect/decal/cleanable/oil,
/turf/open/floor/iron/cafeteria,
/area/maintenance/port/aft)
-"mpI" = (
-/obj/effect/turf_decal/guideline/guideline_out/brown{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/iron/techmaint,
-/area/maintenance/central)
"mpK" = (
/obj/effect/turf_decal/tile/neutral{
dir = 4
@@ -38973,6 +39157,15 @@
/obj/structure/table/reinforced,
/turf/open/floor/iron/dark,
/area/vacant_room/commissary/commissary1)
+"mpQ" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/landmark/blobstart,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/security)
"mpX" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted{
alpha = 200;
@@ -38986,17 +39179,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"mqc" = (
-/obj/structure/window/reinforced{
- dir = 4;
- layer = 2.9
- },
-/obj/structure/chair/fancy/comfy{
- color = "#596479";
- dir = 8
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"mqd" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/segment{
@@ -39019,33 +39201,16 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/qm)
-"mqg" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/button/door{
- id = "evashutter";
- name = "EVA Shutter Control";
- pixel_x = 6;
- pixel_y = -25;
- req_access_txt = "18"
- },
-/obj/machinery/door/airlock/command{
- name = "EVA Storage";
- req_access_txt = "18"
- },
-/obj/effect/mapping_helpers/airlock/unres{
- dir = 8
+"mqj" = (
+/obj/structure/cable{
+ icon_state = "0-4"
},
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+/obj/machinery/power/solar{
+ id = "portsolar";
+ name = "Port Solar Array"
},
-/turf/open/floor/iron/dark,
-/area/ai_monitored/storage/eva)
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/starboard/fore)
"mqz" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/machinery/disposal/bin,
@@ -39055,15 +39220,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"mqE" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"mqJ" = (
/obj/effect/turf_decal/tile/blue/opposingcorners{
dir = 1
@@ -39076,6 +39232,25 @@
},
/turf/open/floor/iron/freezer,
/area/crew_quarters/toilet)
+"mqU" = (
+/obj/effect/turf_decal/guideline/guideline_in/brown,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/effect/turf_decal/tile/brown/half{
+ dir = 8
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
"mqZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -39099,6 +39274,18 @@
/obj/item/reagent_containers/glass/bottle/iodine,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"mrz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"mrE" = (
/obj/structure/railing{
dir = 8
@@ -39123,6 +39310,18 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
+"mrI" = (
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
"mrL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/structure/cable/yellow{
@@ -39169,23 +39368,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron,
/area/crew_quarters/dorms)
-"msj" = (
-/obj/effect/turf_decal/loading_area{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/science/robotics)
-"msq" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/security)
"msM" = (
/obj/effect/turf_decal/tile/neutral/half{
dir = 4
@@ -39248,6 +39430,17 @@
dir = 6
},
/area/science/research)
+"mtu" = (
+/obj/structure/railing{
+ layer = 3.1
+ },
+/obj/structure/chair/fancy/comfy{
+ color = "#596479";
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wideplating/dark,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"mtz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -39354,20 +39547,6 @@
/area/security/prison{
name = "Prison Botany"
})
-"muC" = (
-/obj/structure/railing,
-/obj/machinery/light/floor{
- brightness = 15;
- bulb_colour = "#FFE4CE";
- bulb_vacuum_brightness = 15;
- nightshift_brightness = 10;
- nightshift_light_color = "#E6EBFF"
- },
-/obj/effect/turf_decal/siding/wideplating/dark,
-/turf/open/floor/iron/dark/smooth_edge{
- dir = 1
- },
-/area/hallway/primary/central)
"muG" = (
/obj/machinery/camera/autoname{
dir = 1;
@@ -39379,9 +39558,6 @@
/obj/machinery/firealarm/directional/south,
/turf/open/floor/iron,
/area/hallway/primary/port)
-"muH" = (
-/turf/open/floor/iron/stairs/medium,
-/area/hallway/primary/central)
"muZ" = (
/obj/effect/spawner/lootdrop/glowstick/lit,
/mob/living/basic/cockroach,
@@ -39405,16 +39581,6 @@
},
/turf/open/floor/plating,
/area/ai_monitored/storage/satellite)
-"mvu" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"mvC" = (
/obj/structure/table/reinforced,
/obj/machinery/cell_charger,
@@ -39440,6 +39606,19 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
+"mwe" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=12-SSci";
+ location = "11-CenterSW"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"mwi" = (
/turf/open/floor/engine/o2,
/area/engine/atmos)
@@ -39557,6 +39736,17 @@
dir = 1
},
/area/hallway/primary/central)
+"mxz" = (
+/obj/structure/railing/corner,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/effect/turf_decal/siding/wideplating/dark/corner,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/iron/dark/corner,
+/area/hallway/primary/central)
"mxA" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron/dark,
@@ -39678,21 +39868,6 @@
},
/turf/open/floor/plating,
/area/crew_quarters/heads/cmo)
-"mzr" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/central)
"mzv" = (
/obj/effect/turf_decal/guideline/guideline_in/darkblue{
dir = 8
@@ -39779,6 +39954,16 @@
/obj/structure/sign/poster/random,
/turf/closed/wall,
/area/crew_quarters/dorms)
+"mAU" = (
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/solar{
+ id = "portsolar";
+ name = "Port Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/starboard/aft)
"mAZ" = (
/obj/structure/disposaloutlet{
dir = 1
@@ -39822,20 +40007,6 @@
/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/server)
-"mBn" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4,
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/components/binary/volume_pump,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"mBq" = (
/obj/effect/turf_decal/guideline/guideline_edge/purple{
dir = 1
@@ -39887,17 +40058,6 @@
},
/turf/open/floor/iron/dark,
/area/chapel/office)
-"mCL" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_y = 1
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"mCQ" = (
/turf/open/floor/iron/white,
/area/medical/chemistry)
@@ -40051,17 +40211,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"mEi" = (
-/obj/machinery/telecomms/bus/preset_exploration,
-/obj/machinery/atmospherics/pipe/heat_exchanging/junction{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8;
- layer = 3
- },
-/turf/open/floor/circuit/green/telecomms/mainframe,
-/area/quartermaster/exploration_prep)
"mEt" = (
/obj/machinery/airalarm/directional/east,
/obj/effect/turf_decal/guideline/guideline_edge/red{
@@ -40117,21 +40266,18 @@
/obj/item/slime_scanner,
/turf/open/floor/iron/grid/steel,
/area/science/xenobiology)
-"mFK" = (
-/obj/effect/turf_decal/guideline/guideline_in/brown,
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
+"mFG" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_y = 1
},
-/obj/effect/turf_decal/tile/brown/half{
- dir = 8
+/obj/structure/chair/fancy/comfy{
+ buildstackamount = 0;
+ color = "#742925";
+ dir = 4
},
-/turf/open/floor/iron/half,
+/turf/open/floor/iron/dark/smooth_large,
/area/hallway/primary/central)
"mFR" = (
/obj/effect/turf_decal/guideline/guideline_in/darkblue{
@@ -40185,16 +40331,14 @@
},
/turf/open/floor/iron,
/area/science/lab)
-"mGd" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Maintenance Hatch";
- req_one_access_txt = "12;6"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+"mGe" = (
+/obj/structure/window/reinforced{
+ dir = 8
},
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/department/medical/morgue)
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/open/floor/grass/no_border,
+/area/hallway/secondary/exit/departure_lounge)
"mGp" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable,
@@ -40364,15 +40508,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
-"mHU" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/obj/structure/railing/corner{
- dir = 8
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"mIn" = (
/obj/effect/turf_decal/siding/wood{
dir = 6
@@ -40385,13 +40520,6 @@
},
/turf/open/floor/carpet/blue,
/area/crew_quarters/heads/hop)
-"mIH" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/obj/structure/railing/corner{
- dir = 1
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"mIM" = (
/obj/item/storage/box/beanbag,
/obj/structure/table/wood,
@@ -40421,24 +40549,6 @@
},
/turf/open/floor/iron/sepia,
/area/quartermaster/sorting)
-"mIZ" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/machinery/light/floor{
- brightness = 15;
- bulb_colour = "#FFE4CE";
- bulb_vacuum_brightness = 15;
- nightshift_brightness = 10;
- nightshift_light_color = "#E6EBFF"
- },
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 4
- },
-/turf/open/floor/iron/dark/smooth_edge{
- dir = 8
- },
-/area/hallway/primary/central)
"mJb" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -40571,31 +40681,10 @@
},
/turf/open/floor/iron/white,
/area/medical/sleeper)
-"mKX" = (
-/obj/effect/landmark/start/chaplain,
-/obj/machinery/holopad,
-/obj/effect/turf_decal/box,
-/turf/open/floor/glass/reinforced,
-/area/chapel/main)
-"mLh" = (
-/obj/effect/turf_decal/guideline/guideline_out/brown{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/landmark/blobstart,
-/turf/open/floor/iron/techmaint,
-/area/hallway/secondary/service)
+"mKV" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/science/robotics)
"mLj" = (
/obj/machinery/portable_atmospherics/scrubber,
/obj/effect/turf_decal/bot{
@@ -40736,6 +40825,13 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/turf/open/floor/iron/dark,
/area/chapel/main)
+"mNH" = (
+/obj/effect/landmark/start/cargo_technician,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/quartermaster/storage)
"mNL" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance/two,
@@ -40792,6 +40888,13 @@
/area/security/brig{
name = "Brig Interrogation"
})
+"mQn" = (
+/obj/structure/railing,
+/obj/effect/turf_decal/siding/wideplating/dark,
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 1
+ },
+/area/hallway/primary/central)
"mQz" = (
/obj/structure/disposalpipe/segment{
dir = 1
@@ -40816,21 +40919,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/cafeteria)
-"mQE" = (
-/obj/effect/turf_decal/guideline/guideline_in/green{
- color = "#439C1E"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/dark_green/half{
- dir = 8
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
"mQP" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance/eight,
@@ -40843,6 +40931,16 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/maintenance/department/science)
+"mQR" = (
+/obj/effect/decal/cleanable/crayon,
+/obj/machinery/light/small{
+ brightness = 3;
+ bulb_colour = "#1bcf15";
+ dir = 1
+ },
+/obj/item/food/butter/on_a_stick,
+/turf/open/floor/plating,
+/area/maintenance/department/medical)
"mRi" = (
/obj/structure/disposalpipe/segment{
dir = 10
@@ -40914,6 +41012,13 @@
"mRV" = (
/turf/closed/wall/mineral/plastitanium,
/area/security/brig/medbay)
+"mSa" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 3
+ },
+/turf/open/floor/iron/dark,
+/area/quartermaster/exploration_prep)
"mSo" = (
/obj/structure/disposalpipe/segment{
dir = 9
@@ -40969,20 +41074,34 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
-"mSV" = (
-/obj/structure/railing/corner{
- dir = 4
+"mSX" = (
+/obj/effect/turf_decal/guideline/guideline_in/neutral{
+ alpha = 255;
+ dir = 1
},
-/obj/effect/turf_decal/stripes/line{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 1
},
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
},
-/turf/open/floor/iron/dark/smooth_large,
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
+ },
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
+ },
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
+ },
+/turf/open/floor/iron/half,
/area/hallway/primary/central)
"mTe" = (
/obj/structure/disposalpipe/segment{
@@ -41016,20 +41135,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/maintenance/department/security)
-"mTH" = (
-/obj/structure/railing/corner{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron/dark/corner{
- dir = 1
- },
-/area/hallway/primary/central)
"mTL" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
@@ -41043,6 +41148,13 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"mTQ" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/open/floor/grass/no_border,
+/area/hallway/secondary/exit/departure_lounge)
"mTR" = (
/turf/open/space/basic,
/area/ai_monitored/turret_protected/ai)
@@ -41257,13 +41369,6 @@
},
/turf/open/floor/carpet/royalblue,
/area/crew_quarters/heads/chief)
-"mWS" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/spawner/lootdrop/glowstick/lit,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/central)
"mXa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 6
@@ -41339,6 +41444,21 @@
},
/turf/open/floor/iron,
/area/science/misc_lab)
+"mXI" = (
+/obj/effect/landmark/start/assistant,
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/turf/open/floor/glass/reinforced,
+/area/hallway/primary/central{
+ dynamic_lighting = 2;
+ lighting_brightness_tube = 11;
+ lighting_colour_bulb = "#DDE6FF";
+ lighting_colour_night = "#DDE6FF";
+ lighting_colour_tube = "#DDE6FF";
+ lighting_overlay_colour = "#DDE6FF";
+ power_light = 0
+ })
"mXJ" = (
/obj/structure/sign/departments/minsky/security/evac{
pixel_x = 31;
@@ -41446,6 +41566,15 @@
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
/area/maintenance/port/central)
+"mZC" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/closet/emcloset,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"nac" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/machinery/disposal/bin,
@@ -41517,15 +41646,6 @@
},
/turf/open/floor/iron/techmaint,
/area/gateway)
-"nbv" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/obj/structure/railing/corner{
- dir = 4
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"nbQ" = (
/obj/effect/turf_decal/siding/wood{
dir = 6
@@ -41577,6 +41697,21 @@
},
/turf/open/floor/iron,
/area/medical/surgery)
+"ncj" = (
+/obj/structure/chair/fancy/bench/right{
+ dir = 8
+ },
+/obj/machinery/power/apc/auto_name/south{
+ pixel_y = -24
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/structure/sign/poster/contraband/random{
+ pixel_x = 32
+ },
+/turf/open/floor/iron/techmaint,
+/area/security/prison/shielded)
"ncI" = (
/obj/structure/bookcase/random/nonfiction,
/turf/open/floor/wood,
@@ -41674,6 +41809,18 @@
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/turf/open/floor/iron,
/area/maintenance/department/science)
+"ndX" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/central)
"nec" = (
/obj/structure/noticeboard{
dir = 8;
@@ -41809,17 +41956,6 @@
/obj/item/trash/semki,
/turf/open/floor/plating,
/area/maintenance/port/aft)
-"nfH" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/guideline/guideline_edge/blue{
- dir = 4
- },
-/turf/open/floor/iron/white/corner{
- dir = 8
- },
-/area/medical/surgery)
"nfS" = (
/turf/open/floor/iron/stairs/right{
dir = 4
@@ -41933,20 +42069,6 @@
},
/turf/open/floor/iron,
/area/engine/engine_room)
-"nhC" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/iron/dark/smooth_edge{
- dir = 8
- },
-/area/hallway/primary/central)
"nhH" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/preopen{
@@ -41959,6 +42081,15 @@
/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/bridge)
+"nhU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"nic" = (
/obj/structure/disposalpipe/trunk,
/obj/structure/window/reinforced{
@@ -42077,15 +42208,6 @@
/area/security/prison{
name = "Prison Processing"
})
-"nju" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"njz" = (
/obj/structure/sign/warning/nosmoking/circle,
/turf/closed/wall,
@@ -42113,19 +42235,6 @@
/obj/machinery/digital_clock/directional/west,
/turf/open/floor/iron/dark,
/area/engine/engineering)
-"njM" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=12-SSci";
- location = "11-CenterSW"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"njS" = (
/obj/machinery/smartfridge/chemistry/virology/preloaded,
/obj/machinery/button/door{
@@ -42210,6 +42319,31 @@
/area/security/brig{
name = "Brig Evidence"
})
+"nli" = (
+/obj/structure/table/reinforced,
+/obj/item/gun/ballistic/shotgun/riot{
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/obj/item/gun/ballistic/shotgun/riot{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/machinery/door/window/brigdoor/westleft{
+ name = "shotguns";
+ req_access_txt = "3"
+ },
+/obj/structure/window/reinforced,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light{
+ bulb_colour = "#DE3A3A";
+ dir = 4;
+ nightshift_light_color = "#DE3A3A"
+ },
+/turf/open/floor/iron,
+/area/ai_monitored/security/armory)
"nlj" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -32
@@ -42369,6 +42503,9 @@
},
/turf/open/floor/iron,
/area/bridge)
+"nmB" = (
+/turf/open/floor/glass/reinforced,
+/area/engine/atmos)
"nmM" = (
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -42610,12 +42747,6 @@
/obj/structure/table,
/turf/open/floor/iron,
/area/engine/break_room)
-"nql" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 5
- },
-/turf/open/floor/glass/reinforced,
-/area/chapel/main)
"nqJ" = (
/obj/machinery/camera/autoname{
network = list("ss13","rd")
@@ -42641,26 +42772,29 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/white,
/area/science/xenobiology)
-"nqX" = (
-/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
+"nqV" = (
+/obj/effect/turf_decal/guideline/guideline_in/brown,
/obj/structure/disposalpipe/segment{
dir = 8
},
-/turf/open/floor/iron/white,
-/area/medical/sleeper)
-"nrb" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{
- alpha = 180
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/structure/chair/fancy/corp{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/effect/turf_decal/tile/brown/half{
dir = 8
},
-/obj/item/toy/plush/slimeplushie/blue{
- pixel_x = -3
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
+"nqX" = (
+/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 8
},
-/turf/open/floor/iron/dark,
-/area/ai_monitored/turret_protected/aisat/foyer)
+/turf/open/floor/iron/white,
+/area/medical/sleeper)
"nrc" = (
/obj/structure/table/wood,
/obj/item/paper_bin,
@@ -42958,6 +43092,21 @@
},
/turf/open/floor/iron,
/area/security/brig)
+"ntP" = (
+/obj/machinery/door/airlock/atmos{
+ name = "atmospherics Storage";
+ req_access = "24"
+ },
+/obj/effect/turf_decal/loading_area{
+ dir = 8
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/button{
+ id = "atmosshutters";
+ pixel_y = -25
+ },
+/turf/open/floor/iron/dark,
+/area/engine/atmos)
"ntV" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted{
alpha = 200;
@@ -43065,19 +43214,21 @@
/obj/structure/rack,
/turf/open/floor/plating,
/area/maintenance/department/medical)
-"nwR" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
+"nwH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/landmark/xeno_spawn,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
+/obj/effect/turf_decal/guideline/guideline_in/purple{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
},
-/turf/open/floor/catwalk_floor,
-/area/maintenance/central)
+/obj/effect/turf_decal/tile/purple/half{
+ dir = 4
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
"nwZ" = (
/obj/structure/disposalpipe/segment{
dir = 2
@@ -43163,22 +43314,13 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
/turf/open/floor/iron,
/area/engine/engine_room)
-"nyz" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/machinery/light/floor{
- brightness = 15;
- bulb_colour = "#FFE4CE";
- bulb_vacuum_brightness = 15;
- nightshift_brightness = 10;
- nightshift_light_color = "#E6EBFF"
- },
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 1
+"nyl" = (
+/obj/structure/chair/office,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
},
-/turf/open/floor/iron/dark/smooth_edge,
-/area/hallway/primary/central)
+/turf/open/floor/wood,
+/area/chapel/office)
"nyE" = (
/obj/effect/turf_decal/tile/dark_blue{
alpha = 180;
@@ -43342,17 +43484,6 @@
/obj/structure/lattice/catwalk,
/turf/open/space/basic,
/area/solar/starboard/aft)
-"nBn" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/security)
"nBC" = (
/obj/effect/turf_decal/tile/brown/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -43585,14 +43716,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"nEF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/railing/corner{
- dir = 1
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"nFj" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{
dir = 4
@@ -43767,6 +43890,19 @@
},
/turf/open/floor/carpet/blue,
/area/bridge/meeting_room)
+"nGO" = (
+/obj/structure/railing{
+ dir = 9
+ },
+/obj/machinery/light/floor{
+ brightness = 15;
+ bulb_colour = "#FFE4CE";
+ bulb_vacuum_brightness = 15;
+ nightshift_brightness = 10;
+ nightshift_light_color = "#E6EBFF"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"nHf" = (
/obj/machinery/power/apc/auto_name/north{
pixel_y = 24
@@ -43890,13 +44026,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/cafeteria)
-"nJc" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/obj/structure/railing/corner,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"nJn" = (
/obj/effect/turf_decal/tile/yellow{
dir = 8
@@ -43940,6 +44069,16 @@
/area/security/brig{
name = "Brig Interrogation"
})
+"nKM" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"nKO" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
@@ -43949,12 +44088,39 @@
},
/turf/open/floor/noslip/standard,
/area/quartermaster/storage)
+"nKR" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"nLc" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 4
},
/turf/open/floor/iron/dark,
/area/security/execution/education)
+"nLi" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"nLo" = (
/obj/machinery/vending/wallmed{
pixel_x = -1;
@@ -44072,18 +44238,6 @@
},
/turf/open/floor/iron/dark,
/area/crew_quarters/dorms)
-"nNv" = (
-/obj/machinery/light_switch{
- pixel_x = -8;
- pixel_y = -21
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/obj/vehicle/ridden/secway,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron,
-/area/ai_monitored/security/armory)
"nNz" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -44181,16 +44335,6 @@
},
/turf/open/floor/iron/sepia,
/area/quartermaster/sorting)
-"nOL" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Maintenance Hatch";
- req_one_access_txt = "12;31"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/port/central)
"nOM" = (
/obj/effect/turf_decal/bot,
/turf/open/floor/iron/dark,
@@ -44201,28 +44345,30 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"nPn" = (
-/obj/effect/turf_decal/siding/wideplating/dark/corner{
- dir = 1
- },
-/turf/open/floor/glass/reinforced,
-/area/chapel/main)
-"nPy" = (
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 1
+"nOT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/holopad,
+/obj/effect/turf_decal/box,
+/turf/open/floor/iron/tech,
+/area/engine/atmos)
+"nPH" = (
+/obj/machinery/door/airlock/research/glass{
+ name = "Robotics Lab";
+ req_access_txt = "29"
},
-/obj/effect/turf_decal/guideline/guideline_edge/red{
- dir = 8
+/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
dir = 2
},
-/obj/machinery/camera/autoname{
- dir = 4;
- network = list("ss13","security")
- },
-/turf/open/floor/iron,
-/area/security/brig)
+/turf/open/floor/iron/white,
+/area/science/robotics)
"nPJ" = (
/obj/effect/turf_decal/tile/blue/half{
dir = 4
@@ -44454,6 +44600,18 @@
/obj/machinery/status_display/evac,
/turf/closed/wall/r_wall,
/area/tcommsat/server)
+"nSB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/starboard/aft)
"nSH" = (
/obj/effect/turf_decal/tile/bar/opposingcorners,
/obj/structure/cable/yellow{
@@ -44493,6 +44651,16 @@
/obj/structure/chair/wood/wings,
/turf/open/floor/carpet/green,
/area/security/courtroom)
+"nTO" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/effect/decal/cleanable/blood/old,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"nTZ" = (
/obj/structure/chair{
dir = 4
@@ -44702,6 +44870,21 @@
/obj/structure/tank_dispenser/oxygen,
/turf/open/floor/iron/tech,
/area/ai_monitored/storage/eva)
+"nXT" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"nXU" = (
/turf/closed/wall,
/area/hallway/secondary/exit/departure_lounge)
@@ -44780,6 +44963,24 @@
/obj/machinery/firealarm/directional/east,
/turf/open/floor/plating,
/area/ai_monitored/storage/satellite)
+"nZS" = (
+/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
+ alpha = 180;
+ color = "#DE3A3A"
+ },
+/obj/machinery/light_switch{
+ pixel_x = -24;
+ pixel_y = 25
+ },
+/obj/machinery/button/door{
+ id = "armory";
+ name = "Armory Shutters";
+ pixel_x = -40;
+ pixel_y = 25;
+ req_access_txt = "3"
+ },
+/turf/open/floor/iron/dark,
+/area/security/warden)
"oan" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -44841,6 +45042,32 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"oaP" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/chair/fancy/sofa/old/right{
+ dir = 4
+ },
+/obj/machinery/vending/wallmed{
+ pixel_y = -32;
+ products = list(/obj/item/stack/medical/gauze = 4, /obj/item/reagent_containers/hypospray/medipen = 3, /obj/item/reagent_containers/hypospray/medipen/dexalin = 3, /obj/item/reagent_containers/glass/bottle/epinephrine = 2, /obj/item/reagent_containers/glass/bottle/charcoal = 2)
+ },
+/obj/machinery/newscaster{
+ pixel_x = -32;
+ pixel_y = 2
+ },
+/turf/open/floor/carpet/green,
+/area/crew_quarters/cafeteria)
+"oaQ" = (
+/obj/effect/spawner/lootdrop/glowstick,
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/bridge)
"oaZ" = (
/obj/machinery/computer/telecomms/monitor,
/obj/effect/turf_decal/stripes/line,
@@ -44873,13 +45100,6 @@
},
/turf/open/floor/plating,
/area/ai_monitored/storage/satellite)
-"obH" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/medical/morgue)
"obZ" = (
/obj/structure/table/wood,
/obj/effect/turf_decal/siding/wood{
@@ -44913,25 +45133,24 @@
/obj/effect/turf_decal/box,
/turf/open/floor/iron,
/area/engine/engine_room)
-"ocD" = (
-/obj/structure/disposalpipe/segment{
+"ocM" = (
+/obj/machinery/atmospherics/miner/station/n2o,
+/turf/open/floor/engine/n2o,
+/area/engine/atmos)
+"ocO" = (
+/obj/structure/railing/corner{
dir = 4
},
-/obj/effect/turf_decal/guideline/guideline_in/purple{
- dir = 1
+/obj/structure/disposalpipe/segment{
+ dir = 8
},
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/effect/turf_decal/tile/purple/half{
+/turf/open/floor/iron/dark/corner{
dir = 4
},
-/turf/open/floor/iron/half,
/area/hallway/primary/central)
-"ocM" = (
-/obj/machinery/atmospherics/miner/station/n2o,
-/turf/open/floor/engine/n2o,
-/area/engine/atmos)
"odc" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 8
@@ -44949,21 +45168,6 @@
/obj/structure/railing,
/turf/open/space/basic,
/area/space)
-"odp" = (
-/obj/effect/landmark/start/assistant,
-/obj/effect/turf_decal/siding/white{
- dir = 1
- },
-/turf/open/floor/glass/reinforced,
-/area/hallway/primary/central{
- dynamic_lighting = 2;
- lighting_brightness_tube = 11;
- lighting_colour_bulb = "#DDE6FF";
- lighting_colour_night = "#DDE6FF";
- lighting_colour_tube = "#DDE6FF";
- lighting_overlay_colour = "#DDE6FF";
- power_light = 0
- })
"odu" = (
/obj/structure/disposalpipe/segment{
dir = 1
@@ -45061,29 +45265,6 @@
/obj/effect/landmark/start/research_director,
/turf/open/floor/carpet/purple,
/area/crew_quarters/heads/hor)
-"oeB" = (
-/obj/machinery/computer/pod/old{
- density = 0;
- icon = 'icons/obj/airlock_machines.dmi';
- icon_state = "airlock_control_standby";
- id = "chapelgun";
- layer = 4;
- name = "Mass Driver Controller";
- pixel_y = 32
- },
-/obj/structure/table/wood/fancy,
-/obj/item/food/grown/flower/harebell{
- pixel_y = 3
- },
-/obj/item/candle/infinite{
- pixel_x = -8;
- pixel_y = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/turf/open/floor/iron/dark,
-/area/chapel/main)
"oeL" = (
/obj/effect/turf_decal/bot,
/obj/machinery/atmospherics/pipe/simple/general/visible{
@@ -45092,21 +45273,6 @@
/obj/machinery/meter,
/turf/open/floor/iron/tech,
/area/engine/engine_room)
-"oeM" = (
-/obj/effect/landmark/start/assistant,
-/obj/effect/turf_decal/siding/white{
- dir = 4
- },
-/turf/open/floor/glass/reinforced,
-/area/hallway/primary/central{
- dynamic_lighting = 2;
- lighting_brightness_tube = 11;
- lighting_colour_bulb = "#DDE6FF";
- lighting_colour_night = "#DDE6FF";
- lighting_colour_tube = "#DDE6FF";
- lighting_overlay_colour = "#DDE6FF";
- power_light = 0
- })
"oeZ" = (
/obj/effect/turf_decal/tile/yellow/half/contrasted{
alpha = 180
@@ -45146,19 +45312,6 @@
/obj/effect/turf_decal/caution/stand_clear,
/turf/open/floor/prison,
/area/security/prison)
-"ogs" = (
-/obj/effect/turf_decal/guideline/guideline_in/blue{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/tile/blue/half{
- dir = 1
- },
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
"ogv" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -45171,6 +45324,18 @@
},
/turf/open/floor/iron/tech,
/area/engine/atmos)
+"ogP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/effect/landmark/xeno_spawn,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/starboard/aft)
"ogV" = (
/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{
alpha = 180
@@ -45247,6 +45412,15 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/wood,
/area/security/prison)
+"oix" = (
+/obj/effect/spawner/lootdrop/ruinloot/medical,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/starboard/aft)
"oiI" = (
/turf/closed/wall,
/area/vacant_room/office)
@@ -45387,14 +45561,6 @@
/obj/machinery/portable_atmospherics/pump,
/turf/open/floor/iron,
/area/science/storage)
-"okc" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/open/floor/grass/no_border,
-/area/hallway/secondary/exit/departure_lounge)
"okC" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -45563,6 +45729,28 @@
},
/turf/open/space/basic,
/area/solar/starboard/aft)
+"ono" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc/auto_name/west{
+ pixel_x = -24
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/light{
+ bulb_colour = "#22bfa2";
+ bulb_vacuum_colour = "#22bfa2";
+ dir = 8;
+ nightshift_light_color = "#22bfa2"
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/obj/effect/turf_decal/guideline/guideline_edge/red,
+/turf/open/floor/iron/dark,
+/area/security/brig/dock)
"onv" = (
/obj/structure/window/reinforced{
dir = 8;
@@ -45693,24 +45881,6 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron/tech,
/area/engine/engine_room)
-"oqg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/quartermaster/storage)
"oqp" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow,
@@ -45817,26 +45987,6 @@
},
/turf/open/floor/iron/tech,
/area/engine/atmos)
-"osa" = (
-/obj/structure/table/reinforced,
-/obj/item/gun/energy/ionrifle{
- pixel_x = -1;
- pixel_y = 10
- },
-/obj/item/gun/energy/temperature/security{
- pixel_y = 5
- },
-/obj/structure/window/reinforced,
-/obj/machinery/door/window/brigdoor/westleft{
- name = "specialized weapons";
- req_access_txt = "3"
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/obj/item/gun/grenadelauncher/security,
-/turf/open/floor/iron,
-/area/ai_monitored/security/armory)
"osm" = (
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/obj/effect/decal/cleanable/dirt,
@@ -45864,6 +46014,14 @@
},
/turf/closed/wall,
/area/maintenance/disposal)
+"osX" = (
+/obj/machinery/computer/apc_control{
+ dir = 1
+ },
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/engine/engine_room)
"otm" = (
/obj/structure/table,
/obj/item/stock_parts/subspace/ansible,
@@ -45979,6 +46137,34 @@
/obj/item/clothing/head/hats/hos/beret,
/turf/open/floor/carpet/red,
/area/crew_quarters/heads/hos)
+"otY" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
+"otZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"ouq" = (
/obj/effect/decal/cleanable/robot_debris,
/obj/effect/decal/cleanable/dirt,
@@ -45999,15 +46185,6 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat/foyer)
-"ouv" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_y = 1
- },
-/obj/machinery/vending/coffee,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"ouD" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance/three,
@@ -46094,6 +46271,18 @@
},
/turf/open/floor/plating,
/area/crew_quarters/cafeteria)
+"ovC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/starboard/aft)
"ovK" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -46208,22 +46397,36 @@
/area/security/main{
name = "Security Locker Room"
})
-"oxF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/aft)
"oxQ" = (
/turf/closed/wall,
/area/storage/primary)
+"oxR" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
+"oxU" = (
+/obj/machinery/light/floor{
+ brightness = 15;
+ bulb_colour = "#FFE4CE";
+ bulb_vacuum_brightness = 15;
+ nightshift_brightness = 10;
+ nightshift_light_color = "#E6EBFF"
+ },
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 8
+ },
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 4
+ },
+/area/hallway/primary/central)
"oym" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -46241,6 +46444,24 @@
dir = 1
},
/area/medical/surgery)
+"oyQ" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/turf/open/floor/iron/dark,
+/area/chapel/main)
+"oza" = (
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"ozf" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/effect/turf_decal/numbers/two_nine,
@@ -46291,6 +46512,24 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat/foyer)
+"oAD" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/dirt,
+/mob/living/basic/cockroach,
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/aft)
"oAF" = (
/obj/structure/table,
/obj/item/electronics/airlock,
@@ -46374,13 +46613,6 @@
/obj/machinery/disposal/bin,
/turf/open/floor/iron/dark,
/area/quartermaster/storage)
-"oBD" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{
- dir = 4;
- initialize_directions = 4
- },
-/turf/open/floor/iron/dark,
-/area/quartermaster/exploration_prep)
"oBL" = (
/obj/machinery/vending/wardrobe/bar_wardrobe,
/obj/effect/turf_decal/bot,
@@ -46408,6 +46640,26 @@
},
/turf/open/floor/plating,
/area/maintenance/disposal)
+"oCU" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/greenglow,
+/obj/machinery/light{
+ bulb_colour = "#22bfa2";
+ bulb_vacuum_colour = "#22bfa2";
+ dir = 8;
+ nightshift_light_color = "#22bfa2"
+ },
+/obj/machinery/power/smes/engineering{
+ charge = 2e+007
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"oCW" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -46416,6 +46668,14 @@
},
/turf/open/floor/iron/tech,
/area/engine/atmos)
+"oDf" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/sunnybush,
+/turf/open/floor/grass/no_border,
+/area/hallway/secondary/exit/departure_lounge)
"oDk" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/modular_computer/console/preset/engineering,
@@ -46426,6 +46686,18 @@
},
/turf/open/floor/iron/tech,
/area/engine/engine_room)
+"oDE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/effect/landmark/blobstart,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/starboard/aft)
"oDF" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/techstorage/medical,
@@ -46480,35 +46752,6 @@
},
/turf/open/floor/plating,
/area/quartermaster/storage)
-"oEA" = (
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
- alpha = 180;
- color = "#DE3A3A"
- },
-/obj/item/radio/intercom{
- desc = "Talk through this. It looks like it has been modified to not broadcast.";
- freerange = 1;
- name = "Prison intercom";
- pixel_y = -25;
- prison_radio = 1
- },
-/turf/open/floor/iron,
-/area/security/prison{
- name = "Prison Visitation"
- })
-"oEG" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"oEN" = (
/obj/machinery/gateway{
dir = 4
@@ -46582,6 +46825,12 @@
/obj/machinery/air_sensor/atmos/plasma_tank,
/turf/open/floor/engine/plasma,
/area/engine/atmos)
+"oGj" = (
+/obj/effect/turf_decal/siding/wideplating/dark/corner{
+ dir = 4
+ },
+/turf/open/floor/glass/reinforced,
+/area/chapel/main)
"oGm" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
@@ -46721,20 +46970,6 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/aft)
-"oIl" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/central)
"oIs" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -46747,6 +46982,17 @@
},
/turf/open/floor/iron/white,
/area/science/xenobiology)
+"oIJ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/bridge)
"oIY" = (
/obj/structure/disposalpipe/segment{
dir = 2
@@ -46776,34 +47022,6 @@
/obj/effect/turf_decal/box,
/turf/open/floor/iron,
/area/engine/storage)
-"oJi" = (
-/obj/effect/turf_decal/guideline/guideline_out/brown{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/iron/techmaint,
-/area/maintenance/central)
-"oJn" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/solar{
- id = "portsolar";
- name = "Port Solar Array"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/starboard/fore)
"oJq" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -46813,6 +47031,14 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/white,
/area/medical/sleeper)
+"oJy" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"oJI" = (
/obj/machinery/light{
dir = 1
@@ -46826,20 +47052,6 @@
},
/turf/open/floor/carpet/purple,
/area/crew_quarters/heads/hor)
-"oJT" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Disposal Access";
- req_one_access_txt = "31;48;26"
- },
-/obj/effect/mapping_helpers/airlock/unres{
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/quartermaster/office)
"oKe" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/disposalpipe/segment{
@@ -46947,13 +47159,6 @@
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/iron/sepia,
/area/maintenance/port/central)
-"oLP" = (
-/obj/structure/chair/office,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/chapel/office)
"oLS" = (
/obj/machinery/light{
dir = 4
@@ -47222,21 +47427,6 @@
/area/security/main{
name = "Security Viewing Hall"
})
-"oON" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/aft)
"oPi" = (
/obj/machinery/door/airlock/security/glass{
name = "Holding Area";
@@ -47278,6 +47468,49 @@
/obj/item/reagent_containers/food/drinks/soda_cans/space_up,
/turf/open/floor/iron,
/area/maintenance/port/aft)
+"oPm" = (
+/obj/effect/turf_decal/guideline/guideline_in/red{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/tile/dark_red/half{
+ color = "#DE3A3A"
+ },
+/obj/effect/turf_decal/tile/dark_red/half{
+ color = "#DE3A3A"
+ },
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
+"oPs" = (
+/obj/effect/turf_decal/guideline/guideline_in/neutral{
+ alpha = 255;
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
+ },
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
+ },
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
+ },
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
"oPD" = (
/obj/effect/turf_decal/siding/wood{
dir = 1
@@ -47307,6 +47540,10 @@
/obj/structure/lattice,
/turf/open/space/basic,
/area/space/nearstation)
+"oQd" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/central)
"oQi" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -47429,15 +47666,6 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
-"oRP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"oRY" = (
/obj/machinery/atmospherics/miner/station/nitrogen,
/turf/open/floor/engine/n2,
@@ -47518,14 +47746,6 @@
/obj/structure/table/reinforced,
/turf/open/floor/iron/dark,
/area/science/robotics)
-"oTs" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/open/floor/grass/no_border,
-/area/hallway/secondary/exit/departure_lounge)
"oTx" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/techmaint,
@@ -47545,44 +47765,9 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/service)
-"oTO" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/turf_decal/siding/thinplating/light{
- dir = 8
- },
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 8
- },
-/turf/open/floor/iron/dark/smooth_edge{
- dir = 4
- },
-/area/hallway/primary/central)
"oTR" = (
/turf/closed/wall/rust,
/area/maintenance/solars/port/aft)
-"oTS" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/grille/broken,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/central)
-"oTU" = (
-/obj/machinery/telecomms/hub/preset/exploration,
-/obj/machinery/atmospherics/pipe/heat_exchanging/junction{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8;
- layer = 3
- },
-/turf/open/floor/circuit/green/telecomms/mainframe,
-/area/quartermaster/exploration_prep)
"oTY" = (
/obj/machinery/door/window/eastright{
dir = 8;
@@ -47739,13 +47924,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/quartermaster/warehouse)
-"oVO" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/medical/morgue)
"oVP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -47782,18 +47960,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
-"oWr" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/guideline/guideline_in/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple/half{
- dir = 4
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
"oWD" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -47818,21 +47984,6 @@
/obj/item/storage/belt/utility,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"oXn" = (
-/obj/effect/landmark/start/assistant,
-/obj/effect/turf_decal/siding/white{
- dir = 8
- },
-/turf/open/floor/glass/reinforced,
-/area/hallway/primary/central{
- dynamic_lighting = 2;
- lighting_brightness_tube = 11;
- lighting_colour_bulb = "#DDE6FF";
- lighting_colour_night = "#DDE6FF";
- lighting_colour_tube = "#DDE6FF";
- lighting_overlay_colour = "#DDE6FF";
- power_light = 0
- })
"oXo" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -47890,29 +48041,6 @@
},
/turf/open/floor/iron/dark,
/area/security/checkpoint/engineering)
-"oYh" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/guideline/guideline_in/green{
- color = "#439C1E"
- },
-/obj/effect/turf_decal/tile/dark_green/half{
- dir = 8
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
-"oYk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/light_switch{
- pixel_x = 21
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/wood,
-/area/chapel/office)
"oYr" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 8
@@ -47927,15 +48055,6 @@
dir = 4
},
/area/science/mixing/chamber)
-"oYy" = (
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/obj/structure/railing/corner{
- dir = 8
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"oYZ" = (
/obj/effect/turf_decal/caution{
dir = 8;
@@ -47965,23 +48084,15 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/storage)
-"oZn" = (
-/obj/machinery/door/airlock/research/glass{
- name = "Robotics Lab";
- req_access_txt = "29"
- },
-/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+"oZh" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 5
},
-/obj/structure/disposalpipe/segment{
- dir = 2
+/obj/structure/chair/fancy/bench/pew/left{
+ dir = 8
},
-/turf/open/floor/iron/white,
-/area/science/robotics)
+/turf/open/floor/glass/reinforced,
+/area/chapel/main)
"oZw" = (
/obj/effect/turf_decal/guideline/guideline_edge/neutral{
alpha = 255;
@@ -48011,6 +48122,19 @@
},
/turf/open/floor/iron/white,
/area/medical/apothecary)
+"oZQ" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"oZS" = (
/obj/structure/table/glass,
/obj/item/stack/ducts/fifty,
@@ -48169,20 +48293,6 @@
},
/turf/open/floor/iron/dark,
/area/security/brig/dock)
-"pbg" = (
-/obj/structure/window/reinforced{
- dir = 4;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"pbr" = (
/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
/obj/machinery/status_display/door_timer{
@@ -48215,6 +48325,43 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/engine/atmospherics_engine)
+"pbC" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/machinery/light/floor{
+ brightness = 15;
+ bulb_colour = "#FFE4CE";
+ bulb_vacuum_brightness = 15;
+ nightshift_brightness = 10;
+ nightshift_light_color = "#E6EBFF"
+ },
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_edge,
+/area/hallway/primary/central)
+"pcd" = (
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2{
+ dir = 6
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 32
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"pco" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -48442,18 +48589,6 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron/tech,
/area/ai_monitored/storage/eva)
-"pgR" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/landmark/xeno_spawn,
-/obj/item/paper/crumpled/bloody/docsdeathnote{
- default_raw_text = "They tried to take it from us... our precious...";
- pixel_x = -7;
- pixel_y = 5
- },
-/turf/open/floor/plating{
- burnt = 1
- },
-/area/maintenance/department/medical)
"pgT" = (
/obj/structure/table/wood,
/obj/effect/turf_decal/siding/wood,
@@ -48634,32 +48769,6 @@
},
/turf/open/floor/plating,
/area/bridge)
-"pjQ" = (
-/obj/effect/turf_decal/guideline/guideline_in/neutral{
- alpha = 255;
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
- },
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
- },
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
- },
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
"pjX" = (
/obj/machinery/firealarm{
dir = 8;
@@ -48740,6 +48849,16 @@
dir = 10
},
/area/science/mixing)
+"pkH" = (
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/solar{
+ id = "portsolar";
+ name = "Port Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/port/aft)
"pkP" = (
/obj/effect/turf_decal/siding/wideplating/dark{
dir = 9
@@ -48789,19 +48908,6 @@
},
/turf/open/floor/iron/sepia,
/area/quartermaster/office)
-"pkY" = (
-/obj/structure/window/reinforced,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/leafybush,
-/obj/item/toy/gun{
- desc = "It has his name engraved in the barrel. On closer inspection it's just a toy";
- name = "Tony's gun";
- pixel_x = -12;
- pixel_y = 5
- },
-/turf/open/floor/grass/no_border,
-/area/hallway/secondary/exit/departure_lounge)
"plx" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -48822,6 +48928,19 @@
/obj/machinery/advanced_airlock_controller/directional/north,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"plG" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/effect/turf_decal/bot,
+/obj/structure/closet/firecloset/full,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"plT" = (
/obj/machinery/airalarm/directional/west,
/obj/effect/turf_decal/tile/blue/half/contrasted{
@@ -48837,21 +48956,6 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/iron/dark,
/area/science/misc_lab/range)
-"pmn" = (
-/obj/structure/railing/corner{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"pmu" = (
/obj/machinery/button/door{
id = "commissarydoor1";
@@ -48897,12 +49001,6 @@
},
/turf/open/floor/iron/white,
/area/science/xenobiology)
-"pmV" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/mechanical,
-/obj/machinery/light/very_dim/directional/west,
-/turf/open/floor/iron/dark,
-/area/security/execution/education)
"pnv" = (
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/obj/effect/turf_decal/bot,
@@ -48987,20 +49085,6 @@
/obj/effect/turf_decal/box,
/turf/open/floor/iron/white,
/area/science/research)
-"poD" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_y = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"poH" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/turf_decal/guideline/guideline_edge/purple{
@@ -49101,17 +49185,6 @@
},
/turf/open/floor/iron/sepia,
/area/quartermaster/storage)
-"ppT" = (
-/obj/structure/railing{
- dir = 5
- },
-/obj/machinery/vending/cigarette,
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 5
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"pqk" = (
/obj/effect/decal/cleanable/robot_debris,
/turf/open/floor/plating,
@@ -49198,16 +49271,6 @@
},
/turf/open/floor/iron,
/area/bridge)
-"pqL" = (
-/obj/effect/decal/cleanable/crayon,
-/obj/item/food/butterdog,
-/turf/open/floor/plating,
-/area/maintenance/department/medical)
-"pqP" = (
-/obj/machinery/space_heater,
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/plating,
-/area/maintenance/central)
"prd" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -49316,6 +49379,19 @@
},
/turf/open/floor/plating/airless,
/area/science/test_area)
+"pum" = (
+/obj/structure/table,
+/obj/item/stack/sheet/glass{
+ amount = 30
+ },
+/obj/item/stack/sheet/iron{
+ amount = 30
+ },
+/obj/item/rcl/pre_loaded,
+/obj/item/wrench,
+/obj/item/crowbar/red,
+/turf/open/floor/iron/tech,
+/area/engine/atmos)
"puq" = (
/obj/structure/chair{
dir = 4
@@ -49394,19 +49470,6 @@
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating,
/area/maintenance/department/science)
-"pvw" = (
-/obj/structure/window/reinforced{
- dir = 4;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/effect/turf_decal/bot,
-/obj/structure/closet/firecloset/full,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"pvz" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
@@ -49590,6 +49653,21 @@
},
/turf/open/floor/plating,
/area/security/courtroom)
+"pzG" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/central)
"pzH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -49633,6 +49711,18 @@
/obj/effect/decal/cleanable/dirt,
/turf/closed/wall,
/area/maintenance/port/central)
+"pAn" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/security)
"pAu" = (
/obj/machinery/light/small{
dir = 4
@@ -49791,17 +49881,6 @@
},
/turf/open/floor/engine/o2,
/area/engine/atmos)
-"pCI" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/obj/structure/railing/corner{
- dir = 1
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"pCQ" = (
/obj/item/kirbyplants{
pixel_x = 19;
@@ -49836,6 +49915,23 @@
/obj/item/kirbyplants/random,
/turf/open/floor/circuit/green/telecomms/mainframe,
/area/quartermaster/exploration_prep)
+"pCU" = (
+/obj/effect/turf_decal/guideline/guideline_in/purple{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/effect/turf_decal/tile/purple/half{
+ dir = 4
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
"pCW" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron/tech,
@@ -49859,20 +49955,6 @@
},
/turf/open/floor/iron/dark,
/area/science/nanite)
-"pEb" = (
-/obj/structure/railing/corner{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron/dark/corner{
- dir = 1
- },
-/area/hallway/primary/central)
"pEe" = (
/obj/effect/turf_decal/tile/yellow/half/contrasted{
alpha = 180;
@@ -49909,24 +49991,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/cafeteria)
-"pEr" = (
-/obj/machinery/light/floor{
- brightness = 15;
- bulb_colour = "#FFE4CE";
- bulb_vacuum_brightness = 15;
- nightshift_brightness = 10;
- nightshift_light_color = "#E6EBFF"
- },
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 8
- },
-/obj/structure/railing/corner{
- dir = 1
- },
-/turf/open/floor/iron/dark/smooth_edge{
- dir = 4
- },
-/area/hallway/primary/central)
"pEs" = (
/obj/structure/disposalpipe/sorting/mail/flip{
dir = 4;
@@ -49941,16 +50005,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
-"pEw" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/solar{
- id = "portsolar";
- name = "Port Solar Array"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/starboard/aft)
"pEA" = (
/turf/open/floor/iron/stairs/left{
dir = 4
@@ -50068,6 +50122,23 @@
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
/area/maintenance/department/medical/morgue)
+"pFx" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ alpha = 180
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/engine/storage)
"pFE" = (
/obj/machinery/vending/dinnerware,
/obj/effect/turf_decal/bot,
@@ -50237,22 +50308,21 @@
},
/turf/open/floor/carpet/blue,
/area/crew_quarters/heads/hos)
+"pIB" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/smes/engineering{
+ charge = 2e+007
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"pIC" = (
/obj/machinery/suit_storage_unit/security,
/turf/open/floor/iron/dark,
/area/security/brig/dock{
name = "Security E.V.A. Storage"
})
-"pII" = (
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_y = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/closet/emcloset,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"pIL" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 4
@@ -50348,6 +50418,39 @@
/obj/item/storage/fancy/donut_box,
/turf/open/floor/carpet/royalblue,
/area/crew_quarters/heads/captain)
+"pJX" = (
+/obj/structure/railing{
+ dir = 6
+ },
+/obj/machinery/light/floor{
+ brightness = 15;
+ bulb_colour = "#FFE4CE";
+ bulb_vacuum_brightness = 15;
+ nightshift_brightness = 10;
+ nightshift_light_color = "#E6EBFF"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
+"pKp" = (
+/obj/structure/table/reinforced,
+/obj/item/gun/energy/ionrifle{
+ pixel_x = -1;
+ pixel_y = 10
+ },
+/obj/item/gun/energy/temperature/security{
+ pixel_y = 5
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/window/brigdoor/westleft{
+ name = "specialized weapons";
+ req_access_txt = "3"
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/item/gun/grenadelauncher/security,
+/turf/open/floor/iron,
+/area/ai_monitored/security/armory)
"pKz" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -50412,15 +50515,6 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/miningdock)
-"pLm" = (
-/obj/effect/turf_decal/bot,
-/obj/effect/turf_decal/guideline/guideline_edge/blue{
- dir = 8
- },
-/obj/structure/closet/crate/freezer/surplus_limbs,
-/obj/item/organ/ears/cat,
-/turf/open/floor/iron,
-/area/medical/surgery)
"pLp" = (
/obj/machinery/firealarm/directional/east,
/obj/effect/turf_decal/tile/neutral{
@@ -50457,6 +50551,13 @@
},
/turf/open/floor/wood,
/area/library)
+"pLJ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/turf/open/floor/iron,
+/area/quartermaster/exploration_prep)
"pLM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 5
@@ -50501,6 +50602,18 @@
burnt = 1
},
/area/maintenance/department/medical/morgue)
+"pMw" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/central)
"pMy" = (
/obj/effect/turf_decal/stripes/corner{
dir = 8
@@ -50600,46 +50713,16 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"pOp" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/open/floor/iron/dark,
-/area/science/robotics)
"pOB" = (
/obj/effect/turf_decal/tile/dark_green/half/contrasted,
/turf/open/floor/iron/dark,
/area/bridge)
-"pOD" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 4
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"pOL" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
/turf/closed/wall/r_wall,
/area/science/mixing/chamber)
-"pOQ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
- dir = 8
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"pOX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -50684,16 +50767,6 @@
dir = 4
},
/area/medical/surgery)
-"pPj" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/iron/dark,
-/area/chapel/office)
"pPm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 6
@@ -50707,18 +50780,6 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/iron/white,
/area/science/xenobiology)
-"pPo" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/camera/autoname{
- dir = 1
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/bridge)
"pPs" = (
/obj/effect/decal/cleanable/blood/splatter,
/turf/open/floor/iron/white/side,
@@ -50731,29 +50792,19 @@
"pPA" = (
/turf/closed/wall/r_wall,
/area/science/storage)
-"pPY" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+"pPX" = (
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/aft)
-"pQd" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/solar{
- id = "portsolar";
- name = "Port Solar Array"
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
},
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/starboard/aft)
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/bridge)
"pQm" = (
/obj/machinery/light{
dir = 4
@@ -51050,15 +51101,6 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/security/armory)
-"pUj" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/closet/emcloset,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"pUl" = (
/obj/effect/turf_decal/guideline/guideline_out_arrow/brown{
dir = 9
@@ -51090,18 +51132,6 @@
},
/turf/open/floor/iron,
/area/security/brig)
-"pUv" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/starboard/aft)
"pVo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -51112,6 +51142,14 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron/white,
/area/science/xenobiology)
+"pVq" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"pVy" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -51184,6 +51222,20 @@
/area/security/prison{
name = "Prison Processing"
})
+"pVT" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/obj/effect/turf_decal/guideline/guideline_edge/red,
+/obj/machinery/camera/autoname{
+ dir = 1;
+ network = list("ss13","security")
+ },
+/obj/machinery/light_switch{
+ pixel_y = -25
+ },
+/turf/open/floor/iron,
+/area/security/brig)
"pVX" = (
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating,
@@ -51586,6 +51638,23 @@
/obj/structure/lattice/catwalk,
/turf/open/space/basic,
/area/solar/port/fore)
+"qbm" = (
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/effect/turf_decal/siding/wideplating/dark/corner{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
"qbq" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 4
@@ -51658,33 +51727,6 @@
/obj/item/ammo_casing/spent,
/turf/open/floor/plating,
/area/maintenance/department/security)
-"qcG" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/sunnybush,
-/turf/open/floor/grass/no_border,
-/area/hallway/secondary/exit/departure_lounge)
-"qcH" = (
-/obj/effect/turf_decal/tile/yellow/half/contrasted{
- alpha = 180
- },
-/obj/structure/closet/secure_closet/engineering_personal,
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 28
- },
-/obj/item/storage/fancy/candle_box{
- name = "Ignis' candle pack";
- pixel_x = -2;
- pixel_y = 8
- },
-/obj/item/clothing/gloves/color/yellow,
-/turf/open/floor/iron,
-/area/engine/storage)
"qcI" = (
/obj/structure/railing/corner,
/obj/effect/turf_decal/siding/wideplating/dark/corner,
@@ -51708,23 +51750,6 @@
/obj/effect/turf_decal/box,
/turf/open/floor/iron/white,
/area/medical/surgery)
-"qdU" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/guideline/guideline_in/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow/half,
-/obj/effect/turf_decal/tile/yellow/half,
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
-"qdW" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/security)
"qea" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -51800,6 +51825,12 @@
dir = 8
},
/area/hallway/primary/central)
+"qeQ" = (
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"qeU" = (
/obj/structure/table/reinforced,
/obj/item/wrench,
@@ -51837,14 +51868,6 @@
},
/turf/open/floor/plating,
/area/science/xenobiology)
-"qfC" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/open/floor/grass/no_border,
-/area/hallway/secondary/exit/departure_lounge)
"qga" = (
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -51853,6 +51876,19 @@
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/iron,
/area/maintenance/port/aft)
+"qgd" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/blood/old,
+/obj/machinery/light{
+ bulb_colour = "#22bfa2";
+ bulb_vacuum_colour = "#22bfa2";
+ dir = 8;
+ nightshift_light_color = "#22bfa2"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"qgr" = (
/obj/effect/turf_decal/siding/wideplating/dark,
/turf/open/floor/carpet/red,
@@ -51905,15 +51941,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
-"qhj" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/railing/corner{
- dir = 8
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"qhm" = (
/obj/machinery/status_display/evac{
pixel_y = 32
@@ -51949,14 +51976,6 @@
broken = 1
},
/area/maintenance/starboard/aft)
-"qin" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 3
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron/dark,
-/area/quartermaster/exploration_prep)
"qio" = (
/obj/machinery/atmospherics/components/trinary/mixer/flipped{
dir = 1
@@ -52079,6 +52098,19 @@
},
/turf/open/floor/iron/white,
/area/science/xenobiology)
+"qkA" = (
+/obj/effect/turf_decal/guideline/guideline_out/brown{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/techmaint,
+/area/maintenance/central)
"qkS" = (
/obj/effect/turf_decal/guideline/guideline_in/darkblue{
dir = 8
@@ -52105,16 +52137,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
-"qlC" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/generic,
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"qmu" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -52174,22 +52196,6 @@
"qmZ" = (
/turf/open/floor/iron/white,
/area/maintenance/port/aft)
-"qnm" = (
-/obj/effect/turf_decal/guideline/guideline_out_arrow/brown{
- dir = 1
- },
-/obj/effect/decal/cleanable/oil/streak,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/iron/techmaint,
-/area/hallway/secondary/service)
"qnr" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/atmospherics/components/binary/pump{
@@ -52338,10 +52344,6 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/iron/techmaint,
/area/security/prison/shielded)
-"qpu" = (
-/obj/structure/window/reinforced,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"qpz" = (
/obj/structure/extinguisher_cabinet{
pixel_y = 32
@@ -52417,6 +52419,35 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/port/aft)
+"qrx" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/aft)
+"qrF" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 5
+ },
+/obj/machinery/button/door{
+ id = "detectivewindows";
+ name = "Detective Private Shutters";
+ pixel_x = 25;
+ pixel_y = -8;
+ req_access_txt = "4"
+ },
+/obj/machinery/vending/boozeomat/all_access{
+ req_access_txt = "4"
+ },
+/obj/structure/noticeboard{
+ name = "Evidence board";
+ pixel_y = 32
+ },
+/turf/open/floor/carpet/red,
+/area/security/detectives_office)
"qrR" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted{
alpha = 200;
@@ -52481,12 +52512,6 @@
},
/turf/open/floor/iron/dark,
/area/crew_quarters/bar)
-"qtb" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/aft)
"qth" = (
/obj/structure/table,
/obj/effect/turf_decal/stripes/line,
@@ -52723,15 +52748,18 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/starboard/fore)
+"qwf" = (
+/obj/effect/decal/cleanable/shreds,
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
"qwL" = (
/obj/structure/sign/poster/random,
/turf/closed/wall,
/area/gateway)
-"qwZ" = (
+"qwU" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/landmark/blobstart,
/turf/open/floor/catwalk_floor,
-/area/maintenance/central)
+/area/maintenance/department/medical/morgue)
"qxi" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -52813,18 +52841,6 @@
icon_state = "wood-broken5"
},
/area/maintenance/port/aft)
-"qyo" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"qyp" = (
/obj/structure/grille/broken,
/turf/open/floor/plating,
@@ -52849,15 +52865,6 @@
/obj/effect/decal/cleanable/glass,
/turf/open/floor/wood,
/area/vacant_room/office)
-"qzz" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/medical/morgue)
"qAe" = (
/obj/structure/table/reinforced,
/obj/item/stack/sheet/glass/fifty{
@@ -52948,25 +52955,6 @@
},
/turf/open/floor/carpet/royalblack,
/area/lawoffice)
-"qBk" = (
-/obj/effect/turf_decal/guideline/guideline_in/brown,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/disposalpipe/junction{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/effect/turf_decal/tile/brown/half{
- dir = 8
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
"qBp" = (
/obj/structure/table/reinforced,
/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted{
@@ -53000,6 +52988,38 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
+"qBN" = (
+/obj/effect/turf_decal/guideline/guideline_in/neutral{
+ alpha = 255;
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
+ },
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
+ },
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
+ },
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
"qBR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -53035,21 +53055,6 @@
},
/turf/open/space/basic,
/area/space)
-"qBZ" = (
-/obj/structure/window/reinforced{
- dir = 4;
- layer = 2.9
- },
-/obj/structure/window/reinforced,
-/obj/machinery/light/floor{
- brightness = 15;
- bulb_colour = "#FFE4CE";
- bulb_vacuum_brightness = 15;
- nightshift_brightness = 10;
- nightshift_light_color = "#E6EBFF"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"qCn" = (
/obj/machinery/door/airlock/public/glass{
name = "Primary Hallway"
@@ -53075,21 +53080,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"qCu" = (
-/obj/machinery/door/airlock/atmos{
- name = "atmospherics Storage";
- req_access = "24"
- },
-/obj/effect/turf_decal/loading_area{
- dir = 8
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/button{
- id = "atmosshutters";
- pixel_y = -25
- },
-/turf/open/floor/iron/dark,
-/area/engine/atmos)
"qCD" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/power/apc{
@@ -53116,23 +53106,6 @@
dir = 10
},
/area/science/mixing)
-"qCN" = (
-/obj/machinery/camera/autoname{
- dir = 9;
- network = list("ss13","prison")
- },
-/obj/item/radio/intercom{
- desc = "Talk through this. It looks like it has been modified to not broadcast.";
- freerange = 1;
- name = "Prison intercom";
- pixel_x = 25;
- prison_radio = 1
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/security/prison)
"qCQ" = (
/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
alpha = 180
@@ -53161,13 +53134,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/freezer,
/area/crew_quarters/kitchen/coldroom)
-"qDc" = (
-/obj/effect/decal/cleanable/oil,
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/medical/morgue)
"qDN" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -53179,6 +53145,20 @@
/obj/item/storage/belt/utility,
/turf/open/floor/iron,
/area/maintenance/department/security)
+"qDQ" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "Engidesk";
+ name = "engineering security door"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/northright{
+ dir = 2;
+ name = "Engi Desk";
+ req_one_access_txt = "32;19"
+ },
+/obj/machinery/modular_fabricator/autolathe,
+/turf/open/floor/iron/dark,
+/area/engine/engineering)
"qDZ" = (
/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
alpha = 140;
@@ -53201,18 +53181,21 @@
},
/turf/open/floor/iron,
/area/hallway/primary/starboard)
-"qEf" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
+"qEk" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer4{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/radio/intercom{
+ pixel_x = -32;
+ pixel_y = -3
},
-/obj/structure/disposalpipe/segment{
- dir = 2
+/obj/machinery/power/smes/engineering{
+ charge = 2e+007
},
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
+/obj/structure/cable/yellow,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"qEl" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/obj/effect/decal/cleanable/dirt,
@@ -53242,17 +53225,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/starboard)
-"qEC" = (
-/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
-/obj/item/radio/intercom{
- desc = "Talk through this. It looks like it has been modified to not broadcast.";
- freerange = 1;
- name = "Prison intercom";
- pixel_y = -25;
- prison_radio = 1
- },
-/turf/open/floor/prison,
-/area/security/prison)
"qEG" = (
/obj/machinery/door/airlock/command{
name = "Research Director's Quarters";
@@ -53322,13 +53294,6 @@
},
/turf/open/floor/carpet/red,
/area/crew_quarters/theatre/backstage)
-"qFJ" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/structure/railing/corner{
- dir = 4
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"qFY" = (
/obj/machinery/door/airlock{
name = "Freezer";
@@ -53513,6 +53478,14 @@
/area/security/brig{
name = "Brig Interrogation"
})
+"qJB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/railing/corner,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"qJC" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -53590,21 +53563,6 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/storage/eva)
-"qKS" = (
-/obj/machinery/camera/autoname{
- dir = 8;
- network = list("ss13","security")
- },
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron/dark,
-/area/security/brig{
- name = "Brig Evidence"
- })
"qKX" = (
/obj/structure/bed{
dir = 4
@@ -53749,6 +53707,12 @@
},
/turf/open/space/basic,
/area/space/nearstation)
+"qNu" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/medical/morgue)
"qNP" = (
/obj/effect/turf_decal/box,
/obj/structure/cable/yellow{
@@ -53905,15 +53869,6 @@
/obj/effect/decal/cleanable/greenglow,
/turf/open/floor/iron/techmaint,
/area/science/misc_lab/range)
-"qQj" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/window/reinforced{
- dir = 4;
- layer = 2.9
- },
-/obj/machinery/vending/cola,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"qQC" = (
/obj/machinery/door/airlock/external{
name = "Arrival Shuttle Airlock"
@@ -54027,13 +53982,6 @@
/obj/structure/lattice,
/turf/open/space/basic,
/area/space/nearstation)
-"qSv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/holopad,
-/obj/effect/turf_decal/box,
-/turf/open/floor/iron/tech,
-/area/engine/atmos)
"qSE" = (
/obj/structure/table/reinforced,
/obj/item/clothing/head/utility/welding{
@@ -54154,17 +54102,6 @@
},
/turf/open/floor/iron,
/area/gateway)
-"qUt" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=5-WHall";
- location = "4-CenterNW"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"qUv" = (
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -54279,6 +54216,13 @@
name = "mainframe floor"
},
/area/tcommsat/computer)
+"qVJ" = (
+/obj/machinery/atmospherics/pipe/layer_manifold,
+/obj/structure/table/reinforced,
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/engine/engine_room)
"qWc" = (
/obj/machinery/light/small{
dir = 8
@@ -54324,6 +54268,12 @@
/obj/item/ammo_casing/spent,
/turf/open/floor/iron,
/area/maintenance/department/security)
+"qWw" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/central)
"qWB" = (
/obj/effect/turf_decal/bot,
/obj/machinery/light{
@@ -54352,27 +54302,6 @@
},
/turf/open/floor/wood,
/area/vacant_room/office)
-"qWY" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/disposalpipe/junction/flip{
- dir = 8
- },
-/obj/effect/turf_decal/guideline/guideline_in/green{
- color = "#439C1E"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/effect/turf_decal/tile/dark_green/half{
- dir = 8
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
"qXb" = (
/obj/machinery/disposal/bin,
/obj/effect/turf_decal/delivery,
@@ -54459,33 +54388,6 @@
},
/turf/open/floor/carpet,
/area/library)
-"qXU" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2,
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
-"qYf" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"qYz" = (
/obj/machinery/camera/autoname{
network = list("ss13","rd")
@@ -54498,18 +54400,27 @@
},
/turf/open/floor/iron,
/area/science/lobby)
-"qYC" = (
+"qYH" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
+/obj/structure/disposalpipe/junction/flip{
+ dir = 8
+ },
+/obj/effect/turf_decal/guideline/guideline_in/green{
+ color = "#439C1E"
+ },
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+ dir = 6
},
-/turf/open/floor/catwalk_floor,
-/area/maintenance/central)
+/obj/effect/turf_decal/tile/dark_green/half{
+ dir = 8
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
"qYR" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -54543,6 +54454,19 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/qm)
+"qZs" = (
+/obj/effect/landmark/xeno_spawn,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/chapel/office)
"qZB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -54796,6 +54720,15 @@
},
/turf/open/floor/iron,
/area/engine/engine_room)
+"rdd" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4,
+/obj/machinery/camera/autoname{
+ dir = 4;
+ network = list("ss13","engine")
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"rdn" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 1
@@ -54820,6 +54753,19 @@
},
/turf/open/floor/iron/white,
/area/science/research)
+"rdr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/aft)
"rdu" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
@@ -54847,13 +54793,6 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"rdM" = (
-/obj/machinery/smartfridge/sci{
- initial_contents = list(/obj/item/stock_parts/capacitor = 2, /obj/item/stock_parts/manipulator = 2, /obj/item/stock_parts/micro_laser = 2, /obj/item/stock_parts/matter_bin = 2, /obj/item/stock_parts/scanning_module = 2);
- name = "Science vender"
- },
-/turf/closed/wall,
-/area/engine/storage)
"rdT" = (
/obj/structure/disposalpipe/segment{
dir = 6
@@ -54937,6 +54876,19 @@
/obj/machinery/firealarm/directional/east,
/turf/open/floor/iron,
/area/engine/engineering)
+"rfV" = (
+/obj/structure/musician/piano{
+ icon_state = "piano"
+ },
+/obj/machinery/light{
+ light_color = "#7AC3FF"
+ },
+/obj/machinery/camera/autoname{
+ c_tag = "Captain's Quarters";
+ dir = 1
+ },
+/turf/open/floor/glass/reinforced,
+/area/crew_quarters/cafeteria)
"rfW" = (
/obj/machinery/portable_atmospherics/canister/plasma,
/obj/effect/turf_decal/delivery,
@@ -55050,6 +55002,16 @@
/obj/item/kirbyplants/random,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"rha" = (
+/obj/machinery/newscaster{
+ pixel_y = 34
+ },
+/obj/machinery/camera/autoname{
+ dir = 6;
+ network = list("ss13","security","court")
+ },
+/turf/open/floor/wood,
+/area/security/courtroom)
"rhh" = (
/obj/effect/turf_decal/siding/wood{
dir = 8
@@ -55083,19 +55045,6 @@
"rhw" = (
/turf/open/floor/iron/white,
/area/crew_quarters/kitchen)
-"rhz" = (
-/obj/structure/railing/corner,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"rhG" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -55179,24 +55128,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/bridge)
-"rjH" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/aft)
-"rjX" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/turf/open/floor/iron/dark,
-/area/chapel/main)
"rjY" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -55318,11 +55249,13 @@
"rlV" = (
/turf/open/floor/iron/dark,
/area/science/robotics/mechbay)
-"rmh" = (
-/obj/machinery/atmospherics/pipe/layer_manifold,
-/obj/structure/table/reinforced,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
+"rmj" = (
+/obj/machinery/smartfridge/sci{
+ initial_contents = list(/obj/item/stock_parts/capacitor = 2, /obj/item/stock_parts/manipulator = 2, /obj/item/stock_parts/micro_laser = 2, /obj/item/stock_parts/matter_bin = 2, /obj/item/stock_parts/scanning_module = 2);
+ name = "Science vender"
+ },
+/turf/closed/wall,
+/area/engine/storage)
"rmy" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -55447,6 +55380,41 @@
/obj/structure/girder/displaced,
/turf/open/space/basic,
/area/space/nearstation)
+"roe" = (
+/obj/machinery/button/door{
+ id = "brigentrance";
+ name = "Brig Lockdown Control";
+ pixel_x = -23;
+ pixel_y = 6;
+ req_access_txt = "3"
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_x = -37;
+ pixel_y = 4
+ },
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 8
+ },
+/obj/machinery/button/door{
+ id = "Prisongate";
+ name = "Prison Wing Lockdown";
+ pixel_x = -23;
+ pixel_y = -6;
+ req_access_txt = "3"
+ },
+/obj/machinery/photocopier,
+/obj/effect/turf_decal/bot,
+/obj/item/radio/intercom{
+ desc = "Talk through this. It looks like it has been modified to not broadcast.";
+ freerange = 1;
+ name = "Prison intercom";
+ pixel_x = -37;
+ pixel_y = -10;
+ prison_radio = 1
+ },
+/turf/open/floor/iron/dark,
+/area/security/warden)
"rog" = (
/obj/effect/turf_decal/tile/red/anticorner/contrasted,
/obj/effect/landmark/start/depsec/medical,
@@ -55498,21 +55466,6 @@
/obj/structure/flora/tree/jungle/small,
/turf/open/floor/grass,
/area/hallway/primary/central)
-"rpu" = (
-/obj/effect/turf_decal/guideline/guideline_out_arrow/brown{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/iron/techmaint,
-/area/hallway/secondary/service)
"rpF" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow{
@@ -55527,6 +55480,20 @@
},
/turf/open/floor/carpet/royalblack,
/area/library)
+"rqc" = (
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
"rqd" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -55744,15 +55711,6 @@
},
/turf/open/floor/plating,
/area/maintenance/department/medical/morgue)
-"rtZ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 9
- },
-/turf/open/floor/iron,
-/area/quartermaster/exploration_prep)
"ruc" = (
/obj/structure/chair/fancy/bench/pew/right{
dir = 1
@@ -55774,25 +55732,6 @@
/obj/effect/turf_decal/box,
/turf/open/floor/iron/dark,
/area/quartermaster/miningdock)
-"ruu" = (
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/sorting/mail{
- dir = 8;
- name = "Security"
- },
-/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
- alpha = 180;
- color = "#DE3A3A"
- },
-/turf/open/floor/iron,
-/area/security/brig)
"ruG" = (
/obj/effect/turf_decal/tile/purple/half/contrasted{
dir = 4
@@ -55938,19 +55877,6 @@
/obj/structure/railing,
/turf/open/space/basic,
/area/ai_monitored/turret_protected/ai)
-"rwO" = (
-/obj/effect/turf_decal/guideline/guideline_out/brown{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/iron/techmaint,
-/area/maintenance/central)
"rwP" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8
@@ -55961,18 +55887,25 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/engine/atmospherics_engine)
-"rwU" = (
+"rxl" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/closet/crate/trashcart,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal)
+"rxt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
- dir = 1
+ dir = 2
},
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/starboard/aft)
+/turf/open/floor/iron/white,
+/area/science/research)
"rxw" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/structure/table/reinforced,
@@ -56066,16 +55999,6 @@
dir = 8
},
/area/science/research)
-"ryv" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/solar{
- id = "portsolar";
- name = "Port Solar Array"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/port/fore)
"ryP" = (
/obj/item/cardboard_cutout/adaptive/chess/black/bishop,
/obj/effect/turf_decal/stripes/line{
@@ -56096,16 +56019,37 @@
},
/turf/open/floor/iron/dark,
/area/security/courtroom)
-"rzo" = (
+"rzm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
/obj/structure/cable/yellow{
- icon_state = "2-8"
+ icon_state = "4-8"
},
-/obj/machinery/portable_atmospherics/canister/plasma,
-/obj/machinery/atmospherics/components/unary/portables_connector{
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/aft)
+"rzr" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ alpha = 180
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/light{
dir = 4
},
-/turf/open/floor/iron/dark,
-/area/quartermaster/exploration_prep)
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/airalarm/directional/east,
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/open/floor/iron,
+/area/engine/storage)
"rzL" = (
/obj/structure/table/glass,
/obj/effect/turf_decal/stripes/line{
@@ -56135,19 +56079,6 @@
},
/turf/open/floor/plating,
/area/maintenance/department/bridge)
-"rzS" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"rAf" = (
/obj/effect/turf_decal/bot,
/obj/structure/cable/yellow{
@@ -56186,29 +56117,6 @@
},
/turf/open/floor/wood,
/area/security/detectives_office)
-"rAx" = (
-/obj/effect/landmark/start/assistant,
-/obj/effect/turf_decal/siding/white{
- dir = 5
- },
-/turf/open/floor/glass/reinforced,
-/area/hallway/primary/central{
- dynamic_lighting = 2;
- lighting_brightness_tube = 11;
- lighting_colour_bulb = "#DDE6FF";
- lighting_colour_night = "#DDE6FF";
- lighting_colour_tube = "#DDE6FF";
- lighting_overlay_colour = "#DDE6FF";
- power_light = 0
- })
-"rAD" = (
-/obj/machinery/mineral/stacking_machine{
- dir = 4;
- input_dir = 1;
- output_dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal)
"rAL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -56256,6 +56164,19 @@
},
/turf/open/floor/wood,
/area/security/detectives_office)
+"rBe" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/aft)
"rBm" = (
/obj/structure/table/wood,
/obj/item/folder/blue{
@@ -56561,20 +56482,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/starboard)
-"rES" = (
-/obj/structure/railing/corner{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron/dark/corner{
- dir = 8
- },
-/area/hallway/primary/central)
"rFa" = (
/obj/structure/disposalpipe/segment{
dir = 1
@@ -56593,6 +56500,43 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/crew_quarters/cafeteria)
+"rFf" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/turf/open/floor/iron/dark,
+/area/chapel/main)
+"rFi" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 8;
+ name = "Security"
+ },
+/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
+ alpha = 180;
+ color = "#DE3A3A"
+ },
+/turf/open/floor/iron,
+/area/security/brig)
+"rFj" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4,
+/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"rFw" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
@@ -56607,14 +56551,6 @@
/obj/effect/spawner/structure/window/plasma/reinforced,
/turf/open/floor/plating,
/area/engine/storage)
-"rFR" = (
-/obj/structure/window/reinforced,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/palebush,
-/mob/living/simple_animal/butterfly,
-/turf/open/floor/grass/no_border,
-/area/hallway/secondary/exit/departure_lounge)
"rGd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
@@ -56638,15 +56574,31 @@
},
/turf/open/floor/iron/dark,
/area/security/brig/dock)
-"rHa" = (
+"rGU" = (
/obj/structure/cable/yellow{
- icon_state = "1-2"
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/effect/turf_decal/guideline/guideline_in/green{
+ color = "#439C1E"
+ },
+/obj/effect/turf_decal/tile/dark_green/half{
+ dir = 8
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
+"rHk" = (
+/obj/structure/window/reinforced{
dir = 1
},
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/open/floor/grass/no_border,
+/area/hallway/secondary/exit/departure_lounge)
"rHt" = (
/obj/item/chair/wood{
dir = 8
@@ -56673,20 +56625,6 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat/foyer)
-"rHP" = (
-/obj/effect/turf_decal/tile/yellow/half/contrasted{
- alpha = 180
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron,
-/area/engine/storage)
"rId" = (
/obj/effect/turf_decal/tile/black/fourcorners,
/obj/machinery/hydroponics/constructable,
@@ -56817,6 +56755,12 @@
/obj/structure/closet/firecloset/full,
/turf/open/floor/plating,
/area/maintenance/department/security)
+"rKl" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/glass/reinforced,
+/area/crew_quarters/cafeteria)
"rKn" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/telecomms/receiver/preset_right{
@@ -56865,6 +56809,16 @@
},
/turf/open/floor/iron,
/area/engine/engine_room)
+"rLx" = (
+/obj/effect/decal/cleanable/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/bridge)
"rLB" = (
/obj/machinery/disposal/bin,
/obj/effect/turf_decal/bot,
@@ -56900,22 +56854,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plating,
/area/engine/engine_room)
-"rMd" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/radio/intercom{
- pixel_y = 22
- },
-/turf/open/floor/iron,
-/area/engine/engine_room)
"rMN" = (
/obj/structure/aquarium,
/obj/structure/cable/yellow{
@@ -57035,15 +56973,6 @@
},
/turf/open/floor/iron/tech,
/area/engine/engine_room)
-"rPE" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/central)
"rPU" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -57317,6 +57246,15 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/lobby)
+"rUY" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"rVb" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 8
@@ -57336,19 +57274,6 @@
/obj/structure/sign/poster/official/cleanliness,
/turf/closed/wall,
/area/medical/storage)
-"rVg" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 5
- },
-/obj/effect/decal/cleanable/blood/old,
-/obj/machinery/light{
- bulb_colour = "#22bfa2";
- bulb_vacuum_colour = "#22bfa2";
- dir = 8;
- nightshift_light_color = "#22bfa2"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"rVH" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 28
@@ -57375,21 +57300,6 @@
/obj/machinery/vending/wardrobe/det_wardrobe,
/turf/open/floor/wood,
/area/security/detectives_office)
-"rWI" = (
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/effect/turf_decal/guideline/guideline_in/yellow{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/yellow/half,
-/obj/effect/turf_decal/tile/yellow/half,
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
"rWM" = (
/obj/effect/turf_decal/tile/red/anticorner/contrasted{
dir = 8
@@ -57420,12 +57330,6 @@
/obj/effect/turf_decal/stripes/closeup,
/turf/open/floor/iron,
/area/security/brig)
-"rXp" = (
-/obj/structure/window/reinforced,
-/obj/structure/closet/firecloset/full,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"rXr" = (
/obj/machinery/door/airlock/command/glass{
name = "Research Director";
@@ -57585,19 +57489,6 @@
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"rZa" = (
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/grass/no_border,
-/area/medical/sleeper)
"rZt" = (
/obj/effect/spawner/lootdrop/maintenance/eight,
/obj/structure/rack,
@@ -57608,13 +57499,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/maintenance/port/aft)
-"rZG" = (
-/obj/machinery/smartfridge/sci{
- initial_contents = list(/obj/item/stock_parts/capacitor = 2, /obj/item/stock_parts/manipulator = 2, /obj/item/stock_parts/micro_laser = 2, /obj/item/stock_parts/matter_bin = 2, /obj/item/stock_parts/scanning_module = 2);
- name = "Science vender"
- },
-/turf/closed/wall,
-/area/science/lab)
"rZQ" = (
/obj/machinery/camera/autoname{
dir = 4;
@@ -57715,6 +57599,17 @@
},
/turf/open/floor/iron/dark,
/area/science/nanite)
+"sbI" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 6
+ },
+/obj/machinery/door/window/brigdoor{
+ dir = 4;
+ name = "Pet Solitary Confinement";
+ req_access_txt = "58"
+ },
+/turf/open/floor/carpet/red,
+/area/crew_quarters/heads/hos)
"scb" = (
/turf/closed/wall/r_wall,
/area/storage/tech)
@@ -57891,31 +57786,6 @@
},
/turf/open/floor/plating,
/area/bridge)
-"sez" = (
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 8
- },
-/obj/effect/turf_decal/guideline/guideline_edge/red,
-/obj/machinery/camera/autoname{
- dir = 1;
- network = list("ss13","security")
- },
-/obj/machinery/light_switch{
- pixel_y = -25
- },
-/turf/open/floor/iron,
-/area/security/brig)
-"seE" = (
-/obj/machinery/power/apc/auto_name/south{
- pixel_y = -24
- },
-/obj/structure/cable/yellow,
-/obj/item/reagent_containers/glass/bucket{
- pixel_x = -2;
- pixel_y = 10
- },
-/turf/open/floor/iron/dark,
-/area/security/execution/education)
"seK" = (
/obj/structure/disposalpipe/segment{
dir = 9
@@ -57934,6 +57804,15 @@
dir = 9
},
/area/science/research)
+"seS" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 8
+ },
+/area/hallway/primary/central)
"seT" = (
/turf/closed/wall,
/area/lawoffice)
@@ -58003,6 +57882,11 @@
},
/turf/open/floor/engine/vacuum,
/area/engine/atmospherics_engine)
+"sfm" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/iron/dark,
+/area/science/robotics)
"sfq" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/external{
@@ -58044,6 +57928,25 @@
/obj/machinery/airalarm/directional/east,
/turf/open/floor/carpet/grimy,
/area/chapel/office)
+"sgd" = (
+/obj/effect/turf_decal/guideline/guideline_in/darkblue{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/dark_blue/half{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/dark_blue/half{
+ dir = 1
+ },
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
"sgg" = (
/obj/structure/plasticflaps/opaque,
/obj/machinery/navbeacon{
@@ -58136,6 +58039,12 @@
},
/turf/open/floor/carpet/blue,
/area/bridge/meeting_room)
+"shJ" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/mechanical,
+/obj/machinery/light/very_dim/directional/west,
+/turf/open/floor/iron/dark,
+/area/security/execution/education)
"shO" = (
/obj/effect/turf_decal/tile/blue/half/contrasted{
dir = 1
@@ -58162,17 +58071,6 @@
"shZ" = (
/turf/closed/wall,
/area/maintenance/starboard/aft)
-"sij" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 4
- },
-/turf/open/floor/iron/dark/smooth_edge{
- dir = 8
- },
-/area/hallway/primary/central)
"sip" = (
/obj/structure/table/glass,
/obj/effect/turf_decal/tile/blue/opposingcorners{
@@ -58232,18 +58130,6 @@
},
/turf/open/floor/iron/techmaint,
/area/science/xenobiology)
-"sjy" = (
-/obj/effect/turf_decal/guideline/guideline_in/purple{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple/half{
- dir = 4
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
"sjI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -58259,6 +58145,18 @@
},
/turf/open/floor/plating,
/area/quartermaster/sorting)
+"sjT" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/central)
"skr" = (
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/obj/effect/turf_decal/bot,
@@ -58307,6 +58205,15 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron/tech,
/area/engine/engine_room)
+"skT" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 9
+ },
+/obj/structure/chair/fancy/bench/pew/right{
+ dir = 4
+ },
+/turf/open/floor/glass/reinforced,
+/area/chapel/main)
"skV" = (
/obj/effect/turf_decal/guideline/guideline_in/darkblue{
dir = 8
@@ -58359,15 +58266,6 @@
/obj/structure/table,
/turf/open/space/basic,
/area/solar/port/aft)
-"slo" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4,
-/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"slx" = (
/obj/structure/disposalpipe/segment{
dir = 1
@@ -58473,45 +58371,9 @@
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
/area/quartermaster/sorting)
-"smQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"smT" = (
/turf/open/floor/grass,
/area/hallway/primary/central)
-"smX" = (
-/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"sng" = (
/obj/structure/disposalpipe/sorting/mail/flip{
dir = 4;
@@ -58612,6 +58474,30 @@
/obj/structure/flora/rock,
/turf/open/floor/grass,
/area/hallway/primary/central)
+"sqi" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_y = 1
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/vending/snack/blue,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
+"sqr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/starboard/aft)
"sqI" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow{
@@ -58637,6 +58523,13 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"sri" = (
+/obj/effect/decal/cleanable/oil,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/medical/morgue)
"srn" = (
/obj/machinery/firealarm/directional/west,
/obj/effect/turf_decal/tile/blue/half/contrasted{
@@ -58690,6 +58583,19 @@
/obj/machinery/power/port_gen,
/turf/open/floor/iron,
/area/maintenance/department/security)
+"ssm" = (
+/obj/effect/turf_decal/guideline/guideline_in/blue{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/tile/blue/half{
+ dir = 1
+ },
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
"ssr" = (
/obj/effect/turf_decal/bot,
/obj/effect/turf_decal/tile/red/anticorner/contrasted{
@@ -58719,6 +58625,21 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"ssA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"ssN" = (
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/wood{
@@ -58787,14 +58708,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/dark,
/area/quartermaster/storage)
-"suU" = (
-/obj/structure/table/glass,
-/obj/item/storage/backpack/duffelbag/med/implant,
-/obj/item/storage/backpack/duffelbag/med/surgery{
- pixel_y = 7
- },
-/turf/open/floor/iron,
-/area/medical/surgery)
"svm" = (
/obj/effect/turf_decal/bot,
/obj/machinery/hydroponics/constructable,
@@ -58960,14 +58873,6 @@
},
/turf/open/floor/iron/white,
/area/medical/sleeper)
-"sxE" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"sxG" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -59046,14 +58951,6 @@
/obj/machinery/power/port_gen/pacman,
/turf/open/floor/iron/tech/grid,
/area/engine/engineering)
-"syK" = (
-/obj/machinery/door/window/eastright{
- dir = 8;
- name = "Robotics Surgery";
- req_access_txt = "29"
- },
-/turf/open/floor/iron/white,
-/area/science/robotics)
"syT" = (
/obj/machinery/light{
dir = 4
@@ -59217,41 +59114,27 @@
},
/turf/open/floor/plating,
/area/library)
+"sCB" = (
+/obj/effect/turf_decal/guideline/guideline_out/brown{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/techmaint,
+/area/maintenance/central)
"sCJ" = (
/mob/living/simple_animal/slime{
name = "sycamore"
},
/turf/open/floor/engine,
/area/science/xenobiology)
-"sCY" = (
-/obj/structure/table/reinforced,
-/obj/item/paper/guides/recycler,
-/obj/machinery/button/massdriver{
- id = "TrashDisp";
- pixel_x = -29;
- pixel_y = 8
- },
-/obj/machinery/button/door{
- id = "TrashDoor";
- name = "Disposal Vent Control";
- pixel_x = -39;
- pixel_y = 7;
- req_access_txt = "12"
- },
-/obj/item/radio/intercom{
- dir = 1;
- pixel_x = -34;
- pixel_y = -7
- },
-/obj/machinery/light_switch{
- pixel_x = -21;
- pixel_y = 8
- },
-/obj/item/toy/plush/lizard_plushie{
- name = "Eats-The-Rubbish"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal)
"sDa" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 8
@@ -59259,6 +59142,19 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/construction/mining/aux_base)
+"sDk" = (
+/obj/structure/railing{
+ dir = 5
+ },
+/obj/machinery/light/floor{
+ brightness = 15;
+ bulb_colour = "#FFE4CE";
+ bulb_vacuum_brightness = 15;
+ nightshift_brightness = 10;
+ nightshift_light_color = "#E6EBFF"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"sDs" = (
/obj/structure/chair/stool/bar{
dir = 8
@@ -59278,6 +59174,17 @@
},
/turf/open/floor/circuit,
/area/ai_monitored/storage/satellite)
+"sDu" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/security)
"sDE" = (
/obj/structure/chair/fancy/plastic,
/obj/structure/lattice/catwalk,
@@ -59405,15 +59312,6 @@
},
/turf/open/floor/plating/airless,
/area/science/test_area)
-"sFq" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/turf/open/floor/glass/reinforced,
-/area/crew_quarters/cafeteria)
"sFt" = (
/obj/item/toy/plush/flushed,
/obj/structure/closet/firecloset,
@@ -59439,6 +59337,36 @@
},
/turf/open/floor/iron/dark,
/area/storage/primary)
+"sGb" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/table,
+/obj/item/storage/box/evidence{
+ pixel_x = -4;
+ pixel_y = 8
+ },
+/obj/item/storage/box/bodybags{
+ pixel_x = 4;
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/guideline/guideline_edge_alt/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/guideline/guideline_half_edge/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/guideline/guideline_half_edge/red{
+ dir = 6
+ },
+/obj/effect/turf_decal/guideline/guideline_tri/red{
+ dir = 1
+ },
+/obj/structure/sign/poster/random{
+ pixel_y = -32
+ },
+/turf/open/floor/iron,
+/area/security/brig)
"sGj" = (
/obj/effect/turf_decal/tile/neutral/half{
dir = 4
@@ -59649,17 +59577,6 @@
},
/turf/open/floor/carpet/grimy,
/area/maintenance/port/aft)
-"sJf" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/starboard/aft)
"sJq" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 1
@@ -59749,20 +59666,6 @@
},
/turf/open/floor/plating,
/area/space/nearstation)
-"sKy" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/chair/stool{
- dir = 8
- },
-/obj/effect/landmark/start/assistant,
-/obj/machinery/light_switch{
- pixel_x = 23;
- pixel_y = -25
- },
-/turf/open/floor/glass/reinforced,
-/area/crew_quarters/cafeteria)
"sKG" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
@@ -59881,29 +59784,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/science/misc_lab)
-"sMa" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 4
- },
-/obj/structure/chair/fancy/bench/pew/right{
- dir = 8
- },
-/obj/machinery/firealarm/directional/south,
-/turf/open/floor/glass/reinforced,
-/area/chapel/main)
-"sMe" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_y = 1
- },
-/obj/effect/turf_decal/bot,
-/obj/machinery/vending/snack/blue,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"sMw" = (
/obj/structure/table/wood,
/obj/item/kirbyplants/random{
@@ -60155,16 +60035,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/engine/atmos)
-"sQn" = (
-/obj/structure/railing/corner,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron/dark/corner,
-/area/hallway/primary/central)
"sQy" = (
/obj/docking_port/stationary/random{
dir = 8;
@@ -60202,27 +60072,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/cryopods)
-"sQZ" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/sheet/mineral/plasma{
- amount = 5;
- pixel_x = -5;
- pixel_y = 16
- },
-/obj/item/reagent_containers/glass/beaker/large{
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/item/reagent_containers/dropper{
- pixel_x = -3;
- pixel_y = -2
- },
-/obj/item/toy/plush/slimeplushie/pink{
- pixel_x = -12;
- pixel_y = 7
- },
-/turf/open/floor/iron/grid/steel,
-/area/science/xenobiology)
"sRd" = (
/obj/structure/chair/fancy/sofa/old/right{
dir = 1
@@ -60240,22 +60089,6 @@
/obj/machinery/firealarm/directional/west,
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"sRj" = (
-/obj/structure/table/glass,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/item/radio/intercom{
- pixel_y = -25
- },
-/obj/item/reagent_containers/syringe{
- name = "steel point";
- pixel_x = 5;
- pixel_y = 12
- },
-/obj/item/stack/medical/gauze,
-/turf/open/floor/iron,
-/area/security/brig/medbay)
"sRq" = (
/obj/machinery/vending/snack/blue,
/obj/effect/turf_decal/bot,
@@ -60278,6 +60111,32 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/escape)
+"sRu" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/glass/reinforced,
+/area/crew_quarters/cafeteria)
+"sRy" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light_switch{
+ pixel_x = -8;
+ pixel_y = -21
+ },
+/obj/item/storage/lockbox/loyalty,
+/obj/machinery/door/window/brigdoor/westleft{
+ name = "mind shields";
+ req_access_txt = "3"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/item/clothing/suit/armor/laserproof,
+/turf/open/floor/iron,
+/area/ai_monitored/security/armory)
"sSb" = (
/obj/effect/turf_decal/siding/wideplating/dark{
dir = 1
@@ -60355,6 +60214,22 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"sSN" = (
+/obj/structure/table/glass,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ pixel_y = -25
+ },
+/obj/item/reagent_containers/syringe{
+ name = "steel point";
+ pixel_x = 5;
+ pixel_y = 12
+ },
+/obj/item/stack/medical/gauze,
+/turf/open/floor/iron,
+/area/security/brig/medbay)
"sSU" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance/two,
@@ -60399,6 +60274,20 @@
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
/area/engine/storage)
+"sTT" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"sUi" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -60550,22 +60439,6 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
-"sXf" = (
-/obj/effect/turf_decal/guideline/guideline_in/blue{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue/half{
- dir = 1
- },
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
"sXl" = (
/obj/effect/turf_decal/tile/purple{
dir = 4
@@ -60621,16 +60494,6 @@
/obj/structure/table/wood/fancy/purple,
/turf/open/floor/iron/dark,
/area/chapel/main)
-"sXT" = (
-/obj/structure/grille/broken,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/bridge)
"sXU" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/door/window/eastleft{
@@ -60709,20 +60572,20 @@
/obj/effect/landmark/carpspawn,
/turf/open/space/basic,
/area/solar/port/fore)
+"sZe" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2,
+/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"sZq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
/area/medical/chemistry)
-"sZD" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4,
-/obj/machinery/camera/autoname{
- dir = 4;
- network = list("ss13","engine")
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"sZS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -60868,6 +60731,18 @@
},
/turf/open/floor/plating,
/area/crew_quarters/heads/captain)
+"taR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"taY" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -60883,6 +60758,18 @@
/obj/structure/sign/departments/minsky/research/research,
/turf/closed/wall,
/area/science/robotics)
+"tbn" = (
+/obj/effect/turf_decal/guideline/guideline_in/purple{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple/half{
+ dir = 4
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
"tbo" = (
/obj/effect/turf_decal/box/white,
/turf/open/floor/iron/white,
@@ -60937,6 +60824,16 @@
/obj/effect/landmark/carpspawn,
/turf/open/space/basic,
/area/space)
+"tcg" = (
+/obj/effect/landmark/start/chaplain,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/chapel/office)
"tcn" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/obj/structure/sign/warning/electricshock{
@@ -60949,6 +60846,32 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/atmospherics_engine)
+"tcy" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ pixel_x = 25
+ },
+/obj/machinery/light_switch{
+ pixel_x = 25;
+ pixel_y = 40
+ },
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green{
+ pixel_x = -6;
+ pixel_y = 14
+ },
+/obj/item/camera/detective{
+ pixel_x = 3;
+ pixel_y = 7
+ },
+/obj/item/taperecorder{
+ pixel_x = 6;
+ pixel_y = 5
+ },
+/turf/open/floor/carpet/red,
+/area/security/detectives_office)
"tda" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/disposalpipe/segment{
@@ -61027,7 +60950,6 @@
/obj/structure/closet/secure_closet/atmospherics{
anchored = 1
},
-/obj/item/clothing/gloves/color/yellow,
/turf/open/floor/iron/dark,
/area/engine/atmos)
"tdF" = (
@@ -61221,23 +61143,6 @@
},
/turf/open/floor/iron/dark,
/area/engine/engine_room)
-"thr" = (
-/obj/effect/turf_decal/guideline/guideline_in/purple{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/obj/effect/turf_decal/tile/purple/half{
- dir = 4
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
"thE" = (
/obj/effect/turf_decal/tile/dark_blue{
alpha = 180
@@ -61339,13 +61244,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/plating,
/area/hallway/secondary/entry)
-"tjh" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
-/turf/open/floor/iron,
-/area/quartermaster/exploration_prep)
"tjl" = (
/obj/machinery/firealarm{
dir = 4;
@@ -61423,6 +61321,17 @@
},
/turf/open/floor/iron,
/area/engine/engine_room)
+"tkl" = (
+/obj/machinery/telecomms/bus/preset_exploration,
+/obj/machinery/atmospherics/pipe/heat_exchanging/junction{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 3
+ },
+/turf/open/floor/circuit/green/telecomms/mainframe,
+/area/quartermaster/exploration_prep)
"tkM" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted{
alpha = 200;
@@ -61602,6 +61511,19 @@
},
/turf/open/floor/iron,
/area/quartermaster/storage)
+"tmx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"tmA" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -61676,17 +61598,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/cafeteria)
-"tni" = (
-/obj/structure/railing/corner,
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"tnj" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted{
alpha = 200;
@@ -61711,6 +61622,17 @@
},
/turf/open/floor/carpet/purple,
/area/crew_quarters/heads/hor)
+"tnA" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ pixel_x = -30;
+ pixel_y = -4
+ },
+/obj/structure/table/glass,
+/turf/open/floor/iron/dark,
+/area/security/brig/medbay)
"tnB" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
@@ -61758,6 +61680,17 @@
},
/turf/open/floor/iron/dark,
/area/medical/chemistry)
+"tnQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"tom" = (
/obj/effect/turf_decal/tile/black/fourcorners,
/obj/effect/turf_decal/stripes/line{
@@ -61780,19 +61713,6 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating,
/area/maintenance/department/medical/morgue)
-"toN" = (
-/obj/effect/landmark/xeno_spawn,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/iron/dark,
-/area/chapel/office)
"toW" = (
/obj/structure/noticeboard{
name = "Public bulletin board"
@@ -62026,16 +61946,6 @@
/obj/effect/turf_decal/guideline/guideline_edge/blue,
/turf/open/floor/iron/white,
/area/medical/medbay/lobby)
-"trn" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/solar{
- id = "portsolar";
- name = "Port Solar Array"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/port/aft)
"trr" = (
/obj/structure/curtain/bounty,
/obj/structure/cable/yellow{
@@ -62050,6 +61960,14 @@
/obj/effect/turf_decal/stripes/closeup,
/turf/open/floor/iron/dark,
/area/security/execution/education)
+"trt" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 4
+ },
+/area/hallway/primary/central)
"trw" = (
/obj/machinery/space_heater,
/turf/open/floor/plating,
@@ -62083,13 +62001,6 @@
},
/turf/open/floor/iron/white,
/area/science/xenobiology)
-"trX" = (
-/obj/item/radio/intercom{
- dir = 1;
- pixel_y = -34
- },
-/turf/open/floor/glass/reinforced,
-/area/chapel/main)
"tsf" = (
/obj/structure/dresser,
/obj/item/camera{
@@ -62156,9 +62067,29 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/sorting)
+"tto" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/security)
"ttt" = (
/turf/closed/wall,
/area/quartermaster/qm)
+"ttC" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/medical/morgue)
"ttK" = (
/obj/effect/turf_decal/guideline/guideline_in/darkblue{
dir = 8
@@ -62342,39 +62273,12 @@
},
/turf/open/floor/plating,
/area/bridge/meeting_room)
-"twN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/aft)
"twS" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/reagent_dispensers/watertank,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron/dark,
/area/engine/atmospherics_engine)
-"twT" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"txg" = (
/obj/machinery/door/airlock/maintenance_hatch{
id_tag = "commissarydoor";
@@ -62610,6 +62514,16 @@
},
/turf/open/floor/plating,
/area/library)
+"tAd" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"tAg" = (
/obj/effect/turf_decal/tile/yellow/half/contrasted{
alpha = 180;
@@ -62668,6 +62582,23 @@
/obj/structure/sign/warning/fire,
/turf/closed/wall/r_wall/rust,
/area/science/mixing)
+"tAF" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/obj/effect/turf_decal/bot,
+/obj/machinery/computer/security{
+ dir = 8;
+ network = list("security")
+ },
+/turf/open/floor/iron/dark,
+/area/security/main{
+ name = "Security Locker Room"
+ })
+"tAG" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/aft)
"tBa" = (
/obj/structure/sign/warning/nosmoking/circle,
/turf/closed/wall/r_wall,
@@ -62700,27 +62631,6 @@
},
/turf/open/floor/iron/white,
/area/science/lobby)
-"tBo" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/turf_decal/siding/thinplating/light{
- dir = 8
- },
-/obj/machinery/light/floor{
- brightness = 15;
- bulb_colour = "#FFE4CE";
- bulb_vacuum_brightness = 15;
- nightshift_brightness = 10;
- nightshift_light_color = "#E6EBFF"
- },
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 8
- },
-/turf/open/floor/iron/dark/smooth_edge{
- dir = 4
- },
-/area/hallway/primary/central)
"tBu" = (
/obj/effect/landmark/start/botanist,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
@@ -62752,23 +62662,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
-"tBL" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light_switch{
- pixel_x = -8;
- pixel_y = -21
- },
-/obj/item/storage/lockbox/loyalty,
-/obj/machinery/door/window/brigdoor/westleft{
- name = "mind shields";
- req_access_txt = "3"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/item/clothing/suit/armor/laserproof,
-/turf/open/floor/iron,
-/area/ai_monitored/security/armory)
"tBN" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -62951,29 +62844,6 @@
},
/turf/open/floor/iron,
/area/engine/engine_room)
-"tEm" = (
-/obj/effect/turf_decal/guideline/guideline_in/darkblue{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/obj/structure/disposalpipe/sorting/mail{
- dir = 1;
- name = "Janie";
- sortType = 22
- },
-/obj/effect/turf_decal/tile/dark_blue/half{
- dir = 1
- },
-/obj/effect/turf_decal/tile/dark_blue/half{
- dir = 1
- },
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
"tEo" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 8
@@ -63101,6 +62971,18 @@
/obj/machinery/vending/wardrobe/viro_wardrobe,
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
+"tFW" = (
+/obj/structure/railing{
+ dir = 10;
+ layer = 3.1
+ },
+/obj/effect/spawner/randomvend/cola,
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 10
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"tGe" = (
/obj/structure/table/glass,
/obj/item/stack/ducts/fifty,
@@ -63203,6 +63085,19 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/engine/atmos)
+"tIj" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/grass/no_border,
+/area/medical/sleeper)
"tIG" = (
/obj/machinery/chem_heater{
pixel_y = 1
@@ -63225,6 +63120,25 @@
},
/turf/open/floor/wood,
/area/library)
+"tIK" = (
+/obj/machinery/light/floor{
+ brightness = 15;
+ bulb_colour = "#FFE4CE";
+ bulb_vacuum_brightness = 15;
+ nightshift_brightness = 10;
+ nightshift_light_color = "#E6EBFF"
+ },
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 4
+ },
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 8
+ },
+/area/hallway/primary/central)
"tIQ" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
@@ -63255,9 +63169,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"tJf" = (
-/turf/open/floor/catwalk_floor,
-/area/maintenance/central)
"tJh" = (
/obj/machinery/photocopier,
/obj/effect/turf_decal/bot,
@@ -63269,6 +63180,16 @@
},
/turf/open/floor/wood,
/area/chapel/office)
+"tJq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"tJr" = (
/obj/effect/turf_decal/guideline/guideline_edge/blue{
dir = 8
@@ -63333,15 +63254,6 @@
"tKm" = (
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/captain/private)
-"tKq" = (
-/obj/structure/disposaloutlet{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal)
"tKB" = (
/obj/machinery/door/airlock/highsecurity{
name = "Emergency Access";
@@ -63365,6 +63277,12 @@
/obj/item/kirbyplants/random,
/turf/open/floor/iron/dark,
/area/security/brig/dock)
+"tLa" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/medical/morgue)
"tLg" = (
/obj/effect/turf_decal/delivery,
/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
@@ -63395,6 +63313,15 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"tLG" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"tMf" = (
/obj/structure/disposalpipe/segment{
dir = 10
@@ -63505,6 +63432,28 @@
},
/turf/open/floor/iron/white,
/area/medical/apothecary)
+"tNA" = (
+/obj/effect/landmark/start/assistant,
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/turf/open/floor/glass/reinforced,
+/area/hallway/primary/central{
+ dynamic_lighting = 2;
+ lighting_brightness_tube = 11;
+ lighting_colour_bulb = "#DDE6FF";
+ lighting_colour_night = "#DDE6FF";
+ lighting_colour_tube = "#DDE6FF";
+ lighting_overlay_colour = "#DDE6FF";
+ power_light = 0
+ })
+"tNR" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/blobstart,
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
"tNU" = (
/obj/machinery/ai_slipper{
uses = 10
@@ -63623,6 +63572,13 @@
},
/turf/open/floor/engine,
/area/science/xenobiology)
+"tQm" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/xeno_spawn,
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
"tQo" = (
/obj/effect/turf_decal/caution/stand_clear,
/obj/effect/turf_decal/bot,
@@ -63756,15 +63712,6 @@
/obj/structure/rack,
/turf/open/floor/plating,
/area/maintenance/department/bridge)
-"tRS" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/obj/structure/railing/corner{
- dir = 1
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"tRX" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light_switch{
@@ -63824,18 +63771,6 @@
},
/turf/open/space/basic,
/area/solar/port/fore)
-"tSH" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/effect/landmark/blobstart,
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/starboard/aft)
"tSP" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow{
@@ -63843,6 +63778,12 @@
},
/turf/open/floor/plating,
/area/security/checkpoint/medical)
+"tSS" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 1
+ },
+/turf/open/floor/glass/reinforced,
+/area/chapel/main)
"tSV" = (
/obj/effect/turf_decal/tile/yellow{
dir = 4
@@ -63944,22 +63885,6 @@
},
/turf/open/floor/iron/white,
/area/science/robotics)
-"tVp" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/effect/turf_decal/bot,
-/obj/structure/table/reinforced,
-/obj/item/mmi{
- pixel_x = 2;
- pixel_y = 3
- },
-/obj/item/mmi{
- pixel_y = 11
- },
-/obj/item/storage/box/bodybags,
-/turf/open/floor/iron/white,
-/area/science/robotics)
"tVL" = (
/obj/effect/turf_decal/tile/dark_red/half/contrasted{
alpha = 180;
@@ -63983,20 +63908,6 @@
},
/turf/open/floor/iron/white,
/area/crew_quarters/heads/cmo)
-"tWC" = (
-/obj/structure/railing/corner{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron/dark/corner{
- dir = 4
- },
-/area/hallway/primary/central)
"tWD" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -64055,6 +63966,13 @@
},
/turf/open/floor/wood,
/area/library)
+"tXK" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Maintenance Hatch";
+ req_one_access_txt = "12;6"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/department/medical/morgue)
"tYb" = (
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
@@ -64080,17 +63998,6 @@
/area/security/brig/dock{
name = "Security E.V.A. Storage"
})
-"tYk" = (
-/obj/structure/railing/corner,
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/effect/turf_decal/siding/wideplating/dark/corner,
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/iron/dark/corner,
-/area/hallway/primary/central)
"tYn" = (
/obj/structure/disposalpipe/segment{
dir = 8
@@ -64126,6 +64033,22 @@
},
/turf/open/floor/iron/white,
/area/medical/cryo)
+"tYv" = (
+/obj/structure/window/reinforced,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/ppflowers,
+/mob/living/simple_animal/mouse/brown{
+ desc = "This one doesn't squeal";
+ name = "Tony";
+ pixel_x = 7;
+ pixel_y = 12
+ },
+/obj/machinery/holopad{
+ pixel_x = 16;
+ pixel_y = 17
+ },
+/turf/open/floor/grass/no_border,
+/area/hallway/secondary/exit/departure_lounge)
"tYL" = (
/obj/structure/closet,
/obj/item/clothing/under/color/random,
@@ -64180,6 +64103,12 @@
dir = 1
},
/area/science/research)
+"tZc" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"tZf" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 8
@@ -64286,16 +64215,6 @@
/obj/machinery/computer/crew,
/turf/open/floor/iron/white,
/area/crew_quarters/heads/cmo)
-"uaF" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4,
-/obj/machinery/atmospherics/components/binary/pump/on{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"uaR" = (
/obj/item/kirbyplants/random,
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
@@ -64449,17 +64368,6 @@
/obj/item/stack/cable_coil/cyan,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat_interior)
-"udI" = (
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_y = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"udW" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
@@ -64533,6 +64441,22 @@
},
/turf/open/floor/iron/dark,
/area/medical/morgue)
+"ufk" = (
+/obj/machinery/computer/security{
+ pixel_y = -3
+ },
+/obj/machinery/camera/autoname{
+ network = list("ss13","security")
+ },
+/obj/machinery/computer/security/telescreen{
+ network = list("ss13");
+ pixel_y = 25
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/carpet/red,
+/area/security/detectives_office)
"ufl" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -64732,6 +64656,22 @@
/obj/effect/turf_decal/tile/blue/anticorner/contrasted,
/turf/open/floor/iron,
/area/maintenance/department/medical)
+"uif" = (
+/obj/effect/turf_decal/guideline/guideline_in/red{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/effect/turf_decal/tile/dark_red/half{
+ color = "#DE3A3A"
+ },
+/obj/effect/turf_decal/tile/dark_red/half{
+ color = "#DE3A3A"
+ },
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
"uig" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
@@ -64932,6 +64872,16 @@
},
/turf/open/floor/iron/tech,
/area/engine/engine_room)
+"ukY" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/bot,
+/obj/structure/window/reinforced,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"ulg" = (
/obj/structure/lattice/catwalk,
/obj/structure/marker_beacon,
@@ -64984,6 +64934,20 @@
},
/turf/open/floor/iron,
/area/engine/engineering)
+"ulC" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/chair/stool{
+ dir = 8
+ },
+/obj/effect/landmark/start/assistant,
+/obj/machinery/light_switch{
+ pixel_x = 23;
+ pixel_y = -25
+ },
+/turf/open/floor/glass/reinforced,
+/area/crew_quarters/cafeteria)
"ulH" = (
/obj/structure/sign/warning/vacuum,
/turf/closed/wall,
@@ -65020,6 +64984,16 @@
/obj/structure/curtain/directional,
/turf/open/floor/plating,
/area/crew_quarters/dorms)
+"umD" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"umL" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
@@ -65239,20 +65213,6 @@
},
/turf/open/floor/iron/dark,
/area/science/nanite)
-"upS" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/machinery/button/door{
- id = "brigentrance";
- name = "Brig Lockdown Control";
- pixel_x = -25;
- req_access_txt = "1"
- },
-/turf/open/floor/iron/dark,
-/area/security/main{
- name = "Security Locker Room"
- })
"uql" = (
/obj/effect/decal/cleanable/oil,
/turf/open/floor/iron/sepia,
@@ -65357,12 +65317,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/cafeteria)
-"utF" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/central)
"utM" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
@@ -65381,6 +65335,18 @@
/area/security/main{
name = "Security Viewing Hall"
})
+"utQ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"utS" = (
/obj/machinery/door/airlock/external{
name = "Mining Dock Airlock";
@@ -65447,6 +65413,9 @@
/obj/effect/landmark/start/cyborg,
/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/aisat/foyer)
+"uux" = (
+/turf/open/floor/iron/stairs/medium,
+/area/hallway/primary/central)
"uuK" = (
/obj/structure/bed,
/obj/item/bedsheet/dorms,
@@ -65507,6 +65476,24 @@
},
/turf/open/floor/iron/dark,
/area/crew_quarters/bar)
+"uvB" = (
+/obj/effect/turf_decal/guideline/guideline_out/brown{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/techmaint,
+/area/maintenance/central)
"uvC" = (
/obj/effect/turf_decal/bot,
/obj/structure/window/reinforced{
@@ -65515,17 +65502,6 @@
/obj/structure/table/reinforced,
/turf/open/floor/iron/techmaint,
/area/science/xenobiology)
-"uwf" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/bridge)
"uwo" = (
/obj/effect/turf_decal/tile/neutral{
dir = 8
@@ -65691,20 +65667,6 @@
},
/turf/open/floor/iron/dark,
/area/crew_quarters/bar)
-"uyb" = (
-/obj/machinery/door/airlock/grunge{
- name = "Chapel Office";
- req_access_txt = "27"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/chapel/office)
"uyr" = (
/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{
alpha = 180
@@ -65772,6 +65734,18 @@
},
/turf/open/floor/plating/airless,
/area/science/test_area)
+"uzj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/camera/autoname{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/bridge)
"uzx" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -65841,21 +65815,11 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/hallway/primary/aft)
-"uAH" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/item/storage/box{
- pixel_x = -4;
- pixel_y = 6
- },
-/obj/item/storage/box{
- pixel_x = 3
- },
-/obj/machinery/airalarm/directional/west,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal)
+"uBh" = (
+/obj/effect/decal/cleanable/crayon,
+/obj/item/food/butterdog,
+/turf/open/floor/plating,
+/area/maintenance/department/medical)
"uBu" = (
/obj/structure/chair/office/light{
dir = 8
@@ -65959,21 +65923,6 @@
"uCC" = (
/turf/closed/wall,
/area/maintenance/solars/starboard/fore)
-"uCH" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"uCM" = (
/obj/effect/turf_decal/tile/yellow/half/contrasted{
alpha = 180;
@@ -66026,6 +65975,15 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
+"uDw" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"uDJ" = (
/obj/effect/turf_decal/caution/stand_clear{
dir = 8
@@ -66229,6 +66187,10 @@
},
/turf/open/floor/plating,
/area/engine/supermatter)
+"uFN" = (
+/obj/machinery/light,
+/turf/open/floor/iron/dark,
+/area/chapel/office)
"uFQ" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -66374,6 +66336,18 @@
},
/turf/open/floor/iron,
/area/medical/medbay/central)
+"uIm" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/techmaint,
+/area/maintenance/central)
"uIs" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -66393,6 +66367,21 @@
},
/turf/open/space/basic,
/area/solar/port/aft)
+"uIx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/effect/turf_decal/guideline/guideline_in/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/tile/yellow/half,
+/obj/effect/turf_decal/tile/yellow/half,
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
"uIy" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/machinery/light{
@@ -66435,6 +66424,15 @@
},
/turf/open/floor/iron/dark,
/area/security/warden)
+"uIS" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"uIX" = (
/obj/item/radio/intercom{
dir = 1;
@@ -66462,17 +66460,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
-"uJB" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/item/radio/intercom{
- pixel_x = -30;
- pixel_y = -4
- },
-/obj/structure/table/glass,
-/turf/open/floor/iron/dark,
-/area/security/brig/medbay)
"uJI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -66502,22 +66489,6 @@
},
/turf/open/floor/iron/freezer,
/area/crew_quarters/toilet)
-"uKo" = (
-/obj/effect/turf_decal/guideline/guideline_in/red{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/effect/turf_decal/tile/dark_red/half{
- color = "#DE3A3A"
- },
-/obj/effect/turf_decal/tile/dark_red/half{
- color = "#DE3A3A"
- },
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
"uKv" = (
/obj/machinery/atmospherics/pipe/simple/dark/visible{
dir = 4
@@ -66554,28 +66525,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/crew_quarters/dorms)
-"uLd" = (
-/obj/effect/turf_decal/guideline/guideline_in/brown,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/brown/half{
- dir = 8
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
-"uLe" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron/dark/smooth_edge{
- dir = 4
- },
-/area/hallway/primary/central)
"uLf" = (
/obj/machinery/status_display/evac{
pixel_x = -32
@@ -66715,6 +66664,16 @@
},
/turf/open/floor/engine/plasma,
/area/engine/atmos)
+"uNP" = (
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/solar{
+ id = "portsolar";
+ name = "Port Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/port/fore)
"uOa" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Experimentation Chamber";
@@ -66751,6 +66710,21 @@
/obj/effect/decal/cleanable/dirt,
/turf/closed/wall,
/area/maintenance/department/science)
+"uOC" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"uOK" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/firealarm/directional/east,
@@ -66814,6 +66788,21 @@
},
/turf/open/space/basic,
/area/solar/port/fore)
+"uPT" = (
+/obj/effect/turf_decal/guideline/guideline_out/brown{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/techmaint,
+/area/maintenance/central)
"uPV" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
@@ -66939,18 +66928,6 @@
},
/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/server)
-"uSz" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"uSD" = (
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating,
@@ -67013,6 +66990,22 @@
dir = 4
},
/area/hallway/primary/central)
+"uUa" = (
+/obj/structure/sign/warning/radiation_shelter{
+ pixel_x = 1;
+ pixel_y = 32
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/engine/engine_room)
"uUg" = (
/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
dir = 8
@@ -67052,6 +67045,16 @@
},
/turf/open/floor/iron/tech,
/area/engine/atmos)
+"uVq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/bridge)
"uVt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -67139,6 +67142,23 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat/foyer)
+"uWA" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/machinery/light/floor{
+ brightness = 15;
+ bulb_emergency_brightness_mul = 2;
+ bulb_vacuum_brightness = 15;
+ nightshift_brightness = 10
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"uWD" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
alpha = 140;
@@ -67405,6 +67425,20 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/sepia,
/area/maintenance/port/central)
+"vaf" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/item/kirbyplants/random,
+/turf/open/floor/grass/no_border,
+/area/hallway/secondary/exit/departure_lounge)
"vat" = (
/obj/structure/bookcase/random/fiction,
/obj/machinery/airalarm{
@@ -67533,6 +67567,18 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"vcl" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 8
+ },
+/obj/structure/chair/fancy/bench/pew/left{
+ dir = 4
+ },
+/obj/machinery/camera/autoname{
+ dir = 1
+ },
+/turf/open/floor/glass/reinforced,
+/area/chapel/main)
"vcw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -67637,17 +67683,6 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/crew_quarters/dorms)
-"veu" = (
-/obj/structure/railing{
- layer = 3.1
- },
-/obj/structure/chair/fancy/comfy{
- color = "#596479";
- dir = 1
- },
-/obj/effect/turf_decal/siding/wideplating/dark,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"vex" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -67720,6 +67755,16 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/floor/plating,
/area/engine/atmos)
+"vgc" = (
+/obj/effect/landmark/start/cargo_technician,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/quartermaster/storage)
"vge" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
@@ -67748,6 +67793,20 @@
/area/security/prison{
name = "Prison Dorms"
})
+"vgH" = (
+/obj/effect/turf_decal/tile/neutral/half,
+/obj/machinery/camera/autoname{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_x = -20;
+ pixel_y = -21
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/chapel/office)
"vgM" = (
/obj/machinery/vending/medical,
/turf/open/floor/iron/dark,
@@ -67808,21 +67867,6 @@
},
/turf/open/floor/plating,
/area/maintenance/department/medical)
-"vhS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"vhZ" = (
/obj/effect/turf_decal/guideline/guideline_edge/blue{
color = "#267878";
@@ -67842,17 +67886,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"viN" = (
-/obj/machinery/camera/autoname{
- dir = 8;
- network = list("ss13","cargo")
- },
-/obj/machinery/firealarm/directional/east,
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal)
"viR" = (
/obj/machinery/light,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -67909,13 +67942,6 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/central)
-"vjz" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/obj/structure/railing/corner,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"vjD" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -68029,6 +68055,16 @@
},
/turf/open/floor/wood,
/area/chapel/office)
+"vla" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/bridge)
"vlb" = (
/obj/machinery/door/poddoor/preopen{
id = "bridgewindows";
@@ -68070,6 +68106,22 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/science/mixing/chamber)
+"vlO" = (
+/obj/effect/turf_decal/guideline/guideline_in/darkblue{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/dark_blue/half{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/dark_blue/half{
+ dir = 1
+ },
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
"vlR" = (
/obj/structure/table,
/obj/structure/disposalpipe/segment{
@@ -68119,6 +68171,15 @@
},
/turf/open/space/basic,
/area/space/nearstation)
+"vmw" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"vmM" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -68202,19 +68263,6 @@
/obj/effect/turf_decal/box,
/turf/open/floor/iron/dark,
/area/gateway)
-"vox" = (
-/obj/structure/railing{
- dir = 6
- },
-/obj/machinery/light/floor{
- brightness = 15;
- bulb_colour = "#FFE4CE";
- bulb_vacuum_brightness = 15;
- nightshift_brightness = 10;
- nightshift_light_color = "#E6EBFF"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"voz" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -68284,20 +68332,6 @@
/obj/item/kirbyplants/random,
/turf/open/floor/iron/tech,
/area/engine/engine_room)
-"vpd" = (
-/obj/structure/bed,
-/obj/item/bedsheet/dorms,
-/obj/item/toy/plush/beeplushie{
- desc = "A cute toy that resembles an even cuter beetle.";
- name = "beetle plushie"
- },
-/obj/structure/sign/poster/contraband/random{
- pixel_x = 32
- },
-/turf/open/floor/prison,
-/area/security/prison{
- name = "Prison Dorms"
- })
"vpe" = (
/obj/machinery/light{
dir = 1
@@ -68340,6 +68374,30 @@
/obj/structure/window/reinforced,
/turf/open/floor/engine,
/area/science/xenobiology)
+"vpH" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ desc = "Talk through this. It looks like it has been modified to not broadcast.";
+ freerange = 1;
+ name = "Prison intercom";
+ pixel_y = 25;
+ prison_radio = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/security/prison{
+ name = "Prison Processing"
+ })
"vpR" = (
/obj/effect/turf_decal/tile/blue/half/contrasted{
dir = 8
@@ -68358,6 +68416,13 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/wood,
/area/vacant_room/office)
+"vqB" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/generic,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/central)
"vqC" = (
/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{
alpha = 180
@@ -68404,6 +68469,16 @@
},
/turf/open/floor/engine,
/area/engine/supermatter)
+"vrg" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 4
+ },
+/obj/structure/chair/fancy/bench/pew/right{
+ dir = 8
+ },
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/glass/reinforced,
+/area/chapel/main)
"vrh" = (
/obj/effect/turf_decal/tile/yellow/opposingcorners,
/obj/effect/decal/cleanable/dirt,
@@ -68502,6 +68577,11 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/white,
/area/science/research)
+"vsN" = (
+/obj/item/clothing/suit/hooded/cultrobes/alt,
+/obj/item/toy/toy_dagger,
+/turf/open/floor/cult,
+/area/chapel/office)
"vtf" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -68530,40 +68610,10 @@
/obj/structure/sign/poster/official/help_others,
/turf/closed/wall,
/area/maintenance/central)
-"vur" = (
-/obj/structure/sign/warning/radiation_shelter{
- pixel_x = 33;
- pixel_y = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/bridge)
"vuz" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/hallway/secondary/exit/departure_lounge)
-"vuB" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "Engidesk";
- name = "engineering security door"
- },
-/obj/machinery/door/firedoor,
-/obj/structure/desk_bell{
- pixel_y = 2
- },
-/obj/machinery/door/window/northright{
- dir = 2;
- name = "Engi Desk";
- req_one_access_txt = "32;19"
- },
-/turf/open/floor/iron/dark,
-/area/engine/engineering)
"vvd" = (
/obj/machinery/airalarm/directional/east,
/obj/machinery/shower{
@@ -68629,6 +68679,17 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/sepia,
/area/maintenance/port/central)
+"vvV" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_y = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"vwi" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 4
@@ -68676,6 +68737,15 @@
/obj/machinery/firealarm/directional/north,
/turf/open/floor/iron/dark,
/area/science/mixing)
+"vxA" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/sunnybush,
+/turf/open/floor/grass/no_border,
+/area/hallway/secondary/exit/departure_lounge)
"vxY" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/obj/structure/disposalpipe/segment{
@@ -68733,34 +68803,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/engine/atmos)
-"vyY" = (
-/obj/effect/turf_decal/guideline/guideline_in/neutral{
- alpha = 255;
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
- },
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
- },
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
- },
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
"vzb" = (
/obj/effect/turf_decal/guideline/guideline_edge/purple{
dir = 8
@@ -68788,18 +68830,6 @@
},
/turf/open/floor/iron/dark,
/area/science/misc_lab/range)
-"vzg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/starboard/aft)
"vzi" = (
/obj/structure/table,
/obj/item/knife/kitchen,
@@ -68830,6 +68860,16 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/miningdock)
+"vzW" = (
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/solar{
+ id = "portsolar";
+ name = "Port Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/starboard/fore)
"vAa" = (
/obj/structure/chair/fancy/bench/pew/left{
dir = 8
@@ -68884,6 +68924,14 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/carpet/purple,
/area/chapel/main)
+"vAS" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2,
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"vAU" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 8
@@ -68918,6 +68966,15 @@
},
/turf/open/floor/carpet,
/area/library)
+"vBC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/turf/open/floor/iron/dark,
+/area/chapel/main)
"vBI" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 8
@@ -68927,12 +68984,6 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
-"vBJ" = (
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/engine/engine_room)
"vCl" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/rack,
@@ -69010,19 +69061,6 @@
},
/turf/open/floor/iron/dark,
/area/engine/engineering)
-"vDd" = (
-/obj/structure/railing{
- dir = 9
- },
-/obj/machinery/light/floor{
- brightness = 15;
- bulb_colour = "#FFE4CE";
- bulb_vacuum_brightness = 15;
- nightshift_brightness = 10;
- nightshift_light_color = "#E6EBFF"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"vDj" = (
/obj/structure/cable{
icon_state = "2-4"
@@ -69037,6 +69075,26 @@
name = "mainframe floor"
},
/area/tcommsat/server)
+"vDk" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/effect/turf_decal/box,
+/mob/living/simple_animal/sloth/citrus{
+ density = 0
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/quartermaster/storage)
"vDo" = (
/obj/machinery/conveyor/inverted{
dir = 5;
@@ -69180,6 +69238,8 @@
},
/obj/structure/table/reinforced,
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/item/storage/toolbox/electrical,
+/obj/item/clothing/gloves/color/yellow,
/turf/open/floor/iron/dark,
/area/engine/atmos)
"vFo" = (
@@ -69273,25 +69333,6 @@
/obj/effect/turf_decal/guideline/guideline_edge/red,
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"vGo" = (
-/obj/effect/turf_decal/guideline/guideline_in/darkblue{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/tile/dark_blue/half{
- dir = 1
- },
-/obj/effect/turf_decal/tile/dark_blue/half{
- dir = 1
- },
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
"vGq" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/obj/machinery/portable_atmospherics/pump,
@@ -69386,6 +69427,17 @@
},
/turf/open/floor/iron/dark,
/area/science/shuttledock)
+"vIn" = (
+/obj/machinery/camera/autoname{
+ dir = 1;
+ network = list("ss13","security")
+ },
+/obj/machinery/power/apc/auto_name/south{
+ pixel_y = -24
+ },
+/obj/structure/cable/yellow,
+/turf/open/floor/wood,
+/area/security/detectives_office)
"vIB" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -69404,35 +69456,6 @@
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"vIY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
-"vIZ" = (
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc/auto_name/west{
- pixel_x = -24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/light{
- bulb_colour = "#22bfa2";
- bulb_vacuum_colour = "#22bfa2";
- dir = 8;
- nightshift_light_color = "#22bfa2"
- },
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 8
- },
-/obj/effect/turf_decal/guideline/guideline_edge/red,
-/turf/open/floor/iron/dark,
-/area/security/brig/dock)
"vJf" = (
/obj/structure/disposalpipe/segment{
dir = 5
@@ -69507,9 +69530,6 @@
/obj/effect/landmark/start/geneticist,
/turf/open/floor/iron/dark,
/area/medical/genetics)
-"vKw" = (
-/turf/open/floor/glass/reinforced,
-/area/engine/gravity_generator)
"vKB" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -69545,6 +69565,21 @@
/obj/machinery/digital_clock/directional/north,
/turf/open/floor/iron/cafeteria,
/area/crew_quarters/kitchen)
+"vKM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"vLA" = (
/obj/structure/disposalpipe/segment{
dir = 2
@@ -69561,18 +69596,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"vLB" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/central)
"vLI" = (
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -69601,6 +69624,15 @@
/area/security/main{
name = "Security Locker Room"
})
+"vLP" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/security)
"vMa" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -69623,21 +69655,6 @@
/area/security/main{
name = "Security Viewing Hall"
})
-"vMj" = (
-/obj/structure/bed/roller,
-/obj/machinery/light,
-/obj/machinery/door/window/eastleft{
- dir = 1;
- name = "Quarantine Pen B";
- req_access_txt = "39"
- },
-/obj/structure/window/reinforced{
- dir = 8;
- layer = 3
- },
-/obj/item/toy/plush/slimeplushie/green,
-/turf/open/floor/iron/grid/steel,
-/area/medical/virology)
"vMx" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted{
alpha = 200;
@@ -69723,18 +69740,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/qm)
-"vMR" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/central)
"vMT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
@@ -69797,12 +69802,6 @@
/obj/effect/turf_decal/caution,
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"vNH" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/iron/dark,
-/area/science/robotics)
"vNX" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 4
@@ -69822,6 +69821,14 @@
dir = 8
},
/area/engine/engineering)
+"vOg" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/sunnybush,
+/turf/open/floor/grass/no_border,
+/area/hallway/secondary/exit/departure_lounge)
"vOm" = (
/obj/structure/disposaloutlet{
dir = 4
@@ -69832,23 +69839,6 @@
/obj/structure/lattice/catwalk,
/turf/open/space/basic,
/area/space/nearstation)
-"vOn" = (
-/obj/effect/turf_decal/guideline/guideline_in/red{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/dark_red/half{
- color = "#DE3A3A"
- },
-/obj/effect/turf_decal/tile/dark_red/half{
- color = "#DE3A3A"
- },
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
"vOy" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
@@ -69956,21 +69946,17 @@
},
/turf/open/floor/iron/dark,
/area/science/shuttledock)
-"vQc" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Maintenance Hatch";
- req_one_access_txt = "12;31;63"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2
+"vQi" = (
+/obj/machinery/door/morgue{
+ name = "Mass driver room";
+ req_access_txt = "27"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+/obj/machinery/light_switch{
+ pixel_x = -21;
+ pixel_y = 1
},
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/department/security)
+/turf/open/floor/carpet/purple,
+/area/chapel/main)
"vQn" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/tile/yellow/half/contrasted{
@@ -69984,19 +69970,27 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/hallway/primary/aft)
+"vQp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/starboard/aft)
"vQr" = (
/obj/machinery/modular_computer/console/preset/civilian{
dir = 4
},
/turf/open/floor/carpet,
/area/maintenance/port/aft)
-"vQL" = (
-/obj/effect/decal/cleanable/generic,
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"vQX" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -70031,6 +70025,14 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/science/explab)
+"vRg" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"vRh" = (
/obj/machinery/atmospherics/pipe/simple/dark/visible,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
@@ -70117,6 +70119,16 @@
},
/turf/open/floor/iron/dark,
/area/chapel/main)
+"vSH" = (
+/obj/structure/railing/corner,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/dark/corner,
+/area/hallway/primary/central)
"vST" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
/obj/structure/disposalpipe/segment{
@@ -70227,6 +70239,17 @@
},
/turf/open/floor/engine/air,
/area/engine/atmos)
+"vUY" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 8
+ },
+/area/hallway/primary/central)
"vVc" = (
/obj/machinery/portable_atmospherics/scrubber,
/obj/effect/turf_decal/bot,
@@ -70253,38 +70276,6 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/engine/atmos)
-"vVB" = (
-/obj/effect/turf_decal/guideline/guideline_in/neutral{
- alpha = 255;
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
- },
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
- },
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
- },
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
"vVE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -70467,6 +70458,17 @@
},
/turf/open/floor/iron/dark,
/area/science/shuttledock)
+"vYZ" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=25-NHall";
+ location = "24-CenterNE"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"vZb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 5
@@ -70486,16 +70488,6 @@
/obj/machinery/light,
/turf/open/floor/iron/dark,
/area/quartermaster/storage)
-"vZp" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/power/apc/auto_name/north{
- pixel_y = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/bridge)
"vZx" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -70519,6 +70511,15 @@
/obj/effect/turf_decal/loading_area,
/turf/open/floor/iron/dark,
/area/engine/atmos)
+"wab" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"wae" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
@@ -70605,6 +70606,15 @@
},
/turf/open/floor/iron,
/area/engine/engine_room)
+"wbM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"wbT" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -70612,6 +70622,22 @@
},
/turf/open/space/basic,
/area/solar/port/aft)
+"wcd" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/central)
+"wch" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/obj/structure/railing/corner,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"wcq" = (
/obj/structure/closet/crate,
/obj/item/storage/box,
@@ -70653,11 +70679,6 @@
/obj/structure/fans/tiny/invisible,
/turf/open/floor/iron/techmaint,
/area/quartermaster/storage)
-"wcD" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/iron/dark,
-/area/science/robotics)
"wcP" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 8
@@ -70684,26 +70705,13 @@
/obj/structure/plasticflaps,
/turf/open/floor/plating,
/area/maintenance/disposal)
-"wdh" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer4{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
-"wdi" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+"wcY" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/obj/structure/railing/corner{
+ dir = 1
},
-/turf/open/floor/catwalk_floor,
-/area/maintenance/central)
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"wdk" = (
/turf/open/floor/iron/dark,
/area/engine/engine_room)
@@ -70780,18 +70788,6 @@
},
/turf/open/floor/iron/dark,
/area/medical/genetics)
-"wef" = (
-/obj/machinery/atmospherics/pipe/layer_manifold,
-/obj/structure/table/reinforced,
-/obj/item/clothing/glasses/meson/engine{
- pixel_x = -2;
- pixel_y = 6
- },
-/obj/item/clothing/glasses/meson/engine{
- pixel_x = 2
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"wel" = (
/obj/machinery/light{
dir = 8
@@ -70851,15 +70847,6 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat_interior)
-"wfv" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron/dark/smooth_edge{
- dir = 8
- },
-/area/hallway/primary/central)
"wfF" = (
/obj/structure/table/wood,
/obj/item/hand_labeler,
@@ -70952,6 +70939,16 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"wgt" = (
+/obj/structure/window/reinforced,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/fernybush,
+/obj/machinery/camera/autoname{
+ dir = 4
+ },
+/turf/open/floor/grass/no_border,
+/area/hallway/secondary/exit/departure_lounge)
"wgH" = (
/obj/machinery/atmospherics/pipe/simple/orange/visible{
dir = 6
@@ -71020,16 +71017,6 @@
dir = 4
},
/area/science/research)
-"whx" = (
-/obj/structure/railing,
-/obj/effect/turf_decal/siding/wideplating/dark,
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/turf/open/floor/iron/dark/smooth_edge{
- dir = 1
- },
-/area/hallway/primary/central)
"whX" = (
/obj/machinery/atmospherics/pipe/simple/orange/visible{
dir = 10
@@ -71059,6 +71046,16 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
+"wiG" = (
+/obj/machinery/computer/security/mining{
+ dir = 1;
+ name = "Ion engine camera console";
+ network = list("Ion")
+ },
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/engine/engine_room)
"wjm" = (
/obj/machinery/light,
/obj/machinery/computer/bounty{
@@ -71285,22 +71282,6 @@
/obj/structure/flora/ausbushes/fullgrass,
/turf/open/floor/grass,
/area/hallway/primary/central)
-"wmb" = (
-/obj/structure/window/reinforced,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/ppflowers,
-/mob/living/simple_animal/mouse/brown{
- desc = "This one doesn't squeal";
- name = "Tony";
- pixel_x = 7;
- pixel_y = 12
- },
-/obj/machinery/holopad{
- pixel_x = 16;
- pixel_y = 17
- },
-/turf/open/floor/grass/no_border,
-/area/hallway/secondary/exit/departure_lounge)
"wme" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -71532,23 +71513,16 @@
},
/turf/open/floor/wood,
/area/crew_quarters/dorms)
-"wrO" = (
-/obj/structure/sign/warning/vacuum/external{
- pixel_y = 32
- },
-/obj/structure/table/wood/fancy,
-/obj/item/food/grown/flower/harebell{
- pixel_y = 3
- },
-/obj/item/candle/infinite{
- pixel_x = 9;
- pixel_y = 1
+"wrn" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
+/obj/machinery/portable_atmospherics/canister/plasma,
+/obj/machinery/atmospherics/components/unary/portables_connector{
+ dir = 4
},
/turf/open/floor/iron/dark,
-/area/chapel/main)
+/area/quartermaster/exploration_prep)
"wsd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
@@ -71556,6 +71530,17 @@
},
/turf/open/floor/iron/white,
/area/science/xenobiology)
+"wsF" = (
+/obj/machinery/telecomms/hub/preset/exploration,
+/obj/machinery/atmospherics/pipe/heat_exchanging/junction{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 3
+ },
+/turf/open/floor/circuit/green/telecomms/mainframe,
+/area/quartermaster/exploration_prep)
"wsJ" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/structure/extinguisher_cabinet{
@@ -71600,6 +71585,17 @@
},
/turf/open/floor/iron,
/area/bridge)
+"wuj" = (
+/obj/machinery/power/apc/auto_name/south{
+ pixel_y = -24
+ },
+/obj/structure/cable/yellow,
+/obj/item/reagent_containers/glass/bucket{
+ pixel_x = -2;
+ pixel_y = 10
+ },
+/turf/open/floor/iron/dark,
+/area/security/execution/education)
"wuz" = (
/obj/effect/turf_decal/tile/yellow{
dir = 8
@@ -71610,24 +71606,6 @@
},
/turf/open/floor/iron/dark,
/area/storage/primary)
-"wuQ" = (
-/obj/effect/turf_decal/guideline/guideline_edge/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/half/contrasted,
-/obj/structure/sign/poster/random{
- pixel_x = 32
- },
-/obj/machinery/camera/autoname{
- dir = 8;
- network = list("ss13","security")
- },
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/landmark/start/security_officer,
-/turf/open/floor/iron/dark,
-/area/security/brig/dock)
"wvm" = (
/obj/machinery/door/airlock/research{
name = "Toxins Storage";
@@ -71679,18 +71657,6 @@
/obj/structure/closet,
/turf/open/floor/plating,
/area/maintenance/department/medical/morgue)
-"wwd" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/railing/corner{
- dir = 8
- },
-/turf/open/floor/iron/dark/smooth_edge{
- dir = 4
- },
-/area/hallway/primary/central)
"wwg" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/window{
@@ -71706,6 +71672,31 @@
},
/turf/open/floor/engine/o2,
/area/ai_monitored/turret_protected/ai)
+"wxs" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/closet/secure_closet/medical2,
+/obj/item/clothing/suit/apron/surgical,
+/turf/open/floor/iron,
+/area/medical/surgery)
+"wxC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/guideline/guideline_in/green{
+ color = "#439C1E"
+ },
+/obj/effect/turf_decal/tile/dark_green/half{
+ dir = 8
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
"wxK" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -71750,20 +71741,6 @@
/obj/item/stack/tile/carpet/royalblack/fifty,
/turf/open/floor/wood,
/area/maintenance/port/aft)
-"wyw" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/security)
-"wyC" = (
-/turf/open/floor/glass/reinforced,
-/area/engine/atmos)
"wyV" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -72052,14 +72029,19 @@
/obj/effect/spawner/lootdrop/glowstick/lit,
/turf/open/floor/iron,
/area/maintenance/department/medical)
-"wCY" = (
-/obj/structure/railing{
+"wDb" = (
+/obj/structure/railing/corner{
dir = 1
},
-/obj/effect/turf_decal/siding/wideplating/dark{
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/dark/corner{
dir = 1
},
-/turf/open/floor/iron/dark/smooth_edge,
/area/hallway/primary/central)
"wDe" = (
/obj/effect/turf_decal/guideline/guideline_edge/red{
@@ -72071,6 +72053,15 @@
/obj/effect/landmark/start/security_officer,
/turf/open/floor/iron/dark,
/area/security/brig/dock)
+"wDl" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/obj/machinery/vending/cola,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"wDw" = (
/obj/structure/table/reinforced,
/obj/effect/turf_decal/stripes{
@@ -72137,6 +72128,15 @@
},
/turf/open/floor/iron/white,
/area/science/lobby)
+"wEE" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/quartermaster/exploration_prep)
"wEH" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -72200,14 +72200,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/cafeteria)
-"wFD" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"wFO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -72249,6 +72241,13 @@
"wGM" = (
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/hop)
+"wGP" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Maintenance Hatch";
+ req_one_access_txt = "12;31"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/port/central)
"wHb" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -72293,6 +72292,15 @@
},
/turf/open/floor/iron,
/area/engine/break_room)
+"wHL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/aft)
"wHP" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -72412,15 +72420,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/dark,
/area/engine/atmos)
-"wJz" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2,
-/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"wJQ" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/preopen{
@@ -72541,6 +72540,18 @@
},
/turf/open/floor/iron/white,
/area/security/brig/medbay)
+"wLI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/effect/turf_decal/guideline/guideline_in/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple/half{
+ dir = 4
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
"wLN" = (
/obj/structure/disposalpipe/segment{
dir = 1
@@ -72624,6 +72635,29 @@
},
/turf/open/floor/plating,
/area/engine/supermatter)
+"wMw" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/obj/structure/chair/fancy/comfy{
+ color = "#596479";
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
+"wMH" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/turf/open/floor/iron/dark/smooth_edge,
+/area/hallway/primary/central)
"wMI" = (
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -72751,6 +72785,21 @@
},
/turf/open/floor/iron/white,
/area/medical/sleeper)
+"wON" = (
+/obj/structure/bed/roller,
+/obj/machinery/light,
+/obj/machinery/door/window/eastleft{
+ dir = 1;
+ name = "Quarantine Pen B";
+ req_access_txt = "39"
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 3
+ },
+/obj/item/toy/plush/slimeplushie/green,
+/turf/open/floor/iron/grid/steel,
+/area/medical/virology)
"wPd" = (
/obj/effect/turf_decal/tile/dark_green/half/contrasted{
dir = 8
@@ -72852,6 +72901,17 @@
/obj/structure/girder,
/turf/open/floor/plating,
/area/maintenance/department/medical/morgue)
+"wQP" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_y = 1
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"wQT" = (
/obj/effect/turf_decal/tile/black/fourcorners,
/obj/effect/turf_decal/stripes/line{
@@ -72913,10 +72973,6 @@
},
/turf/open/floor/iron/white,
/area/science/xenobiology)
-"wSi" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/medical/morgue)
"wSs" = (
/obj/machinery/suit_storage_unit/cmo,
/obj/machinery/computer/security/telescreen{
@@ -72976,17 +73032,6 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
-"wSB" = (
-/obj/machinery/door/morgue{
- name = "Mass driver room";
- req_access_txt = "27"
- },
-/obj/machinery/light_switch{
- pixel_x = -21;
- pixel_y = 1
- },
-/turf/open/floor/carpet/purple,
-/area/chapel/main)
"wTo" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -73026,14 +73071,6 @@
burnt = 1
},
/area/library)
-"wTx" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/backpack/duffelbag/sec/surgery{
- pixel_y = 4
- },
-/obj/item/clothing/gloves/color/latex,
-/turf/open/floor/iron/white,
-/area/science/robotics)
"wTI" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -73119,21 +73156,21 @@
/obj/effect/turf_decal/guideline/guideline_in/yellow,
/turf/open/floor/iron,
/area/engine/engineering)
-"wVy" = (
-/obj/structure/window/reinforced{
+"wUY" = (
+/obj/effect/turf_decal/stripes/line{
dir = 4
},
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/turf/open/floor/glass/reinforced,
-/area/crew_quarters/cafeteria)
-"wVK" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
+/obj/structure/disposalpipe/segment{
dir = 9
},
-/turf/open/floor/glass/reinforced,
-/area/chapel/main)
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"wVX" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -73176,6 +73213,18 @@
/area/security/brig/dock{
name = "Security E.V.A. Storage"
})
+"wWF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/starboard/aft)
"wXb" = (
/obj/item/kirbyplants/random,
/obj/machinery/camera/autoname{
@@ -73234,17 +73283,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/engine/engine_room)
-"wXE" = (
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/effect/turf_decal/guideline/guideline_in/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow/half,
-/obj/effect/turf_decal/tile/yellow/half,
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
"wXG" = (
/obj/machinery/light/small{
dir = 1
@@ -73358,23 +73396,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/miningdock)
-"wZl" = (
-/obj/structure/railing/corner{
- dir = 1
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
-"wZs" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/security)
"wZy" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -73527,33 +73548,6 @@
},
/turf/open/floor/iron,
/area/security/brig)
-"xdj" = (
-/obj/structure/railing{
- dir = 6;
- layer = 3.1
- },
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 6
- },
-/obj/effect/turf_decal/bot,
-/obj/machinery/vending/hydroseeds,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
-"xdo" = (
-/obj/effect/turf_decal/guideline/guideline_in/red{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/effect/turf_decal/tile/dark_red/half{
- color = "#DE3A3A"
- },
-/obj/effect/turf_decal/tile/dark_red/half{
- color = "#DE3A3A"
- },
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
"xdv" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -73622,6 +73616,17 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"xeL" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/security)
"xeN" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 4
@@ -73722,6 +73727,15 @@
},
/turf/open/floor/iron/dark/side,
/area/hallway/primary/central)
+"xgI" = (
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/bot,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"xgQ" = (
/obj/machinery/teleport/station,
/obj/machinery/light{
@@ -73769,21 +73783,13 @@
/obj/item/paicard,
/turf/open/floor/iron,
/area/crew_quarters/dorms)
-"xhM" = (
-/obj/effect/turf_decal/guideline/guideline_out/brown{
- dir = 1
- },
+"xii" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/iron/techmaint,
-/area/hallway/secondary/service)
+/obj/structure/railing/corner,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"xip" = (
/obj/machinery/rnd/production/techfab/department/cargo,
/obj/effect/turf_decal/stripes/box,
@@ -73819,22 +73825,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
-"xjh" = (
-/obj/effect/turf_decal/guideline/guideline_in/darkblue{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/tile/dark_blue/half{
- dir = 1
- },
-/obj/effect/turf_decal/tile/dark_blue/half{
- dir = 1
- },
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
"xjm" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -73863,18 +73853,6 @@
/obj/machinery/airalarm/directional/west,
/turf/open/floor/iron/dark,
/area/bridge/meeting_room)
-"xjC" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/security)
"xjE" = (
/obj/structure/table/wood,
/obj/item/kirbyplants/random{
@@ -73890,24 +73868,6 @@
},
/turf/open/floor/carpet/purple,
/area/chapel/main)
-"xjG" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/effect/decal/cleanable/dirt,
-/mob/living/basic/cockroach,
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/aft)
"xjK" = (
/obj/effect/turf_decal/siding/wood{
dir = 4
@@ -73968,15 +73928,6 @@
/obj/structure/ore_box,
/turf/open/floor/plating,
/area/maintenance/port/central)
-"xkC" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"xkS" = (
/obj/effect/turf_decal/loading_area,
/obj/machinery/firealarm/directional/west,
@@ -74229,32 +74180,6 @@
},
/turf/open/floor/iron/sepia,
/area/maintenance/port/central)
-"xos" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/obj/machinery/newscaster{
- pixel_x = 25
- },
-/obj/machinery/light_switch{
- pixel_x = 25;
- pixel_y = 40
- },
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp/green{
- pixel_x = -6;
- pixel_y = 14
- },
-/obj/item/camera/detective{
- pixel_x = 3;
- pixel_y = 7
- },
-/obj/item/taperecorder{
- pixel_x = 6;
- pixel_y = 5
- },
-/turf/open/floor/carpet/red,
-/area/security/detectives_office)
"xow" = (
/obj/machinery/door/airlock/public/glass{
name = "Primary Hallway"
@@ -74294,16 +74219,6 @@
},
/turf/open/floor/plating/airless,
/area/science/test_area)
-"xoV" = (
-/obj/machinery/newscaster{
- pixel_y = 34
- },
-/obj/machinery/camera/autoname{
- dir = 6;
- network = list("ss13","security","court")
- },
-/turf/open/floor/wood,
-/area/security/courtroom)
"xoY" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
@@ -74342,18 +74257,15 @@
},
/turf/open/floor/iron,
/area/security/brig)
-"xqq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
+"xqm" = (
+/obj/effect/turf_decal/guideline/guideline_in/yellow{
+ dir = 4
},
-/turf/open/floor/catwalk_floor,
-/area/maintenance/starboard/aft)
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/yellow/half,
+/obj/effect/turf_decal/tile/yellow/half,
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
"xqx" = (
/obj/effect/decal/cleanable/cobweb{
layer = 5
@@ -74387,6 +74299,21 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/ai_upload)
+"xrL" = (
+/obj/effect/turf_decal/guideline/guideline_out_arrow/brown{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/techmaint,
+/area/maintenance/central)
"xrM" = (
/obj/effect/spawner/room/fivexfour,
/obj/effect/decal/cleanable/dirt,
@@ -74495,6 +74422,14 @@
/obj/structure/sign/departments/minsky/research/dorms,
/turf/closed/wall,
/area/hallway/secondary/entry)
+"xtb" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/open/floor/grass/no_border,
+/area/hallway/secondary/exit/departure_lounge)
"xte" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -74557,6 +74492,15 @@
},
/turf/open/floor/iron,
/area/hydroponics)
+"xtI" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"xtK" = (
/obj/effect/turf_decal/caution,
/obj/machinery/door/poddoor/shutters/radiation/preopen{
@@ -74685,13 +74629,18 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/miningdock)
-"xvg" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Maintenance Hatch";
- req_one_access_txt = "12;31"
+"xvp" = (
+/obj/machinery/light_switch{
+ pixel_x = -8;
+ pixel_y = -21
},
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/port/central)
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/vehicle/ridden/secway,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/ai_monitored/security/armory)
"xvs" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -74716,27 +74665,6 @@
},
/turf/open/floor/iron/dark,
/area/crew_quarters/heads/captain)
-"xvA" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/sunnybush,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "hopqueue";
- name = "HoP Queue Shutters"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/grass/no_border,
-/area/crew_quarters/heads/hop)
"xvS" = (
/obj/machinery/computer/cargo/request{
dir = 8
@@ -74766,16 +74694,21 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/storage)
-"xwf" = (
-/obj/effect/decal/cleanable/crayon,
+"xwi" = (
/obj/machinery/light/small{
- brightness = 3;
- bulb_colour = "#1bcf15";
dir = 1
},
-/obj/item/food/butter/on_a_stick,
-/turf/open/floor/plating,
-/area/maintenance/department/medical)
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/autoname{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/bridge)
"xwj" = (
/obj/structure/table/wood,
/obj/item/paper_bin,
@@ -74789,6 +74722,29 @@
},
/turf/open/floor/carpet/blue,
/area/bridge/meeting_room)
+"xwn" = (
+/obj/machinery/power/smes/engineering{
+ charge = 2e+007
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
+"xwz" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/generic,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/medical/morgue)
"xwE" = (
/obj/machinery/light{
dir = 1
@@ -74843,16 +74799,6 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/office)
-"xwX" = (
-/obj/structure/window/reinforced,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/fernybush,
-/obj/machinery/camera/autoname{
- dir = 4
- },
-/turf/open/floor/grass/no_border,
-/area/hallway/secondary/exit/departure_lounge)
"xwY" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -74921,36 +74867,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron/white,
/area/crew_quarters/kitchen)
-"xxh" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/structure/table,
-/obj/item/storage/box/evidence{
- pixel_x = -4;
- pixel_y = 8
- },
-/obj/item/storage/box/bodybags{
- pixel_x = 4;
- pixel_y = 2
- },
-/obj/effect/turf_decal/guideline/guideline_edge_alt/red{
- dir = 4
- },
-/obj/effect/turf_decal/guideline/guideline_half_edge/red{
- dir = 8
- },
-/obj/effect/turf_decal/guideline/guideline_half_edge/red{
- dir = 6
- },
-/obj/effect/turf_decal/guideline/guideline_tri/red{
- dir = 1
- },
-/obj/structure/sign/poster/random{
- pixel_y = -32
- },
-/turf/open/floor/iron,
-/area/security/brig)
"xxl" = (
/obj/effect/turf_decal/tile/black/fourcorners,
/obj/effect/turf_decal/bot_white,
@@ -74970,21 +74886,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/tech,
/area/engine/atmos)
-"xxw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/shreds,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/aft)
"xxA" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -74992,22 +74893,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/tech,
/area/engine/atmos)
-"xxE" = (
-/obj/effect/turf_decal/siding/wideplating/dark,
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/turf/open/floor/carpet/purple,
-/area/chapel/main)
"xxF" = (
/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted,
/obj/effect/decal/cleanable/dirt,
@@ -75032,6 +74917,19 @@
/obj/effect/turf_decal/tile/dark_green/corner_ramp/offset,
/turf/open/floor/iron,
/area/crew_quarters/cafeteria)
+"xyh" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=16-EHall";
+ location = "15-CenterSE"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"xyi" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow{
@@ -75330,18 +75228,16 @@
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/iron,
/area/maintenance/department/security)
+"xCc" = (
+/obj/effect/decal/cleanable/crayon,
+/obj/item/food/butteredtoast,
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/maintenance/department/medical)
"xCe" = (
/turf/closed/wall,
/area/maintenance/department/medical)
-"xCv" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/sunnybush,
-/turf/open/floor/grass/no_border,
-/area/hallway/secondary/exit/departure_lounge)
"xCx" = (
/obj/structure/reagent_dispensers/watertank,
/obj/effect/turf_decal/bot,
@@ -75360,17 +75256,6 @@
name = "mainframe floor"
},
/area/tcommsat/server)
-"xCW" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 6
- },
-/obj/machinery/door/window/brigdoor{
- dir = 4;
- name = "Pet Solitary Confinement";
- req_access_txt = "58"
- },
-/turf/open/floor/carpet/red,
-/area/crew_quarters/heads/hos)
"xDh" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/turf_decal/tile/blue/anticorner,
@@ -75663,18 +75548,6 @@
},
/turf/open/floor/iron/dark,
/area/medical/chemistry)
-"xIf" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/central)
"xII" = (
/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
alpha = 180
@@ -75718,6 +75591,14 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/ai_upload)
+"xIT" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/machinery/meter,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"xIU" = (
/obj/structure/table/reinforced,
/obj/item/toy/figure/bartender{
@@ -75778,6 +75659,15 @@
/obj/structure/sign/departments/medbay/alt2,
/turf/closed/wall,
/area/medical/medbay/lobby)
+"xKg" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/quartermaster/exploration_prep)
"xKh" = (
/obj/effect/turf_decal/tile/dark_blue{
alpha = 180;
@@ -75958,6 +75848,10 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron/dark,
/area/security/warden)
+"xNe" = (
+/obj/structure/window/reinforced,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"xNt" = (
/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{
alpha = 180
@@ -75976,6 +75870,16 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat/foyer)
+"xNB" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/power/apc/auto_name/north{
+ pixel_y = 24
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/bridge)
"xNC" = (
/obj/machinery/airalarm{
dir = 1;
@@ -75988,17 +75892,6 @@
/obj/structure/closet/crate/mail,
/turf/open/floor/iron,
/area/quartermaster/sorting)
-"xNG" = (
-/obj/structure/window/reinforced{
- dir = 4;
- layer = 2.9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"xNU" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/landmark/start/shaft_miner,
@@ -76051,6 +75944,14 @@
dir = 8
},
/area/hallway/primary/central)
+"xPj" = (
+/obj/machinery/mineral/stacking_machine{
+ dir = 4;
+ input_dir = 1;
+ output_dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal)
"xPu" = (
/obj/effect/landmark/blobstart,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
@@ -76110,17 +76011,6 @@
},
/turf/open/floor/iron/tech,
/area/engine/engine_room)
-"xPT" = (
-/obj/machinery/camera/autoname{
- dir = 1;
- network = list("ss13","security")
- },
-/obj/machinery/power/apc/auto_name/south{
- pixel_y = -24
- },
-/obj/structure/cable/yellow,
-/turf/open/floor/wood,
-/area/security/detectives_office)
"xQM" = (
/obj/machinery/firealarm/directional/east,
/obj/machinery/door/firedoor,
@@ -76159,6 +76049,14 @@
},
/turf/open/floor/iron,
/area/science/mixing)
+"xRn" = (
+/obj/structure/window/reinforced,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/palebush,
+/mob/living/simple_animal/butterfly,
+/turf/open/floor/grass/no_border,
+/area/hallway/secondary/exit/departure_lounge)
"xRL" = (
/obj/structure/table/wood,
/obj/structure/mirror{
@@ -76190,38 +76088,21 @@
"xST" = (
/turf/open/floor/carpet/green,
/area/crew_quarters/dorms)
-"xSZ" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 8
- },
-/turf/open/floor/iron/dark/smooth_edge{
+"xTa" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
-/area/hallway/primary/central)
-"xTh" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer4{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
},
+/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/radio/intercom{
- pixel_x = -32;
- pixel_y = -3
- },
-/obj/machinery/power/smes/engineering{
- charge = 2e+007
- },
-/obj/structure/cable/yellow,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
-"xTD" = (
-/obj/effect/spawner/lootdrop/ruinloot/medical,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/decal/cleanable/shreds,
/obj/structure/cable/yellow{
- icon_state = "1-2"
+ icon_state = "4-8"
},
/turf/open/floor/catwalk_floor,
-/area/maintenance/starboard/aft)
+/area/maintenance/port/aft)
"xTU" = (
/obj/effect/turf_decal/tile/yellow{
dir = 4
@@ -76231,6 +76112,21 @@
},
/turf/open/floor/iron/white,
/area/medical/chemistry)
+"xUd" = (
+/obj/effect/landmark/start/assistant,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/glass/reinforced,
+/area/hallway/primary/central{
+ dynamic_lighting = 2;
+ lighting_brightness_tube = 11;
+ lighting_colour_bulb = "#DDE6FF";
+ lighting_colour_night = "#DDE6FF";
+ lighting_colour_tube = "#DDE6FF";
+ lighting_overlay_colour = "#DDE6FF";
+ power_light = 0
+ })
"xUe" = (
/obj/effect/turf_decal/tile/neutral,
/obj/machinery/power/smes,
@@ -76325,15 +76221,6 @@
},
/turf/open/floor/iron/tech,
/area/engine/atmos)
-"xVD" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/turf/open/floor/iron/dark,
-/area/chapel/main)
"xVF" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
@@ -76360,15 +76247,6 @@
},
/turf/open/floor/iron/tech,
/area/engine/engine_room)
-"xWu" = (
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/power/smes/engineering{
- charge = 2e+007
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"xWy" = (
/obj/effect/turf_decal/tile/purple{
dir = 8
@@ -76432,6 +76310,14 @@
},
/turf/open/floor/iron,
/area/science/lobby)
+"xXu" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/security)
"xXE" = (
/obj/machinery/power/apc/auto_name/east,
/obj/machinery/camera/autoname{
@@ -76507,6 +76393,20 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
+"xYV" = (
+/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{
+ alpha = 180
+ },
+/obj/structure/chair/fancy/corp{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/item/toy/plush/slimeplushie/red{
+ pixel_x = 2;
+ pixel_y = 1
+ },
+/turf/open/floor/iron/dark,
+/area/ai_monitored/turret_protected/aisat/foyer)
"xYW" = (
/obj/structure/table/wood,
/obj/item/folder/blue{
@@ -76613,6 +76513,21 @@
},
/turf/open/floor/plating,
/area/engine/atmos)
+"yag" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/item/storage/box{
+ pixel_x = -4;
+ pixel_y = 6
+ },
+/obj/item/storage/box{
+ pixel_x = 3
+ },
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal)
"yak" = (
/obj/effect/turf_decal/bot,
/obj/machinery/disposal/bin,
@@ -76627,6 +76542,18 @@
},
/turf/open/floor/iron,
/area/medical/apothecary)
+"yar" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/starboard/aft)
"yaw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/white,
@@ -76694,6 +76621,13 @@
},
/turf/open/floor/plating,
/area/vacant_room/commissary/commissary1)
+"ybk" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/spawner/lootdrop/glowstick/lit,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/central)
"ybl" = (
/obj/machinery/door/airlock/maintenance_hatch{
id_tag = "commissarydoor1";
@@ -76707,6 +76641,29 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/vacant_room/commissary/commissary1)
+"ybp" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/central)
+"ybw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 21;
+ pixel_y = 22
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"ybx" = (
/obj/structure/disposalpipe/segment{
dir = 8
@@ -76720,14 +76677,14 @@
dir = 1
},
/area/medical/medbay/central)
-"ybD" = (
-/obj/structure/window/reinforced{
- dir = 4;
- layer = 2.9
+"ybC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/obj/structure/window/reinforced,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/aft)
"ybW" = (
/obj/structure/sign/departments/medbay/alt2{
pixel_x = 33;
@@ -76817,10 +76774,6 @@
},
/turf/open/floor/iron/dark,
/area/vacant_room/commissary/commissary1)
-"ydC" = (
-/obj/effect/decal/cleanable/shreds,
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
"ydM" = (
/obj/effect/turf_decal/tile/red/half/contrasted{
dir = 4
@@ -76876,6 +76829,21 @@
},
/turf/open/floor/carpet/orange,
/area/quartermaster/qm)
+"yej" = (
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"yel" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/eastright{
@@ -76908,6 +76876,16 @@
},
/turf/open/floor/iron,
/area/science/lab)
+"yew" = (
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/solar{
+ id = "portsolar";
+ name = "Port Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/port/aft)
"yex" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow,
@@ -76919,6 +76897,27 @@
"yeA" = (
/turf/open/space/basic,
/area/space)
+"yeC" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/thinplating/light{
+ dir = 8
+ },
+/obj/machinery/light/floor{
+ brightness = 15;
+ bulb_colour = "#FFE4CE";
+ bulb_vacuum_brightness = 15;
+ nightshift_brightness = 10;
+ nightshift_light_color = "#E6EBFF"
+ },
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 4
+ },
+/area/hallway/primary/central)
"yfb" = (
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plating,
@@ -77027,15 +77026,12 @@
/area/engine/atmos)
"yhv" = (
/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/chair/fancy/comfy{
- color = "#596479";
dir = 8
},
-/obj/structure/window/reinforced,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
+/obj/item/kirbyplants/random,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/glass/reinforced,
+/area/crew_quarters/cafeteria)
"yhx" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 1;
@@ -77152,6 +77148,15 @@
},
/turf/open/floor/iron/dark,
/area/engine/engine_room)
+"yke" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/glass/reinforced,
+/area/crew_quarters/cafeteria)
"yki" = (
/obj/effect/turf_decal/tile/dark_red{
dir = 4
@@ -77236,6 +77241,25 @@
},
/turf/open/floor/iron,
/area/crew_quarters/cafeteria)
+"ykQ" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/rock/jungle,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "hopqueue";
+ name = "HoP Queue Shutters"
+ },
+/turf/open/floor/grass/no_border,
+/area/crew_quarters/heads/hop)
"ykU" = (
/obj/effect/landmark/start/paramedic,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
@@ -77320,44 +77344,22 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
-"ylT" = (
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 4
+"ylO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2
},
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+/obj/structure/railing/corner{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
+"ymb" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/item/radio/intercom{
- desc = "Talk through this. It looks like it has been modified to not broadcast.";
- freerange = 1;
- name = "Prison intercom";
- pixel_y = 25;
- prison_radio = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+/obj/structure/railing/corner{
dir = 8
},
-/turf/open/floor/iron/dark,
-/area/security/prison{
- name = "Prison Processing"
- })
-"ymh" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/light_switch{
- pixel_x = 21;
- pixel_y = 22
- },
/turf/open/floor/iron/dark/smooth_large,
/area/hallway/primary/central)
@@ -91342,15 +91344,15 @@ yeA
yeA
ewB
yeA
-bTL
-bTL
-bTL
+uNP
+uNP
+uNP
odm
eEg
tbt
-bTL
-bTL
-bTL
+uNP
+uNP
+uNP
yeA
ewB
yeA
@@ -91856,15 +91858,15 @@ yeA
gsA
ewB
gsA
-ryv
-ryv
-ryv
+dLW
+dLW
+dLW
odm
eEg
tbt
-ryv
-ryv
-ryv
+dLW
+dLW
+dLW
iDN
cjc
yeA
@@ -92370,15 +92372,15 @@ yeA
gsA
gsA
gsA
-bTL
-bTL
-bTL
+uNP
+uNP
+uNP
odm
vUL
tbt
-bTL
-bTL
-bTL
+uNP
+uNP
+uNP
yeA
gsA
gsA
@@ -92884,15 +92886,15 @@ yeA
ewB
gsA
yeA
-ryv
-ryv
-ryv
+dLW
+dLW
+dLW
odm
eEg
yeA
iDO
-ryv
-ryv
+dLW
+dLW
yeA
rRD
wAW
@@ -93397,9 +93399,9 @@ yeA
gsA
cjc
roh
-bTL
-bTL
-bTL
+uNP
+uNP
+uNP
fHH
yeA
fHH
@@ -93911,8 +93913,8 @@ yeA
ewB
gsA
yeA
-ryv
-ryv
+dLW
+dLW
iDO
lAb
yeA
@@ -94424,9 +94426,9 @@ ewB
gsA
wAW
gsA
-bTL
-bTL
-bTL
+uNP
+uNP
+uNP
tSx
fHH
yeA
@@ -94938,8 +94940,8 @@ gsA
gsA
gsA
gsA
-ryv
-ryv
+dLW
+dLW
vUL
fHH
fHH
@@ -95539,15 +95541,15 @@ gsA
yeA
yeA
yeA
-trn
-trn
-trn
+pkH
+pkH
+pkH
odm
tBB
tbt
-trn
-trn
-trn
+pkH
+pkH
+pkH
yeA
ewB
yeA
@@ -96053,15 +96055,15 @@ gsA
yeA
yeA
yeA
-iSN
-iSN
-iSN
+yew
+yew
+yew
odm
tBB
tbt
-iSN
-iSN
-iSN
+yew
+yew
+yew
gsA
ewB
yeA
@@ -96567,15 +96569,15 @@ ewB
gsA
gsA
yeA
-trn
-trn
-trn
+pkH
+pkH
+pkH
odm
tBB
tbt
-trn
-trn
-trn
+pkH
+pkH
+pkH
gsA
yeA
gsA
@@ -97081,15 +97083,15 @@ jGx
gsA
gsA
yeA
-iSN
-iSN
-iSN
+yew
+yew
+yew
odm
tBB
tbt
-iSN
-iSN
-iSN
+yew
+yew
+yew
yeA
gsA
ewB
@@ -97594,17 +97596,17 @@ yeA
gsA
gsA
gsA
-trn
-trn
-trn
-trn
+pkH
+pkH
+pkH
+pkH
odm
nxQ
tbt
-trn
-trn
-trn
-trn
+pkH
+pkH
+pkH
+pkH
gsA
ewB
gsA
@@ -98081,9 +98083,9 @@ uDc
lmb
hqy
cMW
-kJY
-oBD
-rzo
+bLD
+iUC
+wrn
llk
eJm
aQE
@@ -98108,17 +98110,17 @@ yeA
gsA
gsA
yeA
-iSN
-iSN
-iSN
-iSN
+yew
+yew
+yew
+yew
odm
sBb
tbt
-iSN
-iSN
-iSN
-iSN
+yew
+yew
+yew
+yew
yeA
gsA
gsA
@@ -98292,9 +98294,9 @@ lIC
pEC
nEb
vIF
-tKq
-uAH
-sCY
+jat
+yag
+dDA
sNa
vDo
jut
@@ -98338,10 +98340,10 @@ tnB
dDa
rBF
cMW
-bTR
-oTU
-mEi
-gWq
+ddt
+wsF
+tkl
+mSa
hCg
eua
ayc
@@ -98540,7 +98542,7 @@ yeA
yeA
nEb
xjm
-vIZ
+ono
kSR
jgQ
iQP
@@ -98550,8 +98552,8 @@ giZ
nEb
lIa
lrw
-esM
-fYr
+rxl
+aTe
sNa
mhd
nOh
@@ -98596,9 +98598,9 @@ hiU
tIR
cMW
bwB
-cfT
-fvE
-hOH
+wEE
+xKg
+fGV
hCg
bOe
jaQ
@@ -98621,19 +98623,19 @@ sLX
sxX
lfC
gsA
-trn
-trn
-trn
-trn
-trn
+pkH
+pkH
+pkH
+pkH
+pkH
odm
tBB
tbt
-trn
-trn
-trn
-trn
-trn
+pkH
+pkH
+pkH
+pkH
+pkH
yeA
gsA
ewB
@@ -98807,8 +98809,8 @@ cNI
nEb
eDU
aaB
-gUF
-hEC
+aIv
+gUM
oUP
ate
sal
@@ -98853,9 +98855,9 @@ cCS
bhM
cMW
qpz
-tjh
-rtZ
-qin
+pLJ
+jfg
+iJF
eLF
tmn
vXW
@@ -99064,8 +99066,8 @@ oFH
nEb
uyF
sqR
-rAD
-hJh
+xPj
+dbA
sNa
gfd
iov
@@ -99080,7 +99082,7 @@ suJ
haM
tos
fcO
-lkA
+mNH
fcO
haM
haM
@@ -99135,19 +99137,19 @@ mfz
hvo
lfC
gsA
-iSN
-iSN
-iSN
-iSN
-iSN
+yew
+yew
+yew
+yew
+yew
odm
sBb
tbt
-iSN
-iSN
-iSN
-iSN
-iSN
+yew
+yew
+yew
+yew
+yew
gsA
yeA
ewB
@@ -99322,8 +99324,8 @@ nEb
oom
wcV
osV
-viN
-oJT
+cUk
+dwW
xwW
fLS
mDq
@@ -99337,7 +99339,7 @@ suJ
haM
haM
fcO
-fJh
+vgc
fcO
fdu
fdu
@@ -99594,7 +99596,7 @@ krf
gHE
naq
fVm
-ckP
+vDk
eRv
aid
fSI
@@ -99824,7 +99826,7 @@ nEb
pbb
qFt
bmx
-wuQ
+hQH
wUE
mEt
pcI
@@ -99851,7 +99853,7 @@ mec
sSU
jpb
mec
-oqg
+csJ
mec
sSU
sSU
@@ -100327,7 +100329,7 @@ yeA
gsA
gsA
cKl
-qKS
+atF
rDf
jZk
iGi
@@ -100341,7 +100343,7 @@ cgq
bAj
fls
aOm
-pmV
+shJ
kZu
bAj
gsA
@@ -100594,7 +100596,7 @@ kFx
crB
bXk
wIy
-xxh
+sGb
bAj
nLc
iTy
@@ -100841,9 +100843,9 @@ eln
kFx
rhT
wIb
-uJB
+tnA
aCn
-dAb
+bHa
wSw
dNb
rzL
@@ -100856,7 +100858,7 @@ trr
yaP
asB
qNP
-seE
+wuj
bAj
nmf
nmf
@@ -100904,7 +100906,7 @@ txF
vzb
jCR
xkS
-rZG
+dZx
xys
jcG
oNC
@@ -101103,7 +101105,7 @@ iOa
jyu
rIG
jyu
-sRj
+sSN
bAo
rmT
arO
@@ -101353,7 +101355,7 @@ yeA
qFk
eoQ
xGA
-gee
+ios
hfH
joN
aCn
@@ -101365,7 +101367,7 @@ bAo
iqW
arO
saW
-sez
+pVT
bAj
pkt
drf
@@ -101617,7 +101619,7 @@ bAo
hbo
bUQ
tBN
-aLk
+ajF
bAo
oMT
bsA
@@ -101658,7 +101660,7 @@ saf
saf
waw
eXl
-nOL
+bNd
qwL
abg
ovK
@@ -101915,7 +101917,7 @@ cME
gsK
kml
eXl
-utF
+qWw
abg
lGL
dxU
@@ -101950,7 +101952,7 @@ pFb
kTh
diQ
pPA
-oON
+gIR
gci
wcx
vzd
@@ -102172,7 +102174,7 @@ tPk
aaR
jyI
cOA
-utF
+qWw
abg
kWu
jAD
@@ -102207,7 +102209,7 @@ idg
lKT
duI
pPA
-dVj
+rzm
gAE
wcx
lyc
@@ -102389,7 +102391,7 @@ kKx
knW
yku
lls
-nPy
+dhg
icK
wgX
mky
@@ -102429,7 +102431,7 @@ caY
nOJ
ePz
eXl
-utF
+qWw
abg
iNB
qvG
@@ -102464,7 +102466,7 @@ xug
gfP
okb
pPA
-xxw
+xTa
oit
wcx
szH
@@ -102641,7 +102643,7 @@ pIs
gfJ
xlC
gqn
-lXM
+inT
vzm
cuQ
vzm
@@ -102685,8 +102687,8 @@ sdb
mIT
sBt
wRO
-iEI
-luw
+dCf
+ybp
dst
exh
szf
@@ -102721,7 +102723,7 @@ nuU
izG
smb
kor
-oxF
+rdr
hxH
wcx
mou
@@ -102943,7 +102945,7 @@ fan
eOI
xNC
eXl
-utF
+qWw
hkB
naW
oEN
@@ -102978,7 +102980,7 @@ dEP
dEP
iFb
kor
-bOF
+gWJ
ahA
wcx
stc
@@ -103148,7 +103150,7 @@ gsA
oIb
gZS
fon
-xCW
+sbI
nCb
axk
jHs
@@ -103200,7 +103202,7 @@ bWn
wcR
ieD
eXl
-ieI
+vqB
cOA
eXl
eXl
@@ -103235,7 +103237,7 @@ lUQ
oLA
jxg
fAl
-iqX
+hQo
jZA
wcx
qQi
@@ -103414,7 +103416,7 @@ nCb
nCb
hXG
oXo
-upS
+kJc
aAF
dDS
fhl
@@ -103457,7 +103459,7 @@ wRO
hvB
dZF
cOA
-rPE
+iyP
aya
eXl
jFD
@@ -103492,7 +103494,7 @@ wnH
dEP
kzq
qZZ
-pPY
+rBe
oGP
cPB
oTx
@@ -103714,7 +103716,7 @@ wRO
waw
chg
eXl
-oTS
+isG
fRc
aSr
lka
@@ -103734,7 +103736,7 @@ aoF
vFG
eYO
lMu
-jXA
+euN
xmC
boq
boq
@@ -103749,7 +103751,7 @@ kmq
oLA
jsM
qZZ
-pPY
+rBe
vqT
cPB
hOw
@@ -103921,7 +103923,7 @@ gsA
uYx
tqK
cIf
-dMH
+hUh
pHx
oMO
uYx
@@ -103971,7 +103973,7 @@ lzE
ePI
dJu
cOA
-utF
+qWw
mTD
cOA
vnX
@@ -103987,10 +103989,10 @@ vhr
xGG
bRf
pzH
-pOp
-oZn
-cXM
-smX
+kCX
+nPH
+rxt
+lRI
jRK
xmC
lVr
@@ -104006,7 +104008,7 @@ dEP
dEP
fAl
qZZ
-pPY
+rBe
rvU
wcx
cPB
@@ -104196,7 +104198,7 @@ rgL
iZE
rWM
cUa
-gnE
+fsl
tJT
rnw
rAQ
@@ -104228,7 +104230,7 @@ cFO
cOA
cOA
eXl
-utF
+qWw
gCH
eXl
cOA
@@ -104238,13 +104240,13 @@ eXl
nnB
mCd
dpc
-dcu
-msj
-vNH
+mKV
+aix
+iQh
ieQ
-hyQ
+epu
ieQ
-wcD
+sfm
vFG
jWc
gFH
@@ -104263,15 +104265,15 @@ bek
fAl
rkH
oDO
-xjG
-bcH
-rjH
-fzK
-fzK
-fzK
-fzK
-dqc
-fFo
+oAD
+wHL
+qrx
+ybC
+ybC
+ybC
+ybC
+lQy
+aPb
pqk
qZZ
jcW
@@ -104437,7 +104439,7 @@ hVV
wDS
mAB
lQp
-nNv
+xvp
uYx
tFD
oXo
@@ -104463,29 +104465,29 @@ pZc
hPP
hPP
hPP
-lnQ
-wZs
-bIz
-msq
-qdW
-jjB
-wyw
-nBn
-xjC
-xjC
-vQc
+dcX
+iAv
+vLP
+sDu
+xXu
+mpQ
+xeL
+tto
+pAn
+pAn
+fwu
oIY
ibI
pEs
gbm
-xvg
-fiB
-fiB
-fiB
-fiB
-fiB
-fiB
-mWS
+wGP
+jfF
+jfF
+jfF
+jfF
+jfF
+jfF
+ybk
gfZ
iVH
kAP
@@ -104494,8 +104496,8 @@ fRc
cFO
sgg
eyE
-syK
-tVp
+jUF
+fSw
fZk
vRW
gvD
@@ -104514,13 +104516,13 @@ nuu
uUA
nfp
dOB
-jdW
-fom
+tNR
+tQm
uZw
oRe
-flY
-kFE
-qtb
+iZG
+mns
+tAG
kGp
ozf
hVN
@@ -104528,19 +104530,19 @@ uoO
lhM
rUk
afv
-twN
+gLU
fln
mKf
jcW
-xWu
-fAH
-kKG
-xTh
-sZD
+pIB
+fnx
+oCU
+qEk
+rdd
jtA
-pOQ
-rVg
-abq
+bOb
+qgd
+wiG
jcW
yeA
yeA
@@ -104704,18 +104706,18 @@ vLJ
vLJ
baU
bSI
-ruu
+rFi
oTf
fVQ
jlw
rki
cUa
-jxc
+ufk
kkg
pgT
wdS
kje
-xPT
+vIn
vbe
aJB
nBO
@@ -104750,7 +104752,7 @@ wIm
vvU
ebK
nnB
-wTx
+lAz
sfs
pYZ
nnB
@@ -104778,26 +104780,26 @@ qZZ
qUa
xDV
mdR
-ydC
+qwf
uBX
tpl
btk
nxR
sXl
riv
-twN
+gLU
fix
jFp
jcW
-ivY
-mge
-dVi
-dqt
-lsK
+kjn
+buN
+kap
+otY
+bPn
hVq
-slo
-uaF
-wef
+rFj
+kBh
+hLx
jcW
yeA
yeA
@@ -104956,7 +104958,7 @@ uYx
hBK
hBK
hBK
-isJ
+tAF
njC
hgl
fLs
@@ -104967,8 +104969,8 @@ bNo
gCh
gQR
cUa
-fhK
-xos
+qrF
+tcy
ijM
onV
jgM
@@ -105046,15 +105048,15 @@ uEq
qZZ
qZZ
jcW
-hyX
-hHo
-wdh
-mBn
-hvO
+pcd
+eRw
+aje
+eZz
+xIT
hVq
-wJz
-qXU
-rmh
+sZe
+vAS
+qVJ
jcW
yeA
yeA
@@ -105299,19 +105301,19 @@ tyx
dfe
gVS
iEd
-hcU
+eoS
tLt
cFk
jcW
-xWu
-eyM
-vQL
-ilS
-gWE
+pIB
+xwn
+dob
+tZc
+hFw
uhP
-jCl
-ghx
-hSL
+tAd
+lGc
+osX
jcW
rKZ
rKZ
@@ -105467,13 +105469,13 @@ wDS
pUi
wPU
fOb
-imo
-gut
+nZS
+kfk
kWP
pZe
gGF
iaG
-efl
+roe
aaQ
dXY
aap
@@ -105484,7 +105486,7 @@ uEC
eBC
lQG
rXd
-dbo
+iFL
utM
cAq
lLv
@@ -105524,7 +105526,7 @@ uin
cFO
hGs
qie
-khg
+kPR
jnG
qEG
lNa
@@ -105556,7 +105558,7 @@ boR
bmz
tyx
iEd
-hcU
+eoS
qSP
bOH
jcW
@@ -105718,13 +105720,13 @@ gsA
gsA
pia
uYx
-osa
+pKp
mUX
-eNe
-ips
-tBL
+nli
+dbO
+sRy
uYx
-mkt
+ixG
vMa
dWk
iQH
@@ -105813,7 +105815,7 @@ tyx
boR
ijx
iEd
-vhS
+eWO
jRG
hXK
tKB
@@ -106070,7 +106072,7 @@ imF
pkD
fiA
iEd
-eEf
+luR
mYj
qtl
jcW
@@ -106259,7 +106261,7 @@ bXM
jJB
vMg
ntc
-xoV
+rha
nUU
jqL
xkq
@@ -106327,7 +106329,7 @@ qHB
sWw
sjd
iEd
-gGx
+ssA
tzv
nsz
jcW
@@ -106584,7 +106586,7 @@ iRw
jqq
uKa
dly
-smQ
+gIw
flk
esH
jcW
@@ -106841,7 +106843,7 @@ uWy
jwX
lbc
iEd
-kZA
+nLi
bPT
slG
jcW
@@ -106998,10 +107000,10 @@ gBk
iMO
oUD
dkb
-cHR
-azn
-vur
-lxb
+vla
+oaQ
+jAh
+dLA
qLO
mtI
mtI
@@ -107018,7 +107020,7 @@ mjV
rId
ifC
ifC
-bsl
+dAm
ifC
wBP
vMT
@@ -107098,7 +107100,7 @@ kTT
wkj
lWC
iEd
-gGx
+ssA
cdH
slN
jcW
@@ -107258,7 +107260,7 @@ hhv
hhv
hhv
hhv
-pPo
+uzj
qLO
mtI
mtI
@@ -107275,10 +107277,10 @@ uSo
lZI
sFf
cuM
-qEC
+iFf
njd
njd
-ylT
+vpH
mnm
uzb
sWG
@@ -107355,8 +107357,8 @@ hLb
vJn
hLb
iEd
-hPr
-eZr
+vKM
+lEc
tMI
jcW
aOs
@@ -107515,7 +107517,7 @@ aaI
aym
aKu
hhv
-sXT
+kdl
qLO
mtI
mtI
@@ -107555,16 +107557,16 @@ dbJ
wap
jEw
pHU
-nju
-iQt
-xNG
-kFb
-jsT
-thr
-jof
-auq
-cvt
-vIY
+tLG
+qJB
+acK
+tJq
+iEM
+pCU
+eWt
+jmt
+tmx
+feO
wzY
oiI
oiI
@@ -107772,7 +107774,7 @@ sJq
eAl
rIH
hhv
-euT
+uVq
qLO
mtI
mtI
@@ -107811,18 +107813,18 @@ hdp
mqz
cmj
iLp
-oEG
-gis
-fiS
+taR
+aUk
+gkv
cUv
-atI
-qBk
-ktQ
-hGy
+wMH
+mqU
+nwH
+mQn
hCu
-pbg
-lkm
-qEf
+sTT
+wbM
+dYe
iLp
aJZ
uhy
@@ -107870,7 +107872,7 @@ hJH
yhx
iKS
dlF
-eEf
+luR
nsz
jcW
wXl
@@ -108041,7 +108043,7 @@ uQP
pNF
xtP
uZg
-dyS
+aDQ
ldH
wNH
nTv
@@ -108066,22 +108068,22 @@ gHo
nQL
taf
dcw
-qUt
-nJc
-mqc
-yhv
+bNC
+wch
+wMw
+dWL
odf
wlS
-wCY
-mFK
-ocD
-hGy
+iUK
+nqV
+kok
+mQn
wlS
iDQ
-aXE
-qQj
-qFJ
-njM
+aEU
+wDl
+jzf
+mwe
bpQ
qRk
fRc
@@ -108127,10 +108129,10 @@ iEd
iKS
iKS
ldI
-eEf
+luR
qoc
jcW
-caI
+uUa
aFw
xXa
nlM
@@ -108286,12 +108288,12 @@ eIK
piE
bly
hhv
-fmg
+rLx
qLO
gtD
mOm
tQy
-hGt
+fbT
soj
dHL
mUn
@@ -108300,7 +108302,7 @@ caA
xJA
wnJ
iUx
-qCN
+fza
jTr
oiw
pxh
@@ -108323,22 +108325,22 @@ seT
hdp
hdp
xgv
-vjz
-qBZ
+kWF
+iAo
hVF
sTd
ylB
wlS
-wCY
-uLd
-oWr
-hGy
+iUK
+lIb
+jXb
+mQn
wlS
jvs
hCu
qsq
-jpI
-nbv
+uWA
+vmw
oeh
eXl
eXl
@@ -108363,7 +108365,7 @@ nvJ
kPZ
iEd
xAq
-sQZ
+iDp
vfR
fiW
hYg
@@ -108380,12 +108382,12 @@ iEd
iEd
iEd
iEd
-xkC
-rHa
-rHa
-ewh
-qYf
-sxE
+xtI
+wab
+wab
+cdb
+cOJ
+pVq
qhN
epO
arL
@@ -108543,7 +108545,7 @@ hhv
hhv
hhv
hhv
-eaw
+xwi
qLO
ifC
ifC
@@ -108562,11 +108564,11 @@ xxl
hVD
uce
hae
-heS
+dCW
aRF
ilH
awG
-oEA
+gjQ
hae
eJN
fld
@@ -108579,24 +108581,24 @@ nAt
seT
gqH
gep
-oRP
-rXp
+fgH
+aLa
bCz
iDQ
wlS
gky
wlS
-nyz
-ePP
-sjy
-muC
+pbC
+ctf
+tbn
+drx
wlS
wlS
wlS
iDQ
wlS
-pUj
-lCr
+mZC
+lpb
chV
eXl
bzO
@@ -108631,11 +108633,11 @@ scb
jkG
iLe
scb
-dnH
-jKr
-mvu
-qlC
-knr
+nTO
+fXB
+nKM
+hdh
+jTS
hwg
xyQ
cKp
@@ -108644,7 +108646,7 @@ eoY
cKp
cKp
jcW
-kkq
+dfU
gcc
nSh
nSh
@@ -108800,7 +108802,7 @@ lyT
vvg
gnD
oif
-uwf
+oIJ
qLO
qpo
nQR
@@ -108835,26 +108837,26 @@ iis
uZs
alb
pHU
-oRP
-itB
-fSM
+fgH
+lvH
+ukY
fbi
wlS
wlS
-lxl
-gLa
+cOv
+umD
inc
-dga
-fdc
+gNq
+wLI
fhX
-lfW
-kma
+bTD
+tFW
wlS
wlS
roY
-pvw
-cFx
-lCr
+plG
+oza
+lpb
cFD
ppw
jSx
@@ -108888,7 +108890,7 @@ uHl
eRS
pdq
scb
-mqE
+uIS
kwh
pJh
kwh
@@ -109056,15 +109058,15 @@ hsm
xFg
oif
tKJ
-vZp
-eEJ
+xNB
+pPX
qLO
aKq
eyw
-aAO
+ncj
ifC
uuK
-vpd
+gTv
iIu
arH
kIg
@@ -109092,26 +109094,26 @@ cfg
aoG
aBO
jwn
-itB
-ybD
+lvH
+vRg
iek
wlS
wlS
hXo
-hMp
-hmg
-mSV
-uCH
-eqi
-rhz
-iQm
-aty
-feg
+eEp
+gpA
+keh
+wUY
+utQ
+iJr
+mrI
+qbm
+dHQ
wlS
sTd
smT
-jPF
-cFx
+lZH
+oza
qBR
ppw
jSx
@@ -109145,7 +109147,7 @@ scb
aUR
xzU
scb
-mqE
+uIS
kwh
cnX
ulz
@@ -109158,7 +109160,7 @@ igj
mxn
rcc
jcW
-rMd
+dbq
mSs
niG
niG
@@ -109349,26 +109351,26 @@ seT
rwm
seT
wzd
-qpu
+xNe
iDQ
qKa
wlS
wlS
vSd
-sQn
-vox
+vSH
+pJX
iZt
bxa
bxa
iKK
-jRe
-tWC
-hjN
+sDk
+ocO
+aZY
eOD
cYH
jgD
tmM
-wFD
+afN
vdZ
bzO
aDC
@@ -109383,7 +109385,7 @@ ykx
wFl
eeK
afb
-mqg
+cIY
ykx
xmx
rpF
@@ -109606,26 +109608,26 @@ bGs
nOQ
laA
wIQ
-cuU
-oTO
-oTO
-oTO
-tBo
+gvo
+epQ
+epQ
+epQ
+yeC
inc
-dHP
+cOc
tWU
-fne
-oXn
-oXn
-cMl
+jWT
+tNA
+tNA
+fvV
hTQ
-brn
+lPX
xOP
-pEr
-uLe
-xSZ
-wwd
-wZl
+oxU
+bZr
+trt
+blM
+qeQ
uME
laA
nOQ
@@ -109660,7 +109662,7 @@ mHq
agM
gJr
rAf
-jyD
+ajt
mxA
iIv
oOt
@@ -109672,7 +109674,7 @@ xxF
wIr
vrh
tBa
-vBJ
+hZM
dET
rfM
sVR
@@ -109788,7 +109790,7 @@ yeA
yeA
gsA
vcX
-cDk
+xYV
aWK
dLf
uGh
@@ -109863,26 +109865,26 @@ epS
xaS
xzx
tnC
-vOn
-lrB
-uKo
-xdo
-fCN
-xdo
-ghK
-muH
-odp
-jdh
-eMU
-ckg
-dfy
-hBG
-qdU
-ciQ
-wXE
-fzk
-rWI
-bZJ
+oPm
+eJT
+uif
+jYc
+euO
+jYc
+bMq
+uux
+xUd
+izQ
+aKM
+bpZ
+dRK
+kHx
+jds
+xqm
+gao
+bss
+uIx
+fEe
keJ
sGG
sGG
@@ -109917,7 +109919,7 @@ xtp
tOd
xzI
kLF
-vuB
+qDQ
mxA
iIv
xYL
@@ -110120,26 +110122,26 @@ oao
qkS
rUQ
blK
-hIE
-tEm
-vGo
-xjh
-xjh
-jsh
-rzS
-muH
-odp
-jdh
-jdh
-ckg
-dfy
-kgi
-cBO
-ogs
-cBO
-sXf
-cyb
-cBO
+gpB
+goW
+sgd
+vlO
+vlO
+lWe
+oZQ
+uux
+xUd
+izQ
+izQ
+bpZ
+dRK
+nXT
+ssm
+gVy
+ssm
+jfo
+aYW
+ssm
kJB
aVu
aVu
@@ -110302,7 +110304,7 @@ yeA
yeA
gsA
vcX
-nrb
+day
ntn
kpk
uGh
@@ -110377,26 +110379,26 @@ bGs
tfV
vUy
fNR
-ggC
-nhC
-sij
-sij
-mIZ
+xii
+hmk
+vUY
+vUY
+kkK
wpL
-tni
+aAo
hsJ
-rAx
-oeM
-oeM
-hJK
+bQz
+mXI
+mXI
+apR
stl
-kZj
+glv
qcI
-dDD
-wfv
-wfv
-lOQ
-cFx
+tIK
+seS
+seS
+ifP
+oza
uVt
vUy
ybW
@@ -110595,9 +110597,9 @@ grE
moP
gOk
dFh
-fcE
-xvA
-gHS
+ykQ
+jfV
+bdw
fxw
cMI
cMI
@@ -110634,26 +110636,26 @@ oxQ
rgh
oxQ
oVP
-bDH
+afF
ahD
smT
wlS
wlS
toW
-rES
-eXQ
+rqc
+dzr
pEA
nlx
nlx
nfS
-vDd
-mTH
-veu
+nGO
+wDb
+mtu
nQW
tLv
tmM
jgD
-kxr
+bUN
mxy
dFC
dFC
@@ -110891,26 +110893,26 @@ xlV
fNs
mlR
xgv
-qhj
-udI
+nKR
+vvV
spz
wlS
wlS
hXo
-agA
-fjM
-fEz
-twT
-uSz
-pmn
-pEb
-tYk
-eTH
+dNq
+bhS
+jrn
+uOC
+aYq
+yej
+coE
+mxz
+dAK
wlS
qKa
iDQ
-mCL
-wZl
+wQP
+qeQ
oeh
dFC
wYg
@@ -110958,11 +110960,11 @@ pLT
qPQ
kaQ
kaQ
-rHP
+pFx
xwZ
-bCx
-dmU
-qcH
+rzr
+aEF
+dch
rFN
cNj
nyb
@@ -111148,26 +111150,26 @@ wuz
iBJ
heA
eRL
-ymh
-dGC
-pII
+ybw
+ymb
+hyp
xMW
wlS
wlS
-ppT
-eQf
+ihE
+dqO
wpL
-mQE
-pjQ
+aGj
+lih
qcI
-pOD
-xdj
+hNj
+hAe
wlS
fcL
wlS
-jMm
-wZl
-ajn
+aRU
+qeQ
+otZ
pBg
dFC
wYg
@@ -111212,7 +111214,7 @@ ffc
aZJ
fmy
iEO
-rdM
+rmj
sTA
wKp
tKh
@@ -111387,7 +111389,7 @@ ebF
oVd
bsT
tqN
-vKw
+lQl
oOu
rBK
sGv
@@ -111406,24 +111408,24 @@ tGT
tGT
tGT
ePp
-cTa
-rXp
+mrz
+aLa
qsq
smT
tib
dWQ
wlS
-nyz
-dAm
-grI
-muC
+pbC
+iBo
+oPs
+drx
wlS
wlS
wlS
kPT
odf
-hTM
-ajn
+xgI
+otZ
nQt
dFC
dFC
@@ -111644,7 +111646,7 @@ ebF
bsT
sYx
cQA
-vKw
+lQl
oOu
dCs
bdB
@@ -111664,22 +111666,22 @@ xZT
tGT
mNf
tEG
-lhX
-aaF
+uDw
+dsd
smT
odf
qHl
wlS
-wCY
-oYh
-grI
-hGy
+iUK
+wxC
+oPs
+mQn
wlS
wlS
cGr
iDQ
-iKw
-tRS
+ccs
+rUY
igJ
dFC
dFC
@@ -111901,7 +111903,7 @@ ebF
tqN
peH
oVd
-vKw
+lQl
oOu
dCs
kSP
@@ -111921,22 +111923,22 @@ xWy
bpm
hQf
sTz
-gnU
-mHU
-cnK
-iNo
+vYZ
+oxR
+fes
+mFG
olO
fqN
-wCY
-gEE
-lFf
-hGy
+iUK
+cbi
+mSX
+mQn
smT
smT
-sMe
-ouv
-mIH
-fna
+sqi
+bEj
+wcY
+xyh
nQt
aQm
wYg
@@ -112180,18 +112182,18 @@ ntf
wkt
oGS
qeL
-qyo
-oYy
-ikF
+jvi
+ylO
+cir
smT
-wCY
-qWY
-vVB
-whx
+iUK
+qYH
+qBN
+cdw
nVO
-poD
-cMZ
-jIv
+kVc
+nhU
+hMb
gNV
pVM
uhy
@@ -112438,19 +112440,19 @@ hdp
czh
hdp
cnY
-vIY
-iEz
-azJ
-pCI
-bra
-vyY
-lvK
-ehk
-nEF
-vIY
+feO
+ceE
+ccp
+tnQ
+rGU
+eSj
+oJy
+lxI
+kgZ
+feO
pBg
vAC
-cZj
+jZz
qxw
dFC
dFC
@@ -112478,8 +112480,8 @@ leR
jNP
yak
cKB
-xqq
-pUv
+bOn
+nSB
fHF
iYK
bgr
@@ -112707,7 +112709,7 @@ piC
rVH
dFC
dFC
-cMV
+aot
qtC
rtY
fdb
@@ -112735,7 +112737,7 @@ aEE
aQU
dun
cKB
-ibc
+hHs
duB
hfs
reb
@@ -112936,7 +112938,7 @@ pZQ
xzs
szF
qEZ
-wdi
+wcd
uWa
aMA
mVN
@@ -112964,7 +112966,7 @@ dFC
dFC
dFC
dFC
-goF
+eAz
eGd
eGd
eGd
@@ -112972,7 +112974,7 @@ csj
eGd
eGd
vRP
-pLm
+kJR
rfj
geH
qqD
@@ -112992,7 +112994,7 @@ fkb
vCB
xlU
dwu
-fYI
+ajC
msM
teB
faQ
@@ -113171,7 +113173,7 @@ cXo
rSM
fSf
rbT
-oLP
+nyl
kiN
rNr
puT
@@ -113191,26 +113193,26 @@ sWQ
krW
wvS
pUl
-rwO
-rwO
-ejB
-eVc
-mpI
-mpI
-ard
-mpI
-fMD
-oJi
-mpI
-mpI
-jaG
+qkA
+qkA
+sCB
+xrL
+uPT
+uPT
+byj
+uPT
+uvB
+iyV
+uPT
+uPT
+uIm
xxe
-vMR
-vMR
-mzr
-vMR
-bfa
-vLB
+pMw
+pMw
+pzG
+pMw
+jhy
+sjT
aue
srO
krU
@@ -113221,7 +113223,7 @@ wYg
wYg
iLd
dFC
-oVO
+aAP
kib
qBy
kNX
@@ -113249,7 +113251,7 @@ xuC
fwT
hPp
shZ
-ibc
+hHs
vlT
eIa
xVk
@@ -113428,7 +113430,7 @@ gyv
oQW
fSf
tJh
-gDg
+tcg
vkZ
rNr
gJX
@@ -113467,7 +113469,7 @@ rfl
rfl
rfl
rfl
-qYC
+hcc
hdp
bGs
qCn
@@ -113478,14 +113480,14 @@ wYg
gdM
tov
dFC
-jgU
+xwz
eGd
guk
xnK
nOM
jkr
maA
-nfH
+aWv
cyW
pPg
oym
@@ -113497,8 +113499,8 @@ lWZ
tFu
oNF
poJ
-lhV
-rZa
+aDX
+tIj
req
lLX
nkj
@@ -113506,7 +113508,7 @@ tFu
pJP
lyQ
shZ
-ibc
+hHs
pfL
uXG
xpx
@@ -113685,17 +113687,17 @@ jGx
jGx
fHR
ilv
-jyo
-oYk
+jOL
+lhK
wHP
tEK
-pPj
-bDq
+fZl
+dwv
rNr
rBT
sgc
rNr
-eiW
+vsN
rNr
kMF
yeA
@@ -113724,7 +113726,7 @@ mtE
iqV
dJr
iFN
-xIf
+ndX
xxe
bQK
wPd
@@ -113735,7 +113737,7 @@ tfA
wYg
uGX
dFC
-gPt
+qNu
eGd
wEe
wEe
@@ -113763,7 +113765,7 @@ kOy
kOy
kOy
bWm
-ibc
+hHs
roB
xAe
iRY
@@ -113942,12 +113944,12 @@ gsA
jGx
rNr
rNr
-uyb
+jUP
rNr
rNr
emB
-toN
-bAe
+qZs
+uFN
rNr
rNr
rNr
@@ -113959,7 +113961,7 @@ vtI
vtI
iAG
cuo
-boy
+dDd
fQM
iMw
mVN
@@ -113987,12 +113989,12 @@ iJe
kgH
wAl
tpI
-jfD
-hky
-iRN
-jMh
-jBo
-qDc
+tXK
+jNz
+ttC
+tLa
+lhk
+sri
eGd
eED
jdC
@@ -114020,7 +114022,7 @@ nZj
cLH
uXK
bWm
-iJd
+yar
wyb
wyb
evy
@@ -114030,7 +114032,7 @@ jGs
eXE
dtY
qTs
-qSv
+nOT
qTs
cpa
hGI
@@ -114198,13 +114200,13 @@ gsA
yeA
vtI
vtI
-hyD
-rjX
+oyQ
+vBC
vks
vtI
iDw
-eYc
-dwP
+iKp
+vgH
wIA
hKc
ikY
@@ -114216,7 +114218,7 @@ sAw
jcE
vtI
oTD
-ioG
+aGz
jRg
hhV
mVN
@@ -114246,7 +114248,7 @@ wAl
fqb
dFC
dFC
-mGd
+kwd
dFC
dFC
dFC
@@ -114454,10 +114456,10 @@ ewB
gsA
gsA
vtI
-wrO
-xVD
-jSt
-gli
+hbn
+rFf
+skT
+vcl
vtI
rNr
cwJ
@@ -114473,7 +114475,7 @@ opQ
dHK
vtI
kJA
-xhM
+dhX
jkD
hdp
mVN
@@ -114495,7 +114497,7 @@ fxG
qXx
ykz
lFE
-eUV
+oaP
rfl
iJe
kgH
@@ -114503,7 +114505,7 @@ wAl
tpI
eDt
fsb
-gPt
+qNu
pMv
tJu
gWo
@@ -114513,7 +114515,7 @@ eTl
lzD
ooT
lxi
-mnB
+wxs
mYT
dxV
ncf
@@ -114534,7 +114536,7 @@ gRY
wyV
vJf
bWm
-ibc
+hHs
shZ
tTE
kfB
@@ -114543,9 +114545,9 @@ juv
wVX
eNK
pTW
-wyC
-wyC
-wyC
+nmB
+nmB
+nmB
pTW
rsY
jTQ
@@ -114711,10 +114713,10 @@ gsA
gsA
dGP
dGP
-gEV
-wVK
-nPn
-lgK
+cwz
+eYS
+cIB
+bQU
vtI
sMw
upb
@@ -114730,7 +114732,7 @@ qRV
tAq
vtI
nZk
-mLh
+hrN
lBL
iMw
mVN
@@ -114760,7 +114762,7 @@ wAl
cIP
dFC
wgc
-gPt
+qNu
ihz
svt
gHZ
@@ -114770,10 +114772,10 @@ nOM
xnK
eTl
maA
-suU
+fqu
pPs
nkm
-hop
+hSy
vRP
fAc
hmn
@@ -114791,7 +114793,7 @@ szG
nCo
ufy
bWm
-ibc
+hHs
iBH
pWx
drU
@@ -114800,9 +114802,9 @@ tlT
wVX
eNK
pTW
-wyC
-wyC
-wyC
+nmB
+nmB
+nmB
pTW
kYB
hPn
@@ -114968,13 +114970,13 @@ yeA
yeA
nQf
lEo
-gEV
-fHs
-mKX
-lgK
-wSB
-lxn
-xxE
+cwz
+tSS
+kSF
+bQU
+vQi
+bnk
+keN
pDn
wjX
wjX
@@ -114987,7 +114989,7 @@ vdf
eym
vtI
hvH
-xhM
+dhX
aIR
fwL
fwL
@@ -115017,7 +115019,7 @@ wAl
mkd
dFC
dFC
-bha
+jJx
dFC
wQK
wYg
@@ -115030,7 +115032,7 @@ maA
rRh
sUT
uMp
-crF
+klV
vRP
huT
qns
@@ -115048,7 +115050,7 @@ qkw
lOb
wWf
bWm
-ibc
+hHs
shZ
sEj
tMV
@@ -115225,10 +115227,10 @@ gsA
gsA
dGP
dGP
-gEV
-nql
-iAu
-trX
+cwz
+fuP
+oGj
+hgC
vtI
xjE
dYn
@@ -115244,7 +115246,7 @@ aUS
lQx
vtI
uQx
-xhM
+dhX
nzy
jhr
uEB
@@ -115265,8 +115267,8 @@ fBp
wlr
bmu
mWi
-sFq
-cTh
+sRu
+yhv
ovp
iJe
kgH
@@ -115274,7 +115276,7 @@ wAl
fKE
dFC
rQh
-gPt
+qNu
wYg
wYg
gHZ
@@ -115305,7 +115307,7 @@ fhV
soi
lHp
bWm
-ibc
+hHs
kMc
eYP
shZ
@@ -115315,7 +115317,7 @@ xVm
bws
tlL
vdV
-gjB
+pum
sOT
tlL
tZn
@@ -115482,10 +115484,10 @@ ewB
gsA
gsA
vtI
-oeB
-liz
-gCa
-sMa
+hxx
+ems
+oZh
+vrg
wII
wII
wII
@@ -115501,7 +115503,7 @@ dLk
wyg
vtI
kXn
-rpu
+jTC
rev
fwL
fHi
@@ -115522,8 +115524,8 @@ jfn
okR
bZA
mWi
-iyq
-eZQ
+rKl
+rfV
ovp
iJe
kgH
@@ -115531,7 +115533,7 @@ wAl
mkd
dFC
xFA
-qzz
+euQ
rtY
rtY
rtY
@@ -115562,10 +115564,10 @@ hig
vKu
uYm
mvj
-fPi
-ltK
-ltK
-bvz
+vQp
+dYo
+dYo
+mea
iRY
tfw
wVX
@@ -115758,7 +115760,7 @@ uZv
cbp
vtI
mLp
-xhM
+dhX
rqC
cHN
mBT
@@ -115779,16 +115781,16 @@ joH
ozn
tdk
lSp
-wVy
-sKy
+yke
+ulC
ovp
iJe
kgH
wAl
tpI
-jfD
-wSi
-obH
+tXK
+qwU
+lHr
tJu
juT
oxm
@@ -115822,15 +115824,15 @@ bWm
kII
rAi
uog
-ibc
+hHs
iRY
wAP
wVX
eNK
pTW
-wyC
-wyC
-wyC
+nmB
+nmB
+nmB
pTW
uFQ
dEY
@@ -116015,7 +116017,7 @@ bUS
tiF
vtI
jPq
-xhM
+dhX
mOk
fwL
bBv
@@ -116079,15 +116081,15 @@ bWm
ciA
muZ
bWl
-ibc
+hHs
iRY
eHw
wVX
eNK
pTW
-wyC
-wyC
-wyC
+nmB
+nmB
+nmB
pTW
hTv
gmc
@@ -116272,7 +116274,7 @@ cDy
glM
vtI
pTc
-xhM
+dhX
lOv
fwL
wAq
@@ -116336,7 +116338,7 @@ xat
alT
eHp
qVB
-ibc
+hHs
iRY
otm
xVm
@@ -116529,7 +116531,7 @@ aWD
jiR
vtI
iES
-qnm
+bpr
eik
fwL
mod
@@ -116593,7 +116595,7 @@ xat
oef
ero
dHW
-ibc
+hHs
oUC
tMP
xVm
@@ -116850,7 +116852,7 @@ vvi
dHW
dHW
dHW
-ibc
+hHs
iRY
hec
xVm
@@ -117076,8 +117078,8 @@ rjl
hti
dKh
wAF
-xwf
-eIE
+mQR
+xCc
mSG
xCe
lDK
@@ -117107,7 +117109,7 @@ xat
kMc
gZZ
cpU
-ibc
+hHs
iRY
dMD
xVm
@@ -117333,9 +117335,9 @@ lZE
dGE
dtm
wAF
-pqL
-dOi
-pgR
+uBh
+lbF
+ckQ
xCe
lDK
oji
@@ -117364,7 +117366,7 @@ xat
udq
kMc
ewt
-ibc
+hHs
iRY
lBK
xVm
@@ -117621,7 +117623,7 @@ rJL
kJH
dkt
maw
-dnF
+jeb
leq
dBS
qXd
@@ -118100,8 +118102,8 @@ uWD
wAl
tpI
ouQ
-qfC
-xCv
+xtb
+vxA
vDU
vwm
cJN
@@ -118132,10 +118134,10 @@ qBV
tYL
lQB
oXb
-aYW
+bfC
shZ
wEm
-ibc
+hHs
dHW
vEd
iRY
@@ -118392,7 +118394,7 @@ kMc
shZ
shZ
dHW
-ibc
+hHs
dHW
cXE
gLb
@@ -118406,7 +118408,7 @@ xtQ
gkK
qki
xHa
-qCu
+ntP
drp
hcF
htm
@@ -118618,10 +118620,10 @@ vuz
vuz
cfc
pKN
-jOj
-oTs
-evO
-jBF
+vaf
+mGe
+mTQ
+cXL
qPp
mHh
mGL
@@ -118643,13 +118645,13 @@ rYY
fYH
wFU
qgy
-xqq
-blg
-blg
-xTD
+bOn
+byG
+byG
+oix
ycs
-blg
-cKR
+byG
+wWF
eHp
dHW
gLb
@@ -118876,8 +118878,8 @@ wae
sNL
cdn
dlf
-okc
-rFR
+rHk
+xRn
bdI
whe
cgX
@@ -118896,11 +118898,11 @@ khR
tEt
sMK
lqc
-sJf
-sJf
-sJf
-rwU
-tSH
+sqr
+sqr
+sqr
+ogP
+oDE
uFm
dHW
qih
@@ -119157,7 +119159,7 @@ eUB
sSl
sLv
dHW
-vzg
+ovC
kkj
wLd
ujz
@@ -119390,8 +119392,8 @@ vrX
amC
heE
gyK
-gOl
-wmb
+oDf
+tYv
pWy
qPp
xFb
@@ -119647,8 +119649,8 @@ vhf
amC
heE
uoF
-okc
-pkY
+rHk
+gYQ
two
qPp
mzx
@@ -120161,8 +120163,8 @@ nbQ
nes
gFW
hwc
-bMC
-xwX
+cmP
+wgt
nXb
xFS
yie
@@ -120417,10 +120419,10 @@ nXU
jbn
amC
heE
-jOj
-qcG
-qfC
-jBF
+vaf
+vOg
+xtb
+cXL
qPp
eHz
kVX
@@ -120645,8 +120647,8 @@ sFt
lkT
gTM
dVH
-aqm
-tJf
+oQd
+kYW
jpK
noe
tBu
@@ -120719,19 +120721,19 @@ egp
eNg
bhN
yeA
-pEw
-pEw
-pEw
-pEw
-pEw
+igH
+igH
+igH
+igH
+igH
odm
lHv
tbt
-pEw
-pEw
-pEw
-pEw
-pEw
+igH
+igH
+igH
+igH
+igH
gsA
ewB
gsA
@@ -120900,9 +120902,9 @@ kOP
qrR
mta
wZH
-oIl
-nwR
-qwZ
+lbr
+ljm
+lTL
jxn
otE
azX
@@ -121160,7 +121162,7 @@ uCC
uCC
oUl
uCC
-pqP
+dMS
otE
otE
cvm
@@ -121233,19 +121235,19 @@ bhN
gsA
gsA
yeA
-pQd
-pQd
-pQd
-pQd
-pQd
+mAU
+mAU
+mAU
+mAU
+mAU
odm
jxz
tbt
-pQd
-pQd
-pQd
-pQd
-pQd
+mAU
+mAU
+mAU
+mAU
+mAU
gsA
ewB
oHE
@@ -121473,7 +121475,7 @@ mbJ
eTq
gSn
abk
-vMj
+wON
tfq
dHW
dHW
@@ -121748,17 +121750,17 @@ gsA
gsA
gsA
yeA
-pEw
-pEw
-pEw
-pEw
+igH
+igH
+igH
+igH
odm
jxz
tbt
-pEw
-pEw
-pEw
-pEw
+igH
+igH
+igH
+igH
gsA
gsA
ewB
@@ -122262,17 +122264,17 @@ gsA
gsA
ewB
gsA
-pQd
-pQd
-pQd
-pQd
+mAU
+mAU
+mAU
+mAU
odm
omU
tbt
-pQd
-pQd
-pQd
-pQd
+mAU
+mAU
+mAU
+mAU
gsA
ewB
gsA
@@ -122777,15 +122779,15 @@ gsA
ewB
gsA
yeA
-pEw
-pEw
-pEw
+igH
+igH
+igH
odm
jxz
tbt
-pEw
-pEw
-pEw
+igH
+igH
+igH
yeA
gsA
ewB
@@ -123291,15 +123293,15 @@ yeA
gsA
gsA
gsA
-pQd
-pQd
-pQd
+mAU
+mAU
+mAU
odm
nBj
tbt
-pQd
-pQd
-pQd
+mAU
+mAU
+mAU
gsA
gsA
gsA
@@ -123805,15 +123807,15 @@ yeA
yeA
ewB
gsA
-pEw
-pEw
-pEw
+igH
+igH
+igH
odm
jxz
tbt
-pEw
-pEw
-pEw
+igH
+igH
+igH
gsA
ewB
yeA
@@ -124319,15 +124321,15 @@ yeA
yeA
ewB
yeA
-pQd
-pQd
-pQd
+mAU
+mAU
+mAU
odm
jxz
tbt
-pQd
-pQd
-pQd
+mAU
+mAU
+mAU
yeA
ewB
yeA
@@ -125264,19 +125266,19 @@ gsA
gsA
gsA
gsA
-oJn
-oJn
-oJn
-oJn
-oJn
+mqj
+mqj
+mqj
+mqj
+mqj
odm
pft
tbt
-oJn
-oJn
-oJn
-oJn
-oJn
+mqj
+mqj
+mqj
+mqj
+mqj
yeA
gsA
gsA
@@ -125778,19 +125780,19 @@ gsA
gsA
ewB
gsA
-ihy
-ihy
-ihy
-ihy
-ihy
+vzW
+vzW
+vzW
+vzW
+vzW
odm
rYv
tbt
-ihy
-ihy
-ihy
-ihy
-ihy
+vzW
+vzW
+vzW
+vzW
+vzW
yeA
gsA
ewB
@@ -126293,17 +126295,17 @@ yeA
ewB
gsA
yeA
-oJn
-oJn
-oJn
-oJn
+mqj
+mqj
+mqj
+mqj
odm
pft
tbt
-oJn
-oJn
-oJn
-oJn
+mqj
+mqj
+mqj
+mqj
yeA
gsA
gsA
@@ -126807,17 +126809,17 @@ yeA
gsA
ewB
gsA
-ihy
-ihy
-ihy
-ihy
+vzW
+vzW
+vzW
+vzW
odm
fbn
tbt
-ihy
-ihy
-ihy
-ihy
+vzW
+vzW
+vzW
+vzW
yeA
ewB
gsA
@@ -127322,15 +127324,15 @@ yeA
ewB
gsA
yeA
-oJn
-oJn
-oJn
+mqj
+mqj
+mqj
odm
rYv
tbt
-oJn
-oJn
-oJn
+mqj
+mqj
+mqj
yeA
gsA
ewB
@@ -127836,15 +127838,15 @@ yeA
gsA
gsA
gsA
-ihy
-ihy
-ihy
+vzW
+vzW
+vzW
odm
pft
tbt
-ihy
-ihy
-ihy
+vzW
+vzW
+vzW
yeA
gsA
gsA
@@ -128350,15 +128352,15 @@ yeA
gsA
ewB
gsA
-oJn
-oJn
-oJn
+mqj
+mqj
+mqj
odm
rYv
tbt
-oJn
-oJn
-oJn
+mqj
+mqj
+mqj
yeA
ewB
yeA
@@ -128864,15 +128866,15 @@ yeA
yeA
ewB
yeA
-ihy
-ihy
-ihy
+vzW
+vzW
+vzW
odm
rYv
tbt
-ihy
-ihy
-ihy
+vzW
+vzW
+vzW
yeA
ewB
yeA
diff --git a/_maps/shuttles/emergency/emergency_tiny.dmm b/_maps/shuttles/emergency/emergency_tiny.dmm
index 6efab5788f75e..a42f4d188ef42 100644
--- a/_maps/shuttles/emergency/emergency_tiny.dmm
+++ b/_maps/shuttles/emergency/emergency_tiny.dmm
@@ -379,7 +379,7 @@
/area/shuttle/escape)
"zZ" = (
/obj/machinery/door/airlock/security{
- req_access_txt = "2"
+ req_one_access_txt = "2;19"
},
/obj/effect/turf_decal/stripes/closeup,
/turf/open/floor/mineral/plastitanium/red/brig,
diff --git a/code/game/objects/structures/crates_lockers/closets/secure/engineering.dm b/code/game/objects/structures/crates_lockers/closets/secure/engineering.dm
index 1f5756a5449f9..a3940adc01efb 100644
--- a/code/game/objects/structures/crates_lockers/closets/secure/engineering.dm
+++ b/code/game/objects/structures/crates_lockers/closets/secure/engineering.dm
@@ -110,6 +110,7 @@
new /obj/item/clothing/mask/gas(src)
new /obj/item/clothing/glasses/meson/engine(src)
new /obj/item/storage/box/emptysandbags(src)
+ new /obj/item/clothing/gloves/color/yellow
/obj/structure/closet/secure_closet/atmospherics
name = "\proper atmospheric technician's locker"
From e48a6be0f3b5c68ba4eca6bf6933852cb814be68 Mon Sep 17 00:00:00 2001
From: ss13-beebot <56381746+ss13-beebot@users.noreply.github.com>
Date: Thu, 11 Jul 2024 14:17:38 -0500
Subject: [PATCH 05/15] Automatic changelog generation for PR #11092 [ci skip]
---
html/changelogs/AutoChangeLog-pr-11092.yml | 6 ++++++
1 file changed, 6 insertions(+)
create mode 100644 html/changelogs/AutoChangeLog-pr-11092.yml
diff --git a/html/changelogs/AutoChangeLog-pr-11092.yml b/html/changelogs/AutoChangeLog-pr-11092.yml
new file mode 100644
index 0000000000000..f25449bc31dd9
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-11092.yml
@@ -0,0 +1,6 @@
+author: MarkusLarsson421
+delete-after: true
+changes:
+ - balance: Added or moved insuls to Engineering lockers.
+ - rscadd: Gave the RD a departmental console so they can do ID stuff.
+ - bugfix: Fixed Engineering disposals chute.
From 6a9f77fd12d306e3ab28dc9d77d8b2b4081f3e12 Mon Sep 17 00:00:00 2001
From: ss13-beebot <56381746+ss13-beebot@users.noreply.github.com>
Date: Thu, 11 Jul 2024 20:03:51 +0000
Subject: [PATCH 06/15] Automatic changelog compile [ci skip]
---
html/changelog.html | 6 ++++++
html/changelogs/.all_changelog.yml | 4 ++++
html/changelogs/AutoChangeLog-pr-11092.yml | 6 ------
3 files changed, 10 insertions(+), 6 deletions(-)
delete mode 100644 html/changelogs/AutoChangeLog-pr-11092.yml
diff --git a/html/changelog.html b/html/changelog.html
index 6893a8804d2bc..11b2ce0e9dfde 100644
--- a/html/changelog.html
+++ b/html/changelog.html
@@ -62,6 +62,12 @@ Geatish updated:
- you can now butt cigarettes on other people if you're on harm intent
- cigarettes will have their smoke time reduced and have a chance to get extinguished if attacking on non harm intent
+
MarkusLarsson421 updated:
+
+ - Added or moved insuls to Engineering lockers.
+ - Gave the RD a departmental console so they can do ID stuff.
+ - Fixed Engineering disposals chute.
+
tonty updated:
- crewmembers no longer get cold feet when attempting to piggyback eachother
diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml
index 82fa9f3ef05e2..000b5e055d80e 100644
--- a/html/changelogs/.all_changelog.yml
+++ b/html/changelogs/.all_changelog.yml
@@ -43524,5 +43524,9 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py.
- tweak: you can now butt cigarettes on other people if you're on harm intent
- tweak: cigarettes will have their smoke time reduced and have a chance to get
extinguished if attacking on non harm intent
+ MarkusLarsson421:
+ - balance: Added or moved insuls to Engineering lockers.
+ - rscadd: Gave the RD a departmental console so they can do ID stuff.
+ - bugfix: Fixed Engineering disposals chute.
tonty:
- bugfix: crewmembers no longer get cold feet when attempting to piggyback eachother
diff --git a/html/changelogs/AutoChangeLog-pr-11092.yml b/html/changelogs/AutoChangeLog-pr-11092.yml
deleted file mode 100644
index f25449bc31dd9..0000000000000
--- a/html/changelogs/AutoChangeLog-pr-11092.yml
+++ /dev/null
@@ -1,6 +0,0 @@
-author: MarkusLarsson421
-delete-after: true
-changes:
- - balance: Added or moved insuls to Engineering lockers.
- - rscadd: Gave the RD a departmental console so they can do ID stuff.
- - bugfix: Fixed Engineering disposals chute.
From 1fe0c545b32b8da01e00febf9a1717dc316b058d Mon Sep 17 00:00:00 2001
From: ss13-beebot <56381746+ss13-beebot@users.noreply.github.com>
Date: Fri, 12 Jul 2024 00:11:41 +0000
Subject: [PATCH 07/15] Automatic changelog compile [ci skip]
---
html/changelog.html | 19 -------------------
1 file changed, 19 deletions(-)
diff --git a/html/changelog.html b/html/changelog.html
index 11b2ce0e9dfde..c789b3bb42e96 100644
--- a/html/changelog.html
+++ b/html/changelog.html
@@ -570,25 +570,6 @@ rkz, TastyFish, Mothblocks updated:
- fixes hardels with Status Display vis_contents
- Status display marquee text flows nicer
-
-
10 May 2024
-
ClownMoff updated:
-
- - CorgStation: Added 3 oxytans to the security E.V.A room.
- - CorgStation: Split the HoS shutter controllers into 2 buttons instead of one, for both the private room and the office.
- - CorgStation: Cargo windoor from maints could be opened by everyone. Not anymore.
- - CorgStation: Solved a camera and a fire alarm being in a window
- - CorgStation: Deleted an unnecesary shutter from the HoS room
-
-
rkz, Qustinnus, AnturK, TiviPlus, ShizCalev, MrMelbert, LemonInTheDark, ghommie updated:
-
- - gunlight component
- - refactored energy guns to have valid inhands
- - adds automated handling for inhand and worn energy guns
- - addresses possible runtime when qdeleting self-recharging guns with attached bayonets
- - new minigunlight sprite for mini e_guns like the PTSD
- - splits toggleable sec helmets into their own subtype to reduce snowflake code
-
GoonStation 13 Development Team
From deb22547af8f60d82f3c1f1fa8af9bbdbb31045e Mon Sep 17 00:00:00 2001
From: PestoVerde322 <75247747+PestoVerde322@users.noreply.github.com>
Date: Fri, 12 Jul 2024 18:57:22 +0200
Subject: [PATCH 08/15] Removes from existence once and for all the
experimentor (#10452)
* Voids from existence once and for all the experimentor
* first pack of fixes
* all maps have a standardized and redripped anomaly research room
* mergefix
* this should fix snowdin right?
* Bad case of purple and missing turfs on rad are gone
* small adjustments
---------
Co-authored-by: PigeonVerde322
---
_maps/RandomZLevels/snowdin.dmm | 7610 +++----
_maps/map_files/BoxStation/BoxStation.dmm | 2790 +--
_maps/map_files/CorgStation/CorgStation.dmm | 1292 +-
.../map_files/Deltastation/DeltaStation2.dmm | 2213 +-
_maps/map_files/EchoStation/EchoStation.dmm | 3908 ++--
_maps/map_files/FlandStation/FlandStation.dmm | 8460 ++++---
_maps/map_files/KiloStation/KiloStation.dmm | 533 +-
_maps/map_files/MetaStation/MetaStation.dmm | 8208 +++----
_maps/map_files/Mining/Lavaland.dmm | 23 +-
_maps/map_files/RadStation/RadStation.dmm | 18884 ++++++++--------
_maps/shuttles/whiteship/whiteship_delta.dmm | 151 +-
beestation.dme | 1 -
code/__DEFINES/logging.dm | 2 +-
code/_globalvars/lists/maintenance_loot.dm | 1 -
code/controllers/subsystem/research.dm | 1 -
.../circuitboards/machine_circuitboards.dm | 8 -
code/game/objects/items/manuals.dm | 7 -
code/game/objects/items/peppercloud.dm | 2 +-
code/modules/admin/admin_investigate.dm | 1 -
code/modules/cargo/bounties/assistant.dm | 6 -
.../research/designs/machine_designs.dm | 8 -
code/modules/research/experimentor.dm | 672 -
code/modules/research/rdconsole.dm | 4 -
code/modules/research/rdmachines.dm | 2 +-
code/modules/research/techweb/all_nodes.dm | 1 -
icons/obj/assemblies.dmi | Bin 33049 -> 33049 bytes
strings/cas_white.txt | 1 -
27 files changed, 26887 insertions(+), 27902 deletions(-)
delete mode 100644 code/modules/research/experimentor.dm
diff --git a/_maps/RandomZLevels/snowdin.dmm b/_maps/RandomZLevels/snowdin.dmm
index d6a54b3619525..36663b57af89a 100644
--- a/_maps/RandomZLevels/snowdin.dmm
+++ b/_maps/RandomZLevels/snowdin.dmm
@@ -191,118 +191,12 @@
/obj/item/paper/fluff/awaymissions/snowdin/research_feed,
/turf/open/floor/iron/dark,
/area/awaymission/snowdin/post/research)
-"aQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/wood{
- broken = 1
- },
-/area/awaymission/snowdin/post/dorm)
-"aR" = (
-/obj/structure/bed,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/landmark/awaystart,
-/obj/item/bedsheet/purple,
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
"aS" = (
/turf/closed/wall,
/area/awaymission/snowdin/post/dorm)
-"aT" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/item/bedsheet/purple,
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"aU" = (
-/obj/structure/bed,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
"aV" = (
/turf/closed/wall/rust,
/area/awaymission/snowdin/post/dorm)
-"aW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"aX" = (
-/obj/structure/bed,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/landmark/awaystart,
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"aY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"aZ" = (
-/obj/structure/bed,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/item/bedsheet/orange,
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"ba" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/sign/poster/contraband/kudzu{
- pixel_y = 32
- },
-/turf/open/floor/wood{
- broken = 1
- },
-/area/awaymission/snowdin/post/dorm)
-"bb" = (
-/obj/structure/bed,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/landmark/awaystart,
-/obj/item/paper/crumpled/ruins/snowdin/dontdeadopeninside,
-/obj/item/bedsheet/green,
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
"bc" = (
/obj/structure/window,
/turf/open/floor/iron/dark,
@@ -329,19 +223,6 @@
"bh" = (
/turf/closed/indestructible/rock/snow/ice,
/area/awaymission/snowdin/cave/cavern)
-"bi" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/wood{
- broken = 1
- },
-/area/awaymission/snowdin/post/dorm)
"bj" = (
/obj/structure/table/wood,
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -363,17 +244,6 @@
/obj/item/paper/crumpled/ruins/snowdin/foreshadowing,
/turf/open/floor/wood,
/area/awaymission/snowdin/post/dorm)
-"bl" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
"bm" = (
/obj/structure/table/wood,
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -400,9 +270,24 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/awaymission/snowdin/post/research)
+"bq" = (
+/obj/structure/statue/snow/snowman{
+ name = "Snow-Luc Price"
+ },
+/obj/item/clothing/head/hats/hos{
+ pixel_y = 10
+ },
+/turf/open/floor/plating/asteroid/snow,
+/area/awaymission/snowdin/outside)
"bs" = (
/turf/open/floor/plating,
/area/awaymission/snowdin/post/research)
+"bt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/mineral/snowmountain/cavern,
+/area/awaymission/snowdin/cave/cavern)
"bu" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/obj/effect/decal/cleanable/blood/old,
@@ -413,24 +298,6 @@
/obj/structure/spider/stickyweb,
/turf/open/floor/iron/freezer,
/area/awaymission/snowdin/post/kitchen)
-"bw" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/kitchenspike,
-/turf/open/floor/iron/freezer,
-/area/awaymission/snowdin/post/kitchen)
-"bx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
"by" = (
/obj/structure/closet/cabinet,
/obj/item/clothing/suit/hooded/wintercoat/science,
@@ -458,17 +325,6 @@
},
/turf/open/floor/wood,
/area/awaymission/snowdin/post/dorm)
-"bA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood{
- broken = 1
- },
-/area/awaymission/snowdin/post/dorm)
"bB" = (
/obj/structure/closet/cabinet,
/obj/item/clothing/shoes/winterboots,
@@ -505,16 +361,18 @@
},
/turf/open/floor/wood,
/area/awaymission/snowdin/post/dorm)
-"bF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
+"bE" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/obj/machinery/light{
+ dir = 1
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
/area/awaymission/snowdin/post/research)
"bG" = (
/obj/structure/table,
@@ -524,27 +382,24 @@
},
/turf/open/floor/iron/white,
/area/awaymission/snowdin/post/minipost)
-"bH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
+"bK" = (
+/obj/machinery/door/airlock/public/glass{
+ name = "Mess Hall"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/obj/machinery/holopad,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/research)
-"bI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4;
- piping_layer = 3;
pixel_x = 5;
pixel_y = 5
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/research)
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/cafeteria,
+/area/awaymission/snowdin/post/messhall)
"bL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/spider/stickyweb,
@@ -555,15 +410,6 @@
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/iron/freezer,
/area/awaymission/snowdin/post/kitchen)
-"bN" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/spider/stickyweb,
-/turf/open/floor/iron/freezer,
-/area/awaymission/snowdin/post/kitchen)
"bO" = (
/obj/structure/rack,
/obj/item/storage/toolbox/electrical,
@@ -581,86 +427,6 @@
},
/turf/open/floor/plating,
/area/awaymission/snowdin/post/dorm)
-"bQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/airlock{
- id_tag = "snowdindormresearch3";
- name = "Jouslen McGee's Private Quarters"
- },
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"bR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/airlock{
- id_tag = "snowdindormresearch2";
- name = "Elizabeth Queef's Private Quarters"
- },
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"bS" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/airlock{
- id_tag = "snowdindormresearch1";
- name = "Jacob Ullman's Private Quarters"
- },
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"bT" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/airlock{
- id_tag = "snowdindormhydro2";
- name = "Rachel Migro's Private Quarters"
- },
-/turf/open/floor/wood{
- broken = 1
- },
-/area/awaymission/snowdin/post/dorm)
-"bU" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/airlock{
- id_tag = "snowdindormhydro1";
- name = "Katherine Esterdeen's Private Quarters"
- },
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"bV" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/door/firedoor,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- broken = 1
- },
-/area/awaymission/snowdin/post/research)
"bW" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/cleanable/dirt,
@@ -675,6 +441,23 @@
/obj/machinery/door/firedoor,
/turf/open/floor/plating,
/area/awaymission/snowdin/post/research)
+"bZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post)
"ca" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/spider/stickyweb,
@@ -687,16 +470,6 @@
/obj/structure/spider/stickyweb,
/turf/open/floor/iron/freezer,
/area/awaymission/snowdin/post/kitchen)
-"cc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/kitchenspike,
-/obj/structure/spider/stickyweb,
-/turf/open/floor/iron/freezer,
-/area/awaymission/snowdin/post/kitchen)
"cd" = (
/turf/closed/wall,
/area/awaymission/snowdin/post/kitchen)
@@ -748,17 +521,6 @@
/obj/structure/table,
/turf/open/floor/iron,
/area/awaymission/snowdin/post/kitchen)
-"cl" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/kitchen)
"cm" = (
/obj/machinery/light/small,
/obj/structure/rack,
@@ -780,34 +542,56 @@
},
/turf/open/floor/plating,
/area/awaymission/snowdin/post/dorm)
+"cp" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/open/floor/iron/cafeteria,
+/area/awaymission/snowdin/post/messhall)
"cr" = (
/turf/open/floor/plating,
/area/awaymission/snowdin/post/dorm)
-"cs" = (
+"cu" = (
+/obj/machinery/door/airlock/external/glass,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
pixel_x = 5;
pixel_y = 5
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
+/area/awaymission/snowdin/post/garage)
"cv" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/awaymission/snowdin/post/dorm)
-"cy" = (
+"cz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/visible{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/engineering)
+"cA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
pixel_x = 5;
pixel_y = 5
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- broken = 1
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical/glass{
+ name = "Medbay Storage";
+ req_access_txt = "45"
},
-/area/awaymission/snowdin/post/dorm)
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/awaymission/snowdin/post)
"cB" = (
/turf/open/floor/iron,
/area/awaymission/snowdin/post/research)
@@ -816,162 +600,55 @@
broken = 1
},
/area/awaymission/snowdin/post/research)
-"cG" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/obj/structure/spider/stickyweb,
-/mob/living/simple_animal/hostile/poison/giant_spider/hunter/ice,
-/turf/open/floor/iron/freezer,
-/area/awaymission/snowdin/post/kitchen)
-"cH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/spider/stickyweb,
-/turf/open/floor/iron/freezer,
-/area/awaymission/snowdin/post/kitchen)
-"cI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/spider/stickyweb,
-/turf/open/floor/iron/freezer,
-/area/awaymission/snowdin/post/kitchen)
-"cJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
+"cD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
pixel_x = 5;
pixel_y = 5
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock{
- name = "Freezer"
+ id_tag = "snowdindormhydro2";
+ name = "Rachel Migro's Private Quarters"
},
-/obj/structure/barricade/wooden,
-/obj/structure/spider/stickyweb,
-/turf/open/floor/iron/freezer,
-/area/awaymission/snowdin/post/kitchen)
-"cK" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/turf/open/floor/wood{
+ broken = 1
},
+/area/awaymission/snowdin/post/dorm)
+"cE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
+ dir = 9;
pixel_x = 5;
pixel_y = 5
},
+/obj/effect/landmark/awaystart,
/turf/open/floor/iron,
-/area/awaymission/snowdin/post/kitchen)
-"cL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
+/area/awaymission/snowdin/post/gateway)
+"cF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4;
- piping_layer = 3;
pixel_x = 5;
pixel_y = 5
},
-/obj/item/kitchen/fork,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/kitchen)
-"cM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/item/storage/box{
- illustration = "donk_kit";
- name = "box of donkpockets"
- },
+/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
-/area/awaymission/snowdin/post/kitchen)
-"cN" = (
+/area/awaymission/snowdin/post/dorm)
+"cG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/kitchen)
-"cO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/kitchen)
-"cP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/holopad,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/kitchen)
-"cQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/kitchen)
-"cR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
+ dir = 5
},
-/turf/open/floor/plating,
+/obj/structure/spider/stickyweb,
+/mob/living/simple_animal/hostile/poison/giant_spider/hunter/ice,
+/turf/open/floor/iron/freezer,
/area/awaymission/snowdin/post/kitchen)
-"cS" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
+"cH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/obj/effect/decal/cleanable/food/egg_smudge,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
+/obj/structure/spider/stickyweb,
+/turf/open/floor/iron/freezer,
/area/awaymission/snowdin/post/kitchen)
"cT" = (
/obj/item/stack/sheet/wood,
@@ -988,125 +665,45 @@
},
/turf/open/floor/iron/dark/snowdin,
/area/awaymission/snowdin/cave)
-"cV" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"cW" = (
+"cY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
+ dir = 9;
pixel_x = 5;
pixel_y = 5
},
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post)
+"dh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/dorm)
-"cX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4;
- piping_layer = 3;
pixel_x = 5;
pixel_y = 5
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
-/area/awaymission/snowdin/post/dorm)
-"db" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 2;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
+/area/awaymission/snowdin/post/kitchen)
+"dl" = (
+/obj/machinery/light,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- broken = 1
- },
-/area/awaymission/snowdin/post/dorm)
-"dc" = (
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/research)
+"dm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
+ dir = 6;
pixel_x = 5;
pixel_y = 5
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 5;
- pixel_y = -32
+ dir = 6
},
-/turf/open/floor/plating{
- broken = 1
+/obj/machinery/shower{
+ pixel_y = 25
},
+/turf/open/floor/iron/showroomfloor,
/area/awaymission/snowdin/post/dorm)
-"dd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"df" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 2;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating{
- broken = 1
- },
-/area/awaymission/snowdin/post/dorm)
-"dj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/research)
-"dl" = (
-/obj/machinery/light,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/research)
"dn" = (
/obj/structure/closet/secure_closet/freezer/meat/open,
/turf/open/floor/iron/freezer,
@@ -1133,19 +730,6 @@
broken = 1
},
/area/awaymission/snowdin/post/kitchen)
-"dt" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/food/flour,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/kitchen)
"du" = (
/obj/machinery/deepfryer,
/obj/effect/decal/cleanable/dirt,
@@ -1200,6 +784,16 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/awaymission/snowdin/post/dorm)
+"dE" = (
+/obj/machinery/door/airlock/external/glass,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/barricade/wooden/crude,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post)
"dG" = (
/obj/machinery/light,
/turf/open/floor/plating,
@@ -1208,20 +802,33 @@
/obj/structure/table,
/turf/open/floor/plating,
/area/awaymission/snowdin/post/dorm)
-"dK" = (
-/turf/closed/wall,
-/area/awaymission/snowdin/post)
-"dL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+"dI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
pixel_x = 5;
pixel_y = 5
},
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/wood,
+/area/awaymission/snowdin/post/dorm)
+"dJ" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ pixel_x = 5;
+ pixel_y = 5
},
-/turf/open/floor/plating,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/dorm)
+"dK" = (
+/turf/closed/wall,
/area/awaymission/snowdin/post)
"dM" = (
/turf/closed/wall/rust,
@@ -1252,25 +859,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/awaymission/snowdin/post/kitchen)
-"dS" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/item/storage/box{
- illustration = "donk_kit";
- name = "box of donkpockets"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/kitchen)
"dT" = (
/obj/structure/table,
/obj/item/reagent_containers/food/condiment/enzyme,
@@ -1320,19 +908,6 @@
},
/turf/open/floor/carpet,
/area/awaymission/snowdin/post/dorm)
-"eb" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/sign/poster/contraband/lusty_xenomorph{
- pixel_x = 32
- },
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/turf/open/floor/carpet,
-/area/awaymission/snowdin/post/dorm)
"ed" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -1362,35 +937,10 @@
/obj/item/trash/cheesie,
/turf/open/floor/wood,
/area/awaymission/snowdin/post/dorm)
-"eh" = (
-/obj/structure/bed,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/landmark/awaystart,
-/obj/item/bedsheet/red,
-/turf/open/floor/wood{
- broken = 1
- },
-/area/awaymission/snowdin/post/dorm)
"ei" = (
/obj/effect/baseturf_helper/asteroid/snow,
/turf/closed/wall,
/area/awaymission/snowdin/post)
-"ej" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
"ek" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -1405,22 +955,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/awaymission/snowdin/post)
-"em" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Gateway APC";
- pixel_y = -24;
- req_access = 150
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/gateway)
"en" = (
/obj/machinery/power/apc{
dir = 1;
@@ -1462,25 +996,25 @@
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/plating,
/area/awaymission/snowdin/post/messhall)
-"ey" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
+"ex" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
},
-/obj/structure/closet/secure_closet/freezer/kitchen,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/kitchen)
-"ez" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
+ dir = 5;
pixel_x = 5;
pixel_y = 5
},
/obj/structure/cable/yellow{
- icon_state = "1-2"
+ icon_state = "1-4"
},
-/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/dorm)
+"ey" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/closet/secure_closet/freezer/kitchen,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/awaymission/snowdin/post/kitchen)
@@ -1556,110 +1090,28 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/carpet,
/area/awaymission/snowdin/post/dorm)
-"eP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/carpet,
-/area/awaymission/snowdin/post/dorm)
-"eR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating{
- broken = 1
- },
-/area/awaymission/snowdin/post/dorm)
-"eS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
+"eQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4;
- piping_layer = 3;
pixel_x = 5;
pixel_y = 5
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"eT" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/door/airlock{
- id_tag = "snowdindormsec";
- name = "James Reed's Private Quarters"
- },
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"eU" = (
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/kitchen)
+"eY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/wood{
- broken = 1
- },
-/area/awaymission/snowdin/post/dorm)
-"eV" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/item/trash/cheesie,
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"eW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/item/trash/cheesie,
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"fd" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
pixel_x = 5;
pixel_y = 5
},
/obj/structure/cable/yellow{
- icon_state = "1-2"
+ icon_state = "4-8"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
+/turf/open/floor/iron/cafeteria,
+/area/awaymission/snowdin/post/messhall)
"fe" = (
/obj/structure/rack,
/obj/machinery/light/small{
@@ -1679,24 +1131,6 @@
"fh" = (
/turf/closed/wall/rust,
/area/awaymission/snowdin/post/gateway)
-"fj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/public/glass{
- name = "Kitchen";
- req_access_txt = "35"
- },
-/obj/machinery/door/firedoor,
-/obj/structure/barricade/wooden/crude,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/kitchen)
"fk" = (
/obj/machinery/smartfridge,
/turf/open/floor/iron,
@@ -1745,51 +1179,55 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/carpet,
/area/awaymission/snowdin/post/dorm)
-"fu" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8;
- piping_layer = 3;
+"ft" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
pixel_x = 5;
pixel_y = 5
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"fv" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8;
- piping_layer = 3;
+/area/awaymission/snowdin/post/hydro)
+"fx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
pixel_x = 5;
pixel_y = 5
},
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 26
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/obj/machinery/light/broken{
- dir = 4
+/obj/machinery/door/airlock/security{
+ name = "Security Checkpoint";
+ req_access_txt = "1"
},
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"fD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/secpost)
+"fA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
pixel_x = 5;
pixel_y = 5
},
-/obj/structure/cable/yellow{
- icon_state = "2-4"
+/obj/structure/spider/stickyweb,
+/turf/open/floor/iron/freezer,
+/area/awaymission/snowdin/post/kitchen)
+"fB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
/obj/structure/cable/yellow{
- icon_state = "1-2"
+ icon_state = "4-8"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
+/turf/open/floor/iron/cafeteria,
+/area/awaymission/snowdin/post/messhall)
"fE" = (
/obj/machinery/power/apc{
dir = 4;
@@ -1826,6 +1264,17 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/awaymission/snowdin/post/gateway)
+"fJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/cafeteria,
+/area/awaymission/snowdin/post/messhall)
"fL" = (
/obj/structure/table/reinforced,
/obj/item/kitchen/fork,
@@ -1835,6 +1284,17 @@
/obj/structure/table_frame,
/turf/open/floor/plating,
/area/awaymission/snowdin/post/messhall)
+"fN" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/awaymission/snowdin/post)
"fP" = (
/obj/structure/table,
/obj/effect/decal/cleanable/dirt,
@@ -1842,18 +1302,6 @@
broken = 1
},
/area/awaymission/snowdin/post/hydro)
-"fQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/hydro)
"fU" = (
/obj/machinery/light/broken{
dir = 1
@@ -1924,31 +1372,6 @@
/obj/item/bedsheet/nanotrasen,
/turf/open/floor/carpet,
/area/awaymission/snowdin/post/dorm)
-"gh" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/carpet,
-/area/awaymission/snowdin/post/dorm)
-"gi" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/dorm)
"gk" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/obj/structure/closet/crate{
@@ -1967,30 +1390,27 @@
/obj/machinery/space_heater,
/turf/open/floor/plating,
/area/awaymission/snowdin/post/dorm)
-"gm" = (
+"go" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
+ dir = 1;
pixel_x = 5;
pixel_y = 5
},
-/obj/structure/closet/crate,
-/obj/item/clothing/shoes/winterboots,
-/obj/item/clothing/suit/hooded/wintercoat,
-/obj/item/clothing/suit/hooded/wintercoat,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"gt" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
+/obj/machinery/light/broken,
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/awaymission/snowdin/post)
+"gr" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
pixel_x = 5;
pixel_y = 5
},
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+/obj/machinery/light{
+ dir = 1
},
/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
+/area/awaymission/snowdin/post/kitchen)
"gu" = (
/obj/structure/grille,
/turf/open/floor/plating,
@@ -2062,21 +1482,6 @@
},
/turf/open/floor/plating,
/area/awaymission/snowdin/post/hydro)
-"gF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- broken = 1
- },
-/area/awaymission/snowdin/post/hydro)
"gG" = (
/obj/machinery/hydroponics/constructable,
/turf/open/floor/plating,
@@ -2099,20 +1504,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/awaymission/snowdin/post/hydro)
-"gL" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating{
- broken = 1
- },
-/area/awaymission/snowdin/post/hydro)
"gM" = (
/obj/item/stack/cable_coil/red{
amount = 1
@@ -2205,90 +1596,41 @@
},
/turf/open/floor/carpet,
/area/awaymission/snowdin/post/dorm)
-"gY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/button/door{
- id = "snowdindormcap";
- name = "Dorm Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = 25;
- specialfunctions = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/carpet,
-/area/awaymission/snowdin/post/dorm)
-"gZ" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8;
- piping_layer = 3;
+"ha" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1;
pixel_x = 5;
pixel_y = 5
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/item/trash/can,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/dorm)
-"hb" = (
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/garage)
+"hg" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4;
- piping_layer = 3;
pixel_x = 5;
pixel_y = 5
},
-/obj/machinery/door/airlock/maintenance{
- name = "Misc Storage";
- req_access_txt = "12"
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"hc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/obj/effect/turf_decal/snowdin_station_sign/up/two,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post)
+"hh" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4;
- piping_layer = 3;
pixel_x = 5;
pixel_y = 5
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"hd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"he" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/closet/crate{
- opened = 1
- },
-/obj/item/clothing/shoes/winterboots,
-/obj/item/clothing/shoes/winterboots,
-/turf/open/floor/plating,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/showroomfloor,
/area/awaymission/snowdin/post/dorm)
"hj" = (
/obj/structure/reagent_dispensers/fueltank,
@@ -2380,14 +1722,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/awaymission/snowdin/post/hydro)
-"hA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/hydro)
"hB" = (
/obj/structure/lattice/catwalk,
/obj/effect/turf_decal/weather/snow,
@@ -2437,48 +1771,17 @@
},
/turf/open/floor/carpet,
/area/awaymission/snowdin/post/dorm)
-"hI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/carpet,
-/area/awaymission/snowdin/post/dorm)
-"hJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/door/airlock{
- id_tag = "snowdindormcap";
- name = "Overseer's Private Quarters"
- },
-/turf/open/floor/carpet,
-/area/awaymission/snowdin/post/dorm)
-"hL" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
+"hK" = (
+/obj/structure/bed,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
pixel_x = 5;
pixel_y = 5
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+/obj/effect/landmark/awaystart,
+/obj/item/bedsheet/red,
+/turf/open/floor/wood{
+ broken = 1
},
-/turf/open/floor/iron,
/area/awaymission/snowdin/post/dorm)
"hM" = (
/obj/effect/spawner/structure/window/reinforced,
@@ -2495,21 +1798,6 @@
},
/turf/open/floor/plating,
/area/awaymission/snowdin/post)
-"hP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
"hQ" = (
/obj/structure/window,
/obj/effect/decal/cleanable/dirt,
@@ -2530,16 +1818,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/awaymission/snowdin/post/gateway)
-"hT" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/landmark/awaystart,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/gateway)
"hU" = (
/obj/structure/window,
/turf/open/floor/iron,
@@ -2548,36 +1826,24 @@
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/iron/cafeteria,
/area/awaymission/snowdin/post/messhall)
-"hW" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/iron/cafeteria,
-/area/awaymission/snowdin/post/messhall)
-"hY" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+"hX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
+ dir = 4;
pixel_x = 5;
pixel_y = 5
},
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/hydro)
-"ib" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post)
+"ia" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
+ dir = 4;
pixel_x = 5;
pixel_y = 5
},
-/turf/open/floor/plating{
- broken = 1
- },
-/area/awaymission/snowdin/post/hydro)
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/research)
"ic" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/ice,
@@ -2651,74 +1917,60 @@
initial_temperature = 120
},
/area/awaymission/snowdin/cave/cavern)
-"io" = (
+"is" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
+ dir = 10
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5;
- piping_layer = 3;
+ dir = 10;
pixel_x = 5;
pixel_y = 5
},
/obj/structure/cable/yellow{
- icon_state = "1-4"
+ icon_state = "2-8"
},
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/dorm)
-"ip" = (
+/obj/structure/sign/departments/medbay{
+ pixel_y = 32
+ },
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/awaymission/snowdin/post)
+"it" = (
+/obj/structure/table,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
+ dir = 9;
pixel_x = 5;
pixel_y = 5
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"iv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/secpost)
+"iu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
pixel_x = 5;
pixel_y = 5
},
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
+/obj/machinery/door/firedoor,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating{
broken = 1
},
-/area/awaymission/snowdin/post)
-"iw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
+/area/awaymission/snowdin/post/research)
+"ix" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10;
- piping_layer = 3;
+ dir = 4;
pixel_x = 5;
pixel_y = 5
},
/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/sign/departments/medbay{
- pixel_y = 32
- },
-/turf/open/floor/plating{
- broken = 1
+ icon_state = "4-8"
},
-/area/awaymission/snowdin/post)
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/hydro)
"iz" = (
/obj/structure/table,
/obj/machinery/airalarm{
@@ -2735,34 +1987,6 @@
/obj/effect/landmark/awaystart,
/turf/open/floor/iron,
/area/awaymission/snowdin/post/gateway)
-"iB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/obj/effect/landmark/awaystart,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/holopad,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/gateway)
-"iC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/landmark/awaystart,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/gateway)
"iD" = (
/obj/structure/table,
/obj/item/crowbar,
@@ -2780,14 +2004,6 @@
/obj/effect/decal/cleanable/vomit/old,
/turf/open/floor/iron/cafeteria,
/area/awaymission/snowdin/post/messhall)
-"iH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/iron/cafeteria,
-/area/awaymission/snowdin/post/messhall)
"iJ" = (
/turf/open/floor/iron,
/area/awaymission/snowdin/post/hydro)
@@ -2800,134 +2016,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating/snowed/smoothed,
/area/awaymission/snowdin/outside)
-"iN" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/cobweb,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/garage)
-"iO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/garage)
-"iP" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/garage)
-"iQ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/garage)
-"iR" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Garage"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/garage)
-"iS" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/garage)
-"iT" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating{
- broken = 1
- },
-/area/awaymission/snowdin/post/garage)
-"iU" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Garage"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/garage)
-"iV" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
"iW" = (
/turf/open/floor/plating,
/area/awaymission/snowdin/post/garage)
@@ -2981,6 +2069,13 @@
broken = 1
},
/area/awaymission/snowdin/post/dorm)
+"jl" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/messhall)
"jm" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
@@ -2998,59 +2093,6 @@
broken = 1
},
/area/awaymission/snowdin/post)
-"jp" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/plating{
- broken = 1
- },
-/area/awaymission/snowdin/post)
-"jq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"jr" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post)
"js" = (
/turf/open/floor/plating,
/area/awaymission/snowdin/post)
@@ -3069,21 +2111,6 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron,
/area/awaymission/snowdin/post/gateway)
-"jv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/landmark/awaystart,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/gateway)
"jw" = (
/obj/structure/table,
/obj/item/paper/pamphlet/gateway,
@@ -3112,16 +2139,6 @@
/obj/item/trash/candle,
/turf/open/floor/iron/cafeteria,
/area/awaymission/snowdin/post/messhall)
-"jz" = (
-/obj/structure/table,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/item/kitchen/fork,
-/turf/open/floor/iron/cafeteria,
-/area/awaymission/snowdin/post/messhall)
"jA" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/plantgenes,
@@ -3149,19 +2166,6 @@
},
/turf/open/floor/plating/snowed/smoothed,
/area/awaymission/snowdin/outside)
-"jE" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/landmark/awaystart,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/garage)
"jF" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating{
@@ -3183,25 +2187,6 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/garage)
-"jJ" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/garage)
-"jK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
"jL" = (
/obj/vehicle/ridden/atv,
/turf/open/floor/plating,
@@ -3225,18 +2210,6 @@
initial_temperature = 120
},
/area/awaymission/snowdin/cave/cavern)
-"jP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/airlock{
- name = "Bathroom"
- },
-/turf/open/floor/iron/showroomfloor,
-/area/awaymission/snowdin/post/dorm)
"jQ" = (
/obj/effect/baseturf_helper/asteroid/snow,
/turf/closed/wall,
@@ -3257,19 +2230,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/awaymission/snowdin/post)
-"jV" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post)
"jW" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating{
@@ -3283,39 +2243,13 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/awaymission/snowdin/post/gateway)
-"jZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "snowdin_gate"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/gateway)
-"ka" = (
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23
+"ka" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
},
/turf/open/floor/iron/cafeteria,
/area/awaymission/snowdin/post/messhall)
-"kc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating{
- broken = 1
- },
-/area/awaymission/snowdin/post/messhall)
"kd" = (
/obj/machinery/light{
dir = 4
@@ -3332,51 +2266,6 @@
/obj/machinery/holopad,
/turf/open/floor/iron,
/area/awaymission/snowdin/post/hydro)
-"kh" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/garage)
-"ki" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating{
- broken = 1
- },
-/area/awaymission/snowdin/post/garage)
-"kj" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"kk" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/garage)
"kl" = (
/obj/effect/decal/cleanable/oil,
/turf/open/floor/plating,
@@ -3432,96 +2321,6 @@
"ku" = (
/turf/closed/wall/ice,
/area/awaymission/snowdin/cave/mountain)
-"kv" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/shower{
- pixel_y = 25
- },
-/turf/open/floor/iron/showroomfloor,
-/area/awaymission/snowdin/post/dorm)
-"kw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/obj/machinery/shower{
- pixel_y = 25
- },
-/turf/open/floor/iron/showroomfloor,
-/area/awaymission/snowdin/post/dorm)
-"kx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/shower{
- pixel_y = 25
- },
-/turf/open/floor/iron/showroomfloor,
-/area/awaymission/snowdin/post/dorm)
-"ky" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock{
- name = "Showers"
- },
-/turf/open/floor/iron/showroomfloor,
-/area/awaymission/snowdin/post/dorm)
-"kz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron/showroomfloor,
-/area/awaymission/snowdin/post/dorm)
-"kA" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron/showroomfloor,
-/area/awaymission/snowdin/post/dorm)
-"kB" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/iron/showroomfloor,
-/area/awaymission/snowdin/post/dorm)
"kC" = (
/obj/structure/sink{
dir = 4;
@@ -3560,636 +2359,134 @@
},
/turf/open/floor/plating,
/area/awaymission/snowdin/post)
-"kM" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Mess Hall"
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/iron/cafeteria,
-/area/awaymission/snowdin/post/messhall)
-"kN" = (
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/messhall)
-"kO" = (
-/obj/effect/decal/cleanable/vomit/old,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/messhall)
-"kP" = (
-/obj/item/trash/candy,
-/turf/open/floor/plating{
- broken = 1
- },
-/area/awaymission/snowdin/post/messhall)
-"kR" = (
-/obj/machinery/hydroponics/constructable,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/hydro)
-"kS" = (
-/obj/machinery/hydroponics/constructable,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/hydro)
-"kT" = (
-/obj/item/stack/cable_coil/red{
- amount = 1
- },
-/obj/structure/lattice/catwalk,
-/obj/effect/turf_decal/weather/snow,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/outside)
-"kU" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/garage)
-"kV" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/garage)
-"kW" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"kX" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/garage)
-"kY" = (
-/obj/structure/table/reinforced,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/garage)
-"kZ" = (
+"kL" = (
+/obj/structure/bed,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating{
- broken = 1
- },
-/area/awaymission/snowdin/post/garage)
-"la" = (
-/obj/structure/filingcabinet,
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/garage)
-"lb" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"lc" = (
-/obj/vehicle/ridden/atv,
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"ld" = (
-/obj/machinery/space_heater,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"le" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/turf/open/floor/iron/showroomfloor,
-/area/awaymission/snowdin/post/dorm)
-"lf" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron/showroomfloor,
-/area/awaymission/snowdin/post/dorm)
-"lg" = (
-/obj/machinery/light/small/broken{
- dir = 4
- },
-/turf/open/floor/iron/showroomfloor,
-/area/awaymission/snowdin/post/dorm)
-"lh" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron/showroomfloor,
-/area/awaymission/snowdin/post/dorm)
-"li" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/broken,
-/turf/open/floor/iron/showroomfloor,
-/area/awaymission/snowdin/post/dorm)
-"lj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9;
- piping_layer = 3;
pixel_x = 5;
pixel_y = 5
},
-/turf/open/floor/iron/showroomfloor,
+/obj/effect/landmark/awaystart,
+/obj/item/bedsheet/purple,
+/turf/open/floor/wood,
/area/awaymission/snowdin/post/dorm)
-"lk" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/holopad,
-/turf/open/floor/iron/dark,
-/area/awaymission/snowdin/post/custodials)
-"ll" = (
-/turf/open/floor/iron/dark,
-/area/awaymission/snowdin/post/custodials)
-"lm" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/janitorialcart,
-/obj/item/mop,
-/turf/open/floor/iron/dark,
-/area/awaymission/snowdin/post/custodials)
-"lo" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/effect/turf_decal/snowdin_station_sign/up,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post)
-"lp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/snowdin_station_sign/up/two,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post)
-"lq" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/snowdin_station_sign/up/three,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post)
-"lr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/snowdin_station_sign/up/four,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post)
-"ls" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/snowdin_station_sign/up/five,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post)
-"lt" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/snowdin_station_sign/up/six,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post)
-"lu" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/snowdin_station_sign/up/seven,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post)
-"lv" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 2;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post)
-"lw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post)
-"ly" = (
+"kM" = (
/obj/machinery/door/airlock/public/glass{
name = "Mess Hall"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/iron/cafeteria,
-/area/awaymission/snowdin/post/messhall)
-"lz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/messhall)
-"lA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/messhall)
-"lB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron/cafeteria,
-/area/awaymission/snowdin/post/messhall)
-"lC" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron/cafeteria,
-/area/awaymission/snowdin/post/messhall)
-"lD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 2;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron/cafeteria,
-/area/awaymission/snowdin/post/messhall)
-"lE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/public/glass{
- name = "Hydroponics";
- req_access_txt = "35"
- },
/obj/machinery/door/firedoor,
/turf/open/floor/iron/cafeteria,
/area/awaymission/snowdin/post/messhall)
-"lF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
+"kN" = (
+/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/plating,
-/area/awaymission/snowdin/post/hydro)
-"lG" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 2;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plating{
- broken = 1
- },
-/area/awaymission/snowdin/post/hydro)
-"lH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/hydro)
-"lI" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/hydro)
-"lJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/hydro)
-"lK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
+/area/awaymission/snowdin/post/messhall)
+"kO" = (
+/obj/effect/decal/cleanable/vomit/old,
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/messhall)
+"kP" = (
+/obj/item/trash/candy,
/turf/open/floor/plating{
broken = 1
},
-/area/awaymission/snowdin/post/hydro)
-"lL" = (
+/area/awaymission/snowdin/post/messhall)
+"kQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9;
- piping_layer = 3;
pixel_x = 5;
pixel_y = 5
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating{
broken = 1
},
+/area/awaymission/snowdin/post/dorm)
+"kR" = (
+/obj/machinery/hydroponics/constructable,
+/turf/open/floor/iron,
/area/awaymission/snowdin/post/hydro)
-"lM" = (
-/obj/machinery/door/airlock/external/glass,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"lN" = (
-/obj/machinery/door/airlock/external/glass,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"lO" = (
+"kS" = (
+/obj/machinery/hydroponics/constructable,
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
-/area/awaymission/snowdin/post/garage)
-"lP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
+/area/awaymission/snowdin/post/hydro)
+"kT" = (
+/obj/item/stack/cable_coil/red{
+ amount = 1
},
+/obj/structure/lattice/catwalk,
+/obj/effect/turf_decal/weather/snow,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating/snowed/smoothed,
+/area/awaymission/snowdin/outside)
+"kV" = (
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/awaymission/snowdin/post/garage)
-"lQ" = (
-/obj/machinery/door/airlock{
- name = "Mechanic's Quarters"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
+"kW" = (
+/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/garage)
+"kX" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
/turf/open/floor/iron,
/area/awaymission/snowdin/post/garage)
-"lR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
+"kY" = (
+/obj/structure/table/reinforced,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/garage)
+"la" = (
+/obj/structure/filingcabinet,
+/obj/machinery/airalarm{
+ pixel_y = 23
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/garage)
+"lc" = (
+/obj/vehicle/ridden/atv,
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/garage)
+"ld" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/garage)
+"lg" = (
+/obj/machinery/light/small/broken{
+ dir = 4
+ },
+/turf/open/floor/iron/showroomfloor,
+/area/awaymission/snowdin/post/dorm)
+"lh" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/showroomfloor,
+/area/awaymission/snowdin/post/dorm)
+"lk" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
+/obj/machinery/holopad,
+/turf/open/floor/iron/dark,
+/area/awaymission/snowdin/post/custodials)
+"ll" = (
+/turf/open/floor/iron/dark,
+/area/awaymission/snowdin/post/custodials)
+"lN" = (
+/obj/machinery/door/airlock/external/glass,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/turf/open/floor/plating,
/area/awaymission/snowdin/post/garage)
"lS" = (
@@ -4260,75 +2557,6 @@
},
/turf/open/floor/iron/dark,
/area/awaymission/snowdin/post/custodials)
-"mb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron/dark,
-/area/awaymission/snowdin/post/custodials)
-"mc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock{
- name = "Custodial Closet"
- },
-/turf/open/floor/iron/dark,
-/area/awaymission/snowdin/post/custodials)
-"me" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post)
-"mf" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/snowdin_station_sign,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post)
"mg" = (
/obj/effect/turf_decal/snowdin_station_sign/two,
/obj/effect/decal/cleanable/dirt,
@@ -4366,18 +2594,6 @@
},
/turf/open/floor/iron/cafeteria,
/area/awaymission/snowdin/post/messhall)
-"mo" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron/cafeteria,
-/area/awaymission/snowdin/post/messhall)
"mp" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 5;
@@ -4427,28 +2643,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating/snowed/smoothed,
/area/awaymission/snowdin/outside)
-"mx" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"my" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
"mz" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -4493,47 +2687,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/dark,
/area/awaymission/snowdin/post/custodials)
-"mH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -26
- },
-/turf/open/floor/plating{
- broken = 1
- },
-/area/awaymission/snowdin/post)
-"mI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating{
- broken = 1
- },
-/area/awaymission/snowdin/post)
-"mJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post)
"mK" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -4556,23 +2709,6 @@
/obj/machinery/door/firedoor,
/turf/open/floor/plating,
/area/awaymission/snowdin/post/messhall)
-"mP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/engineering/glass{
- name = "Engineering";
- req_access_txt = "32"
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/iron/cafeteria,
-/area/awaymission/snowdin/post/messhall)
"mQ" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 1
@@ -4591,15 +2727,6 @@
},
/turf/open/floor/plating,
/area/awaymission/snowdin/post/garage)
-"mT" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
"mU" = (
/obj/structure/rack,
/obj/item/clothing/suit/hooded/wintercoat,
@@ -4657,18 +2784,6 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron/dark,
/area/awaymission/snowdin/post/custodials)
-"nc" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/light/broken,
-/turf/open/floor/plating{
- broken = 1
- },
-/area/awaymission/snowdin/post)
"nd" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 1
@@ -4677,86 +2792,52 @@
broken = 1
},
/area/awaymission/snowdin/post)
-"ng" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 5;
- pixel_y = -32
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"nh" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
+"ne" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
pixel_x = 5;
pixel_y = 5
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"ni" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
},
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
-/area/awaymission/snowdin/post)
-"nj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
+/area/awaymission/snowdin/post/research)
+"nf" = (
+/obj/structure/bonfire/prelit{
+ burn_icon = "bonfire_warm"
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"nk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
+/obj/effect/light_emitter{
+ light_color = "#FAA019";
+ light_range = 4;
+ name = "fire light"
},
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
+/turf/open/floor/plating/asteroid/snow{
+ icon_state = "snow_dug";
+ slowdown = 1
+ },
+/area/awaymission/snowdin/cave)
"nl" = (
/obj/effect/baseturf_helper/asteroid/snow,
/turf/closed/wall,
/area/awaymission/snowdin/post/engineering)
-"np" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- piping_layer = 3;
+"nm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
pixel_x = 5;
pixel_y = 5
},
-/obj/machinery/atmospherics/pipe/simple/supply/visible,
-/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
/turf/open/floor/iron,
-/area/awaymission/snowdin/post/engineering)
+/area/awaymission/snowdin/post)
"nq" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -4840,15 +2921,6 @@
/obj/machinery/door/firedoor,
/turf/open/floor/plating,
/area/awaymission/snowdin/post/secpost)
-"nM" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
"nN" = (
/turf/closed/wall,
/area/awaymission/snowdin/post/engineering)
@@ -4875,16 +2947,19 @@
},
/turf/open/floor/plating,
/area/awaymission/snowdin/post/engineering)
-"nR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- piping_layer = 3;
+"nQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9;
pixel_x = 5;
pixel_y = 5
},
-/obj/machinery/atmospherics/pipe/simple/supply/visible,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/engineering)
+/obj/structure/closet/crate{
+ opened = 1
+ },
+/obj/item/clothing/shoes/winterboots,
+/obj/item/clothing/shoes/winterboots,
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/dorm)
"nS" = (
/turf/open/floor/plating,
/area/awaymission/snowdin/post/engineering)
@@ -4939,24 +3014,37 @@
"oc" = (
/turf/closed/wall,
/area/awaymission/snowdin/post/secpost)
-"od" = (
-/obj/item/gun/ballistic/rifle/boltaction,
-/obj/item/ammo_box/a762,
-/obj/item/ammo_box/a762,
-/obj/structure/closet/secure_closet{
- icon_state = "sec";
- locked = 1;
- name = "security officer's locker";
- req_access_txt = "201"
+"oe" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
},
-/obj/item/restraints/handcuffs,
-/obj/item/assembly/flash,
-/obj/item/storage/box/rubbershot,
-/obj/structure/fireaxecabinet{
- pixel_y = 32
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/dorm)
+"of" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/trash/cheesie,
+/turf/open/floor/wood,
+/area/awaymission/snowdin/post/dorm)
+"og" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ pixel_x = 5;
+ pixel_y = 5
},
+/obj/machinery/atmospherics/pipe/simple/supply/visible,
/turf/open/floor/plating,
-/area/awaymission/snowdin/post/secpost)
+/area/awaymission/snowdin/post/engineering)
"oh" = (
/obj/structure/chair/office{
dir = 1
@@ -4964,6 +3052,17 @@
/obj/item/shard,
/turf/open/floor/plating,
/area/awaymission/snowdin/post/secpost)
+"ok" = (
+/obj/vehicle/ridden/atv{
+ dir = 4
+ },
+/obj/effect/light_emitter{
+ name = "outdoor light";
+ set_cap = 3;
+ set_luminosity = 6
+ },
+/turf/open/floor/plating/asteroid/snow,
+/area/awaymission/snowdin/outside)
"ol" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -4985,54 +3084,6 @@
},
/turf/open/floor/plating,
/area/awaymission/snowdin/post/engineering)
-"on" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- dir = 8;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/engineering)
-"oo" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/engineering)
-"op" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/engineering)
-"oq" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/table,
-/obj/item/stack/sheet/glass/fifty{
- pixel_x = 1;
- pixel_y = -1
- },
-/obj/item/stack/sheet/iron/fifty{
- pixel_x = -1;
- pixel_y = 1
- },
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/engineering)
"or" = (
/obj/structure/table,
/obj/item/cultivator,
@@ -5042,13 +3093,6 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/hydro)
-"ot" = (
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/hydro)
"ou" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -5093,43 +3137,38 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/awaymission/snowdin/post/secpost)
-"oD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
+"oG" = (
+/obj/machinery/sleeper/syndie{
+ dir = 1
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/iron/dark,
+/area/awaymission/snowdin/cave)
+"oH" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
/area/awaymission/snowdin/post/secpost)
-"oE" = (
+"oJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4;
- piping_layer = 3;
pixel_x = 5;
pixel_y = 5
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
+/turf/open/floor/iron,
/area/awaymission/snowdin/post/secpost)
-"oF" = (
+"oL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
+ dir = 5;
pixel_x = 5;
pixel_y = 5
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/secpost)
-"oH" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/secpost)
+/obj/structure/spider/stickyweb,
+/turf/open/floor/iron/freezer,
+/area/awaymission/snowdin/post/kitchen)
"oM" = (
/obj/machinery/power/smes/engineering,
/obj/effect/turf_decal/stripes/line{
@@ -5156,15 +3195,6 @@
},
/turf/open/floor/plating,
/area/awaymission/snowdin/post/engineering)
-"oO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/visible,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/engineering)
"oP" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
@@ -5298,6 +3328,15 @@
"pn" = (
/turf/open/floor/plating,
/area/awaymission/snowdin/post/secpost)
+"po" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/wood,
+/area/awaymission/snowdin/post/dorm)
"pq" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
@@ -5312,17 +3351,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/awaymission/snowdin/post)
-"ps" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post)
"pu" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -5335,19 +3363,6 @@
},
/turf/open/floor/plating,
/area/awaymission/snowdin/post/engineering)
-"pv" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/visible{
- dir = 8
- },
-/turf/open/floor/plating{
- broken = 1
- },
-/area/awaymission/snowdin/post/engineering)
"pw" = (
/obj/machinery/atmospherics/pipe/simple/supply/visible{
dir = 8
@@ -5433,18 +3448,22 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/awaymission/snowdin/post/secpost)
-"pO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+"pN" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"pQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
+ dir = 10;
pixel_x = 5;
pixel_y = 5
},
/turf/open/floor/plating,
+/area/awaymission/snowdin/post/garage)
+"pO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
/area/awaymission/snowdin/post)
"pS" = (
/obj/machinery/power/terminal{
@@ -5466,17 +3485,6 @@
},
/turf/open/floor/plating,
/area/awaymission/snowdin/post/engineering)
-"pT" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/engineering)
"pU" = (
/obj/machinery/atmospherics/pipe/simple/supply/visible{
dir = 8
@@ -5550,15 +3558,17 @@
/turf/open/floor/iron,
/area/awaymission/snowdin/post/engineering)
"qd" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/item/clothing/head/utility/welding,
-/obj/item/weldingtool/largetank,
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
},
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/engineering)
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock{
+ id_tag = "snowdindormresearch3";
+ name = "Jouslen McGee's Private Quarters"
+ },
+/turf/open/floor/wood,
+/area/awaymission/snowdin/post/dorm)
"qe" = (
/obj/machinery/atmospherics/pipe/simple/supply/visible{
dir = 8
@@ -5641,41 +3651,6 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/turf/open/floor/plating,
/area/awaymission/snowdin/post)
-"qs" = (
-/obj/machinery/door/airlock/external/glass,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/barricade/wooden/crude,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"qt" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 6;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/engineering)
-"qu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 9;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/engineering)
"qv" = (
/obj/machinery/atmospherics/components/binary/volume_pump{
name = "Air Mix To Turbine Mix"
@@ -5813,24 +3788,19 @@
/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/awaymission/snowdin/post/engineering)
-"qQ" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- piping_layer = 3;
+"qR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
pixel_x = 5;
pixel_y = 5
},
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/engineering)
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post)
"qS" = (
/obj/machinery/button/door{
id = "snowdinturbineoutlet";
@@ -5849,6 +3819,25 @@
broken = 1
},
/area/awaymission/snowdin/post/engineering)
+"qT" = (
+/obj/structure/statue/snow/snowman{
+ anchored = 1
+ },
+/obj/item/clothing/head/hats/bowler{
+ pixel_y = 13
+ },
+/turf/open/floor/plating/asteroid/snow,
+/area/awaymission/snowdin/outside)
+"qU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/wood{
+ broken = 1
+ },
+/area/awaymission/snowdin/post/dorm)
"qX" = (
/obj/machinery/computer/atmos_control/tank{
dir = 1;
@@ -5864,6 +3853,26 @@
broken = 1
},
/area/awaymission/snowdin/post/engineering)
+"qZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/dorm)
+"rb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/bedsheet/purple,
+/turf/open/floor/wood,
+/area/awaymission/snowdin/post/dorm)
"rc" = (
/obj/machinery/door/airlock/external/glass,
/obj/structure/fans/tiny,
@@ -5872,13 +3881,6 @@
},
/turf/open/floor/plating,
/area/awaymission/snowdin/post/cavern2)
-"rd" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1;
- piping_layer = 3
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern2)
"re" = (
/obj/machinery/door/airlock/external/glass,
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -5915,25 +3917,6 @@
/obj/structure/rack,
/turf/open/floor/plating,
/area/awaymission/snowdin/post)
-"rl" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"rm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
"rn" = (
/obj/structure/rack,
/obj/item/clothing/suit/hooded/wintercoat,
@@ -5943,14 +3926,6 @@
},
/turf/open/floor/plating,
/area/awaymission/snowdin/post)
-"ro" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/post/engineering)
"rp" = (
/turf/closed/wall/r_wall,
/area/awaymission/snowdin/post/engineering)
@@ -6089,20 +4064,6 @@
},
/turf/open/floor/plating,
/area/awaymission/snowdin/post)
-"rI" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/atmos{
- dir = 1;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/light_emitter{
- name = "cave light";
- set_cap = 3;
- set_luminosity = 6
- },
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/post/engineering)
"rJ" = (
/obj/machinery/light/small{
brightness = 3;
@@ -6392,6 +4353,25 @@
},
/turf/open/floor/plating,
/area/awaymission/snowdin/post/cavern2)
+"sw" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/awaymission/snowdin/post/dorm)
+"sx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/kitchenspike,
+/obj/structure/spider/stickyweb,
+/turf/open/floor/iron/freezer,
+/area/awaymission/snowdin/post/kitchen)
"sz" = (
/obj/machinery/door/poddoor{
id = "snowdinturbinegas";
@@ -6459,6 +4439,24 @@
},
/turf/open/floor/iron/dark/snowdin,
/area/awaymission/snowdin/outside)
+"sL" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/item/storage/box{
+ illustration = "donk_kit";
+ name = "box of donkpockets"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/kitchen)
"sM" = (
/obj/machinery/power/compressor{
comp_id = "snowdin_turbine";
@@ -6530,23 +4528,6 @@
},
/turf/open/floor/iron/dark/snowdin,
/area/awaymission/snowdin/outside)
-"sV" = (
-/obj/structure/statue/snow/snowman{
- anchored = 1
- },
-/obj/item/clothing/head/hats/bowler{
- pixel_y = 13
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"sW" = (
-/obj/machinery/power/turbine{
- dir = 2;
- luminosity = 2
- },
-/obj/structure/cable,
-/turf/open/floor/engine/vacuum,
-/area/awaymission/snowdin/post/engineering)
"sX" = (
/obj/structure/flora/rock/icy,
/turf/open/floor/plating/asteroid/snow/ice,
@@ -6638,9 +4619,6 @@
/mob/living/simple_animal/hostile/asteroid/basilisk,
/turf/open/floor/plating/asteroid/snow/ice,
/area/awaymission/snowdin/cave/cavern)
-"tn" = (
-/turf/open/floor/plating/elevatorshaft,
-/area/awaymission/snowdin/post/mining_main)
"tp" = (
/turf/closed/wall/mineral/snow,
/area/awaymission/snowdin/cave/cavern)
@@ -6741,6 +4719,19 @@
/mob/living/simple_animal/hostile/poison/giant_spider/nurse/ice,
/turf/open/floor/plating/asteroid/snow/ice,
/area/awaymission/snowdin/cave/cavern)
+"tM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/sign/poster/contraband/kudzu{
+ pixel_y = 32
+ },
+/turf/open/floor/wood{
+ broken = 1
+ },
+/area/awaymission/snowdin/post/dorm)
"tN" = (
/turf/open/floor/plating/ice/smooth,
/area/awaymission/snowdin/outside)
@@ -6978,6 +4969,9 @@
},
/turf/open/floor/plating,
/area/awaymission/snowdin/post/cavern1)
+"uE" = (
+/turf/open/floor/plating/elevatorshaft,
+/area/awaymission/snowdin/post/mining_dock)
"uF" = (
/turf/open/floor/plating{
broken = 1
@@ -6986,6 +4980,21 @@
"uG" = (
/turf/open/floor/iron,
/area/awaymission/snowdin/post/cavern1)
+"uH" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/item/trash/can,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/dorm)
"uI" = (
/turf/closed/wall/ice,
/area/awaymission/snowdin/post/cavern1)
@@ -7099,6 +5108,20 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/awaymission/snowdin/post/cavern1)
+"vg" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post)
"vi" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -7107,6 +5130,18 @@
broken = 1
},
/area/awaymission/snowdin/post/cavern1)
+"vj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/secpost)
"vk" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/yellow{
@@ -7155,6 +5190,16 @@
},
/turf/open/floor/plating,
/area/awaymission/snowdin/post/cavern1)
+"vr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/wood,
+/area/awaymission/snowdin/post/dorm)
"vs" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/yellow,
@@ -7169,6 +5214,12 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
/turf/open/floor/plating,
/area/awaymission/snowdin/post/cavern1)
+"vu" = (
+/obj/vehicle/ridden/atv{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/minipost)
"vv" = (
/obj/machinery/light/small{
brightness = 3;
@@ -7200,6 +5251,14 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/ice,
/area/awaymission/snowdin/post/cavern1)
+"vB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/engineering)
"vC" = (
/obj/structure/rack,
/obj/machinery/light,
@@ -7421,15 +5480,6 @@
slowdown = 1
},
/area/awaymission/snowdin/cave)
-"wm" = (
-/obj/machinery/porta_turret/centcom_shuttle/weak{
- desc = "A turret built with substandard parts and run down further with age.";
- dir = 9;
- faction = list("pirate");
- icon_state = "syndie_off"
- },
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/cave)
"wn" = (
/obj/structure/closet/crate/wooden,
/obj/effect/spawner/lootdrop/snowdin/dungeonlite,
@@ -7505,21 +5555,6 @@
/obj/effect/decal/remains/human,
/turf/open/floor/plating/asteroid/snow,
/area/awaymission/snowdin/cave)
-"wy" = (
-/obj/structure/bonfire/prelit{
- burn_icon = "bonfire_warm"
- },
-/obj/effect/light_emitter{
- light_color = "#FAA019";
- light_power = 1;
- light_range = 4;
- name = "fire light"
- },
-/turf/open/floor/plating/asteroid/snow{
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/cave)
"wz" = (
/obj/structure/closet/crate/wooden,
/turf/open/floor/plating/asteroid/snow{
@@ -7538,18 +5573,6 @@
/obj/item/key,
/turf/open/floor/plating/asteroid/snow,
/area/awaymission/snowdin/outside)
-"wC" = (
-/obj/vehicle/ridden/atv{
- dir = 4;
- icon_state = "atv"
- },
-/obj/effect/light_emitter{
- name = "outdoor light";
- set_cap = 3;
- set_luminosity = 6
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
"wD" = (
/turf/closed/wall,
/area/awaymission/snowdin/post/mining_dock)
@@ -7646,9 +5669,50 @@
"wS" = (
/turf/closed/indestructible/rock/snow/ice,
/area/awaymission/snowdin/cave)
+"wT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post)
+"wU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/research)
+"wV" = (
+/obj/structure/plasticflaps,
+/obj/machinery/conveyor{
+ id = "snowdin_belt_mine"
+ },
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/mining_dock)
"wW" = (
/turf/open/floor/engine/cult,
/area/awaymission/snowdin/post/mining_dock)
+"wX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/closed/wall/ice,
+/area/awaymission/snowdin/post/engineering)
"wY" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -7689,6 +5753,17 @@
broken = 1
},
/area/awaymission/snowdin/post/mining_dock)
+"xg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/research)
"xh" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/engine/cult,
@@ -7781,6 +5856,17 @@
/obj/item/shard,
/turf/open/floor/plating,
/area/awaymission/snowdin/post/mining_dock)
+"xA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/dorm)
"xC" = (
/obj/effect/turf_decal/stripes/white/line{
dir = 4
@@ -7812,6 +5898,15 @@
/obj/machinery/portable_atmospherics/canister,
/turf/open/floor/plating/snowed,
/area/awaymission/snowdin/cave)
+"xI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/awaymission/snowdin/post/hydro)
"xJ" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -7820,6 +5915,19 @@
broken = 1
},
/area/awaymission/snowdin/post/mining_dock)
+"xK" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/turf_decal/weather/snow,
+/turf/open/floor/plating/snowed,
+/area/awaymission/snowdin/cave)
"xL" = (
/obj/machinery/atmospherics/pipe/manifold/orange/visible{
dir = 8
@@ -7839,6 +5947,19 @@
},
/turf/open/floor/plating,
/area/awaymission/snowdin/post/mining_dock)
+"xP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/kitchen)
"xR" = (
/obj/effect/light_emitter{
name = "outdoor light";
@@ -7869,16 +5990,26 @@
},
/turf/open/floor/plating/snowed,
/area/awaymission/snowdin/cave)
-"xV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3
- },
-/turf/closed/mineral/snowmountain/cavern,
-/area/awaymission/snowdin/cave/cavern)
"xW" = (
/turf/closed/wall/ice,
/area/awaymission/snowdin/post/mining_dock)
+"xX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/dorm)
"xY" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/firedoor,
@@ -7934,17 +6065,6 @@
/obj/structure/fence,
/turf/open/floor/plating/snowed/cavern,
/area/awaymission/snowdin/cave/cavern)
-"yj" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/closet/crate,
-/obj/item/relic,
-/obj/item/relic,
-/turf/open/floor/plating{
- broken = 1
- },
-/area/awaymission/snowdin/post/mining_dock)
"yl" = (
/obj/structure/sign/warning/nosmoking{
pixel_x = -32
@@ -8008,13 +6128,6 @@
"yv" = (
/turf/closed/wall/mineral/snow,
/area/awaymission/snowdin/outside)
-"yx" = (
-/obj/structure/closet/crate,
-/obj/item/relic,
-/obj/item/relic,
-/obj/item/relic,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
"yy" = (
/obj/effect/turf_decal/stripes/corner{
dir = 4
@@ -8137,6 +6250,24 @@
/obj/machinery/light/broken,
/turf/open/floor/plating,
/area/awaymission/snowdin/post/mining_dock)
+"yU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/item/storage/box{
+ illustration = "donk_kit";
+ name = "box of donkpockets"
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/kitchen)
"yV" = (
/obj/machinery/light/small{
dir = 4
@@ -8268,13 +6399,6 @@
"zp" = (
/turf/open/floor/plating,
/area/awaymission/snowdin/post/minipost)
-"zq" = (
-/obj/vehicle/ridden/atv{
- dir = 8;
- icon_state = "atv"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/minipost)
"zr" = (
/obj/effect/turf_decal/weather/snow/corner{
dir = 10
@@ -8388,27 +6512,6 @@
},
/turf/open/floor/plating,
/area/awaymission/snowdin/post/mining_dock)
-"zH" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4;
- piping_layer = 3
- },
-/obj/machinery/space_heater,
-/obj/structure/sign/warning/xeno_mining{
- pixel_x = 32
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"zI" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3
- },
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/post/mining_dock)
"zJ" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 8
@@ -8495,6 +6598,17 @@
/obj/structure/filingcabinet,
/turf/open/floor/plating,
/area/awaymission/snowdin/post/minipost)
+"zX" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/garage)
"zY" = (
/obj/effect/turf_decal/bot,
/obj/structure/ore_box,
@@ -8642,12 +6756,33 @@
/obj/machinery/door/airlock/external/glass,
/turf/open/floor/plating,
/area/awaymission/snowdin/post/minipost)
+"Aw" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/atmos{
+ dir = 1;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/effect/light_emitter{
+ name = "cave light";
+ set_cap = 3;
+ set_luminosity = 6
+ },
+/turf/open/floor/plating/snowed/smoothed,
+/area/awaymission/snowdin/post/engineering)
"Ax" = (
/obj/structure/chair/office{
dir = 4
},
/turf/open/floor/plating,
/area/awaymission/snowdin/post/minipost)
+"Ay" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post)
"Az" = (
/obj/effect/turf_decal/bot,
/obj/machinery/portable_atmospherics/canister,
@@ -8690,18 +6825,6 @@
/obj/structure/bed,
/turf/open/floor/plating/snowed/smoothed,
/area/awaymission/snowdin/post/minipost)
-"AI" = (
-/obj/structure/bonfire/prelit{
- burn_icon = "bonfire_warm"
- },
-/obj/effect/light_emitter{
- light_color = "#FAA019";
- light_power = 1;
- light_range = 4;
- name = "fire light"
- },
-/turf/open/floor/wood,
-/area/awaymission/snowdin/igloo)
"AJ" = (
/obj/effect/light_emitter{
name = "outdoor light";
@@ -8785,6 +6908,17 @@
/obj/structure/grille,
/turf/open/floor/plating,
/area/awaymission/snowdin/post/minipost)
+"AY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/research)
"AZ" = (
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -8853,6 +6987,30 @@
},
/turf/open/floor/plating,
/area/awaymission/snowdin/post/minipost)
+"Bl" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/open/floor/wood{
+ broken = 1
+ },
+/area/awaymission/snowdin/post/dorm)
+"Bm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ name = "Showers"
+ },
+/turf/open/floor/iron/showroomfloor,
+/area/awaymission/snowdin/post/dorm)
"Bn" = (
/obj/effect/turf_decal/weather/snow/corner{
dir = 5
@@ -8892,6 +7050,22 @@
/obj/machinery/computer/monitor/secret,
/turf/open/floor/plating,
/area/awaymission/snowdin/post/minipost)
+"Bu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/door/airlock{
+ name = "Freezer"
+ },
+/obj/structure/barricade/wooden,
+/obj/structure/spider/stickyweb,
+/turf/open/floor/iron/freezer,
+/area/awaymission/snowdin/post/kitchen)
"Bv" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/machinery/portable_atmospherics/canister,
@@ -9293,6 +7467,17 @@
/obj/structure/table/reinforced,
/turf/open/floor/iron/dark,
/area/awaymission/snowdin/cave)
+"CI" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/effect/turf_decal/tile/green/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/hydro)
"CJ" = (
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/iron/dark,
@@ -9304,23 +7489,24 @@
/obj/effect/turf_decal/bot_white,
/turf/open/floor/iron/dark,
/area/awaymission/snowdin/cave)
-"CO" = (
-/obj/machinery/recharge_station,
-/turf/open/floor/circuit/red,
-/area/awaymission/snowdin/cave)
-"CP" = (
-/obj/structure/shuttle/engine/heater{
+"CL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4;
- icon_state = "heater"
+ pixel_x = 5;
+ pixel_y = 5
},
-/obj/effect/turf_decal/stripes/line{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/window/reinforced{
- dir = 8
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/effect/turf_decal/weather/snow,
-/turf/open/floor/plating/snowed,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post)
+"CO" = (
+/obj/machinery/recharge_station,
+/turf/open/floor/circuit/red,
/area/awaymission/snowdin/cave)
"CQ" = (
/obj/structure/shuttle/engine/propulsion/left{
@@ -9350,6 +7536,52 @@
},
/turf/open/floor/plating/asteroid/snow,
/area/awaymission/snowdin/cave)
+"CV" = (
+/obj/structure/table,
+/obj/effect/decal/cleanable/cobweb,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/garage)
+"CW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/public/glass{
+ name = "Hydroponics";
+ req_access_txt = "35"
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/cafeteria,
+/area/awaymission/snowdin/post/messhall)
+"CY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/messhall)
"CZ" = (
/obj/structure/frame/machine,
/obj/item/stack/cable_coil/red{
@@ -9405,6 +7637,20 @@
},
/turf/open/floor/mineral/plastitanium/red,
/area/awaymission/snowdin/cave)
+"Dj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post)
"Dl" = (
/obj/structure/shuttle/engine/propulsion/right{
dir = 4
@@ -9458,6 +7704,16 @@
/obj/item/stack/rods,
/turf/open/floor/mineral/plastitanium/red,
/area/awaymission/snowdin/cave)
+"Ds" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/holopad,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/kitchen)
"Du" = (
/obj/structure/girder,
/turf/open/floor/plating/asteroid/snow{
@@ -9480,6 +7736,19 @@
/obj/machinery/light/built,
/turf/open/floor/plating/snowed,
/area/awaymission/snowdin/cave)
+"DA" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/space_heater,
+/obj/structure/sign/warning/xeno_mining{
+ pixel_x = 32
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/mining_dock)
"DB" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -9543,6 +7812,23 @@
/obj/effect/decal/cleanable/blood/drip,
/turf/open/floor/plating/snowed,
/area/awaymission/snowdin/cave)
+"DQ" = (
+/obj/item/gun/ballistic/rifle/boltaction,
+/obj/item/ammo_box/a762,
+/obj/item/ammo_box/a762,
+/obj/structure/closet/secure_closet{
+ icon_state = "sec";
+ name = "security officer's locker";
+ req_access_txt = "201"
+ },
+/obj/item/restraints/handcuffs,
+/obj/item/assembly/flash,
+/obj/item/storage/box/rubbershot,
+/obj/structure/fireaxecabinet{
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/secpost)
"DR" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -9550,6 +7836,18 @@
/obj/item/shard,
/turf/open/floor/mineral/plastitanium/red,
/area/awaymission/snowdin/cave)
+"DS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/hydro)
"DT" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -9626,6 +7924,16 @@
},
/turf/open/floor/plating/asteroid/snow,
/area/awaymission/snowdin/cave)
+"Ef" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/shower{
+ pixel_y = 25
+ },
+/turf/open/floor/iron/showroomfloor,
+/area/awaymission/snowdin/post/dorm)
"Eg" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -9692,6 +8000,18 @@
/obj/item/shard,
/turf/open/floor/mineral/plastitanium/red,
/area/awaymission/snowdin/cave)
+"Et" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/effect/turf_decal/tile/green/half/contrasted,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/hydro)
"Eu" = (
/obj/structure/table/reinforced,
/obj/item/reagent_containers/food/drinks/beer{
@@ -9709,6 +8029,15 @@
},
/turf/open/floor/mineral/plastitanium/red,
/area/awaymission/snowdin/cave)
+"Ew" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/janitorialcart,
+/obj/item/mop,
+/turf/open/floor/iron/dark,
+/area/awaymission/snowdin/post/custodials)
"Ey" = (
/obj/structure/girder,
/obj/effect/turf_decal/weather/snow,
@@ -9787,6 +8116,16 @@
"EH" = (
/turf/open/floor/iron/dark,
/area/awaymission/snowdin/cave)
+"EI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/door/airlock/public/glass,
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post)
"EM" = (
/obj/structure/table/optable,
/obj/effect/turf_decal/bot_white,
@@ -9794,26 +8133,10 @@
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/iron/dark,
/area/awaymission/snowdin/cave)
-"EN" = (
-/obj/machinery/sleeper/syndie{
- dir = 1;
- icon_state = "sleeper_s"
- },
-/obj/effect/turf_decal/bot_white,
-/turf/open/floor/iron/dark,
-/area/awaymission/snowdin/cave)
"EO" = (
/obj/effect/turf_decal/bot_white,
/turf/open/floor/iron/dark,
/area/awaymission/snowdin/cave)
-"EP" = (
-/obj/effect/turf_decal/bot_white,
-/obj/machinery/sleeper/syndie{
- dir = 1;
- icon_state = "sleeper_s"
- },
-/turf/open/floor/iron/dark,
-/area/awaymission/snowdin/cave)
"ES" = (
/obj/structure/table/reinforced,
/obj/machinery/light/built,
@@ -10064,15 +8387,6 @@
/obj/structure/lattice/catwalk,
/turf/open/floor/plating/snowed/smoothed,
/area/awaymission/snowdin/outside)
-"FF" = (
-/obj/structure/statue/snow/snowman{
- name = "Snow-Luc Price"
- },
-/obj/item/clothing/head/hats/hos{
- pixel_y = 10
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
"FG" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -10105,16 +8419,6 @@
},
/turf/open/floor/plating,
/area/awaymission/snowdin/post/mining_dock)
-"FK" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4;
- piping_layer = 3
- },
-/obj/structure/sign/warning/xeno_mining{
- pixel_x = 32
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
"FL" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 8
@@ -10173,32 +8477,25 @@
/obj/structure/ore_box,
/turf/closed/mineral/snowmountain/cavern,
/area/awaymission/snowdin/cave/cavern)
+"FV" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/open/floor/wood{
+ broken = 1
+ },
+/area/awaymission/snowdin/post/dorm)
"FW" = (
/obj/structure/sign/nanotrasen{
pixel_y = -32
},
/turf/open/floor/plating/asteroid/snow/ice,
/area/awaymission/snowdin/cave/cavern)
-"FX" = (
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/obj/effect/turf_decal/tile/green/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/hydro)
-"FY" = (
-/obj/machinery/conveyor{
- dir = 2;
- id = "snowdin_belt_mine"
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/snow/ice,
-/area/awaymission/snowdin/post/mining_dock)
"FZ" = (
/turf/closed/wall/ice,
/area/awaymission/snowdin/post/mining_main)
@@ -10212,17 +8509,6 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/turf/open/floor/plating,
/area/awaymission/snowdin/post/mining_main)
-"Gc" = (
-/obj/structure/statue/snow/snowman{
- anchored = 1;
- name = "snowman"
- },
-/obj/item/pickaxe/mini{
- pixel_x = 5;
- pixel_y = 3
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
"Gd" = (
/turf/closed/wall/ice,
/area/awaymission/snowdin/post/mining_main/robotics)
@@ -10288,14 +8574,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/awaymission/snowdin/post/mining_main/mechbay)
-"Gn" = (
-/obj/structure/plasticflaps,
-/obj/machinery/conveyor{
- dir = 2;
- id = "snowdin_belt_mine"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
"Go" = (
/turf/closed/wall,
/area/awaymission/snowdin/post/mining_main)
@@ -10356,14 +8634,14 @@
/turf/closed/wall,
/area/awaymission/snowdin/post/mining_main/robotics)
"Gy" = (
-/obj/structure/table,
-/obj/item/clothing/head/utility/welding{
- pixel_x = -3;
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
pixel_y = 5
},
-/obj/item/clothing/glasses/welding,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/mining_main/robotics)
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/secpost)
"Gz" = (
/turf/open/floor/plating,
/area/awaymission/snowdin/post/mining_main/robotics)
@@ -10453,19 +8731,6 @@
"GN" = (
/turf/closed/wall,
/area/awaymission/snowdin/post/mining_main/mechbay)
-"GO" = (
-/obj/machinery/mineral/unloading_machine{
- dir = 1;
- icon_state = "unloader-corner";
- input_dir = 1;
- output_dir = 2
- },
-/obj/machinery/conveyor{
- dir = 2;
- id = "snowdin_belt_mine"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
"GP" = (
/turf/closed/wall/rust,
/area/awaymission/snowdin/post/mining_main)
@@ -10575,13 +8840,6 @@
/obj/structure/window/reinforced/fulltile/ice,
/turf/open/floor/plating,
/area/awaymission/snowdin/post/mining_main/mechbay)
-"Hk" = (
-/obj/machinery/conveyor{
- dir = 2;
- id = "snowdin_belt_mine"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
"Hl" = (
/obj/effect/baseturf_helper/asteroid/snow,
/turf/closed/wall,
@@ -10691,17 +8949,6 @@
/obj/machinery/mineral/processing_unit_console,
/turf/closed/wall,
/area/awaymission/snowdin/post/mining_main/mechbay)
-"HC" = (
-/obj/machinery/mineral/processing_unit{
- dir = 1;
- output_dir = 2
- },
-/obj/machinery/conveyor{
- dir = 2;
- id = "snowdin_belt_mine"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
"HD" = (
/obj/structure/table,
/turf/open/floor/plating{
@@ -10803,6 +9050,48 @@
"HW" = (
/turf/open/floor/iron,
/area/awaymission/snowdin/post/mining_main)
+"HX" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/awaymission/snowdin/post/hydro)
+"HY" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/garage)
+"HZ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 6;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/engineering)
"Ia" = (
/obj/machinery/door/poddoor/shutters{
id = "snowdingarage3";
@@ -10826,17 +9115,58 @@
},
/turf/open/floor/iron/white,
/area/awaymission/snowdin/post/mining_main/robotics)
+"Id" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/dorm)
"Ie" = (
/obj/structure/barricade/sandbags,
/turf/open/floor/plating{
broken = 1
},
/area/awaymission/snowdin/post/mining_dock)
+"If" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/table,
+/obj/item/stack/sheet/glass/fifty{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/obj/item/stack/sheet/iron/fifty{
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/engineering)
"Ig" = (
-/obj/vehicle/sealed/mecha/working/ripley/mining,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/mech_bay_recharge_floor,
-/area/awaymission/snowdin/post/mining_main/mechbay)
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 5;
+ pixel_y = -32
+ },
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post)
"Ii" = (
/obj/machinery/mech_bay_recharge_port,
/obj/machinery/light,
@@ -10901,14 +9231,6 @@
},
/turf/open/floor/plating,
/area/awaymission/snowdin/post/mining_main)
-"Ix" = (
-/obj/vehicle/ridden/atv{
- dir = 1;
- icon_state = "atv"
- },
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main)
"Iy" = (
/obj/structure/table,
/turf/open/floor/plating,
@@ -10930,6 +9252,18 @@
/obj/structure/table,
/turf/open/floor/iron/white,
/area/awaymission/snowdin/post/mining_main/robotics)
+"IC" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/garage)
"IE" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
@@ -11022,6 +9356,18 @@
},
/turf/open/floor/plating,
/area/awaymission/snowdin/post/mining_main/mechbay)
+"IR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock{
+ id_tag = "snowdindormhydro1";
+ name = "Katherine Esterdeen's Private Quarters"
+ },
+/turf/open/floor/wood,
+/area/awaymission/snowdin/post/dorm)
"IT" = (
/obj/effect/turf_decal/tile/neutral{
dir = 8
@@ -11030,6 +9376,15 @@
heat_capacity = 1e+006
},
/area/awaymission/snowdin/post/mining_main)
+"IW" = (
+/obj/structure/table,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/kitchen/fork,
+/turf/open/floor/iron/cafeteria,
+/area/awaymission/snowdin/post/messhall)
"IX" = (
/obj/structure/closet/crate{
opened = 1
@@ -11165,6 +9520,30 @@
},
/turf/open/floor/plating,
/area/awaymission/snowdin/post/mining_main)
+"Jy" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post)
+"Jz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/visible{
+ dir = 8
+ },
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/awaymission/snowdin/post/engineering)
"JA" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -11174,6 +9553,16 @@
},
/turf/open/floor/plating,
/area/awaymission/snowdin/post/mining_dock)
+"JD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/effect/decal/cleanable/food/egg_smudge,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/kitchen)
"JE" = (
/obj/structure/closet/crate{
opened = 1
@@ -11185,14 +9574,45 @@
"JF" = (
/obj/structure/ore_box,
/obj/effect/turf_decal/bot,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/mining_dock)
-"JK" = (
-/obj/machinery/light/small{
- dir = 4
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/mining_dock)
+"JK" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/carpet/grimy,
+/area/awaymission/snowdin/post/mining_main)
+"JL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/public/glass{
+ name = "Dorms"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/dorm)
+"JM" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/item/clothing/head/utility/welding,
+/obj/item/weldingtool/largetank,
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/supply/visible{
+ dir = 8
},
-/turf/open/floor/carpet/grimy,
-/area/awaymission/snowdin/post/mining_main)
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/engineering)
"JN" = (
/obj/structure/closet/crate{
opened = 1
@@ -11209,6 +9629,40 @@
/obj/machinery/space_heater,
/turf/open/floor/plating,
/area/awaymission/snowdin/post/mining_main)
+"JR" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/garage)
+"JS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/carpet,
+/area/awaymission/snowdin/post/dorm)
+"JT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/garage)
"JV" = (
/obj/machinery/power/port_gen/pacman,
/obj/structure/cable{
@@ -11237,6 +9691,68 @@
},
/turf/open/floor/plating,
/area/awaymission/snowdin/post/mining_dock)
+"Kb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/dorm)
+"Kd" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 5;
+ pixel_y = -32
+ },
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/awaymission/snowdin/post/dorm)
+"Ke" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/engineering)
+"Kg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/dorm)
+"Kh" = (
+/obj/structure/bed,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/bedsheet/orange,
+/turf/open/floor/wood,
+/area/awaymission/snowdin/post/dorm)
"Ki" = (
/obj/machinery/light{
dir = 8
@@ -11260,6 +9776,20 @@
},
/turf/open/floor/plating,
/area/awaymission/snowdin/post/mining_main)
+"Kl" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/ice,
+/area/awaymission/snowdin/post/mining_dock)
+"Kn" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/kitchenspike,
+/turf/open/floor/iron/freezer,
+/area/awaymission/snowdin/post/kitchen)
"Kp" = (
/obj/machinery/holopad,
/turf/open/floor/plating,
@@ -11280,6 +9810,14 @@
},
/turf/open/floor/plating,
/area/awaymission/snowdin/post/mining_dock)
+"Ku" = (
+/obj/structure/bed,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/open/floor/wood,
+/area/awaymission/snowdin/post/dorm)
"Kv" = (
/obj/machinery/power/terminal{
dir = 1
@@ -11335,6 +9873,31 @@
/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted,
/turf/open/floor/iron,
/area/awaymission/snowdin/post/engineering)
+"KE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/kitchen/fork,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/kitchen)
+"KF" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/garage)
"KG" = (
/obj/structure/sign/warning/docking{
pixel_x = 32
@@ -11367,6 +9930,20 @@
},
/turf/open/floor/plating,
/area/awaymission/snowdin/post/mining_main)
+"KM" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post)
"KN" = (
/obj/structure/sign/warning/docking{
pixel_x = 32
@@ -11375,21 +9952,6 @@
broken = 1
},
/area/awaymission/snowdin/post/mining_main)
-"KO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/research)
"KP" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -11399,27 +9961,111 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/mining_main)
+"KQ" = (
+/obj/structure/table,
+/obj/item/clothing/neck/stethoscope,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/awaymission/snowdin/post)
+"KS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/awaymission/snowdin/post)
+"KV" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post)
"KW" = (
/obj/effect/turf_decal/tile/brown/anticorner/contrasted{
dir = 4
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/mining_dock)
+"KY" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/garage)
+"KZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/hydro)
"La" = (
/obj/effect/spawner/lootdrop/crate_spawner,
/turf/open/floor/plating/asteroid/snow/ice,
/area/awaymission/snowdin/cave/cavern)
-"Lc" = (
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
+"Lb" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
},
/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/awaymission/snowdin/post/dorm)
+"Le" = (
+/obj/machinery/conveyor{
+ id = "snowdin_belt_mine"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/snow/ice,
+/area/awaymission/snowdin/post/mining_dock)
+"Lf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
-/area/awaymission/snowdin/post/research)
+/area/awaymission/snowdin/post/dorm)
"Lg" = (
/obj/item/reagent_containers/food/drinks/beer{
list_reagents = null
@@ -11446,6 +10092,30 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/minipost)
+"Lj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/door/airlock{
+ id_tag = "snowdindormcap";
+ name = "Overseer's Private Quarters"
+ },
+/turf/open/floor/carpet,
+/area/awaymission/snowdin/post/dorm)
+"Ll" = (
+/obj/structure/bed,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/effect/landmark/awaystart,
+/turf/open/floor/wood,
+/area/awaymission/snowdin/post/dorm)
"Lm" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -11484,6 +10154,15 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark/snowdin,
/area/awaymission/snowdin/cave)
+"Lr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/kitchen)
"Lt" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 8
@@ -11511,6 +10190,24 @@
},
/turf/open/floor/plating,
/area/awaymission/snowdin/post/mining_dock)
+"Ly" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/public/glass{
+ name = "Research Desks"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/research)
"Lz" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -11536,23 +10233,43 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/mining_dock)
-"LF" = (
+"LG" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/dorm)
+"LH" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/cafeteria,
+/area/awaymission/snowdin/post/messhall)
+"LI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
+ dir = 5;
pixel_x = 5;
pixel_y = 5
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
},
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post)
-"LG" = (
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
},
-/turf/open/floor/iron,
+/turf/open/floor/iron/showroomfloor,
/area/awaymission/snowdin/post/dorm)
"LJ" = (
/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
@@ -11560,6 +10277,27 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/mining_dock)
+"LK" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post)
+"LN" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/closet/crate,
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/awaymission/snowdin/post/mining_dock)
"LO" = (
/obj/structure/cable{
icon_state = "2-8"
@@ -11581,25 +10319,40 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/cavern1)
-"LS" = (
-/obj/effect/turf_decal/stripes/corner{
+"LQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/effect/turf_decal/tile/brown/anticorner/contrasted,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/snowdin_station_sign/up/six,
/turf/open/floor/iron,
-/area/awaymission/snowdin/post/mining_dock)
-"LU" = (
+/area/awaymission/snowdin/post)
+"LR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
+ dir = 4;
pixel_x = 5;
pixel_y = 5
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/awaymission/snowdin/post)
+"LS" = (
+/obj/effect/turf_decal/stripes/corner{
dir = 4
},
+/obj/effect/turf_decal/tile/brown/anticorner/contrasted,
/turf/open/floor/iron,
-/area/awaymission/snowdin/post/dorm)
+/area/awaymission/snowdin/post/mining_dock)
"LX" = (
/obj/machinery/vending/wallmed{
pixel_y = 32
@@ -11639,46 +10392,23 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron/dark,
/area/awaymission/snowdin/cave)
-"Me" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/secpost)
"Mf" = (
/obj/effect/turf_decal/tile/blue/opposingcorners{
dir = 1
},
/turf/open/floor/iron/white,
/area/awaymission/snowdin/post/minipost)
-"Mh" = (
+"Mg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
pixel_x = 5;
pixel_y = 5
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/public/glass{
- name = "Research Desks"
- },
-/obj/machinery/door/firedoor,
+/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 8
+ dir = 4
},
/turf/open/floor/iron,
-/area/awaymission/snowdin/post/research)
+/area/awaymission/snowdin/post)
"Mi" = (
/obj/structure/cable/yellow{
icon_state = "2-4"
@@ -11705,24 +10435,6 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/mining_main)
-"Mp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post)
"Ms" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -11735,6 +10447,32 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron/dark,
/area/awaymission/snowdin/cave)
+"Mu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post)
+"Mv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/door/airlock{
+ id_tag = "snowdindormsec";
+ name = "James Reed's Private Quarters"
+ },
+/turf/open/floor/wood,
+/area/awaymission/snowdin/post/dorm)
"Mx" = (
/obj/effect/turf_decal/stripes/corner,
/obj/effect/turf_decal/tile/brown/anticorner/contrasted{
@@ -11742,6 +10480,20 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/mining_dock)
+"My" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/research)
"Mz" = (
/obj/structure/ore_box,
/obj/effect/turf_decal/bot,
@@ -11750,6 +10502,26 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/mining_dock)
+"MB" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/snowdin_station_sign,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post)
"MC" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/caution/stand_clear{
@@ -11777,36 +10549,35 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/mining_main)
-"MF" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8;
- piping_layer = 3;
+"MG" = (
+/obj/structure/table/reinforced,
+/obj/effect/spawner/lootdrop/snowdin/dungeonlite,
+/obj/effect/spawner/lootdrop/snowdin/dungeonlite,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron/dark,
+/area/awaymission/snowdin/cave)
+"MI" = (
+/obj/item/paper/crumpled/ruins/snowdin/misc1,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron/dark,
+/area/awaymission/snowdin/cave)
+"MK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
pixel_x = 5;
pixel_y = 5
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 8
+ icon_state = "4-8"
},
+/obj/effect/turf_decal/snowdin_station_sign/up/three,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/awaymission/snowdin/post)
-"MG" = (
-/obj/structure/table/reinforced,
-/obj/effect/spawner/lootdrop/snowdin/dungeonlite,
-/obj/effect/spawner/lootdrop/snowdin/dungeonlite,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/awaymission/snowdin/cave)
-"MI" = (
-/obj/item/paper/crumpled/ruins/snowdin/misc1,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/awaymission/snowdin/cave)
"ML" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -11834,6 +10605,18 @@
},
/turf/open/floor/iron/white,
/area/awaymission/snowdin/post/minipost)
+"MS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/dorm)
"MU" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/closed/wall,
@@ -11853,6 +10636,23 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/awaymission/snowdin/cave)
+"Nb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/awaymission/snowdin/post)
+"Nc" = (
+/obj/vehicle/sealed/mecha/working/ripley/mining,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/mech_bay_recharge_floor,
+/area/awaymission/snowdin/post/mining_main/mechbay)
"Nd" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -11868,12 +10668,6 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/mining_main)
-"Ng" = (
-/obj/structure/closet/crate,
-/obj/item/relic,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/mining_dock)
"Nj" = (
/obj/structure/door_assembly/door_assembly_min{
anchored = 1;
@@ -11893,6 +10687,24 @@
},
/turf/open/floor/iron/white,
/area/awaymission/snowdin/post)
+"Nm" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/awaymission/snowdin/post/hydro)
"Nn" = (
/obj/effect/turf_decal/stripes/corner{
dir = 8
@@ -11902,20 +10714,27 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/mining_main)
-"Ns" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
+"No" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5;
pixel_x = 5;
pixel_y = 5
},
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/obj/effect/turf_decal/tile/red/anticorner/contrasted{
- dir = 4
+/turf/open/floor/carpet,
+/area/awaymission/snowdin/post/dorm)
+"Nr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5;
+ pixel_x = 5;
+ pixel_y = 5
},
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/secpost)
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/broken,
+/turf/open/floor/iron/showroomfloor,
+/area/awaymission/snowdin/post/dorm)
"Nt" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/seed_extractor,
@@ -11963,42 +10782,30 @@
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/turf/open/floor/iron,
/area/awaymission/snowdin/post/engineering)
-"NH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+"NF" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
},
+/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 8
+ dir = 4
},
/turf/open/floor/iron,
-/area/awaymission/snowdin/post/dorm)
-"NK" = (
+/area/awaymission/snowdin/post/research)
+"NN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
pixel_x = 5;
pixel_y = 5
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/public/glass{
- name = "Dorms"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
+/obj/machinery/button/door{
+ id = "snowdindormcap";
+ name = "Dorm Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = 25;
+ specialfunctions = 4
},
-/turf/open/floor/iron,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/carpet,
/area/awaymission/snowdin/post/dorm)
"NO" = (
/obj/effect/decal/cleanable/dirt,
@@ -12026,6 +10833,32 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/awaymission/snowdin/post/mining_main)
+"NW" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/engineering)
+"NX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/awaymission/snowdin/post/messhall)
"NY" = (
/obj/machinery/light{
dir = 4
@@ -12041,6 +10874,13 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/mining_dock)
+"NZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/open/floor/carpet,
+/area/awaymission/snowdin/post/dorm)
"Oa" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 8
@@ -12053,21 +10893,17 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/awaymission/snowdin/post/dorm)
-"Ob" = (
+"Of" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4;
- piping_layer = 3;
pixel_x = 5;
pixel_y = 5
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron,
+/turf/open/floor/plating,
/area/awaymission/snowdin/post/dorm)
"Oi" = (
/obj/item/stack/rods,
@@ -12082,6 +10918,40 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/awaymission/snowdin/post)
+"Ok" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post)
+"On" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/public/glass{
+ name = "Kitchen";
+ req_access_txt = "35"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/barricade/wooden/crude,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/kitchen)
"Op" = (
/obj/machinery/atmospherics/pipe/manifold/orange/visible{
dir = 4
@@ -12100,6 +10970,15 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/mining_dock)
+"Ox" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/awaymission/snowdin/post/garage)
"Oy" = (
/obj/machinery/door/airlock/public/glass{
name = "Dorms"
@@ -12110,18 +10989,15 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/dorm)
-"Oz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
+"OA" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
pixel_x = 5;
pixel_y = 5
},
/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/blue/opposingcorners{
- dir = 1
- },
-/turf/open/floor/iron/white,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
/area/awaymission/snowdin/post)
"OC" = (
/obj/structure/table,
@@ -12146,11 +11022,6 @@
heat_capacity = 1e+006
},
/area/awaymission/snowdin/post/mining_dock)
-"OF" = (
-/turf/open/floor/plating/elevatorshaft{
- initial_gas_mix = "o2=22;n2=82;TEMP=180"
- },
-/area/awaymission/snowdin/cave)
"OJ" = (
/obj/item/shard,
/obj/item/stack/cable_coil/red{
@@ -12179,6 +11050,18 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/mining_main)
+"OP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/research)
"OQ" = (
/obj/item/shard,
/obj/effect/turf_decal/tile/blue/opposingcorners{
@@ -12206,6 +11089,36 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/awaymission/snowdin/cave)
+"OX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/kitchen)
+"OY" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/visible,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/engineering)
+"OZ" = (
+/obj/machinery/power/turbine{
+ luminosity = 2
+ },
+/obj/structure/cable,
+/turf/open/floor/engine/vacuum,
+/area/awaymission/snowdin/post/engineering)
"Pa" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -12230,6 +11143,34 @@
/obj/effect/turf_decal/tile/bar/opposingcorners,
/turf/open/floor/iron,
/area/awaymission/snowdin/post/messhall)
+"Pd" = (
+/obj/structure/bed,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/effect/landmark/awaystart,
+/obj/item/paper/crumpled/ruins/snowdin/dontdeadopeninside,
+/obj/item/bedsheet/green,
+/turf/open/floor/wood,
+/area/awaymission/snowdin/post/dorm)
+"Pg" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/item/trash/can,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/dorm)
"Pi" = (
/obj/structure/noticeboard{
pixel_y = 32
@@ -12248,6 +11189,26 @@
/obj/effect/turf_decal/tile/bar/opposingcorners,
/turf/open/floor/iron,
/area/awaymission/snowdin/post/messhall)
+"Pn" = (
+/obj/machinery/conveyor{
+ id = "snowdin_belt_mine"
+ },
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/mining_dock)
+"Po" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/secpost)
"Pp" = (
/obj/structure/table,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -12264,6 +11225,20 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post)
+"Pr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/effect/landmark/awaystart,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/gateway)
"Ps" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/extinguisher_cabinet{
@@ -12303,6 +11278,40 @@
},
/turf/open/floor/iron/white,
/area/awaymission/snowdin/post)
+"PA" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/hydro)
+"PC" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/dorm)
+"PD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post)
"PE" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
@@ -12317,6 +11326,15 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post)
+"PI" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/garage)
"PJ" = (
/obj/structure/table,
/obj/item/storage/firstaid/ancient,
@@ -12325,14 +11343,22 @@
},
/turf/open/floor/iron/white,
/area/awaymission/snowdin/post)
-"PK" = (
-/obj/structure/closet/crate,
-/obj/item/relic,
-/obj/item/relic,
-/obj/item/relic,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+"PM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/snowdin_station_sign/up/five,
+/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
-/area/awaymission/snowdin/post/mining_dock)
+/area/awaymission/snowdin/post)
"PO" = (
/obj/effect/spawner/randomvend/snack,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -12345,6 +11371,21 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/secpost)
+"PS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/dorm)
"PV" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
@@ -12357,23 +11398,36 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/awaymission/snowdin/cave)
-"Qa" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1;
- piping_layer = 3;
+"PX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
pixel_x = 5;
pixel_y = 5
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock{
+ id_tag = "snowdindormresearch1";
+ name = "Jacob Ullman's Private Quarters"
},
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+/turf/open/floor/wood,
+/area/awaymission/snowdin/post/dorm)
+"PZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
},
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post)
+"Qc" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ pixel_x = 5;
+ pixel_y = 5
},
-/turf/open/floor/iron,
+/obj/structure/closet/crate,
+/obj/item/clothing/shoes/winterboots,
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/clothing/suit/hooded/wintercoat,
+/turf/open/floor/plating,
/area/awaymission/snowdin/post/dorm)
"Qe" = (
/obj/effect/turf_decal/tile/brown/half/contrasted{
@@ -12407,6 +11461,13 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/engineering)
+"Qk" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/open/floor/iron/showroomfloor,
+/area/awaymission/snowdin/post/dorm)
"Ql" = (
/obj/effect/turf_decal/tile/brown/half/contrasted{
dir = 8
@@ -12421,38 +11482,148 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark/snowdin,
/area/awaymission/snowdin/outside)
-"Qo" = (
-/obj/item/reagent_containers/blood,
+"Qq" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron{
+ heat_capacity = 1e+006
+ },
+/area/awaymission/snowdin/post/cavern1)
+"Qr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/open/floor/iron/cafeteria,
+/area/awaymission/snowdin/post/messhall)
+"Qs" = (
+/obj/machinery/light,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post)
+"Qu" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/cavern1)
+"Qw" = (
+/obj/machinery/light,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/mining_dock)
+"Qx" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron{
+ heat_capacity = 1e+006
+ },
+/area/awaymission/snowdin/post/mining_dock)
+"Qy" = (
+/obj/structure/closet/crate,
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/mining_dock)
+"Qz" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/screwdriver,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/secpost)
+"QA" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/awaymission/snowdin/post/garage)
+"QB" = (
+/obj/item/shard,
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron/dark,
+/area/awaymission/snowdin/cave)
+"QC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post)
+"QG" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
+ dir = 1;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/garage)
+"QH" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/awaymission/snowdin/post/hydro)
+"QI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6;
pixel_x = 5;
pixel_y = 5
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/blue/opposingcorners{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/awaymission/snowdin/post)
-"Qq" = (
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
},
-/turf/open/floor/iron{
- heat_capacity = 1e+006
+/obj/effect/landmark/awaystart,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/area/awaymission/snowdin/post/cavern1)
-"Qs" = (
-/obj/machinery/light,
+/obj/machinery/holopad,
/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 8
- },
/turf/open/floor/iron,
+/area/awaymission/snowdin/post/gateway)
+"QK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
/area/awaymission/snowdin/post)
-"Qt" = (
+"QL" = (
+/obj/machinery/door/airlock/external{
+ name = "Ready Room";
+ req_access_txt = "150"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron/dark,
+/area/awaymission/snowdin/cave)
+"QM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
pixel_x = 5;
pixel_y = 5
},
@@ -12465,50 +11636,24 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/dorm)
-"Qu" = (
-/obj/effect/turf_decal/tile/neutral/half/contrasted,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/cavern1)
-"Qw" = (
-/obj/machinery/light,
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
+"QN" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/mining_dock)
-"Qx" = (
/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 1
- },
-/turf/open/floor/iron{
- heat_capacity = 1e+006
+ icon_state = "1-4"
},
-/area/awaymission/snowdin/post/mining_dock)
-"Qz" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/screwdriver,
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 8
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
},
+/obj/effect/turf_decal/snowdin_station_sign/up,
/turf/open/floor/iron,
-/area/awaymission/snowdin/post/secpost)
-"QB" = (
-/obj/item/shard,
-/obj/effect/turf_decal/tile/neutral/half/contrasted,
-/turf/open/floor/iron/dark,
-/area/awaymission/snowdin/cave)
-"QL" = (
-/obj/machinery/door/airlock/external{
- name = "Ready Room";
- req_access_txt = "150"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/awaymission/snowdin/cave)
+/area/awaymission/snowdin/post)
"QQ" = (
/obj/machinery/door/airlock/external{
name = "Ready Room";
@@ -12520,21 +11665,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/awaymission/snowdin/cave)
-"QR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post)
"QS" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/effect/turf_decal/tile/neutral/half/contrasted,
@@ -12547,18 +11677,13 @@
},
/turf/open/floor/iron/white,
/area/awaymission/snowdin/post/minipost)
-"QU" = (
+"QW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
+ dir = 4;
pixel_x = 5;
pixel_y = 5
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
+/turf/open/floor/plating,
/area/awaymission/snowdin/post/dorm)
"QZ" = (
/obj/machinery/door/airlock/mining/glass{
@@ -12575,6 +11700,42 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/dorm)
+"Re" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post)
+"Rg" = (
+/obj/machinery/atmospherics/pipe/simple/supply/visible,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ dir = 8;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/engineering)
+"Rh" = (
+/obj/machinery/power/apc{
+ name = "Gateway APC";
+ pixel_y = -24;
+ req_access = 150
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/gateway)
"Ri" = (
/obj/item/storage/firstaid{
empty = 1
@@ -12585,6 +11746,20 @@
},
/turf/open/floor/iron/white,
/area/awaymission/snowdin/post)
+"Rm" = (
+/obj/machinery/door/airlock/public/glass{
+ name = "Garage"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/garage)
"Ro" = (
/obj/structure/closet/emcloset,
/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
@@ -12630,6 +11805,15 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron/dark,
/area/awaymission/snowdin/cave)
+"Ry" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/sign/warning/xeno_mining{
+ pixel_x = 32
+ },
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/mining_dock)
"Rz" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -12673,6 +11857,22 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/mining_main)
+"RJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/awaymission/snowdin/post/dorm)
"RK" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -12711,10 +11911,41 @@
},
/turf/open/floor/iron/white,
/area/awaymission/snowdin/post)
+"RQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/open/floor/iron/showroomfloor,
+/area/awaymission/snowdin/post/dorm)
"RS" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/awaymission/snowdin/post/mining_dock)
+"RU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock{
+ id_tag = "snowdindormresearch2";
+ name = "Elizabeth Queef's Private Quarters"
+ },
+/turf/open/floor/wood,
+/area/awaymission/snowdin/post/dorm)
+"RV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/garage)
"RW" = (
/obj/item/stack/rods,
/obj/item/reagent_containers/food/drinks/beer{
@@ -12723,6 +11954,13 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron/dark,
/area/awaymission/snowdin/cave)
+"RX" = (
+/obj/effect/turf_decal/bot_white,
+/obj/machinery/sleeper/syndie{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/awaymission/snowdin/cave)
"RY" = (
/obj/structure/closet/crate/freezer,
/obj/item/reagent_containers/blood/random,
@@ -12769,6 +12007,18 @@
/obj/effect/turf_decal/tile/brown/anticorner/contrasted,
/turf/open/floor/iron,
/area/awaymission/snowdin/post/mining_main)
+"Sj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post)
"Sk" = (
/obj/structure/table/reinforced,
/obj/structure/window/reinforced,
@@ -12787,18 +12037,22 @@
},
/turf/open/floor/iron/white,
/area/awaymission/snowdin/post)
-"Sp" = (
+"Sm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10;
- piping_layer = 3;
pixel_x = 5;
pixel_y = 5
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/tile/blue/opposingcorners{
- dir = 1
+/obj/effect/turf_decal/tile/green/half/contrasted,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/hydro)
+"Sn" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
},
-/turf/open/floor/iron/white,
+/obj/machinery/light/small,
+/turf/open/floor/plating,
/area/awaymission/snowdin/post)
"Sr" = (
/obj/structure/closet/emcloset,
@@ -12830,21 +12084,22 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/engineering)
-"SA" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1;
- piping_layer = 3;
+"Sx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
pixel_x = 5;
pixel_y = 5
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 8
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
+/obj/effect/turf_decal/snowdin_station_sign/up/seven,
+/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
-/area/awaymission/snowdin/post/research)
+/area/awaymission/snowdin/post)
"SB" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -12858,6 +12113,11 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/mining_dock)
+"SE" = (
+/turf/open/floor/plating/elevatorshaft{
+ initial_gas_mix = "o2=22;n2=82;TEMP=180"
+ },
+/area/awaymission/snowdin/cave)
"SG" = (
/obj/structure/sign/warning/docking{
pixel_x = 32
@@ -12867,6 +12127,15 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/mining_main)
+"SI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/visible,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/engineering)
"SJ" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -12876,38 +12145,27 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/mining_dock)
-"SK" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 2;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
+"ST" = (
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
},
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
+/turf/open/floor/iron/white,
+/area/awaymission/snowdin/post)
+"SV" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/dorm)
-"SN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
pixel_x = 5;
pixel_y = 5
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 8
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/awaymission/snowdin/post/dorm)
-"ST" = (
-/obj/effect/turf_decal/tile/blue/opposingcorners{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/awaymission/snowdin/post)
"SX" = (
/obj/machinery/door/airlock/external/glass,
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -12915,22 +12173,6 @@
},
/turf/open/floor/plating,
/area/awaymission/snowdin/post/mining_main)
-"SY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/item/trash/can,
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/dorm)
"SZ" = (
/obj/effect/turf_decal/tile/brown/anticorner/contrasted{
dir = 1
@@ -12944,6 +12186,16 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post)
+"Tb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/holopad,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/research)
"Tc" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -12954,43 +12206,40 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/mining_dock)
-"Tg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
+"Tf" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
pixel_x = 5;
pixel_y = 5
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/item/storage/firstaid/o2{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/effect/turf_decal/tile/blue/opposingcorners{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/awaymission/snowdin/post)
+/obj/effect/landmark/awaystart,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/gateway)
"Th" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/awaymission/snowdin/post/research)
-"Tm" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 2;
- piping_layer = 3;
+"Ti" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
pixel_x = 5;
pixel_y = 5
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
},
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/showroomfloor,
+/area/awaymission/snowdin/post/dorm)
+"Tj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10;
+ pixel_x = 5;
+ pixel_y = 5
},
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post)
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/garage)
"Tn" = (
/obj/effect/turf_decal/tile/neutral/anticorner/contrasted,
/turf/open/floor/iron,
@@ -13022,20 +12271,6 @@
},
/turf/open/floor/iron/white,
/area/awaymission/snowdin/post)
-"Tz" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral/half/contrasted,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/dorm)
"TA" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 8
@@ -13049,6 +12284,14 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post)
+"TD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/dorm)
"TE" = (
/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
dir = 8
@@ -13068,6 +12311,21 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/mining_dock)
+"TH" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/dorm)
"TI" = (
/obj/machinery/power/apc{
dir = 1;
@@ -13089,6 +12347,13 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/dorm)
+"TK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post)
"TM" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/half/contrasted,
@@ -13120,6 +12385,20 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/engineering)
+"TO" = (
+/obj/machinery/door/airlock{
+ name = "Mechanic's Quarters"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/garage)
"TQ" = (
/obj/effect/turf_decal/tile/brown/half/contrasted,
/turf/open/floor/iron,
@@ -13150,23 +12429,28 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/engineering)
-"Ub" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/bar/opposingcorners,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/messhall)
-"Uc" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+"TY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
+ dir = 4;
pixel_x = 5;
pixel_y = 5
},
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock{
+ name = "Custodial Closet"
+ },
+/turf/open/floor/iron/dark,
+/area/awaymission/snowdin/post/custodials)
+"Ub" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
/turf/open/floor/iron,
-/area/awaymission/snowdin/post/research)
+/area/awaymission/snowdin/post/messhall)
"Uf" = (
/obj/machinery/airalarm{
pixel_y = 23
@@ -13176,6 +12460,14 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/mining_dock)
+"Ug" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 9;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/engineering)
"Ui" = (
/obj/item/shard,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -13216,57 +12508,45 @@
heat_capacity = 1e+006
},
/area/awaymission/snowdin/post/minipost)
-"Ur" = (
+"Uq" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/light{
dir = 1
},
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/cavern2)
+"Us" = (
+/obj/structure/chair{
dir = 4
},
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/research)
-"Uw" = (
/obj/effect/landmark/awaystart,
-/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/minipost)
-"Ux" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
pixel_x = 5;
pixel_y = 5
},
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/obj/effect/turf_decal/tile/green/half/contrasted,
/turf/open/floor/iron,
-/area/awaymission/snowdin/post/hydro)
-"Uz" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
+/area/awaymission/snowdin/post/garage)
+"Ut" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4;
- piping_layer = 3;
pixel_x = 5;
pixel_y = 5
},
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/turf/open/floor/iron{
- heat_capacity = 1e+006
+/obj/machinery/shower{
+ pixel_y = 25
},
+/turf/open/floor/iron/showroomfloor,
/area/awaymission/snowdin/post/dorm)
+"Uw" = (
+/obj/effect/landmark/awaystart,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/minipost)
"UC" = (
/mob/living/simple_animal/hostile/netherworld/migo,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -13281,22 +12561,51 @@
/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 1
- },
-/turf/open/floor/iron{
- heat_capacity = 1e+006
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron{
+ heat_capacity = 1e+006
+ },
+/area/awaymission/snowdin/post/mining_dock)
+"UG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Engineering";
+ req_access_txt = "32"
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/cafeteria,
+/area/awaymission/snowdin/post/messhall)
+"UH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/food/flour,
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/kitchen)
+"UI" = (
+/obj/structure/statue/snow/snowman{
+ anchored = 1
},
-/area/awaymission/snowdin/post/mining_dock)
-"UJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
+/obj/item/pickaxe/mini{
pixel_x = 5;
- pixel_y = 5
+ pixel_y = 3
},
-/obj/effect/turf_decal/tile/green/half/contrasted,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/hydro)
+/turf/open/floor/plating/asteroid/snow,
+/area/awaymission/snowdin/outside)
"UK" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -13342,6 +12651,21 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/awaymission/snowdin/post/mining_dock)
+"UW" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Misc Storage";
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/dorm)
"UZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/biogenerator,
@@ -13375,13 +12699,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark/snowdin,
/area/awaymission/snowdin/cave)
-"Vi" = (
-/obj/machinery/vending/boozeomat{
- req_access_txt = "0"
- },
-/obj/effect/turf_decal/tile/bar/opposingcorners,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/messhall)
"Vj" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 8
@@ -13395,6 +12712,20 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post)
+"Vl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/awaymission/snowdin/post/hydro)
"Vm" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -13406,6 +12737,50 @@
heat_capacity = 1e+006
},
/area/awaymission/snowdin/post/cavern1)
+"Vo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26
+ },
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/awaymission/snowdin/post)
+"Vr" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/awaymission/snowdin/post/garage)
+"Vs" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron{
+ heat_capacity = 1e+006
+ },
+/area/awaymission/snowdin/post)
"Vt" = (
/obj/effect/turf_decal/stripes/corner{
dir = 1
@@ -13423,31 +12798,38 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron/dark,
/area/awaymission/snowdin/cave)
-"VC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
+"VD" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/cavern1)
+"VG" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
pixel_x = 5;
pixel_y = 5
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+/obj/machinery/light{
+ dir = 1
},
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 4
},
/turf/open/floor/iron,
-/area/awaymission/snowdin/post)
-"VD" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
- dir = 4
+/area/awaymission/snowdin/post/research)
+"VH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
},
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/cavern1)
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/trash/cheesie,
+/turf/open/floor/wood,
+/area/awaymission/snowdin/post/dorm)
"VI" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -13457,11 +12839,36 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post)
+"VJ" = (
+/obj/structure/bonfire/prelit{
+ burn_icon = "bonfire_warm"
+ },
+/obj/effect/light_emitter{
+ light_color = "#FAA019";
+ light_range = 4;
+ name = "fire light"
+ },
+/turf/open/floor/wood,
+/area/awaymission/snowdin/igloo)
"VK" = (
/obj/item/aicard,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/awaymission/snowdin/cave)
+"VM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/hydro)
"VN" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -13487,22 +12894,25 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/mining_main)
-"VQ" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/effect/turf_decal/tile/green/anticorner/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/hydro)
"VR" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/awaymission/snowdin/post/dorm)
+"VT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post)
"VV" = (
/obj/effect/turf_decal/tile/green/half/contrasted{
dir = 1
@@ -13522,16 +12932,13 @@
/obj/effect/turf_decal/tile/brown/anticorner/contrasted,
/turf/open/floor/iron,
/area/awaymission/snowdin/post/mining_dock)
-"VZ" = (
+"Wa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9;
- piping_layer = 3;
pixel_x = 5;
pixel_y = 5
},
-/obj/effect/turf_decal/tile/neutral/half/contrasted,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post)
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/hydro)
"Wb" = (
/obj/machinery/light{
dir = 1
@@ -13539,6 +12946,20 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/awaymission/snowdin/cave)
+"We" = (
+/obj/machinery/door/airlock/public/glass{
+ name = "Garage"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/garage)
"Wf" = (
/obj/structure/closet/emcloset,
/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
@@ -13551,6 +12972,15 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/awaymission/snowdin/cave)
+"Wh" = (
+/obj/structure/table,
+/obj/item/clothing/head/utility/welding{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/item/clothing/glasses/welding,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/mining_main/robotics)
"Wi" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
@@ -13585,6 +13015,15 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/mining_main)
+"Wq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/garage)
"Wr" = (
/obj/structure/barricade/wooden/crude,
/obj/effect/turf_decal/tile/bar/opposingcorners,
@@ -13611,25 +13050,21 @@
},
/turf/open/floor/iron/white,
/area/awaymission/snowdin/post)
-"WB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/blue/opposingcorners{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/awaymission/snowdin/post)
"WC" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 8
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post)
+"WE" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/hydro)
"WF" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
@@ -13649,6 +13084,21 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/engineering)
+"WI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/dorm)
"WJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -13684,6 +13134,17 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/mining_main)
+"WU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock{
+ name = "Bathroom"
+ },
+/turf/open/floor/iron/showroomfloor,
+/area/awaymission/snowdin/post/dorm)
"WX" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/tile/brown/half/contrasted{
@@ -13746,24 +13207,35 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark/snowdin,
/area/awaymission/snowdin/outside)
+"Xm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post)
"Xo" = (
/obj/effect/turf_decal/tile/red/anticorner/contrasted{
dir = 8
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/secpost)
-"Xq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
+"Xr" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
pixel_x = 5;
pixel_y = 5
},
-/obj/effect/turf_decal/tile/blue/opposingcorners{
- dir = 1
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
},
-/turf/open/floor/iron/white,
-/area/awaymission/snowdin/post)
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/dorm)
"Xs" = (
/obj/machinery/computer/atmos_control/tank{
dir = 1;
@@ -13780,6 +13252,18 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/engineering)
+"Xv" = (
+/obj/machinery/mineral/unloading_machine{
+ dir = 1;
+ icon_state = "unloader-corner";
+ input_dir = 1;
+ output_dir = 2
+ },
+/obj/machinery/conveyor{
+ id = "snowdin_belt_mine"
+ },
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/mining_dock)
"Xx" = (
/obj/structure/table,
/obj/machinery/reagentgrinder,
@@ -13797,6 +13281,25 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark/snowdin,
/area/awaymission/snowdin/cave)
+"Xz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/garage)
+"XA" = (
+/obj/vehicle/ridden/atv{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/mining_main)
"XB" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -13823,17 +13326,29 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/awaymission/snowdin/post/mining_dock)
-"XI" = (
-/obj/structure/table,
+"XE" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/sign/poster/contraband/lusty_xenomorph{
+ pixel_x = 32
+ },
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/turf/open/floor/carpet,
+/area/awaymission/snowdin/post/dorm)
+"XF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9;
- piping_layer = 3;
+ dir = 6;
pixel_x = 5;
pixel_y = 5
},
-/obj/effect/turf_decal/tile/red/half/contrasted,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/secpost)
+/turf/open/floor/wood,
+/area/awaymission/snowdin/post/dorm)
+"XG" = (
+/turf/open/floor/plating/elevatorshaft,
+/area/awaymission/snowdin/post/mining_main)
"XJ" = (
/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
dir = 4
@@ -13847,32 +13362,32 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/mining_main)
-"XM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+"XL" = (
+/obj/machinery/porta_turret/centcom_shuttle/weak{
+ desc = "A turret built with substandard parts and run down further with age.";
+ dir = 9;
+ faction = list("pirate")
+ },
+/turf/open/floor/plating/snowed/smoothed,
+/area/awaymission/snowdin/cave)
+"XO" = (
+/obj/effect/turf_decal/stripes/line{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
+/turf/open/floor/plating/asteroid/snow/ice,
+/area/awaymission/snowdin/cave/cavern)
+"XS" = (
+/obj/item/reagent_containers/blood,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
pixel_x = 5;
pixel_y = 5
},
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
dir = 1
},
-/turf/open/floor/iron{
- heat_capacity = 1e+006
- },
+/turf/open/floor/iron/white,
/area/awaymission/snowdin/post)
-"XO" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/snow/ice,
-/area/awaymission/snowdin/cave/cavern)
"XU" = (
/obj/item/shard,
/obj/item/stack/cable_coil/red{
@@ -13881,110 +13396,76 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron/dark,
/area/awaymission/snowdin/cave)
-"XV" = (
+"XX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4;
- piping_layer = 3;
pixel_x = 5;
pixel_y = 5
},
/obj/structure/cable/yellow{
icon_state = "4-8"
},
+/obj/effect/turf_decal/snowdin_station_sign/up/four,
/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/awaymission/snowdin/post)
-"Yc" = (
-/obj/effect/turf_decal/weather/snow,
-/obj/effect/turf_decal/weather/snow/corner{
- dir = 4
+"XY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark/snowdin,
-/area/awaymission/snowdin/outside)
-"Ye" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
pixel_x = 5;
pixel_y = 5
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post)
-"Yg" = (
-/obj/item/stack/rods,
-/obj/effect/turf_decal/tile/neutral/half/contrasted,
-/turf/open/floor/iron/dark,
-/area/awaymission/snowdin/cave)
-"Yh" = (
-/obj/structure/table,
-/obj/item/clothing/neck/stethoscope,
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/obj/effect/turf_decal/tile/blue/opposingcorners{
- dir = 1
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
},
-/turf/open/floor/iron/white,
-/area/awaymission/snowdin/post)
-"Yj" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/kitchen)
+"XZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
pixel_x = 5;
pixel_y = 5
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/machinery/door/airlock/security{
- name = "Security Checkpoint";
- req_access = null;
- req_access_txt = "1"
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "snowdin_gate"
},
-/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
-/area/awaymission/snowdin/post/secpost)
-"Yk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
+/area/awaymission/snowdin/post/gateway)
+"Yc" = (
+/obj/effect/turf_decal/weather/snow,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 4
},
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron/dark/snowdin,
+/area/awaymission/snowdin/outside)
+"Yd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical/glass{
- name = "Medbay Storage";
- req_access_txt = "45"
- },
-/obj/effect/turf_decal/tile/blue/opposingcorners{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/awaymission/snowdin/post)
-"Yl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
pixel_x = 5;
pixel_y = 5
},
-/obj/machinery/door/airlock/public/glass,
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/iron,
-/area/awaymission/snowdin/post)
+/area/awaymission/snowdin/post/hydro)
+"Yg" = (
+/obj/item/stack/rods,
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron/dark,
+/area/awaymission/snowdin/cave)
"Yn" = (
/obj/machinery/door/airlock/external/glass,
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -14000,13 +13481,63 @@
/turf/open/floor/iron/dark/snowdin,
/area/awaymission/snowdin/cave)
"Yq" = (
-/turf/open/floor/plating/elevatorshaft,
-/area/awaymission/snowdin/post/mining_dock)
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/dorm)
"Yr" = (
/obj/effect/decal/cleanable/vomit/old,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/awaymission/snowdin/cave)
+"Yt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/showroomfloor,
+/area/awaymission/snowdin/post/dorm)
+"Yu" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/garage)
+"Yz" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/awaymission/snowdin/post)
"YB" = (
/obj/structure/closet/emcloset,
/obj/item/clothing/suit/hooded/wintercoat,
@@ -14021,20 +13552,18 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/cavern1)
-"YE" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/obj/machinery/light{
- dir = 1
+"YD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
},
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
},
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
+/turf/open/floor/wood{
+ broken = 1
},
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/research)
+/area/awaymission/snowdin/post/dorm)
"YI" = (
/obj/effect/turf_decal/tile/brown/anticorner/contrasted{
dir = 8
@@ -14090,6 +13619,22 @@
},
/turf/open/floor/iron/white,
/area/awaymission/snowdin/post)
+"YQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post)
"YR" = (
/obj/machinery/airalarm{
pixel_y = 23
@@ -14100,6 +13645,11 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/research)
+"YS" = (
+/obj/machinery/vending/boozeomat,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/messhall)
"YT" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
@@ -14117,6 +13667,20 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/hydro)
+"YY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post)
"YZ" = (
/obj/structure/table,
/obj/structure/cable/yellow{
@@ -14144,6 +13708,55 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/cavern1)
+"Zi" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron{
+ heat_capacity = 1e+006
+ },
+/area/awaymission/snowdin/post/dorm)
+"Zj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/messhall)
+"Zm" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/awaymission/snowdin/post)
"Zn" = (
/obj/machinery/door/airlock/public/glass{
name = "Observation Deck"
@@ -14160,14 +13773,16 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/mining_main)
-"Zp" = (
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
+"Zr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
},
-/obj/effect/turf_decal/tile/bar/opposingcorners,
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/messhall)
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/awaymission/snowdin/post/hydro)
"Zt" = (
/obj/structure/sign/poster/official/no_erp{
pixel_x = -32
@@ -14194,24 +13809,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark/snowdin,
/area/awaymission/snowdin/cave)
-"Zy" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/awaymission/snowdin/post/dorm)
"Zz" = (
/obj/effect/turf_decal/tile/bar/opposingcorners,
/turf/open/floor/iron,
@@ -14230,6 +13827,32 @@
},
/turf/open/floor/iron/white,
/area/awaymission/snowdin/post/minipost)
+"ZG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/awaymission/snowdin/post/garage)
+"ZH" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/item/storage/firstaid/o2{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/awaymission/snowdin/post)
"ZI" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -14247,6 +13870,20 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/awaymission/snowdin/post/dorm)
+"ZM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/dark,
+/area/awaymission/snowdin/post/custodials)
"ZN" = (
/obj/machinery/door/airlock/public/glass{
name = "Research Desks"
@@ -14273,18 +13910,73 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/dorm)
-"ZW" = (
+"ZR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post)
+"ZS" = (
+/obj/machinery/mineral/processing_unit{
+ dir = 1
+ },
+/obj/machinery/conveyor{
+ id = "snowdin_belt_mine"
+ },
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/mining_dock)
+"ZT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9;
- piping_layer = 3;
pixel_x = 5;
pixel_y = 5
},
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 8
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/awaymission/snowdin/post)
+"ZU" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 26
+ },
+/obj/machinery/light/broken{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/dorm)
+"ZV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/awaymission/snowdin/post/garage)
+"ZX" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 4
},
/turf/open/floor/iron,
-/area/awaymission/snowdin/post/research)
+/area/awaymission/snowdin/post/secpost)
(1,1,1) = {"
aa
@@ -19449,12 +19141,12 @@ bP
cn
aS
dC
-eb
-eP
-eP
-gh
-gY
-hI
+XE
+NZ
+NZ
+JS
+NN
+No
aK
aK
aK
@@ -19711,12 +19403,12 @@ aS
aV
aV
aS
-hJ
+Lj
aV
LA
aS
-kv
-le
+Ef
+LI
lU
aK
af
@@ -19956,24 +19648,24 @@ ae
af
af
aK
-aQ
-bi
-bx
-bQ
-Qt
-cV
+Bl
+YD
+dI
+qd
+QM
+WI
cv
Nd
PE
Zt
PE
PE
-Uz
+Zi
PE
YT
aS
-kw
-lf
+dm
+Yt
lV
aK
af
@@ -20213,23 +19905,23 @@ ae
af
ag
aK
-aR
+kL
bj
by
aV
LG
-cW
+TH
dD
ed
-eR
-fu
-gi
-gZ
-hL
-io
+RJ
+PC
+SV
+Pg
+Id
+ex
TJ
aV
-kx
+Ut
lg
lW
aK
@@ -20475,18 +20167,18 @@ aV
aS
aV
cr
-cX
+cF
VR
WY
-eS
-fv
+Of
+ZU
Oa
-Tz
+Lf
VR
-ip
+Kg
TA
aV
-ky
+Bm
aV
aV
aK
@@ -20727,23 +20419,23 @@ af
ak
af
aK
-aT
-bi
-bx
-bR
-cs
-SK
+rb
+YD
+dI
+RU
+TD
+Xr
aS
aS
-eT
+Mv
aS
aS
-hb
+UW
aS
-Zy
+xX
TJ
aV
-kz
+Ti
lh
lX
mD
@@ -20984,24 +20676,24 @@ af
af
af
aK
-aU
+Ku
bk
bz
aS
LG
-SY
+uH
aS
ef
-eU
+FV
aV
gk
-hc
+qZ
aV
-Qa
-SN
-jP
-kA
-li
+dJ
+Kb
+WU
+hh
+Nr
aV
aV
aK
@@ -21246,19 +20938,19 @@ aV
aV
aS
ZQ
-Ob
+PS
aV
eg
-eV
+VH
aV
gl
-hd
+QW
aS
-Zy
+xX
ji
aS
-kB
-lj
+Qk
+RQ
lX
mD
aK
@@ -21498,20 +21190,20 @@ af
am
af
aK
-aW
-bl
-bA
-bS
-QU
-db
+po
+vr
+qU
+PX
+MS
+Lb
aV
-eh
-eW
+hK
+of
aS
-gm
-he
+Qc
+nQ
aV
-Zy
+xX
jj
aS
kC
@@ -21755,12 +21447,12 @@ af
af
ag
aK
-aX
+Ll
bm
bB
aS
cv
-dc
+Kd
aS
aS
aS
@@ -21768,7 +21460,7 @@ aS
aV
aS
aS
-Zy
+xX
TA
jQ
jR
@@ -22017,7 +21709,7 @@ aV
aS
aS
cr
-dd
+xA
mN
ei
RY
@@ -22025,7 +21717,7 @@ RP
RP
RP
dK
-NK
+JL
Oy
jR
kD
@@ -22269,20 +21961,20 @@ af
af
af
aK
-aY
-bl
-bx
-bT
-LU
-SK
+XF
+vr
+dI
+cD
+Yq
+Xr
mN
dK
Nl
-Qo
-WB
+XS
+Nb
ST
hM
-VC
+bZ
VN
jR
kE
@@ -22526,25 +22218,25 @@ af
af
ao
aK
-aZ
+Kh
bm
bC
aS
Rb
-NH
+oe
mN
dM
Nl
Py
-Xq
+fN
MX
hM
-VC
+bZ
jm
jR
jR
-lm
-mb
+Ew
+ZM
mG
mG
nD
@@ -22788,20 +22480,20 @@ aV
aV
aV
Rb
-NH
+oe
dG
dM
-Yh
+KQ
Pw
-Oz
+LR
OQ
hN
-VC
+bZ
jn
Xi
jR
jR
-mc
+TY
lY
jR
nE
@@ -23040,29 +22732,29 @@ af
af
af
aK
-ba
-bl
-bx
-bU
-cy
-df
+tM
+vr
+dI
+IR
+kQ
+sw
dH
dK
Ww
Tv
-Sp
-Tg
-Yk
-Tm
+KS
+ZH
+cA
+KV
jm
jT
Ul
Rz
-XM
-mH
-nc
+Vs
+Vo
+go
nF
-od
+DQ
YK
MN
pI
@@ -23297,12 +22989,12 @@ af
af
ag
aK
-bb
+Pd
bn
bD
aS
LG
-NH
+oe
OC
dK
LX
@@ -23310,13 +23002,13 @@ Ri
ST
ST
hM
-iv
+Yz
jo
jU
js
jU
-me
-mI
+vg
+ZT
nd
nF
TI
@@ -23559,7 +23251,7 @@ aV
aV
aS
LG
-dd
+xA
ZJ
dK
PJ
@@ -23567,17 +23259,17 @@ Ve
YP
Sl
dK
-iw
-jp
-jV
-gt
-lo
-mf
-mJ
-MF
-Yj
-Me
-oD
+is
+Zm
+Jy
+Mu
+QN
+MB
+qR
+Ok
+fx
+Po
+vj
pl
pI
pH
@@ -23816,7 +23508,7 @@ bo
Vj
az
ZN
-Mh
+Ly
dK
dK
dK
@@ -23825,16 +23517,16 @@ dM
dM
dK
Sd
-jq
+CL
jm
jU
-lp
+hg
mg
mK
-QR
+nm
nH
PQ
-oE
+Gy
pm
Xo
qq
@@ -24073,25 +23765,25 @@ bo
Vj
az
bo
-SA
-dL
-ej
-fd
-fD
-gt
-fd
-hP
-gt
-jr
+ne
+Re
+ZR
+Sj
+VT
+Mu
+Sj
+Dj
+Mu
+PD
jW
jU
-lq
+MK
mh
mL
-QR
+nm
WF
oh
-oF
+oJ
pn
Zu
qq
@@ -24330,7 +24022,7 @@ NO
Vj
az
US
-KO
+My
dM
ek
fe
@@ -24342,13 +24034,13 @@ PF
js
TF
kG
-lr
+XX
mi
mM
-QR
+nm
nF
-Ns
-XI
+ZX
+it
Rt
pM
qq
@@ -24583,11 +24275,11 @@ az
aC
aC
az
-YE
-bF
-bV
-Uc
-dj
+bE
+wU
+iu
+AY
+OP
dM
el
ff
@@ -24599,10 +24291,10 @@ fh
fg
fg
Pi
-ls
+PM
mj
jo
-ng
+Ig
nF
oc
oH
@@ -24841,12 +24533,12 @@ aE
aE
bd
US
-bI
+ia
bW
cB
bo
dK
-em
+Rh
fg
fF
gv
@@ -24856,10 +24548,10 @@ iz
jt
fh
kI
-lt
+LQ
mk
mL
-nh
+QK
NS
hM
Pq
@@ -25098,7 +24790,7 @@ aH
aN
aE
bs
-bH
+Tb
bX
cB
Vj
@@ -25113,10 +24805,10 @@ iA
ju
jY
VI
-lu
+Sx
ml
jU
-ni
+Xm
Ms
Oj
Vk
@@ -25355,7 +25047,7 @@ aG
aO
bc
US
-bI
+ia
bY
cC
Vj
@@ -25366,14 +25058,14 @@ fH
gx
hm
hS
-iB
-jv
-jZ
-Mp
-lv
+QI
+Pr
+XZ
+wT
+KM
js
jW
-nj
+hX
WC
dK
js
@@ -25381,7 +25073,7 @@ pr
Qs
dK
qO
-rl
+Sn
qL
oa
dX
@@ -25611,8 +25303,8 @@ aC
aC
aC
az
-Ur
-ZW
+VG
+xg
Th
NO
WJ
@@ -25622,23 +25314,23 @@ fh
fI
gy
hn
-hT
-iC
+Tf
+cE
ju
jY
VI
-lw
+YY
jo
js
-nk
-nM
-Yl
-LF
-ps
-pQ
-qs
-pQ
-rm
+QC
+PZ
+EI
+Mg
+OA
+TK
+dE
+TK
+Ay
rH
dX
dX
@@ -25884,14 +25576,14 @@ iD
jw
fh
TC
-XV
+YQ
TM
TF
TF
jm
hM
-Ye
-VZ
+LK
+cY
ZC
dK
qM
@@ -26128,7 +25820,7 @@ aE
NO
bs
az
-Lc
+NF
WJ
dN
dO
@@ -26141,7 +25833,7 @@ dP
dP
dP
kM
-ly
+bK
dP
dP
nl
@@ -26398,7 +26090,7 @@ gA
jx
ka
gC
-lz
+Zj
mn
dO
KC
@@ -26414,7 +26106,7 @@ af
af
ak
af
-sV
+qT
af
af
af
@@ -26507,7 +26199,7 @@ af
ae
ae
yY
-zq
+vu
zy
zL
XJ
@@ -26655,7 +26347,7 @@ gA
jy
gA
kN
-lA
+CY
gA
dO
NA
@@ -26664,10 +26356,10 @@ om
oN
om
pS
-qt
-qQ
-ro
-rI
+HZ
+NW
+wX
+Aw
dX
dX
dX
@@ -26902,7 +26594,7 @@ ca
cG
dn
dO
-Vi
+YS
Zz
fL
gC
@@ -26912,7 +26604,7 @@ iE
hp
gC
gD
-lB
+fB
gC
mO
XB
@@ -26921,7 +26613,7 @@ Px
Px
Px
Px
-op
+vB
TX
rp
rp
@@ -27110,7 +26802,7 @@ af
af
af
af
-Gc
+UI
af
am
Hn
@@ -27169,16 +26861,16 @@ iF
gD
gC
kO
-lC
-mo
-mP
-np
-nR
-on
-oO
-pv
-pT
-qu
+LH
+fJ
+UG
+OY
+SI
+Rg
+og
+Jz
+cz
+Ug
qS
rp
rJ
@@ -27410,10 +27102,10 @@ af
af
af
bf
-bw
-bN
-cc
-cI
+Kn
+fA
+sx
+oL
cb
dP
ho
@@ -27426,12 +27118,12 @@ iG
hs
gD
kP
-lB
+fB
gA
mO
nq
nS
-oo
+Ke
oP
pw
pw
@@ -27442,7 +27134,7 @@ rK
sg
sB
sM
-sW
+OZ
tg
dX
dX
@@ -27670,25 +27362,25 @@ bf
bf
bf
cd
-cJ
+Bu
dp
dp
-Zp
+jl
Zz
Ub
gA
ht
-hW
-iH
-jz
-kc
-iH
-lD
+cp
+Qr
+IW
+NX
+Qr
+eY
hV
dO
nr
nT
-op
+vB
oP
px
pU
@@ -27927,7 +27619,7 @@ af
ag
bf
ce
-cK
+dh
dq
dQ
Zz
@@ -27940,12 +27632,12 @@ gA
hp
kd
gA
-lB
+fB
mp
dO
ns
nU
-oq
+If
oQ
py
pV
@@ -28146,7 +27838,7 @@ dX
Ia
Gq
Gq
-Ix
+XA
GP
WS
ML
@@ -28184,7 +27876,7 @@ af
af
bf
cf
-cL
+KE
dr
cd
cd
@@ -28197,7 +27889,7 @@ hv
hv
dO
dP
-lE
+CW
mq
dO
nt
@@ -28406,11 +28098,11 @@ II
IY
Go
xv
-tn
-tn
-tn
-tn
-tn
+XG
+XG
+XG
+XG
+XG
ME
Go
ac
@@ -28441,7 +28133,7 @@ af
af
bf
cg
-cM
+yU
ds
dR
ey
@@ -28454,7 +28146,7 @@ Nt
jA
YU
VV
-lF
+VM
mr
mQ
nu
@@ -28658,16 +28350,16 @@ af
dX
dX
Ia
-Ix
+XA
Gq
Gq
Go
xv
-tn
-tn
-tn
-tn
-tn
+XG
+XG
+XG
+XG
+XG
ME
GP
ac
@@ -28698,20 +28390,20 @@ af
af
bf
ch
-cN
-dt
-dS
-ez
-fj
-fQ
-gF
-fQ
-hY
-hY
-fQ
-hY
-hY
-lG
+XY
+UH
+sL
+xP
+On
+ft
+Vl
+ft
+Yd
+Yd
+ft
+Yd
+Yd
+Nm
hx
mt
nv
@@ -28920,11 +28612,11 @@ Iy
Iy
Go
Qf
-tn
-tn
-tn
-tn
-tn
+XG
+XG
+XG
+XG
+XG
VP
GP
ac
@@ -28955,7 +28647,7 @@ af
af
bf
ci
-cO
+Lr
du
dT
eA
@@ -28968,7 +28660,7 @@ iJ
gI
gH
kR
-lH
+ix
ms
mt
Va
@@ -29177,11 +28869,11 @@ GP
GP
GP
xv
-tn
-tn
-tn
-tn
-tn
+XG
+XG
+XG
+XG
+XG
ME
GP
ac
@@ -29212,7 +28904,7 @@ af
ag
bf
cj
-cP
+Ds
dv
ch
eB
@@ -29225,12 +28917,12 @@ gH
gJ
kf
iJ
-lI
+KZ
mt
hx
Wl
nW
-ot
+PA
oT
nN
qa
@@ -29434,11 +29126,11 @@ ae
ae
Go
xv
-tn
-tn
-tn
-tn
-tn
+XG
+XG
+XG
+XG
+XG
ME
GP
ac
@@ -29469,7 +29161,7 @@ af
af
bf
cj
-cQ
+eQ
dw
dU
dr
@@ -29482,7 +29174,7 @@ gJ
gG
kg
kS
-lH
+ix
kR
iJ
Ps
@@ -29726,12 +29418,12 @@ af
ak
bf
ck
-cR
+OX
ds
dV
eC
cd
-FX
+WE
gJ
hy
gH
@@ -29739,7 +29431,7 @@ hx
gH
kf
hy
-lJ
+DS
nz
mR
nz
@@ -29982,8 +29674,8 @@ af
af
af
bf
-cl
-cS
+gr
+JD
dr
dW
eD
@@ -29996,7 +29688,7 @@ iJ
gI
kf
gI
-lK
+Zr
ms
kf
nA
@@ -30004,7 +29696,7 @@ nY
ov
oV
nN
-qd
+JM
qB
Xs
rt
@@ -30245,15 +29937,15 @@ bf
bf
bf
bf
-VQ
-gL
-hA
-ib
-UJ
-Ux
-UJ
-UJ
-lL
+CI
+HX
+Wa
+xI
+Sm
+Et
+Sm
+Sm
+QH
mv
hx
nA
@@ -30353,12 +30045,12 @@ ae
ae
aj
xa
-OF
-OF
-OF
-OF
-OF
-OF
+SE
+SE
+SE
+SE
+SE
+SE
an
ii
ii
@@ -30610,12 +30302,12 @@ ae
ae
aj
xa
-OF
-OF
-OF
-OF
-OF
-OF
+SE
+SE
+SE
+SE
+SE
+SE
yp
ii
wS
@@ -30867,12 +30559,12 @@ ae
wQ
ai
xb
-OF
-OF
-OF
-OF
-OF
-OF
+SE
+SE
+SE
+SE
+SE
+SE
yq
ii
wS
@@ -31124,12 +30816,12 @@ ae
wQ
ai
xb
-OF
-OF
-OF
-OF
-OF
-OF
+SE
+SE
+SE
+SE
+SE
+SE
yq
an
ii
@@ -31381,12 +31073,12 @@ ae
wQ
wS
xa
-OF
-OF
-OF
-OF
-OF
-OF
+SE
+SE
+SE
+SE
+SE
+SE
yp
an
ii
@@ -31638,12 +31330,12 @@ ae
wQ
wS
xa
-OF
-OF
-OF
-OF
-OF
-OF
+SE
+SE
+SE
+SE
+SE
+SE
ai
an
an
@@ -31791,12 +31483,12 @@ fX
gO
hC
ic
-iN
-jE
-kh
-kU
-lM
-mx
+CV
+Us
+JR
+KY
+cu
+KF
mS
Yn
dX
@@ -32048,13 +31740,13 @@ fY
gP
hD
id
-iO
+JT
iW
-ki
+Vr
kV
lN
-my
-mT
+Tj
+ha
Yn
dX
dX
@@ -32305,9 +31997,9 @@ fY
gQ
hE
ie
-iP
+HY
jF
-kj
+Wq
kW
id
ld
@@ -32562,9 +32254,9 @@ fY
gR
hE
if
-iQ
+IC
jG
-kk
+PI
kX
ie
mz
@@ -32819,7 +32511,7 @@ fY
gS
hE
id
-iR
+Rm
jH
ie
kY
@@ -33076,11 +32768,11 @@ fY
fY
fY
fY
-iS
+ZG
jI
id
-kZ
-lO
+Ox
+Yu
mB
mW
fY
@@ -33333,11 +33025,11 @@ af
af
dX
fY
-iT
-jJ
+QA
+QG
ie
la
-lP
+Xz
mC
mX
fY
@@ -33590,11 +33282,11 @@ eE
eE
af
fY
-iU
+We
jH
id
id
-lQ
+TO
id
ie
fY
@@ -33847,11 +33539,11 @@ fZ
eE
af
fY
-iV
-jK
-jK
-lb
-lR
+pN
+ZV
+ZV
+zX
+RV
hE
mY
nB
@@ -35765,7 +35457,7 @@ ae
Aa
zD
zD
-AI
+VJ
zD
zD
Aa
@@ -35819,7 +35511,7 @@ CH
Eu
Ez
EH
-EN
+oG
CC
zh
af
@@ -36287,7 +35979,7 @@ af
Aa
zD
zD
-AI
+VJ
zD
zD
Aa
@@ -36333,7 +36025,7 @@ DR
DB
EA
Vw
-EP
+RX
CC
zh
af
@@ -37861,9 +37553,9 @@ zh
af
ao
CD
-CP
-CP
-CP
+xK
+xK
+xK
Du
DE
zh
@@ -37873,9 +37565,9 @@ zh
zh
zh
CD
-CP
-CP
-CP
+xK
+xK
+xK
CC
AJ
af
@@ -42939,7 +42631,7 @@ ae
ae
af
wB
-wC
+ok
af
af
am
@@ -43218,7 +42910,7 @@ af
Aa
zD
AA
-AI
+VJ
zD
zD
Aa
@@ -43226,7 +42918,7 @@ am
Aa
zD
zD
-AI
+VJ
zD
zD
Aa
@@ -43811,7 +43503,7 @@ af
af
am
sf
-FF
+bq
af
am
ae
@@ -44724,7 +44416,7 @@ vQ
wh
wk
wk
-wm
+XL
tI
wl
vQ
@@ -44980,7 +44672,7 @@ aj
vQ
wi
wk
-wm
+XL
ii
tI
wq
@@ -45504,7 +45196,7 @@ tI
aj
vQ
ww
-wy
+nf
ww
vQ
wA
@@ -58722,7 +58414,7 @@ oZ
oZ
oZ
Ge
-Gy
+Wh
GV
Hs
HJ
@@ -61031,7 +60723,7 @@ oZ
oZ
VW
wL
-FK
+Ry
Lx
xy
xy
@@ -61288,7 +60980,7 @@ oZ
Fv
xW
xW
-zI
+Kl
xW
Uf
RS
@@ -62587,11 +62279,11 @@ IO
wL
wE
WX
-Yq
-Yq
-Yq
-Yq
-Yq
+uE
+uE
+uE
+uE
+uE
xw
wE
bh
@@ -62844,11 +62536,11 @@ IQ
wL
wE
WX
-Yq
-Yq
-Yq
-Yq
-Yq
+uE
+uE
+uE
+uE
+uE
xw
wE
bh
@@ -63101,11 +62793,11 @@ wL
wL
wE
MC
-Yq
-Yq
-Yq
-Yq
-Yq
+uE
+uE
+uE
+uE
+uE
Tc
wE
bh
@@ -63352,17 +63044,17 @@ GJ
He
HA
HO
-Ig
+Nc
GH
wL
wL
wE
WX
-Yq
-Yq
-Yq
-Yq
-Yq
+uE
+uE
+uE
+uE
+uE
xw
wE
bh
@@ -63615,11 +63307,11 @@ wL
wL
wD
WX
-Yq
-Yq
-Yq
-Yq
-Yq
+uE
+uE
+uE
+uE
+uE
xw
wD
bh
@@ -63767,7 +63459,7 @@ eJ
eJ
eJ
eL
-xV
+bt
fr
fr
fr
@@ -64282,8 +63974,8 @@ RA
wL
wL
Nk
-yj
-PK
+LN
+UT
xW
eJ
eJ
@@ -64539,8 +64231,8 @@ xy
XD
xy
Nk
-Ng
-yx
+UT
+Qy
wD
eJ
eJ
@@ -64631,15 +64323,15 @@ oZ
oZ
oZ
FO
-FY
-Gn
-GO
-Hk
-HC
-Hk
-Hk
-Hk
-Hk
+Le
+wV
+Xv
+Pn
+ZS
+Pn
+Pn
+Pn
+Pn
Jh
wE
eJ
@@ -65562,12 +65254,12 @@ eJ
wE
Wj
ym
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
+uE
+uE
+uE
+uE
+uE
+uE
yz
yR
wD
@@ -65819,12 +65511,12 @@ eJ
wD
wW
ym
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
+uE
+uE
+uE
+uE
+uE
+uE
yA
wM
zm
@@ -66076,12 +65768,12 @@ wD
wP
RF
ym
-Yq
-Yq
-Yq
-Yq
-Yq
-Yq
+uE
+uE
+uE
+uE
+uE
+uE
yB
xy
zn
@@ -66243,7 +65935,7 @@ eJ
oZ
qj
qF
-rd
+Uq
rz
rX
ox
@@ -66334,11 +66026,11 @@ wP
wW
xh
wW
-Yq
-Yq
-Yq
-Yq
-Yq
+uE
+uE
+uE
+uE
+uE
yB
xy
zn
@@ -66592,15 +66284,15 @@ wW
xh
wW
wW
-Yq
-Yq
-Yq
-Yq
+uE
+uE
+uE
+uE
OD
TG
zm
zw
-zH
+DA
zR
qi
As
@@ -66850,14 +66542,14 @@ xi
wW
wW
wW
-Yq
-Yq
-Yq
+uE
+uE
+uE
RK
Qw
wE
xW
-zI
+Kl
xW
Af
At
diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm
index 539125eadea4f..0407e28def1d4 100644
--- a/_maps/map_files/BoxStation/BoxStation.dmm
+++ b/_maps/map_files/BoxStation/BoxStation.dmm
@@ -751,12 +751,6 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
-"ald" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/science/misc_lab)
"alg" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -779,18 +773,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"alD" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
"alF" = (
/obj/machinery/atmospherics/components/unary/tank/air,
/turf/open/floor/plating,
@@ -832,6 +814,20 @@
/obj/structure/closet/toolcloset,
/turf/open/floor/iron,
/area/storage/tools)
+"amh" = (
+/obj/machinery/holopad,
+/obj/structure/rack,
+/obj/item/assembly/igniter,
+/obj/item/stock_parts/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/item/assembly/signaler{
+ pixel_x = -8;
+ pixel_y = 5
+ },
+/turf/open/floor/iron/white,
+/area/science/explab)
"ami" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 10
@@ -1461,26 +1457,6 @@
/obj/machinery/cell_charger,
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"avZ" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/machinery/door/airlock/research/glass{
- name = "Test Chamber";
- req_access_txt = "47"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/science/misc_lab)
"awo" = (
/obj/structure/rack,
/obj/machinery/light/small{
@@ -1811,20 +1787,6 @@
/obj/structure/sign/warning/docking,
/turf/closed/wall/r_wall,
/area/hallway/secondary/entry)
-"aAD" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/iron,
-/area/science/misc_lab)
"aAG" = (
/obj/machinery/vending/coffee,
/obj/effect/turf_decal/stripes/line{
@@ -2213,6 +2175,16 @@
},
/turf/open/floor/iron/white,
/area/medical/genetics)
+"aFg" = (
+/obj/structure/sign/warning/pods{
+ pixel_x = 32
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/structure/closet/secure_closet/engineering_electrical,
+/turf/open/floor/iron,
+/area/engine/engineering)
"aFl" = (
/obj/machinery/light/small{
dir = 8
@@ -5289,19 +5261,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/exit)
-"bdE" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/junction{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/science/misc_lab)
"bdJ" = (
/obj/machinery/door/airlock{
name = "Unit 3"
@@ -7479,11 +7438,6 @@
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
/area/science/robotics/lab)
-"bus" = (
-/obj/machinery/rnd/experimentor,
-/obj/effect/landmark/blobstart,
-/turf/open/floor/engine,
-/area/science/misc_lab)
"but" = (
/obj/effect/turf_decal/tile/yellow{
dir = 8
@@ -9053,21 +9007,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron/dark,
/area/gateway)
-"bJv" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
"bJx" = (
/obj/effect/landmark/event_spawn,
/obj/effect/turf_decal/tile/dark_blue{
@@ -9572,15 +9511,6 @@
},
/turf/open/floor/iron/white,
/area/science/mixing/chamber)
-"bMA" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/iron,
-/area/science/mixing)
"bMB" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating,
@@ -9737,18 +9667,6 @@
/obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior,
/turf/open/floor/engine,
/area/science/mixing/chamber)
-"bNz" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/camera/autoname{
- dir = 9
- },
-/turf/open/floor/iron,
-/area/science/mixing)
"bNA" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
@@ -9924,23 +9842,6 @@
"bOt" = (
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/cmo)
-"bOu" = (
-/obj/structure/rack,
-/obj/item/clothing/mask/gas{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23
- },
-/turf/open/floor/iron,
-/area/science/misc_lab)
"bOx" = (
/obj/machinery/holopad,
/turf/open/floor/iron/white,
@@ -9982,15 +9883,6 @@
},
/turf/open/floor/iron/white,
/area/science/mixing/chamber)
-"bOI" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/iron,
-/area/science/mixing)
"bOJ" = (
/obj/item/target,
/obj/structure/window/reinforced{
@@ -10250,13 +10142,6 @@
/obj/item/reagent_containers/dropper,
/turf/open/floor/iron,
/area/science/xenobiology)
-"bPK" = (
-/obj/effect/spawner/structure/window,
-/turf/open/floor/plating,
-/area/science/misc_lab)
-"bPN" = (
-/turf/closed/wall,
-/area/science/misc_lab)
"bPQ" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -10320,6 +10205,12 @@
},
/turf/open/floor/iron/dark/corner,
/area/engine/atmos)
+"bQo" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/science/explab)
"bQs" = (
/obj/machinery/atmospherics/components/binary/pump/on{
dir = 8;
@@ -10380,9 +10271,6 @@
/obj/machinery/disposal/bin,
/turf/open/floor/iron/white,
/area/science/mixing)
-"bQZ" = (
-/turf/closed/wall/r_wall,
-/area/science/misc_lab)
"bRd" = (
/obj/machinery/door/poddoor/shutters{
id = "hosarmory";
@@ -10440,17 +10328,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/security/checkpoint/medical)
-"bRw" = (
-/obj/structure/table,
-/obj/item/storage/belt/utility,
-/obj/item/t_scanner,
-/obj/item/t_scanner,
-/obj/item/t_scanner,
-/obj/item/clothing/gloves/color/yellow,
-/turf/open/floor/iron/dark/side{
- dir = 8
- },
-/area/engine/atmos)
"bRx" = (
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
@@ -10605,24 +10482,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/engine,
/area/science/xenobiology)
-"bSc" = (
-/obj/structure/table,
-/obj/machinery/button/ignition{
- id = "testigniter";
- pixel_x = -6;
- pixel_y = 2
- },
-/obj/machinery/button/door{
- id = "testlab";
- name = "Test Chamber Blast Doors";
- pixel_x = 4;
- pixel_y = 2;
- req_access_txt = "55"
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/science/misc_lab)
"bSe" = (
/obj/machinery/airalarm{
dir = 8;
@@ -10880,9 +10739,6 @@
},
/turf/open/floor/catwalk_floor,
/area/engine/atmos)
-"bTl" = (
-/turf/open/floor/engine,
-/area/science/misc_lab)
"bTz" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
@@ -10971,24 +10827,6 @@
},
/turf/open/floor/engine/n2o,
/area/engine/atmos)
-"bTY" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/table,
-/obj/item/paper_bin{
- pixel_y = 6
- },
-/obj/item/taperecorder,
-/obj/item/folder/white,
-/obj/item/folder/white,
-/obj/item/pen,
-/obj/item/book/manual/wiki/xenoarchaeology,
-/turf/open/floor/iron,
-/area/science/misc_lab)
"bUc" = (
/obj/machinery/requests_console{
announcementConsole = 1;
@@ -11854,14 +11692,6 @@
/obj/structure/cable/yellow,
/turf/open/floor/engine,
/area/science/xenobiology)
-"bYi" = (
-/obj/machinery/door/poddoor/preopen{
- id = "testlab";
- name = "test chamber blast door"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/engine,
-/area/science/misc_lab)
"bYj" = (
/obj/effect/turf_decal/stripes/closeup{
dir = 1
@@ -11872,27 +11702,12 @@
},
/turf/open/floor/iron/dark,
/area/security/prison)
-"bYl" = (
-/obj/structure/chair/office/light{
- dir = 4
- },
-/obj/effect/landmark/start/scientist,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/science/misc_lab)
"bYr" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"bYs" = (
-/obj/structure/closet/crate,
-/obj/item/clothing/under/color/lightpurple,
-/obj/item/stack/spacecash/c200,
-/obj/machinery/airalarm/directional/north,
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
"bYy" = (
/obj/machinery/door/airlock/maintenance{
name = "Incinerator Access";
@@ -12045,12 +11860,6 @@
},
/turf/open/floor/iron/white,
/area/science/xenobiology)
-"bZc" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/science/misc_lab)
"bZe" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -12364,13 +12173,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/engine,
/area/science/xenobiology)
-"bZZ" = (
-/obj/effect/turf_decal/stripes/corner,
-/obj/machinery/camera/autoname{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/science/misc_lab)
"caa" = (
/turf/open/floor/iron/showroomfloor,
/area/crew_quarters/cryopods)
@@ -12446,6 +12248,16 @@
/obj/effect/spawner/structure/window/reinforced/prison,
/turf/open/floor/plating,
/area/crew_quarters/heads/hos)
+"cau" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
"cax" = (
/obj/structure/closet/wardrobe/black,
/obj/effect/decal/cleanable/cobweb,
@@ -12567,30 +12379,6 @@
},
/turf/open/floor/engine,
/area/science/xenobiology)
-"caY" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/science/misc_lab)
-"caZ" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron,
-/area/science/misc_lab)
-"cbc" = (
-/obj/structure/closet/crate,
-/obj/item/target/alien,
-/obj/item/target/alien,
-/obj/item/target/clown,
-/obj/item/target/clown,
-/obj/item/target/syndicate,
-/obj/item/target/syndicate,
-/obj/machinery/light,
-/turf/open/floor/iron,
-/area/science/misc_lab)
"cbd" = (
/obj/effect/landmark/event_spawn,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
@@ -12792,13 +12580,6 @@
/obj/structure/cable/yellow,
/turf/open/floor/engine,
/area/science/xenobiology)
-"cbV" = (
-/obj/machinery/light,
-/obj/machinery/camera/autoname{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/science/misc_lab)
"ccc" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -13172,6 +12953,18 @@
/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/engine/engineering)
+"ces" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
"cet" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 4
@@ -13260,17 +13053,6 @@
},
/turf/open/floor/iron/white,
/area/medical/virology)
-"ceO" = (
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"ceQ" = (
-/obj/structure/target_stake,
-/obj/machinery/magnetic_module,
-/obj/effect/landmark/blobstart,
-/turf/open/floor/engine,
-/area/science/misc_lab)
"ceR" = (
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
@@ -13520,12 +13302,6 @@
},
/turf/open/floor/iron,
/area/science/xenobiology)
-"cgu" = (
-/obj/structure/rack,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/effect/spawner/lootdrop/maintenance/two,
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
"cgz" = (
/obj/structure/cable,
/obj/structure/lattice/catwalk,
@@ -13700,27 +13476,6 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"chA" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
-"chC" = (
-/obj/structure/rack,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
"chG" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -14016,14 +13771,6 @@
/obj/structure/closet/emcloset,
/turf/open/floor/iron,
/area/engine/engineering)
-"cka" = (
-/obj/machinery/magnetic_controller{
- autolink = 1;
- pixel_y = 3
- },
-/obj/structure/table,
-/turf/open/floor/iron,
-/area/science/misc_lab)
"ckb" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/structure/lattice,
@@ -14489,14 +14236,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/space,
/area/space/nearstation)
-"coZ" = (
-/obj/structure/table,
-/obj/item/crowbar/large,
-/obj/item/storage/box/lights/mixed,
-/obj/item/clothing/glasses/meson,
-/obj/item/clothing/glasses/meson,
-/turf/open/floor/iron,
-/area/engine/engineering)
"cpa" = (
/obj/machinery/light{
dir = 4
@@ -14582,17 +14321,6 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/iron/dark,
/area/hallway/secondary/command)
-"cpP" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 24
- },
-/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
- dir = 4
- },
-/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor/iron,
-/area/engine/engineering)
"cpR" = (
/obj/machinery/door/airlock{
name = "Observatory Access"
@@ -14706,16 +14434,6 @@
/obj/structure/grille,
/turf/open/floor/plating,
/area/maintenance/port/aft)
-"cqo" = (
-/obj/structure/sign/warning/pods{
- pixel_x = 32
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/obj/structure/closet/secure_closet/engineering_electrical,
-/turf/open/floor/iron,
-/area/engine/engineering)
"cqq" = (
/obj/docking_port/stationary{
dir = 8;
@@ -15250,6 +14968,12 @@
},
/turf/open/floor/iron/white,
/area/medical/genetics)
+"ctb" = (
+/obj/structure/target_stake,
+/obj/machinery/magnetic_module,
+/obj/effect/landmark/blobstart,
+/turf/open/floor/engine,
+/area/science/explab)
"ctc" = (
/obj/machinery/light{
dir = 1
@@ -16390,17 +16114,6 @@
},
/turf/open/floor/engine,
/area/engine/engineering)
-"cDm" = (
-/obj/structure/rack,
-/obj/item/storage/belt/utility,
-/obj/item/wrench,
-/obj/item/weldingtool,
-/obj/item/clothing/head/utility/welding{
- pixel_x = -3;
- pixel_y = 5
- },
-/turf/open/floor/iron,
-/area/engine/engineering)
"cDq" = (
/obj/machinery/door/poddoor/preopen{
id = "Prisongate"
@@ -16841,15 +16554,6 @@
},
/turf/open/floor/engine,
/area/engine/supermatter)
-"cFi" = (
-/obj/machinery/camera/autoname{
- dir = 8
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/iron/white/side{
- dir = 9
- },
-/area/science/research)
"cFj" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -17282,6 +16986,16 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
+"cHG" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/white,
+/area/science/explab)
"cHL" = (
/obj/machinery/mech_bay_recharge_port{
dir = 2
@@ -17534,6 +17248,10 @@
},
/turf/open/floor/iron/dark,
/area/security/courtroom)
+"cKF" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/turf/open/floor/iron/white,
+/area/science/research)
"cLa" = (
/obj/structure/chair/office/light{
dir = 4
@@ -17688,14 +17406,6 @@
"cOe" = (
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"cOk" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/iron/white,
-/area/science/research)
"cOl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 8
@@ -17796,12 +17506,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/warehouse)
-"cPA" = (
-/obj/machinery/atmospherics/components/binary/valve{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
"cPO" = (
/obj/structure/table,
/obj/item/paper_bin,
@@ -17827,6 +17531,17 @@
},
/turf/open/floor/iron,
/area/tcommsat/computer)
+"cQm" = (
+/obj/structure/table,
+/obj/machinery/recharger,
+/obj/item/gun/energy/laser/practice,
+/obj/item/gun/energy/laser/practice,
+/obj/effect/decal/cleanable/cobweb,
+/obj/structure/sign/warning/securearea{
+ pixel_y = 32
+ },
+/turf/open/floor/iron,
+/area/science/explab)
"cQo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 5
@@ -17859,18 +17574,6 @@
/obj/item/stack/sheet/mineral/plasma/five,
/turf/open/floor/iron,
/area/quartermaster/exploration_dock)
-"cSz" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/turf/open/floor/engine,
-/area/science/misc_lab)
"cSE" = (
/obj/effect/turf_decal/siding/wideplating_new/dark/corner{
dir = 1
@@ -18193,6 +17896,15 @@
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating,
/area/maintenance/fore/secondary)
+"cXG" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Air Supply Maintenance";
+ req_access_txt = "12"
+ },
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/machinery/atmospherics/pipe/layer_manifold/visible,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
"cYD" = (
/obj/structure/closet/emcloset,
/obj/effect/turf_decal/stripes/line{
@@ -18336,6 +18048,22 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
+"dcB" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"dcN" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
@@ -19226,15 +18954,6 @@
/obj/effect/landmark/start/cyborg,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai_upload)
-"dwb" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 9
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
"dwh" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
@@ -19352,10 +19071,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/fitness)
-"dyt" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/iron/white,
-/area/science/mixing)
"dyB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 9
@@ -19368,6 +19083,21 @@
/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/security/prison)
+"dyR" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/door/airlock/research{
+ name = "Testing Lab";
+ req_access_txt = "47"
+ },
+/turf/open/floor/iron,
+/area/science/explab)
"dyY" = (
/obj/machinery/airalarm{
dir = 4;
@@ -19466,15 +19196,6 @@
/obj/machinery/light/small,
/turf/open/floor/wood,
/area/vacant_room/office)
-"dBd" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 10
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/science/misc_lab)
"dBh" = (
/obj/machinery/door/airlock/public/glass{
name = "Courtroom";
@@ -19701,14 +19422,6 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
-"dHE" = (
-/obj/effect/turf_decal/bot{
- dir = 1
- },
-/obj/structure/table,
-/obj/item/storage/box/lights/mixed,
-/turf/open/floor/iron,
-/area/engine/engineering)
"dHO" = (
/obj/machinery/door/airlock/engineering{
name = "Port Bow Solar Access";
@@ -20461,6 +20174,15 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
+"dXa" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/open/floor/iron,
+/area/engine/engineering)
"dXe" = (
/obj/effect/spawner/randomvend/snack,
/obj/machinery/light{
@@ -20638,22 +20360,6 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"eam" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/science/misc_lab)
"eao" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -21218,6 +20924,16 @@
"enz" = (
/turf/open/floor/iron/techmaint,
/area/crew_quarters/fitness)
+"enC" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/structure/rack,
+/obj/item/multitool,
+/obj/item/analyzer,
+/obj/item/geiger_counter,
+/turf/open/floor/iron/white,
+/area/science/explab)
"eoN" = (
/obj/effect/turf_decal/stripes/corner{
dir = 1
@@ -21398,6 +21114,25 @@
},
/turf/open/floor/iron,
/area/crew_quarters/fitness)
+"esy" = (
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/structure/table,
+/obj/item/storage/box/lights/mixed,
+/turf/open/floor/iron,
+/area/engine/engineering)
+"esR" = (
+/obj/structure/closet/bombcloset,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/science/explab)
"esU" = (
/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
@@ -22329,6 +22064,17 @@
},
/turf/open/floor/iron/freezer,
/area/crew_quarters/toilet)
+"eKt" = (
+/obj/machinery/camera/autoname{
+ dir = 8;
+ network = list("ss13","engine")
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/open/floor/iron,
+/area/engine/engineering)
"eLa" = (
/obj/machinery/door/poddoor/preopen{
id = "bridgeentrance";
@@ -22590,6 +22336,14 @@
/obj/effect/turf_decal/tile/blue,
/turf/open/floor/iron/white,
/area/medical/sleeper)
+"eQz" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/electrical{
+ pixel_y = 5
+ },
+/obj/item/clothing/gloves/color/yellow,
+/turf/open/floor/iron,
+/area/engine/engineering)
"eQC" = (
/obj/machinery/door/airlock/external{
name = "External Access";
@@ -22941,6 +22695,19 @@
},
/turf/open/floor/iron/dark,
/area/tcommsat/computer)
+"eYw" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/science/mixing/chamber)
"eYL" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -22954,6 +22721,10 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai_upload)
+"eYN" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/white,
+/area/science/mixing/chamber)
"eYS" = (
/obj/machinery/power/solar{
id = "starboardsolar";
@@ -23797,6 +23568,12 @@
},
/turf/open/floor/plating,
/area/maintenance/port/aft)
+"frr" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white/side{
+ dir = 1
+ },
+/area/science/research)
"frE" = (
/obj/structure/disposaloutlet{
dir = 1
@@ -23896,6 +23673,9 @@
},
/turf/open/floor/iron/techmaint,
/area/ai_monitored/storage/eva)
+"fuQ" = (
+/turf/open/floor/iron/white,
+/area/science/explab)
"fuR" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 6
@@ -23929,29 +23709,11 @@
},
/turf/open/floor/prison,
/area/security/prison)
-"fvq" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/machinery/door/airlock/research/glass{
- name = "Test Chamber";
- req_access_txt = "47"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "testlab";
- name = "test chamber blast door"
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/science/misc_lab)
+"fvX" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
"fwN" = (
/obj/structure/kitchenspike,
/obj/machinery/light/small{
@@ -24524,6 +24286,13 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron/dark,
/area/hallway/primary/central)
+"fKo" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/white,
+/area/science/mixing/chamber)
"fKs" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -24625,17 +24394,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/office)
-"fOy" = (
-/obj/machinery/sparker{
- id = "testigniter";
- pixel_x = -25
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/science/misc_lab)
"fPa" = (
/obj/effect/turf_decal/trimline/dark_blue/filled/line{
dir = 10
@@ -25252,6 +25010,19 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai)
+"gax" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/airalarm/mixingchamber{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/iron,
+/area/science/mixing/chamber)
"gaF" = (
/obj/machinery/light_switch{
pixel_x = 24;
@@ -25571,6 +25342,13 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron/white,
/area/science/mixing)
+"gil" = (
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 1
+ },
+/obj/machinery/vending/engivend,
+/turf/open/floor/iron,
+/area/engine/engineering)
"giq" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/green/visible{
@@ -25684,6 +25462,18 @@
/obj/machinery/vending/coffee,
/turf/open/floor/iron/dark,
/area/security/courtroom)
+"glx" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
"glL" = (
/obj/machinery/light/small,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
@@ -26765,30 +26555,6 @@
},
/turf/open/floor/iron/dark,
/area/teleporter)
-"gKq" = (
-/obj/structure/table,
-/obj/item/stack/sheet/glass/fifty{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/stack/sheet/iron/fifty,
-/obj/item/stack/sheet/mineral/plasma,
-/obj/machinery/firealarm{
- pixel_y = 24
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/item/book/manual/wiki/experimentor,
-/obj/item/storage/box/beakers{
- pixel_x = 2;
- pixel_y = 2
- },
-/turf/open/floor/iron,
-/area/science/misc_lab)
"gKu" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -26978,6 +26744,9 @@
/obj/effect/turf_decal/tile/blue,
/turf/open/floor/iron/white,
/area/medical/surgery)
+"gSV" = (
+/turf/closed/wall,
+/area/science/explab)
"gTc" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 1
@@ -27130,36 +26899,9 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat_interior)
-"gWI" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/science/misc_lab)
"gWM" = (
/turf/closed/wall,
/area/medical/surgery)
-"gWT" = (
-/obj/machinery/portable_atmospherics/pump,
-/obj/effect/turf_decal/bot,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/turf/open/floor/iron,
-/area/science/mixing)
"gWY" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -27
@@ -27453,6 +27195,17 @@
},
/turf/open/floor/iron/white,
/area/science/research)
+"heg" = (
+/obj/machinery/magnetic_controller{
+ autolink = 1;
+ pixel_y = 3
+ },
+/obj/structure/table,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27
+ },
+/turf/open/floor/iron,
+/area/science/explab)
"hem" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -27558,13 +27311,6 @@
},
/turf/open/floor/iron,
/area/storage/primary)
-"hfE" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/iron,
-/area/science/misc_lab)
"hfS" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
@@ -27681,19 +27427,6 @@
/obj/machinery/vending/medical,
/turf/open/floor/iron/white,
/area/medical/virology)
-"hju" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/iron/white,
-/area/science/mixing)
"hjw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 9
@@ -27709,18 +27442,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/exploration_dock)
-"hjQ" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"hkp" = (
/obj/effect/turf_decal/tile/red/half/contrasted,
/obj/machinery/camera/autoname{
@@ -28248,6 +27969,15 @@
},
/turf/open/floor/iron/showroomfloor,
/area/crew_quarters/heads/captain)
+"hyy" = (
+/obj/machinery/light_switch{
+ pixel_y = 28
+ },
+/obj/machinery/camera/autoname{
+ network = list("ss13","rd")
+ },
+/turf/open/floor/iron/white,
+/area/science/explab)
"hyI" = (
/obj/machinery/cryopod{
dir = 4
@@ -29067,6 +28797,14 @@
/obj/effect/turf_decal/tile/blue,
/turf/open/floor/iron/white,
/area/medical/surgery)
+"hPs" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/turf/open/floor/iron/white,
+/area/science/explab)
"hPy" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 1
@@ -29418,6 +29156,16 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"hWJ" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"hWP" = (
/obj/structure/closet/masks,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -29470,6 +29218,9 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"hXj" = (
+/turf/closed/wall/r_wall,
+/area/science/explab)
"hXl" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 4
@@ -29703,14 +29454,6 @@
},
/turf/open/floor/prison,
/area/security/prison)
-"idz" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/iron,
-/area/science/misc_lab)
"idO" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -30430,11 +30173,6 @@
},
/turf/open/floor/iron/dark,
/area/crew_quarters/dorms)
-"irL" = (
-/obj/effect/turf_decal/tile/yellow/half/contrasted,
-/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor/iron,
-/area/engine/engineering)
"irX" = (
/obj/effect/turf_decal/stripes/corner{
dir = 9
@@ -30814,13 +30552,6 @@
},
/turf/open/floor/iron/white,
/area/medical/chemistry)
-"ixY" = (
-/obj/effect/turf_decal/tile/yellow/half/contrasted{
- dir = 4
- },
-/obj/machinery/vending/wardrobe/engi_wardrobe,
-/turf/open/floor/iron,
-/area/engine/engineering)
"iyk" = (
/obj/machinery/door/airlock/public/glass{
name = "Visitation"
@@ -30870,16 +30601,6 @@
},
/turf/open/floor/carpet,
/area/quartermaster/exploration_prep)
-"izp" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/iron/white,
-/area/science/research)
"iAg" = (
/obj/machinery/advanced_airlock_controller{
dir = 4;
@@ -31311,6 +31032,13 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
+"iKu" = (
+/obj/structure/table,
+/obj/item/book/manual/wiki/xenoarchaeology,
+/obj/item/storage/firstaid/regular,
+/obj/item/clothing/neck/stethoscope,
+/turf/open/floor/iron/white,
+/area/science/explab)
"iKv" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable,
@@ -31432,6 +31160,19 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"iOG" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/science/explab)
"iOO" = (
/obj/machinery/door/window/eastleft{
dir = 8;
@@ -31755,6 +31496,15 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
+"iVr" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/science/explab)
"iVN" = (
/obj/effect/turf_decal/tile/blue/half/contrasted{
dir = 1
@@ -31985,11 +31735,46 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
+"iYU" = (
+/obj/structure/rack,
+/obj/item/clothing/mask/gas{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/science/explab)
"iYW" = (
/obj/effect/landmark/start/lawyer,
/obj/structure/chair/office,
/turf/open/floor/carpet/royalblack,
/area/lawoffice)
+"iYZ" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
"iZs" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
@@ -32636,6 +32421,21 @@
},
/turf/open/floor/prison,
/area/security/prison)
+"jos" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
"jow" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/disposalpipe/segment{
@@ -32727,16 +32527,6 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/captain)
-"jsO" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/obj/structure/rack,
-/obj/item/multitool,
-/obj/item/analyzer,
-/obj/item/geiger_counter,
-/turf/open/floor/iron,
-/area/science/misc_lab)
"jsS" = (
/obj/structure/chair,
/obj/effect/turf_decal/stripes/line{
@@ -33017,15 +32807,6 @@
},
/turf/open/floor/carpet/blue,
/area/crew_quarters/heads/hop)
-"jyQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/turf/open/floor/engine,
-/area/science/misc_lab)
"jzf" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -33099,6 +32880,16 @@
},
/turf/open/floor/iron/dark,
/area/security/main)
+"jzI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/science/explab)
"jAB" = (
/obj/structure/sink{
dir = 4;
@@ -33346,12 +33137,6 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/iron/dark,
/area/bridge)
-"jIe" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/science/misc_lab)
"jIo" = (
/obj/machinery/firealarm{
dir = 8;
@@ -33584,6 +33369,18 @@
/obj/effect/turf_decal/tile/neutral/opposingcorners,
/turf/open/floor/iron,
/area/vacant_room/commissary)
+"jMR" = (
+/obj/structure/closet/crate,
+/obj/item/target/alien,
+/obj/item/target/alien,
+/obj/item/target/clown,
+/obj/item/target/clown,
+/obj/item/target/syndicate,
+/obj/item/target/syndicate,
+/obj/machinery/light,
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron/white,
+/area/science/explab)
"jMT" = (
/obj/machinery/power/apc/auto_name/west{
pixel_x = -24
@@ -33978,13 +33775,6 @@
},
/turf/open/floor/iron,
/area/security/courtroom)
-"jWs" = (
-/obj/structure/closet/bombcloset,
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/science/misc_lab)
"jWu" = (
/obj/effect/turf_decal/tile/neutral,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -34213,6 +34003,13 @@
/obj/effect/loot_jobscale/medical/medkits,
/turf/open/floor/iron/white,
/area/medical/storage)
+"kbk" = (
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
"kbn" = (
/obj/machinery/door/window{
base_state = "leftsecure";
@@ -34257,15 +34054,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron/cafeteria_red,
/area/crew_quarters/bar)
-"kbT" = (
-/obj/machinery/airalarm{
- dir = 8;
- pixel_x = 24
- },
-/obj/effect/turf_decal/tile/yellow/half/contrasted,
-/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor/iron,
-/area/engine/engineering)
"kch" = (
/turf/closed/wall/r_wall,
/area/quartermaster/exploration_prep)
@@ -34314,6 +34102,14 @@
"kcM" = (
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
+"kcT" = (
+/obj/machinery/door/airlock/research{
+ name = "Testing Lab";
+ req_access_txt = "47"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/science/explab)
"kdD" = (
/obj/effect/turf_decal/tile/red/half/contrasted{
dir = 4
@@ -34400,18 +34196,6 @@
dir = 8
},
/area/crew_quarters/dorms)
-"kfz" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 24
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/turf/open/floor/iron/white/side{
- dir = 9
- },
-/area/science/research)
"kfB" = (
/obj/effect/turf_decal/tile/blue/opposingcorners{
dir = 1
@@ -34693,23 +34477,6 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron/white,
/area/maintenance/aft)
-"knk" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/computer/security/telescreen{
- name = "Test Chamber Monitor";
- network = list("test");
- pixel_y = 32
- },
-/turf/open/floor/iron,
-/area/science/misc_lab)
"kno" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 4
@@ -35913,6 +35680,19 @@
/obj/effect/turf_decal/tile/dark_blue,
/turf/open/floor/iron,
/area/hallway/primary/central)
+"kMu" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"kMB" = (
/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted,
/obj/effect/turf_decal/delivery,
@@ -37049,6 +36829,17 @@
},
/turf/open/floor/iron/freezer,
/area/security/prison)
+"lkK" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/open/floor/iron,
+/area/engine/engineering)
"llb" = (
/obj/effect/turf_decal/siding/wood,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
@@ -37171,6 +36962,20 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/central)
+"lmO" = (
+/obj/machinery/portable_atmospherics/pump,
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/science/mixing)
"lna" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 6
@@ -37426,6 +37231,19 @@
/obj/structure/grille,
/turf/open/floor/plating,
/area/maintenance/central)
+"lrp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/turf/open/floor/iron,
+/area/science/explab)
"lrH" = (
/obj/effect/turf_decal/trimline/dark_blue/filled/line{
dir = 4
@@ -37444,14 +37262,6 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
-"lsb" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/electrical{
- pixel_y = 5
- },
-/obj/item/clothing/gloves/color/yellow,
-/turf/open/floor/iron,
-/area/engine/engineering)
"lsU" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/effect/turf_decal/trimline/dark_blue/filled/corner{
@@ -37973,6 +37783,21 @@
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating,
/area/maintenance/fore/secondary)
+"lCI" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/door/airlock/maintenance{
+ name = "Testing Lab Maintenance";
+ req_access_txt = "47"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
"lCW" = (
/obj/machinery/door/airlock{
name = "Kitchen cold room";
@@ -38533,13 +38358,6 @@
/obj/item/multitool,
/turf/open/floor/iron,
/area/quartermaster/office)
-"lRv" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/computer/rdconsole/experiment{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/science/misc_lab)
"lRI" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -38573,13 +38391,6 @@
/obj/structure/cable,
/turf/open/floor/iron/solarpanel/airless,
/area/solar/starboard/aft)
-"lST" = (
-/obj/structure/table,
-/obj/machinery/recharger,
-/obj/item/gun/energy/laser/practice,
-/obj/item/gun/energy/laser/practice,
-/turf/open/floor/iron,
-/area/science/misc_lab)
"lTp" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -5;
@@ -38919,6 +38730,22 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/janitor)
+"mdo" = (
+/obj/structure/table,
+/obj/item/stack/sheet/glass/fifty{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/mineral/plasma,
+/obj/item/storage/box/beakers{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/machinery/power/apc/auto_name/south,
+/obj/structure/cable/yellow,
+/turf/open/floor/iron/white,
+/area/science/explab)
"mdr" = (
/obj/machinery/nuclearbomb/beer,
/turf/open/floor/plating,
@@ -38989,6 +38816,16 @@
},
/turf/open/floor/iron/white,
/area/medical/chemistry)
+"meY" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"mfk" = (
/obj/structure/table,
/obj/item/stack/sheet/iron/fifty,
@@ -39420,6 +39257,14 @@
},
/turf/open/floor/iron/cafeteria_red,
/area/crew_quarters/bar)
+"mof" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27
+ },
+/turf/open/floor/iron/white/side{
+ dir = 5
+ },
+/area/science/research)
"moo" = (
/obj/structure/disposalpipe/sorting/mail{
dir = 1;
@@ -40237,6 +40082,21 @@
/obj/effect/landmark/start/medical_doctor,
/turf/open/floor/iron/white,
/area/medical/chemistry)
+"mLN" = (
+/obj/machinery/atmospherics/components/binary/valve{
+ dir = 4;
+ name = "port to mix"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/science/mixing/chamber)
"mLS" = (
/obj/machinery/cryopod{
dir = 4
@@ -40405,13 +40265,6 @@
},
/turf/open/floor/iron,
/area/security/brig)
-"mPG" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -27
- },
-/obj/structure/closet/radiation,
-/turf/open/floor/iron,
-/area/science/misc_lab)
"mPO" = (
/obj/structure/chair/fancy/sofa/old/right{
color = "#742925";
@@ -40584,12 +40437,44 @@
/obj/effect/landmark/start/medical_doctor,
/turf/open/floor/iron/white,
/area/medical/cryo)
+"mSS" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/science/research)
"mSX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
/turf/open/floor/iron/white,
/area/medical/apothecary)
+"mTl" = (
+/obj/machinery/computer/xenoartifact_console{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_x = 1;
+ pixel_y = 28
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/button/door{
+ id = "testlab";
+ name = "Test Chamber Blast Doors";
+ pixel_x = 24
+ },
+/turf/open/floor/iron,
+/area/science/explab)
"mTm" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/effect/turf_decal/trimline/dark_blue/filled/line{
@@ -40601,6 +40486,28 @@
},
/turf/open/floor/iron/dark,
/area/teleporter)
+"mTs" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/iron/white/side{
+ dir = 9
+ },
+/area/science/research)
+"mTB" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/science/research)
"mTL" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -40836,6 +40743,17 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron/dark,
/area/security/main)
+"mYh" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/science/explab)
"mYv" = (
/obj/structure/bed/roller,
/obj/machinery/camera/autoname{
@@ -41012,10 +40930,6 @@
},
/turf/open/floor/iron/techmaint,
/area/security/brig)
-"naJ" = (
-/obj/item/beacon,
-/turf/open/floor/engine,
-/area/science/misc_lab)
"naN" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
@@ -41083,6 +40997,27 @@
},
/turf/open/floor/iron/white,
/area/crew_quarters/heads/cmo)
+"ncj" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron,
+/area/science/mixing/chamber)
+"ncx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/iron/white,
+/area/science/explab)
"ncy" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -41199,6 +41134,10 @@
},
/turf/open/floor/iron/dark,
/area/hallway/secondary/command)
+"neD" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/science/explab)
"neI" = (
/obj/structure/table/wood,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -41784,21 +41723,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/white,
/area/medical/genetics)
-"nsc" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
"nso" = (
/obj/structure/table/reinforced,
/obj/item/paper_bin,
@@ -42083,15 +42007,6 @@
/obj/effect/turf_decal/trimline/dark_blue/filled/line,
/turf/open/floor/iron/dark,
/area/bridge)
-"nxX" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/iron/white,
-/area/science/mixing)
"nyw" = (
/obj/structure/cable/yellow{
icon_state = "0-8"
@@ -42464,6 +42379,12 @@
},
/turf/open/floor/iron/white,
/area/crew_quarters/heads/cmo)
+"nFF" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/maintenance/starboard/aft)
"nFI" = (
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -42879,15 +42800,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/fore/secondary)
-"nQl" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/science/misc_lab)
"nQy" = (
/obj/structure/rack,
/obj/effect/turf_decal/bot,
@@ -43205,17 +43117,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/security/main)
-"nWA" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Air Supply Maintenance";
- req_access_txt = "12"
- },
-/obj/effect/mapping_helpers/airlock/abandoned,
-/obj/machinery/atmospherics/pipe/layer_manifold/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
"nWL" = (
/obj/machinery/photocopier,
/obj/item/radio/intercom{
@@ -44085,6 +43986,10 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/auxiliary)
+"oru" = (
+/obj/machinery/atmospherics/components/binary/valve,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
"osc" = (
/obj/machinery/newscaster{
pixel_x = -30
@@ -44109,15 +44014,6 @@
},
/turf/open/floor/iron/dark,
/area/gateway)
-"osI" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/obj/structure/rack,
-/obj/item/clothing/neck/stethoscope,
-/obj/item/storage/firstaid/regular,
-/turf/open/floor/iron,
-/area/science/misc_lab)
"osO" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 8
@@ -44172,13 +44068,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"oul" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/xenoartifact_inbox,
-/obj/effect/landmark/xeno_spawn,
-/obj/item/xenoartifact,
-/turf/open/floor/engine,
-/area/science/misc_lab)
"oup" = (
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
@@ -44312,6 +44201,21 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/lobby)
+"oyl" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/science/explab)
"oyH" = (
/obj/structure/table,
/obj/item/aiModule/reset,
@@ -44561,6 +44465,10 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat/atmos)
+"oCS" = (
+/obj/machinery/light,
+/turf/open/floor/engine,
+/area/science/explab)
"oCZ" = (
/obj/effect/turf_decal/tile/red/half/contrasted{
dir = 4
@@ -45417,6 +45325,17 @@
},
/turf/open/floor/engine,
/area/engine/supermatter)
+"pbR" = (
+/obj/structure/rack,
+/obj/item/storage/belt/utility,
+/obj/item/wrench,
+/obj/item/weldingtool,
+/obj/item/clothing/head/utility/welding{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/turf/open/floor/iron,
+/area/engine/engineering)
"pcf" = (
/obj/machinery/camera{
c_tag = "Warden's Office";
@@ -45450,16 +45369,6 @@
},
/turf/open/floor/prison,
/area/security/prison)
-"pcB" = (
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -22
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/iron/white/side{
- dir = 5
- },
-/area/science/research)
"pcD" = (
/obj/effect/turf_decal/tile/blue{
dir = 1
@@ -45596,6 +45505,17 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/bridge/meeting_room)
+"pgx" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/science/explab)
"phr" = (
/obj/machinery/computer/secure_data,
/obj/machinery/button/door{
@@ -46229,6 +46149,16 @@
},
/turf/open/floor/iron/dark,
/area/medical/morgue)
+"pxd" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"pxn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 9
@@ -46726,6 +46656,20 @@
},
/turf/open/floor/iron,
/area/security/courtroom)
+"pHo" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/camera/autoname{
+ dir = 9
+ },
+/obj/machinery/power/apc/auto_name/east,
+/obj/structure/cable/yellow,
+/turf/open/floor/iron,
+/area/science/mixing/chamber)
"pHs" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 4
@@ -46935,18 +46879,18 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plating,
/area/maintenance/aft)
-"pKk" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+"pKl" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/turf/open/floor/iron,
-/area/science/misc_lab)
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"pKm" = (
/obj/structure/table,
/obj/item/nanite_remote,
@@ -47483,9 +47427,6 @@
"pWI" = (
/turf/open/floor/carpet/green,
/area/security/detectives_office)
-"pWN" = (
-/turf/open/floor/iron,
-/area/science/misc_lab)
"pWQ" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
@@ -47562,6 +47503,10 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
+"pYk" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/turf/open/floor/iron/white,
+/area/science/research)
"pYH" = (
/obj/structure/bed,
/obj/item/bedsheet/captain,
@@ -47685,13 +47630,6 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/starboard/fore)
-"qbM" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/science/misc_lab)
"qbQ" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -47775,12 +47713,6 @@
},
/turf/open/floor/iron/dark,
/area/hallway/secondary/command)
-"qfK" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/iron/white/side{
- dir = 1
- },
-/area/science/research)
"qfW" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -47927,6 +47859,11 @@
/obj/effect/turf_decal/tile/blue,
/turf/open/floor/iron/white,
/area/medical/medbay/lobby)
+"qkc" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/open/floor/iron,
+/area/engine/engineering)
"qkk" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 8
@@ -48396,18 +48333,6 @@
/obj/structure/disposalpipe/junction,
/turf/open/floor/iron,
/area/hallway/primary/starboard)
-"qwt" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -27
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/iron/white/side{
- dir = 5
- },
-/area/science/research)
"qwD" = (
/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
dir = 8
@@ -48608,6 +48533,15 @@
},
/turf/open/floor/iron,
/area/quartermaster/qm)
+"qzh" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/open/floor/iron/white/side{
+ dir = 5
+ },
+/area/science/research)
"qzw" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/secure_closet/atmospherics,
@@ -49122,22 +49056,6 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat/atmos)
-"qMl" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/science/misc_lab)
-"qMn" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/iron/white,
-/area/science/research)
"qMo" = (
/obj/machinery/door/airlock/maintenance{
name = "Garden Maintenance";
@@ -49164,6 +49082,14 @@
/obj/item/kirbyplants/random,
/turf/open/floor/iron,
/area/crew_quarters/fitness)
+"qMN" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance/two,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
"qMR" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/machinery/atmospherics/pipe/layer_manifold/visible{
@@ -49308,14 +49234,6 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/turf/open/floor/iron/white,
/area/medical/chemistry)
-"qQC" = (
-/obj/machinery/portable_atmospherics/canister,
-/obj/effect/turf_decal/bot,
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/iron,
-/area/science/mixing)
"qQG" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/effect/turf_decal/trimline/dark_blue/filled/line,
@@ -50240,6 +50158,37 @@
},
/turf/open/floor/iron,
/area/quartermaster/office)
+"rjV" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 4
+ },
+/obj/machinery/camera/autoname{
+ network = list("ss13","rd")
+ },
+/turf/open/floor/iron,
+/area/science/explab)
+"rkk" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/white,
+/area/science/research)
"rkm" = (
/obj/structure/window/reinforced{
dir = 4
@@ -50402,19 +50351,6 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"rmN" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/science/misc_lab)
"rnd" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=QM";
@@ -50977,22 +50913,6 @@
/obj/structure/flora/rock/pile,
/turf/open/floor/grass,
/area/hallway/primary/central)
-"ryM" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/iron/white,
-/area/science/research)
"rzf" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/components/binary/pump{
@@ -51239,6 +51159,12 @@
},
/turf/open/floor/catwalk_floor/iron,
/area/engine/atmos)
+"rEk" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/science/explab)
"rEE" = (
/obj/structure/table,
/obj/item/razor,
@@ -51451,14 +51377,6 @@
},
/turf/open/floor/iron/dark,
/area/bridge/meeting_room)
-"rHZ" = (
-/obj/structure/rack,
-/obj/item/wrench,
-/obj/item/crowbar,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/hand_labeler,
-/turf/open/floor/iron,
-/area/science/misc_lab)
"rIV" = (
/obj/structure/table/wood,
/obj/machinery/requests_console{
@@ -51911,18 +51829,6 @@
},
/turf/open/floor/iron/dark,
/area/security/main)
-"rRS" = (
-/obj/effect/turf_decal/bot{
- dir = 1
- },
-/obj/structure/table,
-/obj/item/stack/cable_coil,
-/obj/item/stack/cable_coil,
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/iron,
-/area/engine/engineering)
"rRU" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -51945,34 +51851,6 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat/hallway)
-"rSg" = (
-/obj/structure/table,
-/obj/machinery/requests_console{
- department = "Science";
- departmentType = 2;
- name = "Science Requests Console";
- pixel_y = 30;
- receive_ore_updates = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/item/clothing/glasses/science,
-/obj/item/clothing/glasses/science{
- pixel_y = 8
- },
-/obj/item/xenoartifact_labeler,
-/obj/item/xenoartifact_labeler{
- pixel_x = -9
- },
-/obj/item/clothing/gloves/artifact_pinchers,
-/obj/item/clothing/gloves/artifact_pinchers,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/turf/open/floor/iron,
-/area/science/misc_lab)
"rSk" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 8
@@ -52101,6 +51979,17 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
+"rWD" = (
+/obj/structure/rack,
+/obj/item/wrench,
+/obj/item/crowbar,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/hand_labeler,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/science/explab)
"rWK" = (
/obj/structure/cable/yellow,
/obj/machinery/door/poddoor/preopen{
@@ -52431,21 +52320,6 @@
},
/turf/open/floor/iron/white,
/area/medical/sleeper)
-"sff" = (
-/obj/machinery/atmospherics/components/binary/valve{
- dir = 4;
- name = "mix to port"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/science/mixing)
"sfj" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -52669,18 +52543,6 @@
},
/turf/open/floor/iron,
/area/hydroponics/garden)
-"sjU" = (
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/computer/xenoartifact_console{
- dir = 8
- },
-/obj/machinery/power/apc/auto_name/east,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/science/misc_lab)
"skg" = (
/obj/machinery/computer/atmos_alert,
/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
@@ -52706,18 +52568,6 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/prison/dark,
/area/security/prison)
-"skC" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"skV" = (
/obj/machinery/gibber,
/turf/open/floor/iron/freezer,
@@ -52832,6 +52682,12 @@
},
/turf/open/floor/carpet/red,
/area/crew_quarters/heads/hos)
+"sou" = (
+/obj/structure/closet/crate,
+/obj/item/clothing/under/color/lightpurple,
+/obj/item/stack/spacecash/c200,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
"soA" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -53106,6 +52962,11 @@
},
/turf/open/floor/iron/grid/steel,
/area/ai_monitored/turret_protected/ai_upload)
+"stP" = (
+/turf/open/floor/iron/white/side{
+ dir = 1
+ },
+/area/science/research)
"suw" = (
/obj/structure/reagent_dispensers/peppertank{
pixel_x = -30
@@ -53145,21 +53006,12 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"swj" = (
-/obj/machinery/atmospherics/components/binary/valve{
- dir = 4;
- name = "port to mix"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
+"svU" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
},
/turf/open/floor/iron/white,
-/area/science/mixing)
+/area/science/explab)
"swm" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 1
@@ -53477,26 +53329,6 @@
dir = 8
},
/area/crew_quarters/dorms)
-"sBv" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/structure/rack,
-/obj/item/assembly/igniter,
-/obj/item/stock_parts/cell/high{
- charge = 100;
- maxcharge = 15000
- },
-/obj/item/assembly/signaler{
- pixel_x = -8;
- pixel_y = 5
- },
-/turf/open/floor/iron,
-/area/science/misc_lab)
"sBx" = (
/obj/effect/turf_decal/tile/yellow{
dir = 8
@@ -53678,14 +53510,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron/dark,
/area/hallway/secondary/command)
-"sEz" = (
-/obj/machinery/door/airlock/research{
- name = "Testing Lab";
- req_access_txt = "47"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/iron,
-/area/science/misc_lab)
"sER" = (
/obj/structure/railing,
/obj/structure/railing{
@@ -53821,6 +53645,10 @@
"sHg" = (
/turf/closed/wall/r_wall,
/area/storage/tech)
+"sHp" = (
+/obj/effect/spawner/room/fivexthree,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
"sIA" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -54115,6 +53943,9 @@
},
/turf/open/floor/plating,
/area/maintenance/port/aft)
+"sPf" = (
+/turf/open/floor/engine,
+/area/science/explab)
"sPB" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
@@ -54520,6 +54351,19 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/security/courtroom)
+"sXh" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 4
+ },
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron,
+/area/science/explab)
"sXq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 8
@@ -54995,6 +54839,18 @@
},
/turf/open/floor/prison,
/area/security/prison)
+"tfP" = (
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/structure/table,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/iron,
+/area/engine/engineering)
"tfS" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -55238,6 +55094,10 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"tlX" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/engine,
+/area/science/explab)
"tlZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 8
@@ -55273,6 +55133,13 @@
},
/turf/open/floor/carpet,
/area/vacant_room/office)
+"tnf" = (
+/obj/effect/turf_decal/box/corners,
+/obj/machinery/camera/autoname{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/science/explab)
"tnx" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 8
@@ -55413,17 +55280,6 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron/white,
/area/security/checkpoint/science)
-"tqh" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
"tqv" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -55663,6 +55519,14 @@
},
/turf/open/floor/iron,
/area/crew_quarters/fitness)
+"tuM" = (
+/obj/structure/table,
+/obj/item/crowbar/large,
+/obj/item/storage/box/lights/mixed,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/turf/open/floor/iron,
+/area/engine/engineering)
"tuZ" = (
/obj/machinery/light/small,
/obj/machinery/computer/turbine_computer{
@@ -55994,6 +55858,12 @@
/obj/effect/turf_decal/tile/neutral/anticorner/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/dorms)
+"tAc" = (
+/obj/effect/turf_decal/delivery,
+/obj/item/xenoartifact,
+/obj/machinery/xenoartifact_inbox,
+/turf/open/floor/engine,
+/area/science/explab)
"tAf" = (
/obj/machinery/light/small,
/turf/open/floor/engine/o2,
@@ -56174,15 +56044,6 @@
},
/turf/open/floor/engine,
/area/engine/engineering)
-"tDw" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/light_switch{
- pixel_y = 28
- },
-/turf/open/floor/iron,
-/area/science/misc_lab)
"tDA" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow{
@@ -56339,6 +56200,13 @@
},
/turf/open/floor/plating/airless,
/area/space/nearstation)
+"tGo" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/holopad,
+/turf/open/floor/iron/white,
+/area/science/explab)
"tGp" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -56476,17 +56344,6 @@
/obj/machinery/light/small,
/turf/open/floor/iron/freezer,
/area/crew_quarters/toilet)
-"tIH" = (
-/obj/machinery/camera/autoname{
- dir = 8;
- network = list("ss13","engine")
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor/iron,
-/area/engine/engineering)
"tIO" = (
/obj/machinery/atmospherics/components/binary/pump/on{
name = "Waste Out"
@@ -56617,12 +56474,6 @@
},
/turf/open/floor/iron/dark,
/area/teleporter)
-"tKG" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/science/misc_lab)
"tKY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/structure/cable/yellow{
@@ -56776,6 +56627,28 @@
"tNE" = (
/turf/open/floor/holofloor/plating,
/area/holodeck/prison)
+"tNI" = (
+/obj/structure/table,
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ name = "Science Requests Console";
+ pixel_y = 30;
+ receive_ore_updates = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/item/clothing/glasses/science,
+/obj/item/clothing/glasses/science{
+ pixel_y = 8
+ },
+/obj/item/xenoartifact_labeler,
+/obj/item/xenoartifact_labeler{
+ pixel_x = -9
+ },
+/obj/item/clothing/gloves/artifact_pinchers,
+/obj/item/clothing/gloves/artifact_pinchers,
+/turf/open/floor/iron/white,
+/area/science/explab)
"tOl" = (
/obj/machinery/power/solar{
id = "auxsolareast";
@@ -56914,6 +56787,15 @@
dir = 9
},
/area/science/research)
+"tSm" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/white,
+/area/science/mixing/chamber)
"tSt" = (
/obj/effect/turf_decal/tile/red/half/contrasted{
dir = 8
@@ -57865,6 +57747,21 @@
/obj/effect/loot_jobscale/medical/medkits,
/turf/open/floor/iron/white,
/area/medical/storage)
+"unI" = (
+/obj/machinery/atmospherics/components/binary/valve{
+ dir = 4;
+ name = "mix to port"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/science/mixing/chamber)
"unJ" = (
/obj/machinery/light/small{
dir = 8
@@ -57948,6 +57845,10 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
+"upf" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/white,
+/area/science/explab)
"upy" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 4
@@ -58063,6 +57964,18 @@
},
/turf/open/floor/iron/cafeteria,
/area/crew_quarters/heads/hor)
+"urE" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/iron/white,
+/area/science/explab)
"usl" = (
/obj/structure/sign/warning/securearea{
pixel_x = 32
@@ -58073,6 +57986,24 @@
/obj/structure/closet/emcloset,
/turf/open/floor/iron,
/area/maintenance/aft)
+"usm" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/iron,
+/area/science/mixing)
"usv" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -58153,10 +58084,6 @@
},
/turf/open/floor/iron/freezer,
/area/crew_quarters/kitchen/coldroom)
-"uvi" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/iron,
-/area/science/misc_lab)
"uvs" = (
/obj/machinery/power/solar_control{
id = "auxsolareast";
@@ -58435,13 +58362,6 @@
/obj/effect/loot_jobscale/medical/medkits,
/turf/open/floor/iron/white,
/area/medical/storage)
-"uCq" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/science/misc_lab)
"uCL" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 4
@@ -58687,6 +58607,12 @@
},
/turf/open/floor/iron,
/area/engine/break_room)
+"uJr" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/science/explab)
"uJP" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 1
@@ -58812,6 +58738,15 @@
dir = 1
},
/area/chapel/main)
+"uNK" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"uNN" = (
/obj/item/weldingtool,
/obj/structure/disposalpipe/segment{
@@ -59009,15 +58944,6 @@
/obj/machinery/firealarm/directional/east,
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"uTE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/turf/open/floor/iron,
-/area/science/misc_lab)
"uUy" = (
/turf/open/floor/iron,
/area/science/mixing)
@@ -59291,15 +59217,6 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/central)
-"vaH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/iron/white,
-/area/science/research)
"vaO" = (
/obj/effect/turf_decal/tile/red/half/contrasted{
dir = 8
@@ -59313,6 +59230,22 @@
},
/turf/open/floor/prison,
/area/security/prison)
+"vaS" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin{
+ pixel_x = -1;
+ pixel_y = 2
+ },
+/obj/item/pen{
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/science/explab)
"vbg" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/spawner/lootdrop/donkpockets,
@@ -59509,6 +59442,17 @@
},
/turf/open/floor/iron/dark,
/area/hallway/primary/central)
+"vfU" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27
+ },
+/obj/structure/closet/radiation,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/science/explab)
"vfZ" = (
/obj/effect/turf_decal/siding/wood,
/turf/open/floor/wood,
@@ -59880,6 +59824,12 @@
/obj/item/stack/medical/gauze,
/turf/open/floor/iron/white,
/area/security/brig)
+"vnA" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/science/explab)
"vnK" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/structure/lattice/catwalk,
@@ -60031,13 +59981,6 @@
/obj/effect/turf_decal/tile/yellow,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"vso" = (
-/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
- dir = 1
- },
-/obj/machinery/vending/engivend,
-/turf/open/floor/iron,
-/area/engine/engineering)
"vsD" = (
/obj/effect/turf_decal/loading_area{
dir = 8
@@ -60230,6 +60173,16 @@
},
/turf/open/floor/carpet/green,
/area/chapel/main)
+"vBl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/white,
+/area/science/explab)
"vBt" = (
/obj/machinery/door/window/southright{
name = "Research and Development Desk";
@@ -60308,6 +60261,13 @@
},
/turf/open/floor/wood,
/area/lawoffice)
+"vDM" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/science/explab)
"vES" = (
/obj/structure/plasticflaps,
/turf/open/floor/plating,
@@ -60474,6 +60434,12 @@
/obj/structure/flora/ausbushes/lavendergrass,
/turf/open/floor/grass,
/area/hallway/secondary/command)
+"vHc" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/science/explab)
"vHh" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
@@ -60596,6 +60562,10 @@
/obj/structure/table/wood,
/turf/open/floor/carpet/red,
/area/crew_quarters/dorms)
+"vKv" = (
+/obj/machinery/light/small,
+/turf/open/floor/engine,
+/area/science/explab)
"vKw" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -60824,6 +60794,10 @@
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/space/nearstation)
+"vOw" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/science/explab)
"vOL" = (
/obj/machinery/power/compressor{
comp_id = "incineratorturbine";
@@ -61098,6 +61072,19 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/fore/secondary)
+"vUV" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
"vVj" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/tile/yellow{
@@ -61345,6 +61332,21 @@
},
/turf/open/floor/engine/light,
/area/engine/engineering)
+"wbr" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/obj/effect/landmark/start/scientist,
+/obj/machinery/computer/security/telescreen{
+ name = "Test Chamber Monitor";
+ network = list("test");
+ pixel_y = 32
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/science/explab)
"wby" = (
/obj/machinery/gulag_item_reclaimer{
pixel_y = 24
@@ -61634,6 +61636,14 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai_upload)
+"whw" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/white/side{
+ dir = 5
+ },
+/area/science/research)
"whx" = (
/obj/structure/table/wood,
/obj/effect/turf_decal/tile/neutral/anticorner/contrasted,
@@ -61643,6 +61653,13 @@
},
/turf/open/floor/iron,
/area/security/courtroom)
+"wid" = (
+/obj/effect/landmark/xeno_spawn,
+/obj/effect/turf_decal/caution{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/science/explab)
"wif" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -61700,6 +61717,24 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/central)
+"wjp" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/vending/wardrobe/engi_wardrobe,
+/turf/open/floor/iron,
+/area/engine/engineering)
+"wjF" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "testlab";
+ name = "test chamber blast door"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/science/explab)
"wka" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -61821,14 +61856,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/quartermaster/exploration_prep)
-"wlM" = (
-/obj/machinery/power/apc/auto_name/west{
- pixel_x = -24
- },
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow,
-/turf/open/floor/iron/white,
-/area/science/mixing/chamber)
"wlS" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -62349,6 +62376,15 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai)
+"wxc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/white,
+/area/science/explab)
"wxA" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
@@ -62403,19 +62439,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/quartermaster/exploration_prep)
-"wzp" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"wzT" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -62673,21 +62696,6 @@
},
/turf/open/floor/iron/cafeteria_red,
/area/crew_quarters/bar)
-"wGO" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/maintenance{
- name = "Testing Lab Maintenance";
- req_access_txt = "47"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
"wHs" = (
/turf/closed/wall/r_wall,
/area/security/courtroom)
@@ -63376,16 +63384,6 @@
/obj/item/book/manual/wiki/security_space_law,
/turf/open/floor/iron/dark,
/area/security/main)
-"wWy" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/science/misc_lab)
"wWz" = (
/obj/machinery/power/apc/auto_name/east,
/obj/structure/cable/yellow{
@@ -63414,21 +63412,17 @@
},
/turf/open/floor/iron,
/area/construction/mining/aux_base)
-"wXy" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
+"wXt" = (
+/obj/structure/table,
+/obj/item/storage/belt/utility,
+/obj/item/t_scanner,
+/obj/item/t_scanner,
+/obj/item/t_scanner,
+/obj/item/clothing/gloves/color/yellow,
+/turf/open/floor/iron/dark/side{
+ dir = 8
},
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
+/area/engine/atmos)
"wXK" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 1
@@ -63607,14 +63601,6 @@
},
/turf/open/floor/iron/tech,
/area/maintenance/fore/secondary)
-"xaZ" = (
-/obj/effect/decal/cleanable/cobweb,
-/obj/structure/sign/warning/securearea{
- pixel_y = 32
- },
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
"xbp" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 8
@@ -63837,6 +63823,10 @@
/obj/machinery/light/floor,
/turf/open/floor/iron/dark,
/area/bridge)
+"xfT" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/white,
+/area/science/research)
"xfZ" = (
/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted,
/obj/structure/window/reinforced{
@@ -63914,6 +63904,17 @@
dir = 9
},
/area/science/research)
+"xja" = (
+/obj/effect/turf_decal/caution{
+ dir = 8
+ },
+/mob/living/simple_animal/pet/dog/pug{
+ density = 0;
+ dir = 8
+ },
+/obj/item/beacon,
+/turf/open/floor/engine,
+/area/science/explab)
"xjb" = (
/obj/structure/chair/stool{
dir = 1
@@ -64336,14 +64337,6 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/auxiliary)
-"xrs" = (
-/obj/machinery/airalarm/mixingchamber{
- dir = 4;
- pixel_x = -24
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/iron/white,
-/area/science/mixing/chamber)
"xrw" = (
/obj/structure/lattice/catwalk,
/obj/structure/disposalpipe/segment{
@@ -64697,24 +64690,6 @@
},
/turf/open/floor/engine,
/area/engine/engineering)
-"xxW" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/science/mixing)
"xxY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 9
@@ -64933,6 +64908,14 @@
},
/turf/open/floor/prison,
/area/security/prison)
+"xEh" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/rack,
+/obj/item/xenoartifact,
+/turf/open/floor/iron/white,
+/area/science/explab)
"xEo" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 8
@@ -65482,6 +65465,16 @@
},
/turf/open/floor/iron,
/area/hallway/primary/starboard)
+"xPC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"xPR" = (
/obj/item/book/manual/wiki/security_space_law,
/obj/item/camera/detective,
@@ -65578,6 +65571,14 @@
},
/turf/open/floor/iron/dark/textured_large,
/area/maintenance/disposal/incinerator)
+"xRH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/science/research)
"xRN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -65776,13 +65777,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron/dark,
/area/bridge/meeting_room)
-"xWI" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/iron/white/side{
- dir = 1
- },
-/area/science/research)
"xWV" = (
/obj/structure/sink{
pixel_y = 30
@@ -65815,6 +65809,14 @@
},
/turf/open/floor/iron/white,
/area/medical/surgery)
+"xXp" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "testlab";
+ name = "test chamber blast door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/science/explab)
"xXr" = (
/obj/item/cigbutt,
/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{
@@ -92803,7 +92805,7 @@ ccw
ccw
cnZ
erT
-lsb
+eQz
iYz
cig
yal
@@ -93311,7 +93313,7 @@ ccw
iDp
igc
ewQ
-rRS
+tfP
cTc
mjh
kjL
@@ -93568,7 +93570,7 @@ ccw
wba
siP
ncy
-dHE
+esy
clJ
glV
hCM
@@ -95882,7 +95884,7 @@ xnN
uqz
wUe
cfb
-vso
+gil
cfz
cgR
ccw
@@ -96139,7 +96141,7 @@ cim
cim
ceo
cfb
-ixY
+wjp
cje
cgR
ccw
@@ -97917,7 +97919,7 @@ bML
gcO
aZh
wts
-bRw
+wXt
bSF
ixP
fFz
@@ -98195,10 +98197,10 @@ ccw
ccw
ccw
ccw
-cpP
-irL
-kbT
-tIH
+lkK
+qkc
+dXa
+eKt
cgR
hCM
cjh
@@ -98456,7 +98458,7 @@ ccw
ccw
ccw
ccw
-cDm
+pbR
hCM
cgR
cDz
@@ -98713,7 +98715,7 @@ ckU
cmU
cmU
ccw
-coZ
+tuM
eMx
rsl
faf
@@ -98972,7 +98974,7 @@ koX
ccw
cpa
cjc
-cqo
+aFg
cDL
cep
shQ
@@ -109464,8 +109466,8 @@ xDp
bsQ
bsQ
box
-bWr
-rRU
+cKF
+mTB
byf
bzw
bAB
@@ -110235,8 +110237,8 @@ bpR
biL
bsS
box
-bWr
-rRU
+pYk
+mSS
byf
bzx
bAC
@@ -110492,7 +110494,7 @@ cHV
biL
biL
box
-bWr
+btP
hOZ
byf
byf
@@ -110749,8 +110751,8 @@ cHW
cIb
bsT
box
-btP
-rRU
+xfT
+rkk
byi
suw
etJ
@@ -111041,7 +111043,7 @@ aaf
aaa
aaa
cNW
-dAs
+vUV
cvO
cNW
aaa
@@ -112057,16 +112059,16 @@ bJN
bJN
bJN
bJN
-bJN
-bDb
-bDb
-bDb
-bDb
-bDb
-bDb
-cNW
-cNW
-cNW
+gSV
+gSV
+gSV
+gSV
+gSV
+gSV
+hXj
+hXj
+hXj
+hXj
cNW
cNW
dAs
@@ -112297,33 +112299,33 @@ bzE
bzE
bzE
bzE
-pcB
+qzh
bEq
bDl
rGN
bFQ
-qwt
+hox
bsX
bzE
bID
bzE
-hox
-bzE
bzE
+mof
+whw
bsX
bzE
bzE
-qfK
-bPK
-jWs
-mPG
-bOu
-rHZ
-bQZ
-xaZ
-cOe
-nsc
-gjW
+stP
+vOw
+esR
+vfU
+iYU
+rWD
+gSV
+cQm
+heg
+oyl
+lCI
gjW
ofL
mkF
@@ -112545,42 +112547,42 @@ vrN
qYK
bic
lEP
-hjQ
-wzp
-skC
+pKl
+meY
+uNK
dss
qxR
rzk
rzk
etw
rzk
-cOk
-izp
-rzk
-ryM
+hWJ
+kMu
+pxd
+dcB
jAL
-qMn
-rtN
+xRH
qTN
+rtN
nTj
vJV
-vaH
vJV
vJV
+xPC
dJK
sSq
sSq
-xWI
-sEz
-hfE
-idz
-aAD
-bdE
-wGO
-gjW
-tqh
-wXy
-cNW
+frr
+kcT
+neD
+hPs
+urE
+iOG
+dyR
+mYh
+pgx
+lrp
+hXj
cNW
eOa
cNW
@@ -112804,40 +112806,40 @@ boy
bpX
kUF
brm
-kfz
+mTs
kKt
bvf
bBD
bBD
bBD
eWm
-mRG
+tRP
bBD
bBD
bBD
oVw
mRG
-tRP
bBD
+tRP
bBD
bBD
-cFi
+bvf
bBD
bBD
xiZ
bBD
bBD
-qfK
-bPK
-uCq
-pWN
-gWI
-caY
-bQZ
-cNW
-nWA
-cNW
-cNW
+stP
+vOw
+upf
+svU
+cHG
+vDM
+xXp
+rjV
+iVr
+sXh
+hXj
cOe
ene
cOe
@@ -113084,17 +113086,17 @@ bDn
ldn
bFS
bJT
-bhA
-bPN
-tDw
-jsO
-nQl
-cbc
-bQZ
-cOe
-cPA
-cOx
-cNW
+gSV
+gSV
+hyy
+enC
+vBl
+jMR
+gSV
+sPf
+sPf
+sPf
+hXj
cOe
ene
cOe
@@ -113341,19 +113343,19 @@ bGc
uPC
bGc
bEs
-bEC
-rSg
-wWy
-sBv
-uTE
-lST
-bQZ
-cdR
-ceO
-cOe
-cNW
+gSV
+tNI
+fuQ
+amh
+wxc
+iKu
+gSV
+bQo
+sPf
+vKv
+hXj
cOe
-bJv
+jos
jty
jty
cti
@@ -113598,19 +113600,19 @@ mJd
uht
nWM
bXr
-bEC
-gKq
-caZ
-osI
-pWN
-cka
-bQZ
-cdR
-dwb
-bNB
-cNW
+gSV
+wbr
+upf
+fuQ
+ncx
+mdo
+gSV
+sPf
+sPf
+sPf
+hXj
cOe
-jVl
+glx
cOe
cOe
cNW
@@ -113855,19 +113857,19 @@ mPh
uht
bSh
vDl
-bEC
-bTY
-caZ
-pWN
-bZZ
-bPN
-bPN
-bQZ
-bQZ
-bQZ
-bQZ
+gSV
+mTl
+vaS
+tGo
+jzI
+xEh
+gSV
+sPf
+ctb
+sPf
+hXj
cOe
-jVl
+glx
cOe
cOe
cNW
@@ -114112,19 +114114,19 @@ mPh
uht
bUn
lEW
-bEC
-eam
-uCq
-pWN
-uvi
-bTl
-bTl
-ald
-bTl
-bTl
-bQZ
+hXj
+hXj
+xXp
+wjF
+xXp
+hXj
+hXj
+hXj
+hXj
+hXj
+hXj
cNW
-alD
+iYZ
cNW
cNW
cNW
@@ -114369,19 +114371,19 @@ mPh
uht
bSh
kwA
-bEC
-knk
-caZ
-bYl
-uvi
-bTl
-bTl
-bTl
-bTl
-ceQ
-bQZ
-cOe
-jVl
+hXj
+sPf
+vnA
+xja
+vHc
+sPf
+hXj
+cdR
+qMN
+cOx
+cNW
+bNB
+glx
cOT
aaa
cOT
@@ -114626,19 +114628,19 @@ mPh
uht
bUo
bNq
-bEC
-pKk
-sjU
-lRv
-bSc
-bTl
-bTl
-tKG
-bTl
-bTl
-bQZ
-cgu
-chA
+hXj
+rEk
+tlX
+tAc
+tlX
+oCS
+hXj
+cdR
+cau
+oru
+cXG
+kbk
+ces
cOT
aaa
cOT
@@ -114883,17 +114885,17 @@ tjy
uht
piD
upN
-bQZ
-avZ
-bQZ
-bYi
-bYi
-bYi
-bYi
-bQZ
-bQZ
-bQZ
-bQZ
+hXj
+sPf
+uJr
+wid
+tnf
+sPf
+hXj
+cNW
+nFF
+cNW
+cNW
cNW
chz
cNW
@@ -115128,31 +115130,31 @@ rYJ
rYJ
bFW
rYJ
-qQC
-dCN
-wlM
+rYJ
+bKa
+eYN
bMz
cQR
bOH
-xrs
+eYN
bFU
rxf
uht
bUn
oUq
-bQZ
-rmN
-bQZ
-bTl
-bTl
-bTl
-bTl
-bQZ
-bYs
-vuV
-cOx
+hXj
+hXj
+hXj
+hXj
+hXj
+hXj
+hXj
+cOe
+cOe
+sHp
cNW
-chC
+fvX
+jVl
ciL
ceR
cBL
@@ -115385,30 +115387,30 @@ fGF
bEA
bEA
voe
-gWT
+lmO
rpg
-nxX
-sff
-hju
-swj
-nxX
+tSm
+unI
+eYw
+mLN
+tSm
nbF
pUL
rxO
bUn
wfU
-bQZ
-fvq
-bQZ
-oul
-qMl
-bus
-bTl
-bQZ
-cNW
-cbv
+bEC
+cOe
+cOe
+cOe
+cOe
+ahY
cNW
+cOe
+cOe
+cOe
cNW
+bNA
oed
vHT
vHT
@@ -115642,30 +115644,30 @@ uUy
uUy
aJK
glg
-xxW
-bKa
-dyt
-bMA
-bNz
-bOI
-dyt
+usm
+dCN
+fKo
+ncj
+pHo
+gax
+eYN
bFU
pEC
bFU
vCt
bVs
-bQZ
-cSz
-fOy
-qbM
-jyQ
-bTl
-cbV
-bQZ
+bEC
+cOe
+cOe
+cOe
cOe
cOe
-ahO
cNW
+cOe
+cOe
+cOe
+cbv
+cOe
vYY
ciL
cjE
@@ -115901,28 +115903,28 @@ bEC
bEC
gik
bEC
-bEC
-bEC
-bEC
-bEC
-bEC
+dGF
+dGF
+dGF
+dGF
+dGF
dMZ
bGk
bFU
ptw
bGz
-bQZ
-dBd
-bZc
-bTl
-jIe
-naJ
-bTl
-bQZ
+bEC
cOe
cOe
cOe
-cbv
+cOe
+cOe
+cNW
+cOe
+cOe
+cOe
+cNW
+cOe
vYY
cNW
cjD
@@ -116168,18 +116170,18 @@ flc
vPE
kwK
bVt
-bQZ
-bTl
-bTl
-bTl
-bTl
-bTl
-bTl
-bQZ
+bEC
+cNW
+cNW
+bYr
+cNW
+cNW
+cNW
cOe
cOe
cOe
cNW
+cOe
vYY
cds
cjD
@@ -116425,18 +116427,18 @@ bEC
bEC
bEC
bEC
-bQZ
-bQZ
-bQZ
-bQZ
-bQZ
-bQZ
-bQZ
-bQZ
+bEC
+sou
+vuV
+vuV
+bMB
+cOx
cNW
cNW
cNW
cNW
+cNW
+cOe
uQB
iQe
pHT
diff --git a/_maps/map_files/CorgStation/CorgStation.dmm b/_maps/map_files/CorgStation/CorgStation.dmm
index fe901cc7488f7..8fefac97b4b55 100644
--- a/_maps/map_files/CorgStation/CorgStation.dmm
+++ b/_maps/map_files/CorgStation/CorgStation.dmm
@@ -476,6 +476,13 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron,
/area/engine/storage_shared)
+"adH" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/structure/closet/radiation,
+/turf/open/floor/iron/dark,
+/area/science/explab)
"adI" = (
/obj/effect/turf_decal/tile/blue,
/turf/open/floor/iron,
@@ -2037,6 +2044,11 @@
dir = 5
},
/area/crew_quarters/heads/hor)
+"axN" = (
+/obj/effect/turf_decal/caution,
+/obj/item/beacon,
+/turf/open/floor/engine,
+/area/science/explab)
"axT" = (
/obj/machinery/vending/coffee,
/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted,
@@ -2624,13 +2636,6 @@
/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/security/main)
-"aFH" = (
-/obj/structure/table,
-/obj/item/clothing/gloves/color/yellow{
- pixel_y = 4
- },
-/turf/open/floor/iron/dark,
-/area/engine/atmos)
"aFX" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -4475,6 +4480,17 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron/white,
/area/science/research)
+"bdQ" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/item/storage/toolbox/mechanical,
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
+/turf/open/floor/iron/dark,
+/area/science/explab)
"bdZ" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -4871,18 +4887,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/security/brig)
-"bkS" = (
-/obj/item/radio/intercom{
- pixel_y = 24
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"bla" = (
/obj/effect/turf_decal/tile/yellow{
dir = 8
@@ -5770,14 +5774,6 @@
/obj/effect/turf_decal/tile/blue/half/contrasted,
/turf/open/floor/iron/white,
/area/medical/medbay/aft)
-"bCT" = (
-/obj/machinery/light,
-/obj/item/radio/intercom{
- pixel_y = -28
- },
-/obj/structure/closet/firecloset/full,
-/turf/open/floor/noslip/dark,
-/area/engine/engineering)
"bCU" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -9405,6 +9401,16 @@
},
/turf/open/floor/iron/white,
/area/medical/cryo)
+"cOb" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/science/explab)
"cOl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -10767,18 +10773,6 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/port/fore)
-"dki" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/auto_name/east,
-/obj/effect/turf_decal/tile/yellow/half/contrasted,
-/obj/structure/closet/secure_closet/engineering_electrical,
-/turf/open/floor/iron,
-/area/engine/engine_smes)
"dky" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/effect/turf_decal/tile/neutral/half/contrasted,
@@ -10882,28 +10876,6 @@
"dmv" = (
/turf/open/floor/circuit,
/area/hallway/secondary/entry)
-"dmC" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/holopad,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/iron,
-/area/engine/engineering)
"dmI" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
@@ -11909,25 +11881,6 @@
/obj/effect/turf_decal/tile/green/half/contrasted,
/turf/open/floor/iron/white,
/area/medical/virology)
-"dGx" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/power/apc/auto_name/west{
- pixel_x = -24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/structure/table,
-/obj/item/pipe_dispenser,
-/obj/item/pipe_dispenser,
-/obj/item/pipe_dispenser,
-/obj/effect/turf_decal/tile/yellow/half/contrasted{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/engine/engine_room)
"dGD" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -12131,16 +12084,11 @@
},
/turf/open/space/basic,
/area/space/nearstation)
-"dKn" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/turf/open/floor/iron/dark,
-/area/science/nanite)
+"dKh" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/turf/open/floor/plating,
+/area/maintenance/department/science/central)
"dKv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 9
@@ -12251,6 +12199,12 @@
},
/turf/open/floor/iron/dark,
/area/hallway/primary/central)
+"dLw" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/science/explab)
"dLB" = (
/obj/structure/chair/fancy/comfy{
color = "#666666";
@@ -12465,6 +12419,16 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/iron/dark,
/area/maintenance/starboard/secondary)
+"dOz" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/requests_console{
+ pixel_x = -32
+ },
+/turf/open/floor/iron/dark,
+/area/engine/storage_shared)
"dPc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -12598,6 +12562,15 @@
},
/turf/open/floor/iron,
/area/security/brig)
+"dRa" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/science/central)
"dRg" = (
/obj/structure/chair/office{
dir = 8
@@ -13452,10 +13425,6 @@
},
/turf/open/floor/iron/white,
/area/medical/chemistry)
-"edJ" = (
-/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor/noslip/dark,
-/area/engine/engineering)
"edS" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 4
@@ -14073,18 +14042,6 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/port/aft)
-"eoW" = (
-/obj/machinery/door/poddoor/preopen{
- id = "telelab";
- name = "test chamber blast door"
- },
-/obj/machinery/button/door{
- id = "telelab";
- name = "Test Chamber Blast Doors";
- pixel_x = -24
- },
-/turf/open/floor/engine,
-/area/science/explab)
"epa" = (
/turf/open/floor/plating,
/area/science/misc_lab/range)
@@ -14192,13 +14149,6 @@
},
/turf/open/floor/catwalk_floor/iron_dark,
/area/security/nuke_storage)
-"eqV" = (
-/obj/structure/chair/office,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/iron/dark,
-/area/science/nanite)
"erf" = (
/obj/machinery/camera/autoname{
dir = 8
@@ -14751,6 +14701,10 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/science/storage)
+"eAY" = (
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/open/floor/noslip/dark,
+/area/engine/engineering)
"eBp" = (
/obj/structure/cable/yellow{
icon_state = "2-4"
@@ -15878,6 +15832,21 @@
},
/turf/open/floor/wood,
/area/crew_quarters/bar)
+"eYL" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/table/reinforced,
+/obj/item/healthanalyzer,
+/obj/item/storage/firstaid/regular{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27
+ },
+/turf/open/floor/iron/dark,
+/area/science/explab)
"eYN" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/maintenance_hatch{
@@ -16008,6 +15977,10 @@
},
/turf/open/floor/carpet/purple,
/area/crew_quarters/heads/hor)
+"faR" = (
+/obj/effect/turf_decal/box/corners,
+/turf/open/floor/engine,
+/area/science/explab)
"fbb" = (
/obj/effect/turf_decal/plaque{
icon_state = "L7"
@@ -16520,16 +16493,6 @@
"fhO" = (
/turf/closed/wall,
/area/crew_quarters/bar)
-"fhQ" = (
-/obj/effect/spawner/lootdrop/crate_spawner,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/science/central)
"fiw" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -16669,15 +16632,19 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/starboard/secondary)
-"fkN" = (
-/obj/effect/turf_decal/stripes/line{
+"fkM" = (
+/obj/machinery/light{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/computer/xenoartifact_console,
+/obj/machinery/button/door{
+ id = "testlab";
+ name = "Test Chamber Blast Doors";
+ pixel_x = -24
},
/turf/open/floor/iron/dark,
-/area/science/nanite)
+/area/science/explab)
"fkQ" = (
/obj/machinery/power/smes/engineering{
charge = 2e+006
@@ -17716,6 +17683,14 @@
/obj/effect/spawner/room/threexthree,
/turf/open/floor/plating,
/area/maintenance/fore)
+"fBV" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Experimentation Chamber";
+ req_access_txt = "8";
+ security_level = 6
+ },
+/turf/open/floor/plating,
+/area/science/explab)
"fBX" = (
/obj/effect/turf_decal/tile/blue/opposingcorners{
dir = 1
@@ -19358,6 +19333,13 @@
/obj/machinery/nanite_program_hub,
/turf/open/floor/circuit,
/area/science/nanite)
+"gfv" = (
+/obj/structure/table,
+/obj/item/clothing/gloves/color/yellow{
+ pixel_y = 4
+ },
+/turf/open/floor/iron/dark,
+/area/engine/atmos)
"gfC" = (
/obj/machinery/airalarm/directional/south,
/obj/machinery/camera/autoname{
@@ -20127,6 +20109,15 @@
},
/turf/open/floor/engine,
/area/engine/engine_room)
+"gqi" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/iron/white,
+/area/science/explab)
"gqA" = (
/obj/structure/chair/stool{
dir = 1
@@ -20752,6 +20743,13 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/space/basic,
/area/space/nearstation)
+"gCj" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/open/floor/noslip/dark,
+/area/engine/engineering)
"gCn" = (
/obj/effect/turf_decal/tile/red/half/contrasted{
dir = 1
@@ -20957,18 +20955,6 @@
},
/turf/open/floor/iron,
/area/science/misc_lab/range)
-"gFv" = (
-/obj/machinery/power/apc/auto_name/north{
- pixel_y = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/iron/dark,
-/area/science/nanite)
"gFJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 5
@@ -21030,6 +21016,15 @@
},
/turf/open/floor/iron/dark,
/area/security/brig)
+"gGS" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "testlab";
+ name = "test chamber blast door"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/stripes/closeup,
+/turf/open/floor/engine,
+/area/science/explab)
"gHf" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -21081,22 +21076,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/chapel/main/monastery)
-"gHQ" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/light_switch{
- pixel_x = 1;
- pixel_y = 28
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/turf/open/floor/iron/white,
-/area/science/explab)
"gHR" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/atmospherics/components/binary/volume_pump{
@@ -21550,6 +21529,25 @@
},
/turf/open/floor/iron/dark/telecomms,
/area/tcommsat/server)
+"gOp" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/power/apc/auto_name/west{
+ pixel_x = -24
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/structure/table,
+/obj/item/pipe_dispenser,
+/obj/item/pipe_dispenser,
+/obj/item/pipe_dispenser,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/engine/engine_room)
"gOy" = (
/obj/machinery/door/airlock/hatch{
name = "MiniSat Teleporter";
@@ -21941,6 +21939,18 @@
},
/turf/open/floor/iron,
/area/engine/engineering)
+"gVU" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/iron/dark,
+/area/science/nanite)
"gVV" = (
/obj/machinery/computer/security/wooden_tv,
/obj/structure/table/wood,
@@ -22604,6 +22614,18 @@
},
/turf/open/floor/wood,
/area/security/detectives_office)
+"hhO" = (
+/obj/structure/table/reinforced,
+/obj/item/xenoartifact_labeler,
+/obj/item/xenoartifact_labeler{
+ pixel_x = -10
+ },
+/obj/item/clothing/gloves/artifact_pinchers,
+/obj/item/clothing/glasses/science,
+/obj/item/clothing/glasses/science,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron/dark,
+/area/science/explab)
"hhV" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -22625,13 +22647,6 @@
},
/turf/open/floor/iron/white,
/area/medical/virology)
-"hic" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor/noslip/dark,
-/area/engine/engineering)
"hiu" = (
/obj/structure/chair{
dir = 8
@@ -22757,6 +22772,16 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/aft)
+"hki" = (
+/obj/structure/chair/office,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/dark,
+/area/science/nanite)
"hkn" = (
/obj/machinery/light/small{
dir = 1
@@ -23229,6 +23254,19 @@
},
/turf/open/floor/iron,
/area/crew_quarters/bar)
+"hsq" = (
+/obj/structure/table,
+/obj/item/analyzer,
+/obj/item/stack/cable_coil/orange,
+/obj/effect/turf_decal/stripes/corner,
+/obj/structure/sign/departments/minsky/engineering/engineering{
+ pixel_y = 32
+ },
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
+/turf/open/floor/iron/dark,
+/area/engine/engine_smes)
"hsx" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -24045,25 +24083,6 @@
},
/turf/open/floor/carpet/grimy,
/area/chapel/office)
-"hGx" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/mechanical{
- pixel_x = 1;
- pixel_y = 4
- },
-/obj/item/storage/toolbox/electrical{
- pixel_x = -1;
- pixel_y = 2
- },
-/obj/machinery/camera/autoname{
- dir = 4
- },
-/obj/machinery/requests_console{
- pixel_y = -32
- },
-/obj/item/clothing/gloves/color/yellow,
-/turf/open/floor/iron/dark,
-/area/engine/engine_smes)
"hGE" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -24842,14 +24861,6 @@
},
/turf/open/floor/plating,
/area/science/xenobiology)
-"hSX" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "telelab";
- name = "test chamber blast door"
- },
-/turf/open/floor/plating,
-/area/science/explab)
"hSZ" = (
/obj/structure/cable/yellow,
/obj/effect/spawner/structure/window/reinforced,
@@ -25578,6 +25589,25 @@
},
/turf/open/floor/plating,
/area/medical/virology)
+"idI" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = 1;
+ pixel_y = 4
+ },
+/obj/item/storage/toolbox/electrical{
+ pixel_x = -1;
+ pixel_y = 2
+ },
+/obj/machinery/camera/autoname{
+ dir = 4
+ },
+/obj/machinery/requests_console{
+ pixel_y = -32
+ },
+/obj/item/clothing/gloves/color/yellow,
+/turf/open/floor/iron/dark,
+/area/engine/engine_smes)
"ieb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/machinery/atmospherics/pipe/simple/green/visible{
@@ -27282,6 +27312,18 @@
},
/turf/open/floor/iron,
/area/crew_quarters/fitness/recreation)
+"iEz" = (
+/obj/structure/chair/office{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/dark,
+/area/science/nanite)
"iEL" = (
/obj/structure/reagent_dispensers/watertank/high,
/obj/item/reagent_containers/glass/bucket,
@@ -27383,6 +27425,19 @@
},
/turf/open/floor/iron/white,
/area/medical/virology)
+"iFK" = (
+/obj/machinery/camera/autoname{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -24
+ },
+/obj/structure/chair/office/light{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/science/explab)
"iGg" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -27589,15 +27644,6 @@
},
/turf/open/floor/iron/dark,
/area/chapel/main/monastery)
-"iJI" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Experimentation Chamber";
- req_access_txt = "8";
- security_level = 6
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/science/explab)
"iJM" = (
/obj/machinery/requests_console{
announcementConsole = 1;
@@ -28255,6 +28301,17 @@
/obj/effect/turf_decal/tile/blue/half/contrasted,
/turf/open/floor/iron/white,
/area/medical/medbay/aft)
+"iWj" = (
+/obj/machinery/airalarm/directional/east,
+/obj/machinery/light_switch{
+ pixel_y = 28
+ },
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 4
+ },
+/obj/structure/tank_dispenser,
+/turf/open/floor/iron,
+/area/engine/engine_smes)
"iWk" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -28968,6 +29025,19 @@
},
/turf/open/floor/plating/asteroid,
/area/maintenance/port)
+"jfS" = (
+/obj/machinery/light_switch{
+ pixel_x = 1;
+ pixel_y = 28
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/turf/open/floor/iron/white,
+/area/science/explab)
"jfW" = (
/obj/structure/extinguisher_cabinet{
pixel_y = 30
@@ -30373,16 +30443,6 @@
},
/turf/open/floor/iron/dark,
/area/security/main)
-"jHk" = (
-/obj/machinery/camera/autoname{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -24
- },
-/turf/open/floor/iron/white,
-/area/science/explab)
"jHq" = (
/obj/effect/turf_decal/stripes/corner{
dir = 1
@@ -30445,17 +30505,6 @@
},
/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/relay)
-"jIB" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/iron/white,
-/area/science/explab)
"jIL" = (
/obj/machinery/door/airlock/research{
name = "Toxins Launch Room";
@@ -30603,22 +30652,6 @@
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/fitness/recreation)
-"jKL" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 2
- },
-/turf/open/floor/iron/dark,
-/area/science/nanite)
"jKO" = (
/obj/structure/window/reinforced{
dir = 8
@@ -31604,6 +31637,10 @@
/obj/machinery/fax/sci,
/turf/open/floor/iron,
/area/science/lab)
+"kcb" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron/dark,
+/area/science/explab)
"kcl" = (
/obj/effect/turf_decal/tile/brown/half/contrasted{
dir = 1
@@ -34424,6 +34461,17 @@
},
/turf/open/floor/iron/dark,
/area/maintenance/department/chapel/monastery)
+"kXF" = (
+/obj/structure/closet/bombcloset,
+/turf/open/floor/iron/dark,
+/area/science/explab)
+"kXG" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/turf/open/floor/iron/dark,
+/area/science/nanite)
"kXP" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
@@ -35487,12 +35535,6 @@
/obj/effect/landmark/start/station_engineer,
/turf/open/floor/iron,
/area/engine/engineering)
-"lqs" = (
-/obj/machinery/camera/autoname{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/science/explab)
"lqt" = (
/obj/structure/table,
/obj/structure/bedsheetbin,
@@ -36858,16 +36900,14 @@
/obj/effect/spawner/lootdrop/glowstick,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"lNH" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/machinery/requests_console{
- pixel_x = -32
+"lNx" = (
+/obj/machinery/light,
+/obj/item/radio/intercom{
+ pixel_y = -28
},
-/turf/open/floor/iron/dark,
-/area/engine/storage_shared)
+/obj/structure/closet/firecloset/full,
+/turf/open/floor/noslip/dark,
+/area/engine/engineering)
"lNJ" = (
/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
/obj/effect/turf_decal/tile/neutral/opposingcorners,
@@ -37032,14 +37072,6 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron/dark,
/area/quartermaster/warehouse)
-"lQm" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/item/storage/toolbox/mechanical,
-/turf/open/floor/iron/dark,
-/area/science/explab)
"lQs" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -38647,6 +38679,15 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"mmF" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/item/xenoartifact,
+/obj/structure/rack,
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/iron/dark,
+/area/science/explab)
"mmK" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/effect/turf_decal/tile/brown/half/contrasted,
@@ -38914,17 +38955,6 @@
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/maintenance/department/chapel/monastery)
-"mrz" = (
-/obj/machinery/airalarm/directional/east,
-/obj/machinery/light_switch{
- pixel_y = 28
- },
-/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
- dir = 4
- },
-/obj/structure/tank_dispenser,
-/turf/open/floor/iron,
-/area/engine/engine_smes)
"mrH" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -38990,19 +39020,6 @@
/obj/effect/landmark/start/security_officer,
/turf/open/floor/iron,
/area/security/brig)
-"msU" = (
-/obj/machinery/disposal/bin,
-/obj/item/radio/intercom{
- pixel_y = 24
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/iron/dark,
-/area/science/explab)
"msV" = (
/obj/structure/table/glass,
/obj/item/storage/box/donkpockets,
@@ -40448,15 +40465,6 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/exploration_prep)
-"mOp" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/science/explab)
"mOr" = (
/obj/structure/dresser,
/obj/machinery/camera/autoname{
@@ -41699,15 +41707,6 @@
},
/turf/open/floor/iron,
/area/maintenance/department/science)
-"njT" = (
-/obj/structure/chair/office{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/iron/dark,
-/area/science/nanite)
"nki" = (
/obj/structure/chair/office/light{
dir = 1
@@ -42694,18 +42693,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/science/explab)
-"nBE" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/table/reinforced,
-/obj/item/healthanalyzer,
-/obj/item/storage/firstaid/regular{
- pixel_x = -3;
- pixel_y = -3
- },
-/turf/open/floor/iron/dark,
-/area/science/explab)
"nBF" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -42807,6 +42794,10 @@
},
/turf/open/floor/iron,
/area/hydroponics)
+"nDQ" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/engine,
+/area/science/explab)
"nEf" = (
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
@@ -43492,12 +43483,6 @@
},
/turf/open/floor/iron/dark,
/area/maintenance/disposal)
-"nOd" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/iron/dark,
-/area/science/nanite)
"nOl" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -44115,6 +44100,12 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat/foyer)
+"nZd" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/xenoartifact_inbox,
+/obj/item/xenoartifact,
+/turf/open/floor/engine,
+/area/science/explab)
"nZl" = (
/obj/effect/turf_decal/tile/purple/half/contrasted,
/turf/open/floor/iron,
@@ -44341,6 +44332,19 @@
/obj/structure/lattice/catwalk,
/turf/open/space/basic,
/area/space/nearstation)
+"och" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 2
+ },
+/turf/open/floor/iron/dark,
+/area/science/nanite)
"ocq" = (
/obj/effect/turf_decal/caution/stand_clear{
dir = 4
@@ -44652,19 +44656,6 @@
},
/turf/open/floor/iron/dark/telecomms,
/area/tcommsat/server)
-"ohX" = (
-/obj/structure/table/reinforced,
-/obj/item/book/manual/wiki/experimentor,
-/obj/machinery/requests_console{
- pixel_x = -32
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/item/paicard,
-/obj/item/book/manual/wiki/xenoarchaeology,
-/turf/open/floor/iron/dark,
-/area/science/explab)
"oie" = (
/obj/machinery/light_switch{
pixel_x = 1;
@@ -44938,6 +44929,13 @@
},
/turf/open/floor/iron/dark,
/area/crew_quarters/heads/hos)
+"onb" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -32
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"onl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -45390,6 +45388,15 @@
/obj/machinery/computer/atmos_control/tank/mix_tank,
/turf/open/floor/iron,
/area/engine/atmos)
+"ovb" = (
+/obj/machinery/camera/autoname{
+ dir = 6
+ },
+/obj/effect/turf_decal/box/corners{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/science/explab)
"ovt" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -47121,13 +47128,6 @@
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
/area/crew_quarters/toilet)
-"paK" = (
-/obj/item/radio/intercom{
- pixel_x = 29;
- pixel_y = -2
- },
-/turf/open/floor/engine,
-/area/science/explab)
"paN" = (
/obj/structure/bed{
dir = 8
@@ -48028,6 +48028,11 @@
},
/turf/open/floor/iron,
/area/science/mixing)
+"psN" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance/two,
+/turf/open/floor/plating,
+/area/maintenance/department/science/central)
"psS" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/northleft{
@@ -48282,11 +48287,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"pvv" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/obj/structure/closet/radiation,
-/turf/open/floor/noslip/dark,
-/area/engine/engineering)
"pvJ" = (
/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
dir = 1
@@ -50486,6 +50486,23 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"qgj" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Maintenance Hatch";
+ req_access_txt = "12"
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/maintenance/department/science/central)
"qgv" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow{
@@ -50585,23 +50602,6 @@
/obj/machinery/nanite_chamber,
/turf/open/floor/circuit,
/area/science/nanite)
-"qiU" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/obj/item/xenoartifact_labeler,
-/obj/item/xenoartifact_labeler{
- pixel_x = -10
- },
-/obj/item/clothing/gloves/artifact_pinchers,
-/obj/item/clothing/glasses/science,
-/obj/item/clothing/glasses/science,
-/turf/open/floor/iron/dark,
-/area/science/explab)
"qjd" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -50878,6 +50878,15 @@
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/turf/open/floor/iron/white,
/area/science/xenobiology)
+"qnC" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/status_display/ai{
+ pixel_x = -32
+ },
+/turf/open/floor/engine,
+/area/science/explab)
"qnN" = (
/obj/effect/turf_decal/delivery,
/obj/structure/closet/crate{
@@ -51489,14 +51498,6 @@
},
/turf/open/floor/iron/dark,
/area/security/execution/education)
-"qxn" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/computer/xenoartifact_console,
-/turf/open/floor/iron/dark,
-/area/science/explab)
"qxC" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
@@ -52242,6 +52243,14 @@
/obj/machinery/vending/coffee,
/turf/open/floor/iron,
/area/crew_quarters/heads/hop)
+"qJS" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/science/explab)
"qKk" = (
/obj/structure/chair/office{
dir = 4
@@ -52498,9 +52507,6 @@
"qOk" = (
/turf/open/floor/engine/vacuum,
/area/engine/atmos)
-"qOq" = (
-/turf/open/floor/iron/white,
-/area/science/explab)
"qOx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -53986,10 +53992,6 @@
},
/turf/open/floor/iron/dark,
/area/security/brig)
-"rnW" = (
-/mob/living/simple_animal/pet/dog/pug,
-/turf/open/floor/engine,
-/area/science/explab)
"rok" = (
/obj/effect/turf_decal/tile/green/anticorner/contrasted{
dir = 8
@@ -54285,6 +54287,11 @@
},
/turf/open/floor/iron/dark,
/area/science/robotics/lab)
+"rsZ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/obj/structure/closet/radiation,
+/turf/open/floor/noslip/dark,
+/area/engine/engineering)
"rtF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -57354,11 +57361,11 @@
},
/turf/open/floor/iron/dark,
/area/crew_quarters/heads/hos)
-"sqK" = (
-/obj/machinery/xenoartifact_inbox,
-/obj/effect/turf_decal/delivery,
-/obj/item/xenoartifact,
-/turf/open/floor/engine,
+"sqP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/turf/open/floor/iron/white,
/area/science/explab)
"srf" = (
/obj/machinery/camera/autoname{
@@ -58723,10 +58730,6 @@
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
/turf/open/floor/iron/white,
/area/medical/genetics)
-"sNz" = (
-/obj/machinery/rnd/experimentor,
-/turf/open/floor/engine,
-/area/science/explab)
"sNC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -58811,6 +58814,20 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/turf/open/floor/iron,
/area/quartermaster/sorting)
+"sPx" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/iron/dark,
+/area/science/nanite)
"sQk" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/pipe/simple/general/visible{
@@ -60038,6 +60055,21 @@
},
/turf/open/floor/engine/vacuum,
/area/engine/atmospherics_engine)
+"tmh" = (
+/obj/structure/chair/office{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron/dark,
+/area/science/nanite)
"tmm" = (
/obj/machinery/light{
dir = 1
@@ -61531,15 +61563,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
-"tLF" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/iron/dark,
-/area/science/nanite)
"tLK" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 4
@@ -62825,6 +62848,28 @@
},
/turf/open/floor/iron/dark,
/area/crew_quarters/fitness/recreation)
+"uhE" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/holopad,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/engine/engineering)
"uhX" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -63827,20 +63872,6 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
-"uyb" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/iron/dark,
-/area/science/nanite)
"uyh" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -63872,6 +63903,18 @@
/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted,
/turf/open/floor/iron,
/area/medical/storage)
+"uyE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"uyQ" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -64536,6 +64579,15 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/exit/departure_lounge)
+"uIT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/turf/open/floor/iron/white,
+/area/science/explab)
"uIY" = (
/obj/machinery/computer/shuttle_flight/mining{
dir = 8
@@ -64877,14 +64929,6 @@
},
/turf/open/floor/iron/dark,
/area/chapel/main/monastery)
-"uNv" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/computer/rdconsole/experiment,
-/turf/open/floor/iron/dark,
-/area/science/explab)
"uNE" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -64947,6 +64991,18 @@
},
/turf/open/floor/wood,
/area/crew_quarters/bar)
+"uOi" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/auto_name/east,
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/obj/structure/closet/secure_closet/engineering_electrical,
+/turf/open/floor/iron,
+/area/engine/engine_smes)
"uOk" = (
/obj/structure/window/reinforced/spawner{
dir = 1
@@ -65367,6 +65423,16 @@
/obj/effect/turf_decal/siding/white,
/turf/open/floor/iron/white,
/area/medical/storage)
+"uWI" = (
+/mob/living/simple_animal/pet/dog/pug{
+ density = 0;
+ dir = 8
+ },
+/obj/effect/turf_decal/box/corners{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/science/explab)
"uWQ" = (
/obj/machinery/door/airlock/medical/glass{
id_tag = "CloningDoor";
@@ -65915,6 +65981,18 @@
},
/turf/open/floor/catwalk_floor/flat_white,
/area/science/mixing)
+"vgq" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/item/radio/intercom{
+ pixel_x = 29;
+ pixel_y = -2
+ },
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted,
+/obj/structure/closet/secure_closet/engineering_welding,
+/turf/open/floor/iron,
+/area/engine/engine_smes)
"vgE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -66092,6 +66170,11 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/port/aft)
+"vjE" = (
+/obj/effect/landmark/event_spawn,
+/obj/effect/landmark/start/scientist,
+/turf/open/floor/iron/white,
+/area/science/explab)
"vjM" = (
/obj/machinery/airalarm/directional/north,
/obj/effect/turf_decal/tile/brown/fourcorners/contrasted,
@@ -66224,6 +66307,14 @@
},
/turf/open/space/basic,
/area/solar/port/fore)
+"vlH" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "testlab";
+ name = "test chamber blast door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/science/explab)
"vlQ" = (
/obj/effect/turf_decal/tile/red/diagonal_edge,
/obj/effect/turf_decal/box{
@@ -68109,6 +68200,9 @@
},
/turf/open/floor/iron/white,
/area/crew_quarters/heads/cmo)
+"vMW" = (
+/turf/open/floor/iron/dark,
+/area/science/explab)
"vNh" = (
/obj/machinery/atmospherics/pipe/simple/dark/hidden{
dir = 5
@@ -68157,12 +68251,6 @@
},
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
-"vNZ" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/science/explab)
"vOc" = (
/obj/machinery/computer/apc_control{
dir = 1
@@ -68578,6 +68666,15 @@
/obj/machinery/door/firedoor,
/turf/open/floor/carpet/grimy,
/area/chapel/office)
+"vVe" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/white,
+/area/science/explab)
"vVs" = (
/obj/effect/spawner/lootdrop/glowstick/lit,
/turf/open/floor/iron,
@@ -68691,6 +68788,17 @@
/obj/machinery/power/solar,
/turf/open/floor/iron/solarpanel/airless,
/area/solar/port/fore)
+"vXK" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/caution{
+ dir = 1
+ },
+/obj/effect/landmark/xeno_spawn,
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
+/turf/open/floor/engine,
+/area/science/explab)
"vXL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -68877,13 +68985,6 @@
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/turf/open/floor/iron/white,
/area/science/xenobiology)
-"wbB" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor/noslip/dark,
-/area/engine/engineering)
"wbE" = (
/obj/machinery/light{
dir = 1
@@ -69046,6 +69147,16 @@
/obj/machinery/door/firedoor,
/turf/open/floor/plating,
/area/medical/storage)
+"weH" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/status_display/evac{
+ pixel_x = 32
+ },
+/turf/open/floor/engine,
+/area/science/explab)
"weJ" = (
/turf/open/floor/plating,
/area/maintenance/starboard/secondary)
@@ -69665,19 +69776,6 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron,
/area/engine/storage)
-"wop" = (
-/obj/structure/table,
-/obj/item/analyzer,
-/obj/item/stack/cable_coil/orange,
-/obj/effect/turf_decal/stripes/corner,
-/obj/structure/sign/departments/minsky/engineering/engineering{
- pixel_y = 32
- },
-/obj/machinery/newscaster{
- pixel_x = -30
- },
-/turf/open/floor/iron/dark,
-/area/engine/engine_smes)
"woC" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/brigdoor/eastleft{
@@ -69895,24 +69993,6 @@
},
/turf/open/floor/iron,
/area/security/brig)
-"wsI" = (
-/obj/structure/chair/office{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/open/floor/iron/dark,
-/area/science/nanite)
"wsN" = (
/obj/effect/turf_decal/tile/red{
dir = 1
@@ -71058,18 +71138,6 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron/dark,
/area/hallway/primary/fore)
-"wMM" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/structure/chair/office/light{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/science/explab)
"wMV" = (
/obj/machinery/light/small{
dir = 8
@@ -71943,12 +72011,6 @@
},
/turf/open/floor/plating,
/area/security/prison)
-"xaO" = (
-/obj/effect/landmark/event_spawn,
-/obj/effect/landmark/start/scientist,
-/obj/machinery/airalarm/directional/south,
-/turf/open/floor/iron/white,
-/area/science/explab)
"xbO" = (
/obj/machinery/door/poddoor/shutters{
id = "aux_base_shutters";
@@ -72251,18 +72313,6 @@
},
/turf/open/floor/iron/dark,
/area/security/main)
-"xhF" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/structure/extinguisher_cabinet{
- pixel_y = 30
- },
-/turf/open/floor/iron/white,
-/area/science/explab)
"xhG" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
@@ -72288,6 +72338,13 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
+"xix" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/open/floor/noslip/dark,
+/area/engine/engineering)
"xiJ" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -72538,6 +72595,12 @@
/obj/effect/turf_decal/tile/neutral/opposingcorners,
/turf/open/floor/iron/dark,
/area/quartermaster/miningdock)
+"xnk" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/iron/dark,
+/area/science/nanite)
"xnu" = (
/obj/structure/table/glass,
/obj/item/book/manual/wiki/medicine,
@@ -72741,10 +72804,6 @@
},
/turf/open/floor/iron/white,
/area/science/research)
-"xqo" = (
-/obj/item/beacon,
-/turf/open/floor/engine,
-/area/science/explab)
"xqt" = (
/obj/machinery/gravity_generator/main/station,
/turf/open/floor/circuit/green,
@@ -72764,6 +72823,18 @@
},
/turf/open/floor/catwalk_floor/iron,
/area/engine/atmos)
+"xrf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"xri" = (
/obj/structure/chair/fancy/comfy{
color = "#666666";
@@ -74412,6 +74483,18 @@
},
/turf/open/floor/iron/white,
/area/medical/genetics/cloning)
+"xQB" = (
+/obj/machinery/power/apc/auto_name/north{
+ pixel_y = 24
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/iron/dark,
+/area/science/nanite)
"xQG" = (
/obj/machinery/camera/autoname{
dir = 1
@@ -74464,18 +74547,6 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
-"xRo" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"xRq" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
@@ -74547,6 +74618,15 @@
},
/turf/open/floor/iron/white,
/area/science/xenobiology)
+"xSr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/dark,
+/area/science/nanite)
"xSy" = (
/obj/structure/rack,
/obj/item/stack/package_wrap,
@@ -74888,6 +74968,18 @@
},
/turf/open/floor/iron,
/area/janitor)
+"xYv" = (
+/obj/structure/table/reinforced,
+/obj/machinery/requests_console{
+ pixel_x = -32
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/item/paicard,
+/obj/item/book/manual/wiki/xenoarchaeology,
+/turf/open/floor/iron/dark,
+/area/science/explab)
"xYE" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
/turf/open/floor/engine/vacuum,
@@ -74922,18 +75014,6 @@
},
/turf/open/floor/wood,
/area/crew_quarters/bar)
-"xZK" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/item/radio/intercom{
- pixel_x = 29;
- pixel_y = -2
- },
-/obj/effect/turf_decal/tile/yellow/anticorner/contrasted,
-/obj/structure/closet/secure_closet/engineering_welding,
-/turf/open/floor/iron,
-/area/engine/engine_smes)
"xZS" = (
/obj/effect/turf_decal/plaque{
icon_state = "L5"
@@ -91614,7 +91694,7 @@ piM
gIr
kJG
nlU
-dGx
+gOp
rlK
rjd
htB
@@ -92638,16 +92718,16 @@ tFT
tFT
vwK
aaa
-wop
+hsq
aXT
acP
atO
gLP
-hGx
+idI
amI
oGN
nHf
-edJ
+eAY
amI
sFX
sKV
@@ -92902,9 +92982,9 @@ dMB
aVS
tkq
amI
-pvv
+rsZ
gXg
-edJ
+eAY
amI
rUV
doh
@@ -93160,8 +93240,8 @@ jge
uom
aTg
xwN
-dmC
-bCT
+uhE
+lNx
amI
qme
fEf
@@ -93409,16 +93489,16 @@ tFT
sfK
ibW
aaa
-mrz
+iWj
lnU
fkQ
rNF
-dki
-xZK
+uOi
+vgq
amI
maj
ufq
-hic
+gCj
amI
fdh
vRw
@@ -93675,7 +93755,7 @@ aaa
amI
rDn
oab
-wbB
+xix
amI
lQL
mhq
@@ -97255,7 +97335,7 @@ aPf
aMT
aPf
aWA
-aFH
+gfv
uar
pqt
aNF
@@ -97523,7 +97603,7 @@ exL
xCp
aTN
ivM
-lNH
+dOz
atw
aTN
wej
@@ -101926,7 +102006,7 @@ gfo
ank
tZF
gAn
-jpk
+onb
cEm
uUk
jzB
@@ -102176,9 +102256,9 @@ bNV
tAr
fAz
ngv
-gFv
-njT
-fkN
+xQB
+iEz
+gVU
xDZ
ank
rwG
@@ -102433,9 +102513,9 @@ yak
kaW
yak
ngv
-jKL
+och
hEH
-eqV
+hki
mvW
cXg
tZF
@@ -102686,13 +102766,13 @@ gHw
gHw
wDG
kvR
-fhQ
+dRa
aRk
yak
mLt
-dKn
+kXG
gVn
-nOd
+xSr
wSk
ank
tZF
@@ -102944,12 +103024,12 @@ jEi
jTN
mev
aRk
-dcu
+psN
yak
lOs
-tLF
-wsI
-uyb
+xnk
+tmh
+sPx
lwE
hOm
hgp
@@ -103203,7 +103283,7 @@ lWn
lWn
lWn
lWn
-ngv
+lWn
qiM
lGk
kJx
@@ -103458,7 +103538,7 @@ mHr
kIy
lWn
ejA
-lqs
+qnC
ejA
lWn
lWn
@@ -103714,14 +103794,14 @@ nvc
mHr
kIy
lWn
-ejA
-sqK
-ejA
-hSX
-qxn
-jHk
+dLw
+nDQ
+uWI
+vlH
+fkM
+iFK
jwL
-ohX
+xYv
lWn
cca
gAn
@@ -103970,16 +104050,16 @@ sJI
iUv
mHr
kIy
-iJI
-ejA
-sNz
-ejA
-hSX
-uNv
-wMM
-mOp
-lQm
-nBB
+lWn
+vXK
+nZd
+axN
+gGS
+kcb
+sqP
+vVe
+mmF
+lWn
tNr
gAn
jpk
@@ -104228,16 +104308,16 @@ oDm
jvu
ilJ
lWn
-ejA
-xqo
-ejA
-lWn
-qiU
+ovb
+nDQ
+faR
+vlH
+hhO
kqf
-qOq
+hZJ
gwz
lWn
-tNr
+xrf
gAn
tJI
hSb
@@ -104485,16 +104565,16 @@ nzk
jvu
ilJ
lWn
-vNZ
-rnW
ejA
-eoW
-hZJ
+weH
+ejA
+lWn
+bdQ
kUL
-qOq
+hZJ
stD
-lWn
-bkS
+nBB
+tNr
dgd
dQJ
xdw
@@ -104742,13 +104822,13 @@ iUl
mHr
kIy
lWn
-ejA
-paK
-ejA
lWn
-gHQ
-jIB
-rki
+lWn
+lWn
+lWn
+jfS
+qJS
+gqi
rki
ejd
pce
@@ -104997,18 +105077,18 @@ tIj
ipn
gBc
mHr
-kIy
-lWn
-lWn
-lWn
-lWn
-lWn
-xhF
+kwc
+pOm
+cRG
+fBV
+vMW
+kcb
+uIT
cvq
vCo
-xaO
-lWn
-xRo
+vjE
+nBB
+tNr
awk
pnr
rDP
@@ -105254,18 +105334,18 @@ wcN
ean
tWI
mHr
-kwc
-pOm
-cRG
-dcu
-dcu
+dKh
+nJu
+kIy
lWn
-msU
+kXF
+adH
+cOb
piY
-nBE
+eYL
rJj
lWn
-tNr
+uyE
gAn
vuH
sRw
@@ -105513,9 +105593,9 @@ fxl
goI
pga
pga
-wkh
-pga
-pga
+qgj
+lWn
+lWn
lWn
lWn
lWn
diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm
index 5cf1e5be6f24a..066cc0852a87c 100644
--- a/_maps/map_files/Deltastation/DeltaStation2.dmm
+++ b/_maps/map_files/Deltastation/DeltaStation2.dmm
@@ -719,17 +719,6 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"aex" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/landmark/start/atmospheric_technician,
-/obj/effect/turf_decal/stripes/white/end{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/iron,
-/area/engine/atmos)
"aeB" = (
/obj/machinery/status_display/evac,
/turf/closed/wall,
@@ -1871,15 +1860,6 @@
},
/turf/open/floor/iron,
/area/medical/medbay/aft)
-"amN" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/extinguisher_cabinet{
- pixel_y = 32
- },
-/turf/open/floor/iron/white,
-/area/science/misc_lab/range)
"amO" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow,
@@ -1979,10 +1959,6 @@
},
/turf/open/floor/iron/white,
/area/science/misc_lab/range)
-"anC" = (
-/obj/machinery/disposal/bin,
-/turf/open/floor/iron/white,
-/area/science/misc_lab/range)
"anD" = (
/obj/machinery/light,
/obj/structure/table/reinforced,
@@ -2375,12 +2351,6 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/central)
-"aqu" = (
-/obj/machinery/door/airlock/external,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/plating,
-/area/science/shuttledock)
"aqE" = (
/obj/machinery/conveyor{
dir = 1;
@@ -3594,11 +3564,6 @@
/obj/structure/grille,
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"awv" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/science/explab)
"awC" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/start/janitor,
@@ -5557,6 +5522,18 @@
},
/turf/open/floor/iron/dark,
/area/crew_quarters/bar)
+"aGm" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/reagent_dispensers/water_cooler,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/trimline/black/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"aGn" = (
/obj/machinery/conveyor{
dir = 4;
@@ -6636,13 +6613,6 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard)
-"aNL" = (
-/obj/structure/table/glass,
-/obj/effect/turf_decal/tile/purple/half/contrasted{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/maintenance/department/science)
"aNO" = (
/obj/machinery/door/poddoor/incinerator_atmos_main,
/turf/open/floor/engine/vacuum,
@@ -7660,6 +7630,10 @@
},
/turf/open/floor/carpet/purple,
/area/crew_quarters/bar/atrium)
+"aTN" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"aTO" = (
/turf/closed/wall,
/area/quartermaster/office)
@@ -8120,44 +8094,6 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
-"aYh" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/disposal/bin,
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/light_switch{
- pixel_x = -26
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/iron/dark/corner{
- dir = 1
- },
-/area/engine/atmos)
-"aYi" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/delivery,
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/open/floor/iron,
-/area/engine/atmos)
-"aYj" = (
-/obj/structure/table/reinforced,
-/obj/machinery/newscaster{
- pixel_x = 32
- },
-/obj/effect/turf_decal/bot,
-/obj/item/storage/toolbox/electrical,
-/obj/item/wrench,
-/obj/item/clothing/gloves/color/yellow,
-/turf/open/floor/iron,
-/area/engine/atmos)
"aYk" = (
/obj/structure/table/reinforced,
/obj/item/clothing/gloves/color/black,
@@ -8171,6 +8107,22 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
+"aYl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/science/explab)
"aYo" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
dir = 8
@@ -8537,17 +8489,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/catwalk_floor,
/area/engine/transit_tube)
-"bbF" = (
-/obj/structure/fireaxecabinet{
- pixel_x = -32
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/open/floor/iron/dark/corner{
- dir = 1
- },
-/area/engine/atmos)
"bbH" = (
/obj/machinery/suit_storage_unit/atmos,
/obj/effect/decal/cleanable/dirt,
@@ -8982,6 +8923,12 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/heads/chief)
+"bdB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"bdC" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 1
@@ -9125,22 +9072,6 @@
/obj/machinery/air_sensor/atmos/plasma_tank,
/turf/open/floor/engine/plasma,
/area/engine/atmos)
-"beA" = (
-/obj/structure/table/reinforced,
-/obj/item/analyzer{
- pixel_x = 7;
- pixel_y = 3
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/item/tank/internals/emergency_oxygen/engi,
-/obj/item/tank/internals/emergency_oxygen/engi{
- pixel_x = -5;
- pixel_y = 6
- },
-/turf/open/floor/iron,
-/area/engine/atmos)
"beB" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/kirbyplants/random,
@@ -12322,11 +12253,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/engine/atmos)
-"bwI" = (
-/obj/machinery/rnd/experimentor,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/science/xenobiology)
"bwJ" = (
/obj/structure/rack,
/obj/structure/cable/yellow{
@@ -14178,6 +14104,17 @@
"bII" = (
/turf/closed/wall,
/area/bridge/meeting_room/council)
+"bIK" = (
+/obj/structure/fireaxecabinet{
+ pixel_x = -32
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/engine/atmos)
"bIN" = (
/obj/machinery/status_display/evac,
/turf/closed/wall,
@@ -14731,6 +14668,16 @@
},
/turf/open/floor/iron,
/area/engine/break_room)
+"bNY" = (
+/obj/machinery/vending/cigarette,
+/obj/effect/turf_decal/trimline/black/filled/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"bOf" = (
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -15924,18 +15871,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/bar)
-"bVi" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/iron/white,
-/area/science/misc_lab/range)
"bVv" = (
/obj/structure/table/reinforced,
/obj/machinery/recharger,
@@ -16731,11 +16666,6 @@
"car" = (
/turf/closed/wall/r_wall,
/area/engine/engineering)
-"cas" = (
-/obj/effect/turf_decal/delivery,
-/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor/iron,
-/area/engine/engineering)
"cau" = (
/obj/structure/closet/secure_closet/engineering_personal,
/obj/effect/turf_decal/delivery,
@@ -17062,16 +16992,6 @@
},
/turf/open/floor/iron,
/area/engine/engineering)
-"cbY" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/turf/open/floor/iron,
-/area/engine/engineering)
"cbZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -17111,6 +17031,10 @@
},
/turf/open/floor/iron,
/area/engine/engineering)
+"ccc" = (
+/obj/effect/landmark/blobstart,
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"ccd" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -17171,16 +17095,6 @@
},
/turf/open/floor/iron/dark,
/area/library)
-"ccq" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/reagent_dispensers/water_cooler,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/purple,
-/turf/open/floor/iron/white,
-/area/maintenance/department/science)
"ccr" = (
/turf/open/floor/iron/dark,
/area/library)
@@ -20981,16 +20895,6 @@
},
/turf/open/floor/iron/white,
/area/medical/surgery)
-"cwl" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/toolbox/electrical,
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/turf_decal/bot,
-/obj/item/clothing/gloves/color/yellow,
-/turf/open/floor/iron,
-/area/engine/engineering)
"cwn" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -26347,6 +26251,10 @@
},
/turf/open/floor/prison,
/area/security/prison)
+"dai" = (
+/obj/effect/turf_decal/box/corners,
+/turf/open/floor/engine,
+/area/science/explab)
"daj" = (
/obj/effect/turf_decal/tile/red{
dir = 8
@@ -27451,6 +27359,18 @@
},
/turf/open/floor/plating,
/area/science/lab)
+"dha" = (
+/obj/structure/lattice/catwalk/over,
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/advanced_airlock_controller/directional/west,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/science/shuttledock)
"dhi" = (
/obj/machinery/light/small,
/obj/machinery/holopad,
@@ -27650,16 +27570,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/warehouse)
-"djz" = (
-/obj/machinery/vending/coffee,
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/turf/open/floor/iron/white,
-/area/maintenance/department/science)
"djA" = (
/turf/closed/wall/r_wall,
/area/science/explab)
@@ -28011,11 +27921,6 @@
/obj/effect/turf_decal/tile/blue/anticorner/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint/customs)
-"dmA" = (
-/obj/effect/landmark/blobstart,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron,
-/area/maintenance/department/science)
"dmF" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -28261,13 +28166,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/wood,
/area/library)
-"doq" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron,
-/area/maintenance/department/science)
"doz" = (
/obj/structure/table/wood,
/obj/item/paper_bin,
@@ -28446,42 +28344,6 @@
},
/turf/open/floor/iron/white,
/area/science/misc_lab/range)
-"dqb" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/turf/open/floor/iron/white,
-/area/science/misc_lab/range)
-"dqc" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/turf/open/floor/iron/white,
-/area/science/misc_lab/range)
-"dqd" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/closet/crate,
-/obj/item/target/alien,
-/obj/item/target/alien,
-/obj/item/target/clown,
-/obj/item/target/clown,
-/obj/item/target/syndicate,
-/obj/item/gun/energy/laser/practice,
-/obj/item/gun/energy/laser/practice,
-/turf/open/floor/iron/white,
-/area/science/misc_lab/range)
-"dqe" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/sign/nanotrasen,
-/turf/closed/wall/r_wall,
-/area/science/misc_lab/range)
"dqp" = (
/obj/structure/disposalpipe/segment,
/obj/structure/extinguisher_cabinet{
@@ -28640,32 +28502,6 @@
},
/turf/open/floor/iron/white,
/area/science/misc_lab/range)
-"drI" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "experimentor";
- name = "Test Chamber Blast door"
- },
-/turf/open/floor/engine,
-/area/science/explab)
-"drJ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/poddoor/preopen{
- id = "experimentor";
- name = "Test Chamber Blast door"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/engine,
-/area/science/explab)
-"drK" = (
-/obj/structure/sign/warning/securearea,
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "experimentor";
- name = "Test Chamber Blast door"
- },
-/turf/open/floor/engine,
-/area/science/explab)
"drP" = (
/turf/closed/wall/r_wall,
/area/science/mixing)
@@ -29089,29 +28925,6 @@
},
/turf/open/floor/plating,
/area/crew_quarters/heads/hor)
-"duQ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/door/airlock/research{
- name = "Shuttle dock";
- req_access_txt = "47"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/science/shuttledock)
"duU" = (
/obj/machinery/recharge_station,
/obj/effect/decal/cleanable/dirt,
@@ -29176,6 +28989,15 @@
heat_capacity = 1e+006
},
/area/maintenance/port/aft)
+"dvB" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/status_display/ai{
+ pixel_x = -32
+ },
+/turf/open/floor/engine,
+/area/science/explab)
"dvE" = (
/obj/machinery/computer/secure_data,
/obj/effect/turf_decal/tile/red/half/contrasted{
@@ -29199,20 +29021,6 @@
},
/turf/open/floor/iron/dark/corner,
/area/engine/atmos)
-"dwd" = (
-/obj/machinery/camera{
- c_tag = "Science - Experimentor";
- dir = 1;
- name = "science camera";
- network = list("ss13","rd")
- },
-/turf/open/floor/engine,
-/area/science/explab)
-"dwe" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light,
-/turf/open/floor/engine,
-/area/science/explab)
"dwg" = (
/obj/machinery/camera{
c_tag = "Science - Toxins Mixing Lab Fore";
@@ -29895,6 +29703,14 @@
},
/turf/open/floor/iron,
/area/science/robotics/lab)
+"dAV" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/caution{
+ dir = 1
+ },
+/obj/item/beacon,
+/turf/open/floor/engine,
+/area/science/explab)
"dBa" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet,
@@ -33905,6 +33721,20 @@
"ejL" = (
/turf/closed/wall,
/area/medical/medbay/aft)
+"eku" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/chair/office/light{
+ dir = 1;
+ pixel_y = 3
+ },
+/turf/open/floor/iron/dark,
+/area/science/nanite)
"ekz" = (
/obj/item/kirbyplants/random,
/obj/machinery/camera{
@@ -33960,6 +33790,10 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
+"eld" = (
+/obj/effect/spawner/randomvend/snack,
+/turf/open/floor/iron/dark,
+/area/maintenance/department/science)
"elE" = (
/obj/structure/table/reinforced,
/obj/item/storage/toolbox/mechanical,
@@ -35275,6 +35109,12 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/chapel/main)
+"eEg" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 32
+ },
+/turf/open/floor/iron/white,
+/area/science/misc_lab/range)
"eEo" = (
/obj/effect/landmark/event_spawn,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -35587,16 +35427,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/command)
-"eJm" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/obj/structure/table/glass,
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron/white,
-/area/maintenance/department/science)
"eJu" = (
/obj/structure/chair,
/obj/effect/decal/cleanable/blood/splatter,
@@ -35639,6 +35469,15 @@
/obj/effect/turf_decal/tile/neutral/anticorner/contrasted,
/turf/open/floor/iron,
/area/maintenance/starboard/fore)
+"eKt" = (
+/obj/machinery/door/airlock/external,
+/obj/effect/turf_decal/stripes/closeup,
+/obj/machinery/atmospherics/pipe/layer_manifold,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/turf/open/floor/iron/techmaint,
+/area/science/shuttledock)
"eKy" = (
/obj/machinery/status_display/evac{
pixel_x = 32
@@ -36134,20 +35973,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"eUM" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/maintenance/department/science)
"eVb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
@@ -36942,21 +36767,6 @@
},
/turf/open/floor/iron,
/area/medical/chemistry)
-"fjH" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/chair/office/light,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/science/explab)
"fjK" = (
/obj/machinery/door/poddoor/preopen{
id = "transitlock";
@@ -37363,6 +37173,9 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"fqa" = (
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"fqi" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -37439,18 +37252,6 @@
},
/turf/open/floor/iron,
/area/maintenance/port/aft)
-"fqY" = (
-/obj/machinery/light,
-/obj/effect/turf_decal/bot,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/computer/xenoartifact_console{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/science/explab)
"frd" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 1
@@ -37554,25 +37355,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/starboard)
-"fsr" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple/half/contrasted,
-/turf/open/floor/iron/white,
-/area/maintenance/department/science)
"fsz" = (
/obj/machinery/atmospherics/components/binary/valve,
/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_toxmix{
@@ -38230,6 +38012,12 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/catwalk_floor/iron_dark,
/area/maintenance/disposal/incinerator)
+"fDJ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/science/explab)
"fDN" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -38240,24 +38028,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/maintenance/aft)
-"fDO" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/effect/turf_decal/bot,
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/obj/machinery/button/door{
- id = "experimentor";
- name = "Experimentor Door Control";
- pixel_x = 24;
- req_access_txt = "47"
- },
-/obj/item/book/manual/wiki/xenoarchaeology,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/science/explab)
"fDR" = (
/obj/item/radio/intercom{
pixel_y = -26
@@ -38351,6 +38121,18 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/chapel/office)
+"fGH" = (
+/obj/structure/table/reinforced,
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron,
+/area/engine/storage_shared)
"fGY" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -38951,29 +38733,6 @@
/obj/machinery/digital_clock/directional/south,
/turf/open/floor/iron,
/area/hallway/secondary/exit/departure_lounge)
-"fOR" = (
-/obj/machinery/door/airlock/research{
- name = "Research Testing Range";
- req_access_txt = "47"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/science/misc_lab/range)
"fOZ" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
@@ -39135,9 +38894,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"fRT" = (
-/turf/open/floor/iron/white,
-/area/maintenance/department/science)
"fRZ" = (
/obj/structure/closet/secure_closet/contraband/armory,
/obj/effect/spawner/lootdrop/maintenance/three,
@@ -39228,18 +38984,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/kitchen)
-"fTm" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/turf/open/floor/iron/white,
-/area/science/misc_lab/range)
"fTp" = (
/obj/machinery/light_switch{
pixel_x = 26;
@@ -39620,18 +39364,6 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/science/research)
-"fZj" = (
-/obj/structure/table/reinforced,
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -22
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral/half/contrasted,
-/turf/open/floor/iron,
-/area/engine/storage_shared)
"fZw" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 4
@@ -39806,6 +39538,12 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/atmos)
+"gcH" = (
+/obj/machinery/light,
+/obj/structure/table/glass,
+/obj/effect/turf_decal/trimline/black/filled/line,
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"gcJ" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -39922,6 +39660,22 @@
},
/turf/open/floor/catwalk_floor/iron,
/area/engine/atmospherics_engine)
+"get" = (
+/obj/structure/cable/white,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/power/apc/auto_name/west{
+ pixel_x = -24
+ },
+/obj/structure/rack,
+/obj/item/xenoartifact,
+/obj/structure/sign/warning/securearea{
+ pixel_y = -32
+ },
+/turf/open/floor/iron/dark,
+/area/science/explab)
"geG" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -40212,11 +39966,26 @@
},
/turf/open/space,
/area/space/nearstation)
-"gkO" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+"gkF" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/black/filled/warning{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple/half/contrasted{
dir = 1
},
-/turf/open/floor/iron/white,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
/area/maintenance/department/science)
"glF" = (
/obj/effect/decal/cleanable/dirt,
@@ -40570,6 +40339,22 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"grA" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/obj/effect/turf_decal/trimline/black/filled/warning{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"grG" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -40606,15 +40391,6 @@
"gsr" = (
/turf/open/floor/iron/smooth,
/area/tcommsat/server)
-"gsv" = (
-/obj/machinery/nanite_program_hub,
-/obj/effect/turf_decal/bot,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/science/nanite)
"gsU" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
@@ -40700,6 +40476,10 @@
},
/turf/open/floor/iron,
/area/science/research)
+"gur" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/engine,
+/area/science/explab)
"guv" = (
/obj/effect/turf_decal/stripes/corner{
dir = 1
@@ -40929,6 +40709,15 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/patients_rooms)
+"gxM" = (
+/obj/structure/chair/fancy/comfy{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/black/filled/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"gxR" = (
/obj/structure/cable{
icon_state = "2-8"
@@ -41256,12 +41045,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/security/brig)
-"gCK" = (
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/turf/open/floor/iron/white,
-/area/maintenance/department/science)
"gCP" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron/dark,
@@ -41497,20 +41280,6 @@
},
/turf/open/floor/prison,
/area/security/prison)
-"gGX" = (
-/obj/structure/cable/white,
-/obj/effect/turf_decal/bot,
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/obj/machinery/power/apc/auto_name/west{
- pixel_x = -24
- },
-/obj/structure/rack,
-/obj/item/xenoartifact,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/science/explab)
"gHj" = (
/obj/effect/turf_decal/siding/white{
dir = 5
@@ -41790,22 +41559,6 @@
heat_capacity = 1e+006
},
/area/maintenance/port/aft)
-"gKu" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple,
-/turf/open/floor/iron/white,
-/area/maintenance/department/science)
"gKA" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
@@ -42236,6 +41989,12 @@
},
/turf/open/floor/iron,
/area/medical/medbay/lobby)
+"gRH" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal/bin,
+/turf/open/floor/iron,
+/area/engine/engineering)
"gRW" = (
/obj/machinery/status_display/ai{
pixel_y = 32
@@ -42359,12 +42118,6 @@
},
/turf/open/floor/iron/dark,
/area/medical/surgery)
-"gUK" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/airalarm/directional/west,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/science/nanite)
"gUP" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
@@ -43482,23 +43235,6 @@
/obj/item/reagent_containers/glass/bowl,
/turf/open/floor/iron,
/area/crew_quarters/kitchen)
-"hnS" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/effect/spawner/randomvend/snack,
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/effect/turf_decal/tile/purple/half/contrasted,
-/turf/open/floor/iron/white,
-/area/maintenance/department/science)
"hnV" = (
/obj/machinery/camera{
c_tag = "Science - Experimentation Lab";
@@ -43704,6 +43440,9 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/atmospherics_engine)
+"hru" = (
+/turf/open/floor/plating,
+/area/science/shuttledock)
"hrA" = (
/obj/effect/turf_decal/tile/blue/opposingcorners{
dir = 1
@@ -43999,6 +43738,13 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/fitness/recreation)
+"hxH" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/engine/atmos)
"hxJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/spawner/lootdrop/maintenance,
@@ -44577,6 +44323,11 @@
},
/turf/open/floor/iron/white,
/area/science/mixing)
+"hJK" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"hJN" = (
/obj/machinery/airalarm{
pixel_y = 22
@@ -45561,6 +45312,28 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/tcommsat/computer)
+"hXf" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/black/filled/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple/half/contrasted,
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"hXy" = (
/obj/item/kirbyplants/random,
/obj/machinery/airalarm{
@@ -45690,6 +45463,16 @@
heat_capacity = 1e+006
},
/area/crew_quarters/fitness/recreation)
+"hZq" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/status_display/evac{
+ pixel_x = 32
+ },
+/turf/open/floor/engine,
+/area/science/explab)
"hZJ" = (
/obj/structure/table/wood,
/obj/machinery/computer/med_data/laptop,
@@ -45765,6 +45548,17 @@
/obj/machinery/fax/law,
/turf/open/floor/wood,
/area/lawoffice)
+"iar" = (
+/obj/structure/closet/crate,
+/obj/item/target/alien,
+/obj/item/target/alien,
+/obj/item/target/clown,
+/obj/item/target/clown,
+/obj/item/target/syndicate,
+/obj/item/gun/energy/laser/practice,
+/obj/item/gun/energy/laser/practice,
+/turf/open/floor/iron/white,
+/area/science/misc_lab/range)
"iaw" = (
/obj/effect/turf_decal/bot,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
@@ -46296,6 +46090,14 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/atmospherics_engine)
+"iiI" = (
+/obj/effect/turf_decal/caution,
+/obj/effect/landmark/xeno_spawn,
+/obj/item/radio/intercom{
+ pixel_y = -28
+ },
+/turf/open/floor/engine,
+/area/science/explab)
"iiS" = (
/obj/structure/cable{
icon_state = "1-8"
@@ -46422,6 +46224,25 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/medical/medbay/lobby)
+"ikI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/engine/engineering)
+"ikN" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/science/explab)
"ikY" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/brown/half/contrasted{
@@ -46531,6 +46352,16 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/atmospherics_engine)
+"inS" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/science/nanite)
"inT" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -46671,14 +46502,6 @@
},
/turf/open/floor/iron/white,
/area/science/robotics/lab)
-"iqw" = (
-/obj/machinery/computer/rdconsole/experiment{
- dir = 1
- },
-/obj/effect/turf_decal/bot,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/science/xenobiology)
"iqI" = (
/obj/effect/turf_decal/delivery,
/turf/open/floor/plating,
@@ -46712,6 +46535,29 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/maintenance/starboard/aft)
+"iri" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/door/airlock/research/glass{
+ name = "Shuttle dock";
+ req_one_access = "47"
+ },
+/turf/open/floor/iron,
+/area/science/shuttledock)
"irs" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -46971,18 +46817,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai)
-"ivr" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/structure/chair/fancy/comfy{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple/half/contrasted{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/maintenance/department/science)
"ivy" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 8
@@ -48768,6 +48602,14 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/science/explab)
+"jeq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/engine/atmos)
"jeu" = (
/obj/structure/bed/roller,
/obj/machinery/iv_drip,
@@ -49525,16 +49367,6 @@
},
/turf/open/floor/iron,
/area/maintenance/starboard/aft)
-"jrG" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/item/kirbyplants/random,
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/turf/open/floor/iron/white,
-/area/maintenance/department/science)
"jrP" = (
/obj/structure/chair/stool/bar,
/obj/structure/disposalpipe/segment{
@@ -49833,6 +49665,12 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"jxM" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/science/explab)
"jxS" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -49972,12 +49810,6 @@
},
/turf/closed/wall/r_wall,
/area/medical/medbay/central)
-"jAD" = (
-/mob/living/simple_animal/pet/dog/pug{
- name = "Swanson"
- },
-/turf/open/floor/engine,
-/area/science/explab)
"jAE" = (
/obj/machinery/rnd/production/techfab/department/medical,
/obj/machinery/light{
@@ -50415,13 +50247,14 @@
},
/turf/open/floor/iron,
/area/medical/break_room)
-"jHj" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/science/nanite)
+"jHh" = (
+/obj/machinery/door/airlock/external,
+/obj/effect/turf_decal/stripes/closeup,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/turf/open/floor/iron/techmaint,
+/area/science/shuttledock)
"jHq" = (
/obj/structure/girder,
/turf/open/floor/plating,
@@ -50617,6 +50450,25 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/maintenance/port)
+"jLD" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/item/book/manual/wiki/xenoarchaeology,
+/obj/structure/sign/warning/securearea{
+ pixel_y = -32
+ },
+/obj/machinery/button/door{
+ id = "testlab";
+ name = "Test Chamber Blast Doors";
+ pixel_x = 24
+ },
+/turf/open/floor/iron/dark,
+/area/science/explab)
"jLN" = (
/obj/machinery/camera{
c_tag = "Central Hallway - Aft Port";
@@ -51776,13 +51628,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/catwalk_floor/flat_white,
/area/science/mixing)
-"kfz" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/science/nanite)
"kfL" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -51985,6 +51830,13 @@
},
/turf/open/floor/catwalk_floor/iron_dark,
/area/maintenance/disposal/incinerator)
+"khz" = (
+/obj/structure/table/glass,
+/obj/effect/turf_decal/trimline/black/filled/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"khR" = (
/obj/structure/window/reinforced{
dir = 8
@@ -52595,6 +52447,17 @@
/obj/effect/turf_decal/siding/wideplating/dark,
/turf/open/floor/iron,
/area/medical/medbay/aft)
+"kqi" = (
+/obj/structure/table/reinforced,
+/obj/machinery/newscaster{
+ pixel_x = 32
+ },
+/obj/effect/turf_decal/bot,
+/obj/item/storage/toolbox/electrical,
+/obj/item/wrench,
+/obj/item/clothing/gloves/color/yellow,
+/turf/open/floor/iron,
+/area/engine/atmos)
"kqm" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -53107,6 +52970,13 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai_upload)
+"kBU" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/science/misc_lab/range)
"kCi" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -53188,6 +53058,19 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/security/detectives_office)
+"kDc" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/vending/cigarette,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/trimline/black/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"kDw" = (
/obj/structure/cable{
icon_state = "2-8"
@@ -54564,15 +54447,6 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/maintenance/starboard/aft)
-"lbZ" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/yellow/half/contrasted{
- dir = 4
- },
-/obj/item/storage/firstaid/fire,
-/obj/item/storage/fancy/donut_box,
-/turf/open/floor/iron,
-/area/engine/engineering)
"lcb" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/white/line,
@@ -54700,6 +54574,16 @@
},
/turf/open/floor/plating,
/area/maintenance/port/aft)
+"ldH" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/trimline/black/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"ldJ" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -54716,6 +54600,11 @@
/obj/effect/turf_decal/tile/red,
/turf/open/floor/iron,
/area/security/brig)
+"ldK" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron/dark,
+/area/science/xenobiology)
"ldW" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -54735,6 +54624,9 @@
},
/turf/open/floor/iron,
/area/engine/gravity_generator)
+"leg" = (
+/turf/open/floor/iron/white,
+/area/science/misc_lab/range)
"lel" = (
/obj/effect/landmark/start/bartender,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
@@ -55267,15 +55159,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/security/courtroom)
-"lnA" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/purple/half/contrasted,
-/turf/open/floor/iron/white,
-/area/maintenance/department/science)
"lnV" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -56693,6 +56576,24 @@
},
/turf/open/floor/iron,
/area/maintenance/port/fore)
+"lKJ" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/camera{
+ c_tag = "MiniSat Service Bay";
+ dir = 8;
+ network = list("minisat");
+ start_active = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/trimline/black/filled/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple,
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"lKL" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -56915,12 +56816,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/quartermaster/sorting)
-"lNF" = (
-/obj/effect/turf_decal/delivery,
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/disposal/bin,
-/turf/open/floor/iron,
-/area/engine/engineering)
"lNI" = (
/obj/structure/table/wood,
/obj/machinery/status_display/evac{
@@ -57831,6 +57726,21 @@
},
/turf/open/floor/carpet/grimy,
/area/vacant_room/office)
+"mdg" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/science/misc_lab/range)
"mdK" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -57869,6 +57779,12 @@
},
/turf/open/floor/iron,
/area/crew_quarters/bar)
+"mdY" = (
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/turf/open/floor/iron/white,
+/area/science/misc_lab/range)
"meh" = (
/obj/machinery/firealarm{
dir = 4;
@@ -58012,19 +57928,6 @@
},
/turf/open/floor/iron,
/area/maintenance/port/aft)
-"mfY" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/science/nanite)
"mgO" = (
/obj/machinery/firealarm{
dir = 1;
@@ -58827,13 +58730,6 @@
/obj/machinery/light,
/turf/open/floor/carpet/grimy,
/area/bridge/showroom/corporate)
-"muD" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/iron,
-/area/engine/atmos)
"muE" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -58879,6 +58775,27 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/security/brig)
+"mvR" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/effect/landmark/event_spawn,
+/obj/structure/chair/fancy/comfy,
+/obj/structure/cable/white,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/obj/machinery/power/apc/auto_name/west{
+ pixel_x = -24
+ },
+/obj/effect/turf_decal/trimline/black/filled/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"mwf" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -59106,6 +59023,13 @@
},
/turf/open/floor/plating,
/area/maintenance/port)
+"mBw" = (
+/obj/machinery/camera/autoname{
+ dir = 8;
+ network = list("ss13","rd")
+ },
+/turf/open/floor/engine,
+/area/science/explab)
"mBy" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -59143,14 +59067,6 @@
/obj/machinery/airalarm/directional/south,
/turf/open/floor/iron,
/area/medical/genetics)
-"mBP" = (
-/obj/structure/closet/crate/science,
-/obj/machinery/light,
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/science/shuttledock)
"mBV" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 26
@@ -59758,22 +59674,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"mJp" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/item/kirbyplants/random,
-/obj/machinery/camera{
- c_tag = "MiniSat Service Bay";
- dir = 8;
- network = list("minisat");
- start_active = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/purple/half/contrasted,
-/turf/open/floor/iron/white,
-/area/maintenance/department/science)
"mJD" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/research{
@@ -60435,14 +60335,6 @@
/obj/effect/turf_decal/loading_area,
/turf/open/floor/iron,
/area/quartermaster/exploration_prep)
-"mVh" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/science/nanite)
"mVn" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 8
@@ -60501,6 +60393,25 @@
/obj/machinery/firealarm/directional/west,
/turf/open/floor/wood,
/area/crew_quarters/dorms)
+"mWu" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/east,
+/obj/effect/turf_decal/trimline/black/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"mWD" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -60874,10 +60785,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark/telecomms,
/area/science/xenobiology)
-"ncP" = (
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/engine,
-/area/science/explab)
"ncW" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -60968,6 +60875,12 @@
},
/turf/open/floor/iron,
/area/quartermaster/exploration_prep)
+"ndF" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/machinery/nanite_programmer,
+/turf/open/floor/iron/dark,
+/area/science/nanite)
"ndZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/segment{
@@ -61523,21 +61436,6 @@
},
/turf/open/floor/carpet/grimy,
/area/library)
-"nll" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron/white,
-/area/maintenance/department/science)
"nlW" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/corner{
@@ -61669,13 +61567,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint/customs)
-"nnZ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/turf/open/floor/iron/white,
-/area/maintenance/department/science)
"noh" = (
/obj/machinery/computer/security,
/obj/structure/cable/yellow{
@@ -61749,6 +61640,17 @@
},
/turf/open/floor/iron,
/area/security/main)
+"npH" = (
+/obj/machinery/light,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/computer/xenoartifact_console{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/science/explab)
"npW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -62995,14 +62897,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/kitchen)
-"nJz" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/maintenance/department/science)
"nJI" = (
/obj/effect/landmark/event_spawn,
/obj/structure/disposalpipe/segment{
@@ -63388,6 +63282,20 @@
},
/turf/open/floor/circuit/green,
/area/ai_monitored/turret_protected/ai)
+"nRE" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/trimline/black/filled/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"nSh" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -63822,11 +63730,6 @@
"nZc" = (
/turf/open/floor/prison,
/area/security/prison)
-"nZh" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/science/explab)
"nZm" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -63890,6 +63793,18 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/aisat)
+"oag" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/trimline/black/filled/line{
+ dir = 4
+ },
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"oaA" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -63972,12 +63887,6 @@
},
/turf/open/floor/iron/white,
/area/medical/virology)
-"ocs" = (
-/obj/effect/turf_decal/tile/purple/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron/white,
-/area/maintenance/department/science)
"ocv" = (
/obj/effect/turf_decal/tile/red/opposingcorners,
/obj/effect/turf_decal/tile/blue/opposingcorners{
@@ -64043,30 +63952,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/security/detectives_office)
-"odO" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/effect/landmark/event_spawn,
-/obj/structure/chair/fancy/comfy,
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/obj/structure/cable/white,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/machinery/power/apc/auto_name/west{
- pixel_x = -24
- },
-/obj/effect/turf_decal/tile/purple/half/contrasted{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/maintenance/department/science)
"oeg" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/turf/open/floor/iron,
@@ -64498,16 +64383,6 @@
},
/turf/open/floor/iron,
/area/medical/break_room)
-"oow" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/machinery/vending/cigarette,
-/obj/effect/turf_decal/tile/purple/half/contrasted{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/maintenance/department/science)
"ooy" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/sign/poster/official/bless_this_spess{
@@ -64645,6 +64520,11 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/central)
+"opS" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/turf/open/floor/iron/dark,
+/area/science/explab)
"oqh" = (
/obj/structure/table/reinforced,
/obj/item/nanite_scanner{
@@ -65057,6 +64937,11 @@
},
/turf/open/floor/iron,
/area/security/detectives_office)
+"ovJ" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/open/floor/iron,
+/area/engine/engineering)
"ovQ" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -66030,16 +65915,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint/supply)
-"oOf" = (
-/obj/machinery/advanced_airlock_controller/directional/west,
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2,
-/turf/open/floor/plating,
-/area/science/shuttledock)
"oOg" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
@@ -66259,6 +66134,15 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
+"oQP" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/machinery/computer/nanite_chamber_control,
+/turf/open/floor/iron/dark,
+/area/science/nanite)
"oQZ" = (
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -67989,18 +67873,6 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/starboard/fore)
-"pwT" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple,
-/turf/open/floor/iron/white,
-/area/maintenance/department/science)
"pxf" = (
/obj/structure/sign/nanotrasen,
/turf/closed/wall,
@@ -68258,6 +68130,15 @@
/obj/machinery/airalarm/directional/north,
/turf/open/floor/iron/white,
/area/medical/medbay/aft)
+"pCX" = (
+/obj/effect/turf_decal/trimline/black/filled/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"pDc" = (
/obj/machinery/light/small{
dir = 1
@@ -68642,6 +68523,16 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/quartermaster/qm)
+"pHJ" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/trimline/black/filled/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"pIb" = (
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -69522,15 +69413,6 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
-"pVw" = (
-/obj/machinery/nanite_programmer,
-/obj/effect/turf_decal/bot,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/science/nanite)
"pVB" = (
/obj/structure/chair/office,
/turf/open/floor/carpet/grimy,
@@ -69751,6 +69633,18 @@
},
/turf/open/floor/iron/dark/corner,
/area/engine/storage_shared)
+"qbe" = (
+/obj/machinery/advanced_airlock_controller/directional/west,
+/obj/structure/lattice/catwalk/over,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/plating,
+/area/science/shuttledock)
"qbk" = (
/obj/structure/window/reinforced{
dir = 4
@@ -70251,6 +70145,21 @@
dir = 1
},
/area/hallway/secondary/entry)
+"qiI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/effect/turf_decal/trimline/black/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"qjp" = (
/obj/structure/table/wood/fancy,
/obj/item/flashlight/lantern,
@@ -71356,6 +71265,16 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/vacant_room/commissary)
+"qEw" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/electrical,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/turf_decal/bot,
+/obj/item/clothing/gloves/color/yellow,
+/turf/open/floor/iron,
+/area/engine/engineering)
"qEF" = (
/obj/machinery/sleeper{
dir = 8
@@ -71821,13 +71740,6 @@
"qMp" = (
/turf/closed/wall/r_wall,
/area/medical/medbay/central)
-"qMr" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/iron/white,
-/area/maintenance/department/science)
"qMx" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -72578,6 +72490,24 @@
/obj/machinery/firealarm/directional/north,
/turf/open/floor/iron,
/area/engine/storage_shared)
+"qYM" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/black/filled/warning{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"qYY" = (
/obj/structure/table/wood,
/obj/item/folder/red,
@@ -72609,6 +72539,13 @@
/obj/item/storage/crayons,
/turf/open/floor/prison,
/area/security/prison)
+"qZm" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/turf_decal/trimline/black/filled/line{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"qZq" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
@@ -72856,6 +72793,18 @@
},
/turf/open/floor/carpet/grimy,
/area/chapel/office)
+"rdc" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"rdd" = (
/obj/structure/table/wood,
/obj/machinery/light{
@@ -73417,6 +73366,12 @@
/obj/structure/chair/office/light,
/turf/open/floor/iron/white,
/area/medical/surgery)
+"rnU" = (
+/obj/effect/turf_decal/trimline/black/filled/line{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"rnZ" = (
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -73551,6 +73506,10 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/fitness/recreation)
+"rpA" = (
+/obj/machinery/vending/coffee,
+/turf/open/floor/iron/dark,
+/area/maintenance/department/science)
"rpG" = (
/obj/machinery/firealarm{
pixel_y = 26
@@ -75218,6 +75177,12 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/engineering)
+"rPg" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/science/explab)
"rPm" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -75240,11 +75205,6 @@
},
/turf/open/floor/plating,
/area/maintenance/department/medical/central)
-"rQb" = (
-/obj/machinery/light,
-/obj/structure/table/glass,
-/turf/open/floor/iron/white,
-/area/maintenance/department/science)
"rQs" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -75722,18 +75682,6 @@
},
/turf/open/floor/circuit/green,
/area/security/nuke_storage)
-"rYa" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/turf/open/floor/iron/white,
-/area/science/misc_lab/range)
"rYh" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -75786,6 +75734,24 @@
},
/turf/open/floor/iron,
/area/construction/mining/aux_base)
+"rZE" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/black/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"rZH" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -76727,6 +76693,15 @@
},
/turf/open/floor/iron,
/area/hydroponics)
+"ssq" = (
+/obj/effect/turf_decal/trimline/black/filled/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"ssL" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
@@ -76784,6 +76759,21 @@
},
/turf/open/floor/iron/white,
/area/medical/chemistry)
+"stV" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"suk" = (
/obj/machinery/porta_turret/ai,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -77913,6 +77903,22 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/security/armory)
+"sPw" = (
+/obj/structure/table/reinforced,
+/obj/item/analyzer{
+ pixel_x = 7;
+ pixel_y = 3
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/item/tank/internals/emergency_oxygen/engi{
+ pixel_x = -5;
+ pixel_y = 6
+ },
+/turf/open/floor/iron,
+/area/engine/atmos)
"sPz" = (
/obj/machinery/disposal/bin,
/obj/effect/turf_decal/delivery/red,
@@ -78619,6 +78625,15 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"tbZ" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/obj/item/storage/firstaid/fire,
+/obj/item/storage/fancy/donut_box,
+/turf/open/floor/iron,
+/area/engine/engineering)
"tca" = (
/obj/structure/chair/office{
dir = 4
@@ -79717,6 +79732,16 @@
},
/turf/open/floor/iron,
/area/engine/break_room)
+"tvi" = (
+/obj/machinery/nanite_program_hub,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/iron/dark,
+/area/science/nanite)
"tvq" = (
/obj/structure/table/reinforced,
/obj/item/stock_parts/matter_bin{
@@ -79858,6 +79883,13 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/hallway/primary/starboard)
+"txp" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/science/shuttledock)
"txw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -80188,21 +80220,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/quartermaster/exploration_prep)
-"tCz" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron/white,
-/area/maintenance/department/science)
"tCA" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/blobstart,
@@ -80277,21 +80294,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
-"tEf" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron/white,
-/area/maintenance/department/science)
"tEq" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -80378,6 +80380,17 @@
/obj/structure/lattice/catwalk,
/turf/open/space/basic,
/area/space/nearstation)
+"tFC" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"tFM" = (
/obj/structure/chair{
pixel_y = -2
@@ -80908,6 +80921,16 @@
},
/turf/open/floor/iron/white,
/area/science/shuttledock)
+"tSs" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/trimline/black/filled/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"tSx" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -81462,6 +81485,17 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/aft)
+"ucx" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/start/atmospheric_technician,
+/obj/effect/turf_decal/stripes/white/end{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/engine/atmos)
"ucB" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
@@ -81475,20 +81509,21 @@
},
/turf/open/floor/iron/white/telecomms,
/area/tcommsat/server)
-"ucP" = (
-/obj/effect/decal/cleanable/dirt,
+"ucO" = (
/obj/structure/cable/yellow{
- icon_state = "1-4"
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/turf_decal/tile/purple,
/turf/open/floor/iron/white,
-/area/maintenance/department/science)
+/area/science/misc_lab/range)
"ucV" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/airalarm{
@@ -81642,14 +81677,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
-"uga" = (
-/obj/structure/chair/office/light{
- dir = 1;
- pixel_y = 3
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/science/nanite)
"ugd" = (
/obj/effect/turf_decal/bot,
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
@@ -82042,6 +82069,17 @@
/obj/machinery/holopad,
/turf/open/floor/carpet/grimy,
/area/library)
+"umb" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/trimline/black/filled/warning{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"umc" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -83240,38 +83278,6 @@
/obj/structure/table/reinforced,
/turf/open/floor/prison,
/area/security/prison)
-"uGK" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/airalarm/directional/east,
-/obj/effect/turf_decal/tile/purple,
-/turf/open/floor/iron/white,
-/area/maintenance/department/science)
-"uGM" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/turf/open/floor/iron/white,
-/area/maintenance/department/science)
"uGU" = (
/obj/machinery/smartfridge{
name = "Sample Storage"
@@ -83707,13 +83713,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
-"uNu" = (
-/obj/structure/chair/office/light{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/science/nanite)
"uNM" = (
/obj/machinery/power/apc/auto_name/south{
pixel_y = -24
@@ -83938,6 +83937,14 @@
},
/turf/open/floor/iron,
/area/crew_quarters/theatre)
+"uRE" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "testlab";
+ name = "test chamber blast door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/science/explab)
"uRN" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -84158,6 +84165,21 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/gateway)
+"uVA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/chair/office/light,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/science/explab)
"uVF" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -84816,6 +84838,10 @@
},
/turf/open/floor/iron,
/area/maintenance/port/aft)
+"vgt" = (
+/obj/structure/sign/nanotrasen,
+/turf/closed/wall/r_wall,
+/area/science/misc_lab/range)
"vgu" = (
/obj/item/kirbyplants/random,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -86819,6 +86845,22 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/security/armory)
+"vPt" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/science/explab)
"vPv" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/curtain/directional{
@@ -87291,6 +87333,11 @@
},
/turf/open/floor/iron,
/area/engine/atmospherics_engine)
+"vXe" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/closed/wall,
+/area/maintenance/port)
"vXu" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -87308,13 +87355,6 @@
},
/turf/open/floor/iron,
/area/security/checkpoint)
-"vXL" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/science/explab)
"vXN" = (
/obj/machinery/photocopier,
/obj/machinery/light{
@@ -87777,6 +87817,13 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint/medical)
+"wfp" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/structure/closet/crate/science,
+/turf/open/floor/iron/white,
+/area/science/shuttledock)
"wft" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -87945,6 +87992,25 @@
/obj/effect/decal/cleanable/dirt,
/turf/closed/wall,
/area/maintenance/starboard/aft)
+"wiu" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/disposal/bin,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_x = -26
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/engine/atmos)
"wiL" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -88785,6 +88851,14 @@
},
/turf/open/floor/iron/white,
/area/science/research)
+"wwh" = (
+/obj/structure/table/glass,
+/obj/effect/turf_decal/trimline/black/filled/line{
+ dir = 6
+ },
+/obj/item/storage/fancy/cigarettes/cigpack_robust,
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"wwj" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/manifold/general/hidden{
@@ -89072,16 +89146,6 @@
},
/turf/open/floor/catwalk_floor/iron_smooth,
/area/tcommsat/server)
-"wBr" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/science/nanite)
"wBz" = (
/obj/structure/table/reinforced,
/obj/item/tank/jetpack/carbondioxide{
@@ -89917,6 +89981,16 @@
/obj/structure/closet/firecloset,
/turf/open/floor/plating,
/area/maintenance/department/medical/central)
+"wMc" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/poddoor/preopen{
+ id = "testlab";
+ name = "test chamber blast door"
+ },
+/obj/effect/turf_decal/stripes/closeup,
+/turf/open/floor/engine,
+/area/science/explab)
"wMj" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -90265,11 +90339,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/medical/medbay/aft)
-"wRm" = (
-/obj/machinery/door/airlock/external,
-/obj/machinery/atmospherics/pipe/layer_manifold,
-/turf/open/floor/plating,
-/area/science/shuttledock)
"wRG" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/turf_decal/tile/neutral/anticorner/contrasted,
@@ -90424,6 +90493,18 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
+"wUJ" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron/white,
+/area/science/misc_lab/range)
"wUS" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -91887,6 +91968,16 @@
/obj/effect/turf_decal/tile/red/anticorner/contrasted,
/turf/open/floor/iron/dark,
/area/security/execution/transfer)
+"xtV" = (
+/mob/living/simple_animal/pet/dog/pug{
+ density = 0;
+ dir = 8
+ },
+/obj/effect/turf_decal/box/corners{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/science/explab)
"xuw" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -92179,19 +92270,6 @@
},
/turf/open/floor/catwalk_floor/iron,
/area/engine/atmos)
-"xyp" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/vending/cigarette,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/firealarm/directional/east,
-/obj/effect/turf_decal/tile/neutral/half/contrasted,
-/obj/effect/turf_decal/tile/purple,
-/turf/open/floor/iron/white,
-/area/maintenance/department/science)
"xyE" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/structure/cable/yellow{
@@ -92344,15 +92422,6 @@
},
/turf/open/floor/carpet/grimy,
/area/hallway/secondary/entry)
-"xBx" = (
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron/white,
-/area/maintenance/department/science)
"xBy" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -92532,20 +92601,6 @@
/obj/item/storage/firstaid/regular,
/turf/open/floor/iron/white,
/area/security/brig)
-"xDF" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/science/explab)
"xDH" = (
/obj/machinery/requests_console{
department = "Medbay Storage";
@@ -92683,17 +92738,6 @@
},
/turf/open/floor/iron,
/area/maintenance/port/fore)
-"xFv" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/landmark/blobstart,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/neutral/half/contrasted,
-/obj/effect/turf_decal/tile/purple,
-/turf/open/floor/iron/white,
-/area/maintenance/department/science)
"xFI" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -93277,6 +93321,12 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"xPJ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"xPU" = (
/obj/structure/sign/warning/nosmoking{
pixel_x = -32
@@ -93381,15 +93431,6 @@
},
/turf/open/floor/iron,
/area/security/brig)
-"xRq" = (
-/obj/machinery/computer/nanite_chamber_control,
-/obj/effect/turf_decal/bot,
-/obj/structure/sign/poster/random{
- pixel_y = 32
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/science/nanite)
"xRy" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -93626,14 +93667,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/hallway/secondary/service)
-"xVH" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 8
- },
-/turf/closed/wall,
-/area/maintenance/port)
"xVQ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 1
@@ -94407,6 +94440,32 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/heads/hos)
+"yif" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/door/airlock/research/glass{
+ name = "Research Testing Range";
+ req_one_access = "47"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/science/misc_lab/range)
"yii" = (
/obj/machinery/light{
dir = 4
@@ -117334,7 +117393,7 @@ vht
nBr
bzi
iVm
-fZj
+fGH
nCl
ecY
bHV
@@ -118631,7 +118690,7 @@ orR
lSl
sKi
bPW
-cas
+ovJ
cbW
mit
cfD
@@ -118861,7 +118920,7 @@ aYf
aZZ
aZZ
aZZ
-beA
+sPw
aWK
bhi
gqL
@@ -118888,7 +118947,7 @@ bSe
ost
bWn
bYx
-cas
+ovJ
cDY
tMd
cfF
@@ -119145,11 +119204,11 @@ bSf
qwa
bWo
bYy
-lNF
-cbY
+gRH
+ikI
rJn
cfF
-lbZ
+tbZ
cji
poM
clY
@@ -119371,9 +119430,9 @@ aRv
cfI
aUS
aMB
-aYh
+wiu
bdg
-bbF
+bIK
bdg
beB
aMB
@@ -119452,8 +119511,8 @@ saw
lJW
kcF
hVM
-tSe
sMH
+aad
aaa
aaa
aaa
@@ -119628,9 +119687,9 @@ aRv
cfI
aUQ
aWI
-aYi
-muD
-aex
+jeq
+hxH
+ucx
iam
lFH
mYa
@@ -119659,7 +119718,7 @@ bSh
bTY
bWp
bPW
-cas
+ovJ
cbZ
rJn
cfF
@@ -119673,7 +119732,7 @@ cqx
crQ
ctt
cuV
-cwl
+qEw
cxG
vhJ
sTZ
@@ -119706,12 +119765,12 @@ tMk
pmQ
amU
saw
-lJW
+wfp
sif
wNF
-sMH
eaf
-sMH
+eaf
+eaf
aaa
aaa
aaa
@@ -119885,7 +119944,7 @@ aRv
cfI
aUS
aMB
-aYj
+kqi
bac
bbH
bdi
@@ -119966,9 +120025,9 @@ saw
hVM
sif
nGc
-aqu
-oOf
-wRm
+jHh
+dha
+eKt
pQl
aaa
aaa
@@ -120207,7 +120266,7 @@ inh
gCy
inh
inh
-bwI
+inh
cMY
wvW
pRU
@@ -120224,7 +120283,7 @@ mGT
sif
gYq
sMH
-sMH
+hru
sMH
aaa
aaa
@@ -120480,9 +120539,9 @@ saw
lMw
sif
gYq
-sMH
eaf
-sMH
+eaf
+eaf
aaa
aaa
aaa
@@ -120721,7 +120780,7 @@ inh
inh
cub
inh
-iqw
+ldK
cMY
mZU
pRU
@@ -120737,9 +120796,9 @@ saw
ulh
cLa
hMo
-aqu
-oOf
-wRm
+jHh
+qbe
+eKt
aaa
aaa
aaa
@@ -120987,9 +121046,9 @@ cea
cea
cea
saw
-dqb
-rYa
-anC
+leg
+wUJ
+kBU
saw
fdW
iUS
@@ -121244,8 +121303,8 @@ cea
cea
cea
saw
-dqc
-fTm
+mdY
+mdg
anD
saw
eLQ
@@ -121501,16 +121560,16 @@ cea
cea
cea
saw
-amN
-bVi
+eEg
+ucO
anE
saw
gtA
wnG
sif
hVM
-mBP
-eaf
+tSe
+sMH
aaa
aaa
aaa
@@ -121758,16 +121817,16 @@ cea
cea
cea
saw
-dqd
-bVi
+iar
+ucO
anN
saw
epA
rqc
-wNF
+txp
wNF
wZk
-eaf
+sMH
aaa
aaa
aaa
@@ -122015,12 +122074,12 @@ caE
caE
caE
saw
-dqe
-fOR
+vgt
+yif
saw
saw
eaf
-duQ
+iri
eaf
eaf
eaf
@@ -122268,25 +122327,25 @@ cMY
cfT
kIU
iVz
-eUM
-odO
-aNL
-ivr
-oow
-uGM
-gCK
-jrG
-gCK
-uGM
-nnZ
-qMr
+umb
+mvR
+khz
+gxM
+bNY
+gkF
+pCX
+pHJ
+ssq
+qYM
+tSs
+qZm
nNu
-aaa
-aad
+abj
aad
aaa
aaa
aaa
+aaa
aad
aaa
aad
@@ -122525,20 +122584,20 @@ cMY
cMY
cMY
cMY
-tCz
-tEf
-dmA
-doq
-ocs
-nll
-gkO
-xBx
-nJz
-pwT
-fRT
-rQb
+ldH
+rdc
+ccc
+bdB
+aTN
+stV
+xPJ
+ccc
+hJK
+tFC
+fqa
+gcH
nNu
-aaa
+abj
aad
aad
aad
@@ -122782,20 +122841,20 @@ ygs
inh
inh
cMY
-djz
-hnS
-mJp
-fsr
-lnA
-uGK
-ccq
-xyp
-xFv
-gKu
-ucP
-eJm
+rnU
+qiI
+lKJ
+hXf
+nRE
+mWu
+aGm
+kDc
+oag
+rZE
+grA
+wwh
nNu
-aad
+abj
gSi
ovQ
ovQ
@@ -123039,8 +123098,8 @@ inh
cON
aKm
cMY
-djA
-djA
+rpA
+eld
djA
qqX
djA
@@ -123050,7 +123109,7 @@ djA
djA
djA
rjx
-xVH
+vXe
caE
aaa
ovQ
@@ -123296,15 +123355,15 @@ inh
inh
inh
cMY
-kia
-vAq
-pTJ
+djA
+djA
+djA
hPA
-gGX
-drI
+get
+djA
duw
+dvB
duw
-dwd
djA
lgV
jXa
@@ -123553,15 +123612,15 @@ cNc
cNc
cNc
cMY
-hnV
-mcw
-awv
-xDF
-vXL
-drJ
-duw
-duw
-dwe
+kia
+vAq
+pTJ
+aYl
+ikN
+uRE
+jxM
+gur
+xtV
djA
oPM
xUI
@@ -123810,15 +123869,15 @@ ygs
inh
inh
cMY
-kRu
+hnV
mcw
-nZh
-fjH
-fqY
-drK
-jAD
+mcw
+vPt
+fDJ
+wMc
+dAV
bIW
-ncP
+iiI
djA
rYh
ceb
@@ -124067,15 +124126,15 @@ inh
cOM
iYF
cMY
-lSh
-ifA
-jel
-xQY
-fDO
-drI
-duw
-duw
-duw
+kRu
+mcw
+opS
+uVA
+npH
+uRE
+rPg
+gur
+dai
djA
jGQ
xUI
@@ -124324,16 +124383,16 @@ inh
inh
inh
cMY
-djF
-djF
-djF
-ptR
-djF
-djF
-djF
-djF
-djF
-djF
+lSh
+ifA
+jel
+xQY
+jLD
+djA
+duw
+hZq
+mBw
+djA
lgV
jXa
cOj
@@ -124581,15 +124640,15 @@ cNc
cNc
cNc
cMY
-rJU
-pxQ
-swo
-hWe
-oqh
-giE
-gsv
-gUK
-ghM
+djF
+djF
+djF
+ptR
+djF
+djF
+djF
+djF
+djF
djF
rYh
cea
@@ -124838,16 +124897,16 @@ ygs
inh
inh
cMY
-pVw
-wBr
-rHa
-nhm
-lVF
-obt
-rVK
-rVK
-rVK
-vJu
+rJU
+pxQ
+swo
+hWe
+oqh
+giE
+tvi
+ndF
+ghM
+djF
jiI
ceb
evv
@@ -125095,16 +125154,16 @@ inh
cON
hmH
cMY
-xRq
-uga
-lVF
-mfY
-mVh
-kfz
+oQP
+eku
+rHa
+nhm
lVF
-uNu
-jHj
-djF
+obt
+rVK
+inS
+rVK
+vJu
fgc
ycL
rdv
diff --git a/_maps/map_files/EchoStation/EchoStation.dmm b/_maps/map_files/EchoStation/EchoStation.dmm
index 8439ddb43ae0d..64ff56690a33b 100644
--- a/_maps/map_files/EchoStation/EchoStation.dmm
+++ b/_maps/map_files/EchoStation/EchoStation.dmm
@@ -104,6 +104,23 @@
},
/turf/open/floor/iron/tech/grid,
/area/ai_monitored/turret_protected/ai_upload)
+"abU" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/button/door{
+ id = "testlab";
+ name = "Test Chamber Blast Doors";
+ pixel_y = 24
+ },
+/obj/structure/rack,
+/obj/item/healthanalyzer,
+/obj/item/stack/medical/ointment,
+/obj/item/stack/medical/bruise_pack,
+/obj/item/stack/medical/gauze,
+/turf/open/floor/iron,
+/area/science/explab)
"acj" = (
/obj/structure/disposalpipe/segment{
dir = 8
@@ -115,21 +132,6 @@
},
/turf/open/floor/iron/cafeteria,
/area/crew_quarters/kitchen)
-"acC" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/camera/autoname{
- dir = 8;
- network = list("ss13","rd")
- },
-/mob/living/simple_animal/pet/dog/pug{
- density = 0;
- dir = 8
- },
-/turf/open/floor/engine,
-/area/science/explab)
"acU" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/turf/open/floor/iron/tech,
@@ -153,35 +155,6 @@
/area/hallway/primary/central{
name = "-2 Primary Hallway"
})
-"adp" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/railing/corner{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-16"
- },
-/obj/effect/turf_decal/trimline/yellow,
-/obj/effect/landmark/start/station_engineer,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/dark/visible{
- dir = 1
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/atmos)
"adG" = (
/obj/structure/flora/rock,
/turf/open/floor/plating/asteroid/basalt/planetary,
@@ -401,39 +374,6 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/central)
-"aiv" = (
-/obj/structure/table/reinforced,
-/obj/item/xenoartifact_labeler{
- pixel_y = 6
- },
-/obj/item/clothing/glasses/science{
- pixel_x = 4;
- pixel_y = 10
- },
-/obj/item/xenoartifact_labeler{
- pixel_y = 6
- },
-/obj/item/clothing/glasses/science{
- pixel_x = 4;
- pixel_y = 10
- },
-/obj/item/healthanalyzer,
-/obj/item/analyzer,
-/obj/item/clothing/gloves/artifact_pinchers{
- pixel_y = 3
- },
-/obj/item/multitool,
-/obj/item/clothing/mask/gas,
-/obj/item/book/manual/wiki/xenoarchaeology,
-/obj/item/clothing/neck/stethoscope,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -28
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/science/explab)
"aiA" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron/dark,
@@ -514,19 +454,6 @@
"ajB" = (
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/captain)
-"ajG" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "telelab";
- name = "test chamber blast door"
- },
-/obj/machinery/button/door{
- id = "telelab";
- name = "Test Chamber Blast Doors";
- pixel_y = -30
- },
-/turf/open/floor/plating,
-/area/science/explab)
"ajT" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -552,13 +479,6 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai_upload)
-"ake" = (
-/obj/item/xenoartifact,
-/obj/machinery/xenoartifact_inbox,
-/obj/effect/turf_decal/delivery,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/engine,
-/area/science/explab)
"aky" = (
/obj/effect/decal/cleanable/glass,
/turf/open/floor/plating/rust,
@@ -1068,13 +988,6 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
-"aqy" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/item/beacon,
-/turf/open/floor/engine,
-/area/science/explab)
"aqI" = (
/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{
alpha = 180
@@ -1351,17 +1264,6 @@
/area/engineering/hallway{
name = "Engineering Viewing Platform"
})
-"awc" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/rnd/experimentor,
-/obj/effect/turf_decal/delivery,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/science/explab)
"aww" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible/layer4{
dir = 4
@@ -1386,6 +1288,18 @@
/obj/machinery/door/firedoor,
/turf/open/floor/plating,
/area/maintenance/department/medical/central)
+"axf" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/quartermaster/storage)
"axj" = (
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
@@ -1534,6 +1448,23 @@
},
/turf/open/floor/iron,
/area/maintenance/department/science/xenobiology)
+"azy" = (
+/obj/structure/table/optable{
+ pixel_y = 7
+ },
+/obj/item/surgical_drapes{
+ pixel_y = 4
+ },
+/obj/machinery/light,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/item/clothing/gloves/color/latex{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/turf/open/floor/iron,
+/area/medical/surgery)
"azA" = (
/obj/effect/turf_decal/bot,
/obj/item/pushbroom,
@@ -1807,17 +1738,6 @@
"aEM" = (
/turf/closed/wall/r_wall,
/area/science/server)
-"aFe" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/item/clothing/mask/surgical{
- pixel_x = 3;
- pixel_y = -8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/iron/dark,
-/area/security/detectives_office)
"aFj" = (
/obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior,
/obj/effect/mapping_helpers/airlock/locked,
@@ -1953,20 +1873,19 @@
},
/turf/open/floor/iron,
/area/medical/storage)
-"aIk" = (
-/obj/machinery/door/poddoor/preopen{
- id = "telelab";
- name = "test chamber blast door"
+"aIa" = (
+/obj/effect/landmark/start/assistant,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/obj/effect/turf_decal/stripes/line{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
},
-/obj/effect/turf_decal/stripes/line{
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 8
},
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/iron,
-/area/science/explab)
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/crew_quarters/fitness/recreation)
"aIl" = (
/obj/machinery/airalarm/directional/east,
/obj/structure/disposalpipe/segment,
@@ -1976,10 +1895,6 @@
/area/hallway/primary/central{
name = "-2 Primary Hallway"
})
-"aIu" = (
-/obj/machinery/light/small,
-/turf/open/floor/iron/tech,
-/area/engine/engineering)
"aIx" = (
/obj/machinery/meter,
/obj/structure/cable{
@@ -2112,6 +2027,13 @@
},
/turf/open/floor/iron,
/area/science/lab)
+"aJw" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/tech,
+/area/engine/engineering)
"aJy" = (
/obj/machinery/atmospherics/components/binary/valve,
/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_toxmix{
@@ -2194,10 +2116,6 @@
},
/turf/open/floor/iron,
/area/bridge)
-"aKy" = (
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/engine,
-/area/science/explab)
"aKC" = (
/obj/structure/dresser,
/obj/item/camera{
@@ -2335,6 +2253,13 @@
},
/turf/open/floor/plating,
/area/quartermaster/storage)
+"aOy" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/power/port_gen/pacman,
+/turf/open/floor/iron/dark,
+/area/engine/engineering)
"aOF" = (
/obj/effect/turf_decal/tile/black/opposingcorners{
dir = 1
@@ -2553,14 +2478,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/engine,
/area/science/mixing/chamber)
-"aRk" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "telelab";
- name = "test chamber blast door"
- },
-/turf/open/floor/plating,
-/area/science/explab)
"aRB" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/light{
@@ -2767,17 +2684,6 @@
"aUl" = (
/turf/closed/indestructible/rock/bedrock,
/area/quartermaster/storage)
-"aUG" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/obj/effect/turf_decal/bot,
-/obj/machinery/computer/rdconsole/experiment,
-/obj/item/radio/intercom{
- pixel_y = 28
- },
-/turf/open/floor/iron,
-/area/science/explab)
"aUN" = (
/obj/structure/table/reinforced,
/obj/item/paper_bin{
@@ -2955,17 +2861,6 @@
},
/turf/open/floor/plating,
/area/maintenance/department/eva)
-"aXv" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/general/hidden,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/tcommsat/computer)
"aXF" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -3230,6 +3125,17 @@
/area/engineering/hallway{
name = "Engineering Viewing Platform"
})
+"bge" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/general/hidden,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/tcommsat/computer)
"bgn" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 4
@@ -3279,20 +3185,6 @@
/area/engineering/hallway{
name = "Engineering Viewing Platform"
})
-"bhy" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/rnd/production/techfab/department/cargo,
-/obj/machinery/power/apc/auto_name/east,
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/iron/dark,
-/area/quartermaster/storage)
"bhE" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/spawner/lootdrop/grille_or_trash,
@@ -3719,18 +3611,6 @@
},
/turf/open/floor/iron,
/area/security/brig)
-"bsk" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/binary/pump{
- name = "Fuel Pipe to Incinerator"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal/incinerator)
"bso" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -4600,17 +4480,6 @@
},
/turf/open/floor/iron,
/area/security/brig)
-"bMy" = (
-/obj/structure/chair/office/light{
- dir = 1
- },
-/obj/effect/landmark/start/scientist,
-/obj/machinery/light_switch{
- pixel_x = -25;
- pixel_y = -25
- },
-/turf/open/floor/iron/white,
-/area/science/explab)
"bMB" = (
/obj/effect/turf_decal/tile/dark_red{
alpha = 180;
@@ -4716,6 +4585,12 @@
dir = 4
},
/area/science/research)
+"bOR" = (
+/obj/effect/turf_decal/delivery,
+/obj/item/xenoartifact,
+/obj/machinery/xenoartifact_inbox,
+/turf/open/floor/engine,
+/area/science/explab)
"bPb" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/turf_decal/tile/purple,
@@ -5011,24 +4886,6 @@
},
/turf/open/floor/plating,
/area/hydroponics)
-"bYx" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/item/card/id/job/atmospheric_technician,
-/obj/item/clothing/mask/gas{
- pixel_x = -4;
- pixel_y = 10
- },
-/obj/item/tank/internals/plasma{
- pixel_x = 7;
- pixel_y = 21
- },
-/obj/item/clothing/head/beret/atmos{
- pixel_x = 4;
- pixel_y = -2
- },
-/turf/open/floor/iron,
-/area/engine/engineering)
"bZe" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow{
@@ -5179,6 +5036,13 @@
/obj/effect/turf_decal/stripes/closeup,
/turf/open/floor/plating,
/area/crew_quarters/heads/captain)
+"ccE" = (
+/obj/item/food/candyheart{
+ pixel_x = -2;
+ pixel_y = -18
+ },
+/turf/open/floor/plating/asteroid/basalt/planetary,
+/area/asteroid/paradise)
"cdq" = (
/obj/structure/window/plasma/reinforced{
dir = 4
@@ -5308,6 +5172,20 @@
/obj/structure/stairs,
/obj/machinery/firealarm/directional/west,
/turf/open/floor/pod/dark,
+/area/hallway/primary/fore{
+ name = "-1 Primary Hallway"
+ })
+"cgb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk/multiz/down{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
/area/hallway/primary/fore{
name = "-1 Primary Hallway"
})
@@ -5358,6 +5236,17 @@
},
/turf/open/floor/plating/asteroid/planetary,
/area/crew_quarters/dorms)
+"cjo" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/medical/medbay/central)
"cjG" = (
/obj/structure/chair/fancy/sofa/old/right{
dir = 4
@@ -5455,6 +5344,21 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/bridge)
+"cne" = (
+/obj/machinery/airalarm/directional/west,
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_x = 1;
+ pixel_y = 23
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 2
+ },
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
"cnh" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -5594,17 +5498,6 @@
},
/turf/open/floor/iron,
/area/science/robotics)
-"cpJ" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/science/robotics)
"cpL" = (
/obj/machinery/door/airlock/command{
name = "Gateway Access";
@@ -5637,6 +5530,26 @@
},
/turf/open/floor/iron/white,
/area/crew_quarters/heads/hor)
+"cpR" = (
+/obj/effect/spawner/lootdrop/aimodule_harmless,
+/obj/effect/spawner/lootdrop/aimodule_harmless,
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/flasher{
+ id = "AI";
+ pixel_x = -1;
+ pixel_y = 32
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/effect/spawner/lootdrop/aimodule_harmless,
+/obj/machinery/power/apc/auto_name/east,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/structure/table/reinforced,
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai_upload)
"cqs" = (
/obj/machinery/holopad,
/obj/structure/cable/yellow{
@@ -5714,16 +5627,6 @@
/obj/effect/spawner/lootdrop/glowstick/lit,
/turf/open/floor/iron/techmaint/planetary,
/area/asteroid/paradise/surface)
-"css" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/turf/open/floor/iron/dark/corner{
- dir = 1
- },
-/area/hallway/primary/central{
- name = "-2 Primary Hallway"
- })
"csB" = (
/obj/effect/turf_decal/tile/dark_red{
alpha = 180;
@@ -5824,6 +5727,25 @@
/area/hallway/primary/aft{
name = "-3 Primary Hallway"
})
+"cvu" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/status_display/evac{
+ pixel_y = 32
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/effect/landmark/start/station_engineer,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engineering)
"cvA" = (
/obj/effect/decal/cleanable/dirt/dust,
/turf/closed/wall,
@@ -5901,6 +5823,21 @@
},
/turf/open/floor/iron,
/area/security/brig)
+"cxL" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/dark/visible{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal/incinerator)
"cxT" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 1
@@ -6473,6 +6410,12 @@
/obj/structure/reflector/box,
/turf/open/floor/iron,
/area/engine/engineering)
+"cNI" = (
+/obj/effect/turf_decal/evac,
+/turf/open/floor/iron,
+/area/hallway/primary/central{
+ name = "-2 Primary Hallway"
+ })
"cOp" = (
/turf/open/openspace,
/area/crew_quarters/kitchen)
@@ -6558,6 +6501,22 @@
},
/turf/open/floor/iron/tech,
/area/engine/atmos)
+"cRo" = (
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/dark/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 8
+ },
+/area/hallway/primary/central{
+ name = "-2 Primary Hallway"
+ })
"cRp" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -6713,14 +6672,6 @@
},
/turf/open/floor/plating/rust,
/area/science/test_area)
-"cUd" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/obj/effect/turf_decal/bot,
-/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor/iron,
-/area/engine/engineering)
"cUr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -6797,6 +6748,17 @@
},
/turf/open/floor/carpet/royalblack,
/area/vacant_room/office)
+"cXy" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/science/robotics)
"cXz" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -6834,19 +6796,6 @@
},
/turf/open/floor/plating/beach/sand,
/area/asteroid/paradise/surface/sand)
-"cXM" = (
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
- },
-/obj/structure/table,
-/obj/item/pickaxe,
-/obj/machinery/firealarm/directional/north,
-/obj/item/clothing/mask/gas/explorer{
- pixel_x = -5;
- pixel_y = 6
- },
-/turf/open/floor/iron,
-/area/engine/atmos)
"cXQ" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/decal/cleanable/oil/slippery,
@@ -7191,6 +7140,25 @@
/obj/effect/decal/cleanable/greenglow,
/turf/open/floor/plating/dirt/jungle/wasteland,
/area/asteroid/paradise/surface)
+"dkl" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/engine/engineering)
"dkt" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -7495,25 +7463,6 @@
/area/hallway/primary/aft{
name = "-3 Primary Hallway"
})
-"dvF" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/status_display/evac{
- pixel_y = 32
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/effect/landmark/start/station_engineer,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engineering)
"dvV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
@@ -7743,6 +7692,26 @@
/obj/structure/light_construct,
/turf/open/floor/wood,
/area/vacant_room/office)
+"dCq" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 8
+ },
+/area/hallway/primary/central{
+ name = "-2 Primary Hallway"
+ })
"dCr" = (
/turf/open/floor/plating/beach/coastline_t,
/area/asteroid/paradise/surface/sand)
@@ -7876,17 +7845,6 @@
/obj/structure/closet/crate,
/turf/open/floor/plating,
/area/maintenance/department/chapel)
-"dGX" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/crew_quarters/fitness/recreation)
"dHc" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
@@ -8051,6 +8009,23 @@
},
/turf/open/floor/dock/drydock,
/area/quartermaster/storage)
+"dKK" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/sheet/mineral/plasma/fifty,
+/obj/item/reagent_containers/dropper{
+ pixel_x = -4;
+ pixel_y = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/item/toy/plush/slimeplushie/random{
+ pixel_x = -8;
+ pixel_y = 1
+ },
+/turf/open/floor/iron/grid/steel,
+/area/science/xenobiology)
"dLt" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/turf_decal/tile/purple{
@@ -8091,24 +8066,6 @@
"dMS" = (
/turf/closed/wall/rust,
/area/quartermaster/storage)
-"dMU" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/disposalpipe/trunk/multiz/down{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/medical/medbay/central)
"dNl" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
@@ -8276,17 +8233,6 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat/maint)
-"dQZ" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/item/radio/intercom{
- pixel_y = -33
- },
-/obj/machinery/light,
-/turf/open/floor/iron/dark,
-/area/engine/engineering)
"dRn" = (
/obj/effect/decal/cleanable/blood/gibs/down,
/turf/open/floor/plating/dirt/planetary,
@@ -8386,6 +8332,13 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/sorting)
+"dSU" = (
+/obj/structure/chair/office/light{
+ dir = 1
+ },
+/obj/effect/landmark/start/scientist,
+/turf/open/floor/iron/white,
+/area/science/explab)
"dTb" = (
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
@@ -8442,17 +8395,6 @@
},
/turf/open/floor/iron,
/area/security/brig)
-"dUB" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engineering)
"dUG" = (
/obj/item/aicard,
/obj/item/aiModule/reset,
@@ -8565,30 +8507,6 @@
},
/turf/open/floor/iron,
/area/maintenance/department/engine/atmos)
-"dZS" = (
-/obj/machinery/door/airlock/medical/glass{
- name = "Medbay Storage";
- req_access_txt = "5"
- },
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/delivery,
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/mapping_helpers/airlock/unres{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/turf/open/floor/iron/grid/steel,
-/area/medical/storage)
"eam" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/segment{
@@ -8806,6 +8724,18 @@
/area/hallway/primary/fore{
name = "-1 Primary Hallway"
})
+"eib" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/engine/engineering)
"eid" = (
/obj/structure/railing/corner{
dir = 1
@@ -8886,6 +8816,27 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/carpet/royalblack,
/area/vacant_room/office)
+"ejo" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/dark/visible{
+ dir = 10
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engineering)
"ejD" = (
/obj/machinery/hydroponics/constructable,
/obj/effect/turf_decal/stripes/line{
@@ -8979,13 +8930,6 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/central)
-"elZ" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron/tech,
-/area/engine/engineering)
"emp" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -8995,6 +8939,13 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating/beach/sand,
/area/asteroid/paradise/surface/sand)
+"eni" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/science/robotics)
"enr" = (
/obj/structure/railing{
dir = 5
@@ -9136,22 +9087,6 @@
},
/turf/open/floor/plating,
/area/crew_quarters/kitchen/coldroom)
-"eqA" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engineering)
"eqK" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/structure/cable/yellow{
@@ -9349,6 +9284,16 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
+"exs" = (
+/obj/machinery/atmospherics/components/binary/volume_pump/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/hallway/primary/aft{
+ name = "-3 Primary Hallway"
+ })
"exx" = (
/obj/structure/railing/corner{
dir = 4
@@ -10488,6 +10433,19 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/closed/wall,
/area/crew_quarters/kitchen/coldroom)
+"eZF" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/crew_quarters/fitness/recreation)
"eZI" = (
/obj/structure/lattice/catwalk/over,
/turf/open/openspace,
@@ -10629,19 +10587,6 @@
},
/turf/open/floor/iron,
/area/maintenance/department/science/xenobiology)
-"fdd" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/power/apc/auto_name/east,
-/obj/structure/cable/yellow,
-/turf/open/floor/iron/tech,
-/area/science/mixing/chamber)
"fdh" = (
/turf/open/openspace,
/area/ai_monitored/turret_protected/aisat/maint)
@@ -10673,18 +10618,6 @@
},
/turf/open/floor/dock/drydock,
/area/quartermaster/storage)
-"fen" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/dark/visible,
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal/incinerator)
"feq" = (
/turf/open/openspace,
/area/quartermaster/qm)
@@ -11522,6 +11455,20 @@
/obj/effect/spawner/structure/window/plasma/reinforced,
/turf/open/floor/engine,
/area/engine/atmos)
+"fAi" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/dark/visible{
+ dir = 6
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal/incinerator)
"fBc" = (
/obj/structure/mirror{
pixel_x = -32;
@@ -11919,6 +11866,19 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron/dark,
/area/engine/engineering)
+"fMJ" = (
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/engine/atmos)
"fML" = (
/obj/structure/closet/crate/secure/engineering,
/obj/item/stack/sheet/iron/fifty{
@@ -12194,17 +12154,6 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/patients_rooms)
-"fRK" = (
-/obj/machinery/portable_atmospherics/canister,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/turf/open/floor/iron/dark,
-/area/engine/engineering)
"fRN" = (
/obj/effect/turf_decal/tile/purple/half/contrasted,
/turf/open/floor/iron/white,
@@ -12512,6 +12461,17 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating/asteroid/basalt/planetary,
/area/asteroid/paradise)
+"fXL" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/item/beacon,
+/obj/effect/landmark/xeno_spawn,
+/obj/effect/turf_decal/caution{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/science/explab)
"fYK" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -12895,31 +12855,6 @@
"ggs" = (
/turf/closed/wall/rust,
/area/maintenance/department/engine)
-"ggT" = (
-/obj/machinery/power/apc/auto_name/south{
- pixel_y = -24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/light,
-/obj/machinery/camera/autoname{
- dir = 10
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/crew_quarters/heads/hop)
"ghc" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -13213,6 +13148,17 @@
},
/turf/open/floor/iron,
/area/science/lab)
+"gmi" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "testlab";
+ name = "test chamber blast door"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/science/explab)
"gmo" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow{
@@ -13774,6 +13720,31 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating/rust,
/area/science/test_area)
+"gBO" = (
+/obj/machinery/power/apc/auto_name/south{
+ pixel_y = -24
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/machinery/camera/autoname{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/crew_quarters/heads/hop)
"gBS" = (
/obj/effect/turf_decal/sand/plating,
/obj/effect/turf_decal/sand/plating,
@@ -14049,32 +14020,6 @@
},
/turf/open/floor/iron,
/area/maintenance/department/bridge)
-"gIE" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/tile/yellow/half/contrasted{
- alpha = 180;
- dir = 8
- },
-/obj/item/radio/intercom{
- dir = 1;
- pixel_x = -30;
- pixel_y = -2
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/turf/open/floor/iron/dark/corner{
- dir = 1
- },
-/area/hallway/primary/central{
- name = "-2 Primary Hallway"
- })
"gIO" = (
/obj/machinery/suit_storage_unit/standard_unit,
/obj/effect/turf_decal/stripes/line{
@@ -14221,26 +14166,6 @@
/obj/machinery/space_heater,
/turf/open/floor/plating,
/area/maintenance/department/eva)
-"gLX" = (
-/obj/structure/railing/corner,
-/obj/effect/turf_decal/tile/neutral/half/contrasted,
-/obj/effect/turf_decal/siding/white{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/medical/medbay/central)
"gMh" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/structure/closet,
@@ -14845,23 +14770,6 @@
/area/hallway/primary/central{
name = "-2 Primary Hallway"
})
-"gYJ" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/sheet/mineral/plasma/fifty,
-/obj/item/reagent_containers/dropper{
- pixel_x = -4;
- pixel_y = 8
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/item/toy/plush/slimeplushie/random{
- pixel_x = -8;
- pixel_y = 1
- },
-/turf/open/floor/iron/grid/steel,
-/area/science/xenobiology)
"gYZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/sand/plating,
@@ -14870,22 +14778,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
-"gZf" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/effect/turf_decal/evac,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
-/turf/open/floor/iron,
-/area/hallway/primary/central{
- name = "-2 Primary Hallway"
- })
"gZh" = (
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
@@ -15047,26 +14939,6 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating,
/area/maintenance/department/science/central)
-"heo" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/turf/open/floor/iron/dark/corner{
- dir = 8
- },
-/area/hallway/primary/central{
- name = "-2 Primary Hallway"
- })
"het" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -15204,23 +15076,30 @@
"hiB" = (
/turf/closed/wall,
/area/asteroid/paradise)
-"hjG" = (
-/obj/structure/table/reinforced,
+"hjp" = (
+/obj/machinery/door/airlock/medical/glass{
+ name = "Medbay Storage";
+ req_access_txt = "5"
+ },
/obj/machinery/door/firedoor,
-/obj/item/reagent_containers/food/condiment/saltshaker{
- pixel_x = 4;
- pixel_y = 9
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
},
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "Chefwindow";
- name = "Chef window"
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
},
-/obj/item/toy/figure/chef{
- pixel_x = -4;
- pixel_y = -1
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/turf/open/floor/iron/white,
-/area/crew_quarters/kitchen)
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/turf/open/floor/iron/grid/steel,
+/area/medical/storage)
"hjU" = (
/turf/open/openspace,
/area/science/mixing)
@@ -15281,6 +15160,21 @@
/obj/structure/sign/departments/minsky/research/research,
/turf/closed/wall/r_wall,
/area/science/lab)
+"hos" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engineering)
"hoH" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/power/apc/auto_name/north{
@@ -15945,6 +15839,17 @@
/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/quartermaster/storage)
+"hDR" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ pixel_y = -33
+ },
+/obj/machinery/light,
+/turf/open/floor/iron/dark,
+/area/engine/engineering)
"hDY" = (
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -16017,22 +15922,6 @@
},
/turf/open/floor/pod/dark,
/area/maintenance/department/eva)
-"hGv" = (
-/obj/structure/table,
-/obj/item/wrench{
- pixel_x = -4;
- pixel_y = 15
- },
-/obj/item/crowbar/red{
- pixel_x = -2;
- pixel_y = 11
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/item/analyzer{
- pixel_x = 1
- },
-/turf/open/floor/iron,
-/area/engine/engineering)
"hGN" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/decal/cleanable/dirt/dust,
@@ -16157,6 +16046,17 @@
/area/hallway/primary/central{
name = "-2 Primary Hallway"
})
+"hKX" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/item/clothing/mask/surgical{
+ pixel_x = 3;
+ pixel_y = -8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/turf/open/floor/iron/dark,
+/area/security/detectives_office)
"hLc" = (
/obj/structure/table,
/obj/effect/spawner/lootdrop/maintenance/two,
@@ -16607,25 +16507,6 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/carpet/blue,
/area/crew_quarters/cafeteria)
-"hVM" = (
-/obj/machinery/door/airlock/command{
- name = "Head of Personnel's Office";
- req_access_txt = "57"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/crew_quarters/heads/hop)
"hWZ" = (
/obj/machinery/light/small{
dir = 1
@@ -16696,12 +16577,6 @@
/obj/structure/curtain/directional,
/turf/open/floor/plating,
/area/quartermaster/qm)
-"hZc" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/engine/atmos)
"hZg" = (
/obj/machinery/requests_console{
department = "Tool Storage";
@@ -16858,14 +16733,6 @@
},
/turf/open/floor/iron,
/area/medical/medbay/central)
-"idv" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/power/apc/auto_name/east,
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/turf/open/floor/iron,
-/area/maintenance/department/engine)
"idO" = (
/obj/machinery/portable_atmospherics/pump,
/obj/effect/turf_decal/bot,
@@ -17167,17 +17034,6 @@
"img" = (
/turf/open/floor/plating,
/area/maintenance/department/cargo)
-"imH" = (
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/medical/medbay/central)
"imO" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -17258,6 +17114,23 @@
/area/hallway/primary/fore{
name = "-1 Primary Hallway"
})
+"ipm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/dark/visible{
+ dir = 4
+ },
+/obj/structure/railing,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/atmos)
"ipu" = (
/obj/machinery/microwave{
desc = "Cooks and boils stuff, somehow.";
@@ -17517,6 +17390,18 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/dark,
/area/ai_monitored/security/armory)
+"iyn" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/hallway/primary/central{
+ name = "-2 Primary Hallway"
+ })
"iyS" = (
/turf/closed/wall,
/area/medical/exam_room)
@@ -17544,19 +17429,6 @@
/obj/structure/lattice,
/turf/open/openspace,
/area/maintenance/department/security/brig)
-"izQ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/crew_quarters/heads/hop)
"iAE" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -17613,25 +17485,6 @@
},
/turf/open/floor/iron,
/area/bridge)
-"iAO" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/delivery,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/iron/dark,
-/area/engine/engineering)
"iBH" = (
/obj/structure/grille/broken,
/turf/open/floor/plating,
@@ -17658,6 +17511,26 @@
/obj/structure/frame/machine,
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
+"iDi" = (
+/obj/structure/railing/corner,
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/medical/medbay/central)
"iDI" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/structure/rack,
@@ -17820,19 +17693,6 @@
/area/engineering/hallway{
name = "Engineering Viewing Platform"
})
-"iHQ" = (
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
- },
-/obj/structure/table,
-/obj/item/wallframe/extinguisher_cabinet{
- pixel_x = -1;
- pixel_y = 31
- },
-/obj/item/storage/toolbox/electrical,
-/obj/item/clothing/gloves/color/yellow,
-/turf/open/floor/iron,
-/area/engine/atmos)
"iIl" = (
/obj/machinery/vending/hydroseeds,
/obj/effect/turf_decal/stripes/line,
@@ -17909,17 +17769,6 @@
/area/hallway/primary/central{
name = "-2 Primary Hallway"
})
-"iJo" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "External Gas to Loop"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/firealarm/directional/south,
-/obj/machinery/light,
-/turf/open/floor/iron/dark,
-/area/engine/engineering)
"iJL" = (
/obj/machinery/light_switch{
pixel_x = 25;
@@ -18118,16 +17967,6 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/storage)
-"iOV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/power/apc/auto_name/east,
-/obj/structure/cable/yellow,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/science/central)
"iPs" = (
/obj/effect/turf_decal/siding/dark,
/obj/effect/turf_decal/siding/dark{
@@ -18140,6 +17979,24 @@
/area/engineering/hallway{
name = "Engineering Viewing Platform"
})
+"iPB" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/item/card/id/job/atmospheric_technician,
+/obj/item/clothing/mask/gas{
+ pixel_x = -4;
+ pixel_y = 10
+ },
+/obj/item/tank/internals/plasma{
+ pixel_x = 7;
+ pixel_y = 21
+ },
+/obj/item/clothing/head/beret/atmos{
+ pixel_x = 4;
+ pixel_y = -2
+ },
+/turf/open/floor/iron,
+/area/engine/engineering)
"iPI" = (
/obj/machinery/computer/card,
/obj/item/storage/secure/safe{
@@ -18674,6 +18531,18 @@
},
/turf/open/floor/carpet/blue,
/area/crew_quarters/cafeteria)
+"jeF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/dark/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engineering)
"jeN" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -18799,6 +18668,17 @@
},
/turf/open/floor/plating,
/area/tcommsat/server)
+"jkD" = (
+/obj/item/toy/plush/moth/firewatch{
+ pixel_x = -10;
+ name = "Zinnia"
+ },
+/obj/item/toy/plush/lizard_plushie{
+ name = "Walks-upon-Embers";
+ pixel_x = 5
+ },
+/turf/open/floor/plating/asteroid/basalt/planetary,
+/area/asteroid/paradise)
"jkK" = (
/obj/machinery/light_switch{
pixel_x = -24;
@@ -19095,6 +18975,43 @@
},
/turf/open/floor/iron/tech,
/area/science/mixing)
+"jsc" = (
+/obj/structure/table/reinforced,
+/obj/item/xenoartifact_labeler{
+ pixel_y = 6
+ },
+/obj/item/clothing/glasses/science{
+ pixel_x = 4;
+ pixel_y = 10
+ },
+/obj/item/xenoartifact_labeler{
+ pixel_y = 6
+ },
+/obj/item/clothing/glasses/science{
+ pixel_x = 4;
+ pixel_y = 10
+ },
+/obj/item/healthanalyzer,
+/obj/item/analyzer,
+/obj/item/clothing/gloves/artifact_pinchers{
+ pixel_y = 3
+ },
+/obj/item/multitool,
+/obj/item/clothing/mask/gas,
+/obj/item/book/manual/wiki/xenoarchaeology,
+/obj/item/clothing/neck/stethoscope,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ pixel_x = 1;
+ pixel_y = -28
+ },
+/turf/open/floor/iron,
+/area/science/explab)
"jsm" = (
/obj/item/trash/plate,
/turf/open/floor/plating/beach/sand,
@@ -19256,18 +19173,6 @@
},
/turf/open/floor/iron,
/area/science/robotics)
-"jxx" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/iron/dark,
-/area/engine/engineering)
"jxW" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -19533,17 +19438,20 @@
},
/turf/open/floor/wood,
/area/chapel/main)
-"jEt" = (
-/obj/item/toy/plush/moth/firewatch{
- pixel_x = -10;
- name = "Zinnia"
+"jEr" = (
+/obj/machinery/light{
+ dir = 4
},
-/obj/item/toy/plush/lizard_plushie{
- name = "Walks-upon-Embers";
- pixel_x = 5
+/obj/effect/decal/cleanable/dirt/dust,
+/mob/living/simple_animal/pet/dog/pug{
+ density = 0;
+ dir = 8
},
-/turf/open/floor/plating/asteroid/basalt/planetary,
-/area/asteroid/paradise)
+/obj/effect/turf_decal/caution{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/science/explab)
"jEu" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 4
@@ -19613,6 +19521,14 @@
/obj/machinery/light/floor,
/turf/open/floor/iron/sepia,
/area/quartermaster/storage)
+"jFC" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/effect/turf_decal/bot,
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/open/floor/iron,
+/area/engine/engineering)
"jFW" = (
/obj/effect/mapping_helpers/dead_body_placer,
/turf/open/floor/plating/dirt/planetary,
@@ -19942,21 +19858,6 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/medbay/central)
-"jLH" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/structure/disposalpipe/junction/flip{
- dir = 2
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/crew_quarters/heads/hop)
"jLI" = (
/obj/structure/lattice/catwalk/over,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -20018,20 +19919,6 @@
"jME" = (
/turf/closed/wall,
/area/medical/apothecary)
-"jMP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk/multiz/down{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/hallway/primary/fore{
- name = "-1 Primary Hallway"
- })
"jNd" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/light{
@@ -20172,26 +20059,6 @@
},
/turf/open/floor/plating,
/area/medical/morgue)
-"jQe" = (
-/obj/machinery/light,
-/obj/machinery/firealarm/directional/south,
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/obj/structure/table,
-/obj/item/food/dough{
- pixel_x = 4
- },
-/obj/item/food/dough{
- pixel_x = 9;
- pixel_y = 2
- },
-/obj/item/reagent_containers/food/condiment/enzyme{
- pixel_x = -5;
- pixel_y = 9
- },
-/turf/open/floor/iron/cafeteria,
-/area/crew_quarters/kitchen)
"jQL" = (
/obj/structure/chair/fancy/sofa/old/left{
dir = 4
@@ -20225,13 +20092,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/carpet/blue,
/area/crew_quarters/cafeteria)
-"jRA" = (
-/obj/item/food/candyheart{
- pixel_x = -2;
- pixel_y = -18
- },
-/turf/open/floor/plating/asteroid/basalt/planetary,
-/area/asteroid/paradise)
"jRB" = (
/obj/structure/flora/grass/jungle,
/turf/open/floor/plating/asteroid/planetary,
@@ -20338,21 +20198,6 @@
"jUw" = (
/turf/open/floor/plating/asteroid/basalt/planetary,
/area/quartermaster/storage)
-"jUx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engineering)
"jUM" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable{
@@ -20562,20 +20407,6 @@
/area/engineering/hallway{
name = "Engineering Viewing Platform"
})
-"jZf" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 6
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal/incinerator)
"jZh" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/structure/cable/yellow{
@@ -20797,13 +20628,6 @@
"kfl" = (
/turf/closed/wall/r_wall,
/area/bridge/meeting_room)
-"kfC" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/engine/atmos)
"kgl" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -20862,24 +20686,24 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/carpet/purple,
/area/crew_quarters/dorms)
-"khs" = (
-/turf/closed/wall/rust,
-/area/science/lab)
-"kip" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+"khm" = (
+/obj/machinery/power/terminal{
+ dir = 8
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/turf/open/floor/iron,
-/area/hallway/primary/central{
- name = "-2 Primary Hallway"
- })
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engineering)
+"khs" = (
+/turf/closed/wall/rust,
+/area/science/lab)
"kiz" = (
/obj/effect/decal/cleanable/greenglow,
/turf/open/floor/plating/dirt/jungle/wasteland,
@@ -20915,23 +20739,6 @@
/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/ai_monitored/security/armory)
-"klc" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/bot,
-/obj/machinery/camera/autoname{
- network = list("ss13","engine")
- },
-/obj/structure/closet/secure_closet/atmospherics{
- anchored = 1;
- req_access = null;
- req_one_access_txt = "11"
- },
-/obj/item/radio/intercom{
- pixel_x = -1;
- pixel_y = 29
- },
-/turf/open/floor/iron,
-/area/engine/atmos)
"klh" = (
/obj/structure/flora/ausbushes/lavendergrass,
/obj/effect/decal/cleanable/dirt,
@@ -21424,6 +21231,35 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron,
+/area/hallway/primary/central{
+ name = "-2 Primary Hallway"
+ })
+"kvM" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/bot,
+/obj/structure/closet/secure_closet/atmospherics{
+ anchored = 1;
+ req_access = null;
+ req_one_access_txt = "11"
+ },
+/turf/open/floor/iron,
+/area/engine/atmos)
+"kvW" = (
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/dark/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
/area/hallway/primary/central{
name = "-2 Primary Hallway"
})
@@ -21770,6 +21606,25 @@
/obj/structure/fence/cut/large,
/turf/open/floor/plating/dirt/planetary,
/area/asteroid/paradise/surface/grass)
+"kCq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table,
+/obj/item/pipe_dispenser{
+ pixel_x = 1;
+ pixel_y = 12
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/item/clothing/glasses/meson{
+ pixel_y = 1
+ },
+/obj/item/clothing/glasses/meson{
+ pixel_y = 1
+ },
+/obj/item/clothing/glasses/meson{
+ pixel_x = 2
+ },
+/turf/open/floor/iron,
+/area/engine/engineering)
"kCM" = (
/turf/open/floor/plating,
/area/quartermaster/warehouse)
@@ -21792,6 +21647,18 @@
},
/turf/open/floor/iron/showroomfloor,
/area/crew_quarters/fitness/recreation)
+"kDx" = (
+/obj/structure/filingcabinet,
+/obj/item/folder/documents,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/power/apc/auto_name/east,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/turf/open/floor/iron/dark,
+/area/security/nuke_storage)
"kDO" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -22384,10 +22251,44 @@
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating,
/area/maintenance/department/science/xenobiology)
+"kWQ" = (
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/engineering/hallway{
+ name = "Engineering Viewing Platform"
+ })
"kWT" = (
/obj/machinery/hydroponics/soil,
/turf/open/floor/plating/grass,
/area/asteroid/paradise/surface)
+"kXq" = (
+/obj/structure/table,
+/obj/item/wrench{
+ pixel_x = -4;
+ pixel_y = 15
+ },
+/obj/item/crowbar/red{
+ pixel_x = -2;
+ pixel_y = 11
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/item/analyzer{
+ pixel_x = 1
+ },
+/turf/open/floor/iron,
+/area/engine/engineering)
"kXu" = (
/obj/machinery/vending/autodrobe/all_access,
/obj/machinery/airalarm/directional/north,
@@ -22567,27 +22468,6 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai_upload)
-"lcS" = (
-/obj/machinery/power/apc/auto_name/west{
- pixel_x = -24
- },
-/obj/structure/cable/yellow,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/turf/open/floor/iron/dark/side{
- dir = 8
- },
-/area/hallway/primary/central{
- name = "-2 Primary Hallway"
- })
"ldp" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -22896,13 +22776,6 @@
},
/turf/open/floor/iron/white,
/area/science/robotics)
-"lkA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/iron/dark,
-/area/engine/atmos)
"llb" = (
/obj/item/paper/fluff/holodeck/disclaimer{
pixel_x = -4;
@@ -22913,16 +22786,25 @@
},
/turf/open/floor/carpet/green,
/area/crew_quarters/cafeteria)
-"llo" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
+"lll" = (
+/obj/machinery/atmospherics/pipe/simple/dark/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
},
+/obj/structure/railing,
/obj/structure/cable/yellow{
- icon_state = "2-4"
+ icon_state = "4-8"
},
-/turf/open/floor/iron/white,
-/area/science/explab)
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/atmos)
"lly" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
@@ -22946,6 +22828,20 @@
},
/turf/open/floor/carpet/red,
/area/crew_quarters/heads/hos)
+"llU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk/multiz/down{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/hallway/primary/fore{
+ name = "-1 Primary Hallway"
+ })
"lmb" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/power/apc/auto_name/south{
@@ -23007,6 +22903,25 @@
},
/turf/open/floor/iron/techmaint/planetary,
/area/asteroid/paradise/surface)
+"lnH" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/firealarm/directional/east,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/engineering/hallway{
+ name = "Engineering Viewing Platform"
+ })
"lnK" = (
/obj/structure/filingcabinet/chestdrawer{
pixel_y = 2
@@ -23027,6 +22942,19 @@
/obj/structure/flora/rock/pile,
/turf/open/floor/plating/asteroid/planetary,
/area/asteroid/paradise/surface)
+"lnW" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/power/apc/auto_name/east,
+/obj/structure/cable/yellow,
+/turf/open/floor/iron/tech,
+/area/science/mixing/chamber)
"lnY" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
dir = 1
@@ -23119,6 +23047,20 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating/asteroid/planetary,
/area/asteroid/paradise)
+"lqc" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/rnd/production/techfab/department/cargo,
+/obj/machinery/power/apc/auto_name/east,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/quartermaster/storage)
"lqn" = (
/obj/item/radio/intercom{
dir = 1;
@@ -23153,22 +23095,6 @@
},
/turf/open/floor/iron,
/area/janitor)
-"lrs" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/dark/visible,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/atmos)
"lrR" = (
/obj/machinery/door/poddoor/shutters/preopen{
id = "cmoshutter";
@@ -23181,6 +23107,18 @@
/obj/structure/lattice/catwalk/over,
/turf/open/openspace,
/area/ai_monitored/turret_protected/aisat/maint)
+"lsu" = (
+/obj/machinery/computer/bank_machine{
+ dir = 1
+ },
+/obj/effect/turf_decal/delivery,
+/obj/structure/sign/warning/electricshock{
+ pixel_y = -32
+ },
+/turf/open/floor/circuit/green{
+ luminosity = 2
+ },
+/area/security/nuke_storage)
"lsv" = (
/obj/structure/lattice,
/obj/structure/railing{
@@ -23431,26 +23369,6 @@
/obj/machinery/space_heater,
/turf/open/floor/iron,
/area/maintenance/department/engine)
-"lzD" = (
-/obj/effect/spawner/lootdrop/aimodule_harmless,
-/obj/effect/spawner/lootdrop/aimodule_harmless,
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/flasher{
- id = "AI";
- pixel_x = -1;
- pixel_y = 32
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/effect/spawner/lootdrop/aimodule_harmless,
-/obj/machinery/power/apc/auto_name/east,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/structure/table/reinforced,
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai_upload)
"lAn" = (
/obj/effect/turf_decal/sand/plating,
/obj/structure/girder,
@@ -23789,6 +23707,12 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/iron,
/area/maintenance/department/bridge)
+"lJw" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/engine/atmos)
"lJE" = (
/obj/structure/table/wood,
/obj/item/wrench,
@@ -24145,6 +24069,23 @@
"lUm" = (
/turf/open/floor/plating,
/area/maintenance/department/science/xenobiology)
+"lUo" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/box,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/turf/open/floor/iron/white,
+/area/medical/storage)
"lUq" = (
/turf/open/floor/wood,
/area/chapel/main)
@@ -24320,23 +24261,6 @@
},
/turf/open/floor/engine,
/area/ai_monitored/turret_protected/ai)
-"lYL" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/turf/open/floor/iron/dark,
-/area/engineering/hallway{
- name = "Engineering Viewing Platform"
- })
"lZd" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -24619,14 +24543,6 @@
},
/turf/open/floor/iron,
/area/science/research)
-"mhM" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/bot,
-/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor/iron,
-/area/engine/engineering)
"mik" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -24888,6 +24804,27 @@
},
/turf/open/floor/carpet/purple,
/area/crew_quarters/cafeteria)
+"msj" = (
+/obj/machinery/power/apc/auto_name/west{
+ pixel_x = -24
+ },
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 8
+ },
+/area/hallway/primary/central{
+ name = "-2 Primary Hallway"
+ })
"mss" = (
/obj/structure/railing{
dir = 1
@@ -25066,37 +25003,6 @@
},
/turf/open/floor/iron/tech/grid,
/area/ai_monitored/turret_protected/aisat_interior)
-"mwU" = (
-/obj/structure/table/glass,
-/obj/item/retractor{
- pixel_x = -2;
- pixel_y = 2
- },
-/obj/item/cautery{
- pixel_x = -1;
- pixel_y = 1
- },
-/obj/item/hemostat,
-/obj/item/scalpel{
- pixel_y = 12
- },
-/obj/item/circular_saw,
-/obj/item/surgicaldrill{
- pixel_x = 1;
- pixel_y = 7
- },
-/obj/item/blood_filter{
- pixel_x = -1;
- pixel_y = 5
- },
-/obj/machinery/defibrillator_mount{
- pixel_y = -24
- },
-/obj/item/storage/backpack/duffelbag/med/implant{
- pixel_y = 4
- },
-/turf/open/floor/iron,
-/area/medical/surgery)
"mxd" = (
/obj/structure/sign/departments/minsky/research/robotics,
/turf/closed/wall,
@@ -25201,6 +25107,22 @@
/area/hallway/primary/fore{
name = "-1 Primary Hallway"
})
+"mzu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/dark/visible{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engineering)
"mzC" = (
/obj/effect/spawner/xmastree,
/turf/open/floor/wood,
@@ -25254,23 +25176,6 @@
/obj/effect/spawner/structure/window/plasma/reinforced,
/turf/open/floor/plating,
/area/engine/engineering)
-"mAQ" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/disposalpipe/sorting/mail/flip{
- dir = 8;
- name = "Medbay";
- sortType = 9
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/medical/medbay/central)
"mAS" = (
/obj/structure/railing{
dir = 1
@@ -25315,6 +25220,21 @@
/obj/machinery/atmospherics/pipe/layer_manifold/visible,
/turf/open/floor/engine/n2o,
/area/engine/atmos)
+"mCw" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/quartermaster/storage)
"mDm" = (
/obj/structure/rack,
/obj/item/rollerbed{
@@ -25366,6 +25286,23 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/openspace,
/area/engine/atmos)
+"mEL" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/bot,
+/obj/machinery/camera/autoname{
+ network = list("ss13","engine")
+ },
+/obj/structure/closet/secure_closet/atmospherics{
+ anchored = 1;
+ req_access = null;
+ req_one_access_txt = "11"
+ },
+/obj/item/radio/intercom{
+ pixel_x = -1;
+ pixel_y = 29
+ },
+/turf/open/floor/iron,
+/area/engine/atmos)
"mEO" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/structure/flora/rock/pile,
@@ -26011,23 +25948,6 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating,
/area/maintenance/department/bridge)
-"mVw" = (
-/obj/machinery/holopad,
-/obj/effect/turf_decal/box,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/turf/open/floor/iron/white,
-/area/medical/storage)
"mWc" = (
/obj/effect/turf_decal/siding/wideplating/dark{
dir = 1
@@ -26035,6 +25955,16 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/turf/open/floor/carpet/red,
/area/crew_quarters/heads/hos)
+"mWk" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 4
+ },
+/area/hallway/primary/central{
+ name = "-2 Primary Hallway"
+ })
"mWt" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -26491,6 +26421,15 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/wood,
/area/vacant_room/office)
+"nlX" = (
+/obj/machinery/power/emitter/welded{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/obj/structure/cable/yellow,
+/obj/machinery/light/small,
+/turf/open/floor/plating,
+/area/engine/engineering)
"nmp" = (
/obj/structure/railing/corner,
/obj/effect/turf_decal/siding/dark/corner,
@@ -26602,6 +26541,14 @@
dir = 1
},
/area/science/research)
+"nom" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "testlab";
+ name = "test chamber blast door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/science/explab)
"npi" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/turf_decal/stripes/line,
@@ -26730,23 +26677,6 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/central)
-"ntF" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/turf/open/floor/iron/dark/corner{
- dir = 4
- },
-/area/hallway/primary/central{
- name = "-2 Primary Hallway"
- })
-"ntZ" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/item/robot_suit/prebuilt,
-/turf/open/floor/iron,
-/area/science/robotics)
"nuD" = (
/obj/structure/closet/secure_closet/personal/cabinet,
/obj/item/clothing/under/misc/assistantformal,
@@ -26861,21 +26791,6 @@
/obj/item/coin/gold,
/turf/open/floor/carpet/orange,
/area/crew_quarters/dorms)
-"nxT" = (
-/obj/machinery/airalarm/directional/west,
-/obj/item/radio/intercom{
- dir = 1;
- pixel_x = 1;
- pixel_y = 23
- },
-/obj/structure/disposalpipe/trunk{
- dir = 2
- },
-/obj/structure/disposaloutlet{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
"nye" = (
/obj/effect/turf_decal/tile/dark_green/fourcorners/contrasted,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
@@ -26884,46 +26799,6 @@
},
/turf/open/floor/iron,
/area/hydroponics)
-"nyu" = (
-/obj/structure/table/reinforced,
-/obj/item/clipboard{
- pixel_x = -5;
- pixel_y = 3
- },
-/obj/item/paper/monitorkey{
- pixel_x = -5;
- pixel_y = 3
- },
-/obj/item/folder/yellow,
-/obj/item/toy/figure/ce{
- pixel_x = 8;
- pixel_y = 4
- },
-/obj/item/stamp/chief_engineer{
- pixel_x = -5;
- pixel_y = 5
- },
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 5
- },
-/obj/machinery/camera/autoname{
- dir = 8;
- network = list("ss13","engine")
- },
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Chief Engineer's Desk";
- departmentType = 4;
- name = "Chief Engineer RC";
- pixel_x = 32;
- pixel_y = 31
- },
-/obj/machinery/power/apc/auto_name/east,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/carpet/royalblue,
-/area/crew_quarters/heads/chief)
"nyB" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/structure/cable/yellow{
@@ -27105,12 +26980,6 @@
/obj/effect/spawner/lootdrop/maintenance/two,
/turf/open/floor/iron,
/area/maintenance/department/science/xenobiology)
-"nCn" = (
-/obj/effect/turf_decal/evac,
-/turf/open/floor/iron,
-/area/hallway/primary/central{
- name = "-2 Primary Hallway"
- })
"nDA" = (
/obj/structure/table,
/obj/machinery/fax/service,
@@ -27412,18 +27281,6 @@
/obj/structure/flora/rock,
/turf/open/floor/plating/grass,
/area/asteroid/paradise/surface)
-"nKx" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal/incinerator)
"nKB" = (
/obj/effect/turf_decal/sand/plating,
/turf/open/floor/sepia/planetary{
@@ -27511,6 +27368,26 @@
/obj/machinery/computer/prisoner/management,
/turf/open/floor/iron,
/area/bridge)
+"nOu" = (
+/obj/machinery/light,
+/obj/machinery/firealarm/directional/south,
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/structure/table,
+/obj/item/food/dough{
+ pixel_x = 4
+ },
+/obj/item/food/dough{
+ pixel_x = 9;
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/food/condiment/enzyme{
+ pixel_x = -5;
+ pixel_y = 9
+ },
+/turf/open/floor/iron/cafeteria,
+/area/crew_quarters/kitchen)
"nPk" = (
/obj/effect/turf_decal/sand/plating,
/obj/effect/decal/cleanable/dirt/dust,
@@ -27761,18 +27638,21 @@
/obj/structure/flora/ausbushes/fullgrass,
/turf/open/floor/plating/asteroid/planetary,
/area/asteroid/paradise)
-"nXZ" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
+"nXM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/dark/visible{
+ dir = 1
},
/turf/open/floor/catwalk_floor/iron_dark,
-/area/quartermaster/storage)
+/area/engine/engineering)
"nYl" = (
/obj/effect/turf_decal/tile/black/opposingcorners{
dir = 1
@@ -27784,6 +27664,32 @@
},
/turf/open/floor/iron/white,
/area/crew_quarters/heads/hor)
+"nYq" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ alpha = 180;
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_x = -30;
+ pixel_y = -2
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/hallway/primary/central{
+ name = "-2 Primary Hallway"
+ })
"nYE" = (
/obj/machinery/light/small{
dir = 1
@@ -28410,23 +28316,6 @@
"orc" = (
/turf/open/floor/iron/cafeteria_red,
/area/crew_quarters/cafeteria)
-"ord" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/item/radio/intercom{
- pixel_x = 32
- },
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/bot,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/iron/dark,
-/area/engine/engineering)
"oru" = (
/obj/structure/lattice/catwalk/over,
/obj/machinery/computer/apc_control{
@@ -28476,19 +28365,6 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/bar)
-"orF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/shower{
- dir = 8;
- name = "emergency shower"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/engine/engineering)
"orO" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/landmark/start/assistant,
@@ -28680,19 +28556,6 @@
},
/turf/open/floor/iron/dark,
/area/security/brig)
-"ovN" = (
-/obj/effect/landmark/start/assistant,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/crew_quarters/fitness/recreation)
"ovP" = (
/obj/structure/railing{
dir = 1
@@ -28751,6 +28614,16 @@
},
/turf/open/floor/iron,
/area/security/brig)
+"oxg" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/engine/engineering)
"oxj" = (
/obj/effect/turf_decal/bot{
dir = 1
@@ -28876,25 +28749,6 @@
"ozT" = (
/turf/open/floor/iron/grid/steel,
/area/medical/patients_rooms)
-"oAl" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/firealarm/directional/east,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/turf/open/floor/iron/dark,
-/area/engineering/hallway{
- name = "Engineering Viewing Platform"
- })
"oAv" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
@@ -28918,16 +28772,6 @@
},
/turf/open/floor/plating,
/area/crew_quarters/cafeteria)
-"oAN" = (
-/obj/machinery/atmospherics/components/binary/pump/on/layer4{
- dir = 8
- },
-/turf/open/floor/iron/dark/side{
- dir = 6
- },
-/area/hallway/primary/aft{
- name = "-3 Primary Hallway"
- })
"oBg" = (
/obj/machinery/camera/autoname{
network = list("ss13","rd")
@@ -28968,16 +28812,6 @@
},
/turf/open/floor/iron,
/area/security/brig)
-"oBs" = (
-/obj/machinery/atmospherics/components/binary/volume_pump/on/layer2{
- dir = 4
- },
-/turf/open/floor/iron/dark/side{
- dir = 4
- },
-/area/hallway/primary/aft{
- name = "-3 Primary Hallway"
- })
"oBS" = (
/obj/machinery/dna_scannernew,
/obj/effect/turf_decal/bot,
@@ -29024,6 +28858,23 @@
/area/hallway/primary/central{
name = "-2 Primary Hallway"
})
+"oDR" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 8;
+ name = "Medbay";
+ sortType = 9
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/medical/medbay/central)
"oEg" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -29037,6 +28888,13 @@
"oEl" = (
/turf/closed/wall/r_wall,
/area/security/detectives_office)
+"oEs" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/item/robot_suit/prebuilt,
+/turf/open/floor/iron,
+/area/science/robotics)
"oEv" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/glass,
@@ -29173,18 +29031,6 @@
/obj/effect/spawner/lootdrop/maintenance/two,
/turf/open/floor/plating,
/area/quartermaster/warehouse)
-"oGV" = (
-/obj/machinery/computer/bank_machine{
- dir = 1
- },
-/obj/effect/turf_decal/delivery,
-/obj/structure/sign/warning/electricshock{
- pixel_y = -32
- },
-/turf/open/floor/circuit/green{
- luminosity = 2
- },
-/area/security/nuke_storage)
"oHx" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/decal/cleanable/dirt/dust,
@@ -29769,19 +29615,6 @@
},
/turf/open/floor/iron/white,
/area/science/research)
-"oTT" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/crew_quarters/heads/hop)
"oUH" = (
/obj/structure/table/optable{
name = "Forensics Operating Table"
@@ -30096,6 +29929,25 @@
/area/hallway/primary/fore{
name = "-1 Primary Hallway"
})
+"pbq" = (
+/obj/machinery/door/airlock/command{
+ name = "Head of Personnel's Office";
+ req_access_txt = "57"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/crew_quarters/heads/hop)
"pbw" = (
/obj/machinery/door/airlock{
name = "Hydroponics";
@@ -30114,6 +29966,10 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/hydroponics)
+"pch" = (
+/obj/machinery/light/small,
+/turf/open/floor/iron/tech,
+/area/engine/engineering)
"pcu" = (
/obj/effect/turf_decal/tile/blue/half/contrasted{
dir = 8
@@ -30224,6 +30080,22 @@
},
/turf/open/floor/engine,
/area/science/xenobiology)
+"pfU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/dark/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/atmos)
"pgy" = (
/obj/structure/flora/ausbushes/sparsegrass,
/obj/structure/flora/ausbushes/lavendergrass,
@@ -30670,6 +30542,24 @@
/obj/machinery/iv_drip,
/turf/open/floor/iron/grid/steel,
/area/medical/patients_rooms)
+"pwo" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/table,
+/obj/item/storage/belt/utility/full/engi,
+/obj/item/rcl/pre_loaded,
+/obj/item/rcl/pre_loaded,
+/obj/item/clothing/ears/earmuffs{
+ pixel_x = -3;
+ pixel_y = -2
+ },
+/obj/item/clothing/ears/earmuffs{
+ pixel_x = -5;
+ pixel_y = 6
+ },
+/turf/open/floor/iron/dark,
+/area/engine/engineering)
"pwy" = (
/obj/structure/flora/ausbushes/sparsegrass,
/obj/structure/closet/crate/miningcar{
@@ -30717,20 +30607,6 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating,
/area/maintenance/department/cargo)
-"pyi" = (
-/obj/machinery/door/window/northleft{
- dir = 2
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/hallway/primary/fore{
- name = "-1 Primary Hallway"
- })
"pyw" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -31006,6 +30882,18 @@
dir = 10
},
/area/science/lab)
+"pFh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/dark/visible,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal/incinerator)
"pFA" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -31178,6 +31066,18 @@
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/bar)
+"pJO" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-16"
+ },
+/obj/effect/turf_decal/trimline/yellow,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/power/apc/auto_name/east,
+/obj/structure/cable/yellow,
+/turf/open/floor/pod/dark,
+/area/maintenance/department/medical/morgue)
"pKj" = (
/obj/structure/flora/rock/pile,
/obj/effect/turf_decal/sand/plating,
@@ -31245,6 +31145,24 @@
},
/turf/open/floor/iron/dark,
/area/storage/tech)
+"pLs" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk/multiz/down{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/medical/medbay/central)
"pLv" = (
/obj/effect/turf_decal/siding/white{
alpha = 100;
@@ -31401,21 +31319,6 @@
},
/turf/open/floor/iron,
/area/security/brig)
-"pNs" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/crew_quarters/heads/hop)
"pNv" = (
/turf/closed/wall/rust,
/area/quartermaster/sorting)
@@ -31663,6 +31566,14 @@
},
/turf/open/floor/iron,
/area/maintenance/disposal/incinerator)
+"pVj" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/power/apc/auto_name/east,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/turf/open/floor/iron,
+/area/maintenance/department/engine)
"pVO" = (
/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
dir = 9
@@ -32044,25 +31955,6 @@
/obj/machinery/flasher/portable,
/turf/open/floor/iron/dark,
/area/ai_monitored/security/armory)
-"qgf" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table,
-/obj/item/pipe_dispenser{
- pixel_x = 1;
- pixel_y = 12
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/item/clothing/glasses/meson{
- pixel_y = 1
- },
-/obj/item/clothing/glasses/meson{
- pixel_y = 1
- },
-/obj/item/clothing/glasses/meson{
- pixel_x = 2
- },
-/turf/open/floor/iron,
-/area/engine/engineering)
"qgj" = (
/obj/structure/flora/ausbushes/lavendergrass,
/obj/structure/flora/ausbushes/ywflowers,
@@ -32594,6 +32486,15 @@
/obj/machinery/space_heater,
/turf/open/floor/plating,
/area/maintenance/department/bridge)
+"qwZ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/engine/atmos)
"qxa" = (
/obj/structure/lattice/catwalk/over,
/obj/structure/chair/foldable,
@@ -32632,6 +32533,13 @@
},
/turf/open/floor/pod/dark,
/area/science/mixing)
+"qxI" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/engine,
+/area/science/explab)
"qxQ" = (
/obj/machinery/firealarm/directional/east,
/obj/effect/turf_decal/trimline/blue/filled/warning,
@@ -32793,6 +32701,26 @@
/area/engineering/hallway{
name = "Engineering Viewing Platform"
})
+"qDU" = (
+/obj/item/radio/intercom{
+ pixel_x = 33;
+ pixel_y = -3
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/engine/engineering)
"qEd" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -32922,18 +32850,6 @@
dir = 1
},
/area/asteroid/paradise/surface/water)
-"qJj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engineering)
"qJo" = (
/obj/structure/flora/ausbushes/fullgrass,
/turf/open/floor/plating/asteroid/planetary,
@@ -32983,21 +32899,6 @@
/area/hallway/primary/aft{
name = "-3 Primary Hallway"
})
-"qKE" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/power/apc/auto_name/east,
-/obj/structure/chair/office/light{
- dir = 1;
- pixel_y = 3
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/effect/landmark/start/scientist,
-/turf/open/floor/iron/grid/steel,
-/area/science/xenobiology)
"qKI" = (
/obj/machinery/portable_atmospherics/scrubber,
/obj/effect/turf_decal/bot{
@@ -33034,19 +32935,6 @@
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
/area/maintenance/department/medical/morgue)
-"qMs" = (
-/obj/structure/railing/corner{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/iron/dark,
-/area/engine/atmos)
"qMA" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -33160,25 +33048,6 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/bar)
-"qPR" = (
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/railing,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/atmos)
"qPX" = (
/obj/machinery/light{
dir = 8
@@ -33264,22 +33133,6 @@
/area/hallway/primary/aft{
name = "-3 Primary Hallway"
})
-"qRl" = (
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/disposalpipe/junction{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/medical/medbay/central)
"qRs" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/structure/barricade/wooden,
@@ -33461,19 +33314,28 @@
},
/turf/open/floor/plating,
/area/crew_quarters/heads/hor)
-"qWo" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+"qWg" = (
+/obj/structure/railing{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/techstorage/command,
+/obj/effect/turf_decal/delivery,
+/obj/item/radio/intercom{
+ pixel_y = 29
},
+/obj/machinery/power/apc/auto_name/east,
/obj/structure/cable/yellow{
- icon_state = "2-4"
+ icon_state = "0-8"
},
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/crew_quarters/fitness/recreation)
+/obj/machinery/camera/motion{
+ c_tag = "Technical Storage";
+ dir = 8;
+ name = "motion-sensitive Technical Storage";
+ network = list("ss13","engine")
+ },
+/turf/open/floor/iron/techmaint/planetary,
+/area/storage/tech)
"qWJ" = (
/obj/machinery/door/window/southleft{
dir = 4;
@@ -33835,13 +33697,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/plating,
/area/maintenance/department/engine/atmos)
-"rfl" = (
-/obj/effect/turf_decal/stripes/closeup{
- dir = 4
- },
-/obj/machinery/pipedispenser/disposal,
-/turf/open/floor/iron,
-/area/engine/engineering)
"rfn" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -34467,6 +34322,20 @@
/obj/structure/sign/departments/minsky/security/security,
/turf/closed/wall/r_wall,
/area/security/brig)
+"rrS" = (
+/obj/machinery/door/window/northleft{
+ dir = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/hallway/primary/fore{
+ name = "-1 Primary Hallway"
+ })
"rsb" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -34767,6 +34636,37 @@
},
/turf/open/floor/plating/asteroid/basalt/planetary,
/area/asteroid/paradise)
+"rAh" = (
+/obj/structure/table/glass,
+/obj/item/retractor{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/cautery{
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/item/hemostat,
+/obj/item/scalpel{
+ pixel_y = 12
+ },
+/obj/item/circular_saw,
+/obj/item/surgicaldrill{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/blood_filter{
+ pixel_x = -1;
+ pixel_y = 5
+ },
+/obj/machinery/defibrillator_mount{
+ pixel_y = -24
+ },
+/obj/item/storage/backpack/duffelbag/med/implant{
+ pixel_y = 4
+ },
+/turf/open/floor/iron,
+/area/medical/surgery)
"rAS" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
@@ -35299,16 +35199,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating/asteroid/basalt/planetary,
/area/asteroid/paradise)
-"rNF" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/bot,
-/obj/structure/closet/secure_closet/atmospherics{
- anchored = 1;
- req_access = null;
- req_one_access_txt = "11"
- },
-/turf/open/floor/iron,
-/area/engine/atmos)
"rNI" = (
/obj/structure/flora/rock/pile,
/turf/open/floor/plating/asteroid/planetary,
@@ -35453,16 +35343,6 @@
},
/turf/open/openspace,
/area/security/brig)
-"rSg" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/iron/dark,
-/area/engine/engineering)
"rSl" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -35635,6 +35515,18 @@
/obj/machinery/firealarm/directional/west,
/turf/open/floor/iron,
/area/bridge)
+"rYi" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/binary/pump{
+ name = "Fuel Pipe to Incinerator"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal/incinerator)
"rYt" = (
/turf/open/floor/carpet,
/area/asteroid/paradise/surface)
@@ -35691,18 +35583,6 @@
},
/turf/open/floor/plating,
/area/maintenance/department/engine)
-"rZG" = (
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/hallway/primary/central{
- name = "-2 Primary Hallway"
- })
"rZM" = (
/turf/open/floor/plating,
/area/maintenance/department/science/central)
@@ -35944,21 +35824,6 @@
/area/engineering/hallway{
name = "Engineering Viewing Platform"
})
-"seM" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engineering)
"sff" = (
/obj/structure/rack,
/obj/item/crowbar/red,
@@ -36235,21 +36100,6 @@
/area/hallway/primary/aft{
name = "-3 Primary Hallway"
})
-"slR" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/camera/autoname{
- dir = 4;
- network = list("ss13","engine")
- },
-/obj/machinery/status_display/evac{
- pixel_x = -32
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/engine/engineering)
"slY" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -36310,25 +36160,6 @@
/obj/structure/girder,
/turf/open/floor/plating,
/area/maintenance/department/cargo)
-"sof" = (
-/obj/structure/railing/corner{
- dir = 4
- },
-/obj/effect/turf_decal/siding/dark/corner{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/turf/open/floor/iron/dark/side{
- dir = 4
- },
-/area/hallway/primary/central{
- name = "-2 Primary Hallway"
- })
"som" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
@@ -36411,21 +36242,6 @@
/area/hallway/primary/fore{
name = "-1 Primary Hallway"
})
-"srp" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 9
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal/incinerator)
"sru" = (
/obj/structure/chair/wood/normal{
dir = 8
@@ -36435,6 +36251,19 @@
"srJ" = (
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/hop)
+"ssf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/shower{
+ dir = 8;
+ name = "emergency shower"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/engine/engineering)
"ssi" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -36533,24 +36362,6 @@
},
/turf/open/floor/iron,
/area/medical/medbay/central)
-"svQ" = (
-/obj/structure/railing/corner{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/turf/open/floor/iron/dark,
-/area/engineering/hallway{
- name = "Engineering Viewing Platform"
- })
"swh" = (
/obj/machinery/smartfridge/food,
/turf/closed/wall,
@@ -36935,6 +36746,13 @@
},
/turf/open/floor/wood,
/area/crew_quarters/theatre/backstage)
+"sIB" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/engine/atmos)
"sIH" = (
/obj/effect/turf_decal/tile/red/half/contrasted{
alpha = 180;
@@ -37369,13 +37187,6 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/storage)
-"sVw" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/power/port_gen/pacman,
-/turf/open/floor/iron/dark,
-/area/engine/engineering)
"sVZ" = (
/turf/open/floor/wood/broken,
/area/vacant_room/office)
@@ -37464,21 +37275,6 @@
/obj/structure/flora/ausbushes/lavendergrass,
/turf/open/floor/plating/asteroid/basalt/planetary,
/area/asteroid/paradise)
-"sXh" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/quartermaster/storage)
"sXp" = (
/obj/machinery/airalarm/directional/east,
/mob/living/simple_animal/pet/dog/corgi/Ian{
@@ -38122,6 +37918,22 @@
},
/turf/open/floor/iron,
/area/security/brig)
+"tjN" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/medical/medbay/central)
"tko" = (
/turf/closed/wall,
/area/security/detectives_office)
@@ -38342,6 +38154,13 @@
"tmO" = (
/turf/closed/wall/r_wall,
/area/chapel/office)
+"tmX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/engine/atmos)
"tnA" = (
/obj/structure/flora/ausbushes/ywflowers,
/obj/structure/window/reinforced{
@@ -38666,6 +38485,21 @@
},
/turf/open/floor/iron/dark,
/area/security/brig)
+"tts" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engineering)
"ttC" = (
/obj/structure/railing,
/obj/structure/lattice,
@@ -38892,6 +38726,23 @@
},
/turf/open/floor/iron/dark,
/area/medical/morgue)
+"tAy" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 8
+ },
+/area/hallway/primary/central{
+ name = "-2 Primary Hallway"
+ })
"tAz" = (
/obj/structure/railing{
dir = 4
@@ -39295,6 +39146,24 @@
/area/hallway/primary/fore{
name = "-1 Primary Hallway"
})
+"tID" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/general/hidden{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/tcommsat/computer)
"tII" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/turf_decal/bot,
@@ -39679,12 +39548,26 @@
/obj/machinery/door/firedoor,
/turf/open/floor/grass/no_border,
/area/crew_quarters/heads/chief)
-"tPX" = (
-/obj/item/toy/plush/lizard_plushie{
- name = "Swims-the-ocean"
+"tPV" = (
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Engineering Foyer";
+ req_one_access_txt = "32"
},
-/turf/open/floor/plating/beach/deep_water,
-/area/asteroid/paradise/surface/water)
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/engineering/hallway{
+ name = "Engineering Viewing Platform"
+ })
"tQX" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -40053,6 +39936,46 @@
},
/turf/open/floor/wood,
/area/vacant_room/office)
+"tVz" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/paper/monitorkey{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/folder/yellow,
+/obj/item/toy/figure/ce{
+ pixel_x = 8;
+ pixel_y = 4
+ },
+/obj/item/stamp/chief_engineer{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 5
+ },
+/obj/machinery/camera/autoname{
+ dir = 8;
+ network = list("ss13","engine")
+ },
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Chief Engineer's Desk";
+ departmentType = 4;
+ name = "Chief Engineer RC";
+ pixel_x = 32;
+ pixel_y = 31
+ },
+/obj/machinery/power/apc/auto_name/east,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/carpet/royalblue,
+/area/crew_quarters/heads/chief)
"tVK" = (
/obj/effect/turf_decal/siding/white{
dir = 1
@@ -40217,21 +40140,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron/grid/steel,
/area/medical/patients_rooms)
-"ubD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engineering)
"ubG" = (
/obj/machinery/conveyor{
dir = 1;
@@ -40240,6 +40148,19 @@
/obj/structure/plasticflaps,
/turf/open/floor/plating,
/area/science/mixing)
+"ucC" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/crew_quarters/heads/hop)
"ucF" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/box,
@@ -40248,6 +40169,35 @@
},
/turf/open/floor/carpet/red,
/area/crew_quarters/theatre/backstage)
+"udm" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-16"
+ },
+/obj/effect/turf_decal/trimline/yellow,
+/obj/effect/landmark/start/station_engineer,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/dark/visible{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/atmos)
"udq" = (
/obj/structure/flora/junglebush/b,
/obj/structure/window/reinforced{
@@ -40344,6 +40294,27 @@
},
/turf/open/floor/iron,
/area/science/mixing)
+"ugw" = (
+/obj/machinery/atmospherics/components/trinary/mixer/airmix/flipped{
+ dir = 8;
+ piping_layer = 2;
+ node1_concentration = 0.21;
+ node2_concentration = 0.79
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/obj/structure/window/plasma/reinforced{
+ dir = 1
+ },
+/obj/structure/window/plasma/reinforced{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/engine/atmos)
"ugW" = (
/turf/open/floor/plating/asteroid/planetary,
/area/quartermaster/storage)
@@ -40538,6 +40509,23 @@
},
/turf/open/floor/plating,
/area/crew_quarters/heads/chief)
+"ukz" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/item/reagent_containers/food/condiment/saltshaker{
+ pixel_x = 4;
+ pixel_y = 9
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "Chefwindow";
+ name = "Chef window"
+ },
+/obj/item/toy/figure/chef{
+ pixel_x = -4;
+ pixel_y = -1
+ },
+/turf/open/floor/iron/white,
+/area/crew_quarters/kitchen)
"ukS" = (
/obj/effect/turf_decal/siding/dark{
dir = 6
@@ -40569,6 +40557,21 @@
"uli" = (
/turf/closed/wall/r_wall/rust,
/area/engine/atmos)
+"ulo" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/power/apc/auto_name/east,
+/obj/structure/chair/office/light{
+ dir = 1;
+ pixel_y = 3
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/effect/landmark/start/scientist,
+/turf/open/floor/iron/grid/steel,
+/area/science/xenobiology)
"uly" = (
/turf/closed/wall,
/area/security/nuke_storage)
@@ -40618,23 +40621,6 @@
},
/turf/open/floor/iron,
/area/medical/storage)
-"uno" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/turf/open/floor/iron/dark/side{
- dir = 8
- },
-/area/hallway/primary/central{
- name = "-2 Primary Hallway"
- })
"unp" = (
/obj/effect/turf_decal/delivery,
/obj/structure/cable/yellow{
@@ -41000,6 +40986,11 @@
dir = 8
},
/area/bridge)
+"uuH" = (
+/obj/effect/turf_decal/delivery,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/engine,
+/area/science/explab)
"uvZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 1
@@ -41526,18 +41517,6 @@
/obj/structure/closet/firecloset/full,
/turf/open/floor/iron,
/area/maintenance/department/cargo)
-"uMm" = (
-/obj/structure/cable/yellow{
- icon_state = "1-16"
- },
-/obj/effect/turf_decal/trimline/yellow,
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/power/apc/auto_name/east,
-/obj/structure/cable/yellow,
-/turf/open/floor/pod/dark,
-/area/maintenance/department/medical/morgue)
"uMJ" = (
/obj/machinery/computer/xenoartifact_console,
/obj/effect/turf_decal/bot,
@@ -41654,15 +41633,6 @@
},
/turf/open/floor/iron/dark,
/area/teleporter)
-"uPP" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/iron,
-/area/engine/atmos)
"uPQ" = (
/obj/machinery/portable_atmospherics/canister/nitrogen,
/obj/effect/turf_decal/bot,
@@ -41740,26 +41710,6 @@
slowdown = 0
},
/area/asteroid/paradise/surface)
-"uRk" = (
-/obj/machinery/door/airlock/engineering/glass{
- name = "Engineering Foyer";
- req_one_access_txt = "32"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/turf/open/floor/iron/dark,
-/area/engineering/hallway{
- name = "Engineering Viewing Platform"
- })
"uRn" = (
/obj/effect/turf_decal/stripes/line,
/obj/structure/fence/cut{
@@ -41792,25 +41742,12 @@
/obj/machinery/door/firedoor,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"uRW" = (
-/obj/item/radio/intercom{
- pixel_x = 33;
- pixel_y = -3
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/obj/machinery/light{
+"uRJ" = (
+/obj/effect/turf_decal/stripes/closeup{
dir = 4
},
-/turf/open/floor/iron/dark,
+/obj/machinery/pipedispenser/disposal,
+/turf/open/floor/iron,
/area/engine/engineering)
"uSd" = (
/obj/effect/turf_decal/sand/plating,
@@ -42355,6 +42292,17 @@
},
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/bar)
+"vdB" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "External Gas to Loop"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/firealarm/directional/south,
+/obj/machinery/light,
+/turf/open/floor/iron/dark,
+/area/engine/engineering)
"vdC" = (
/obj/structure/railing/corner{
dir = 1
@@ -42439,6 +42387,19 @@
/obj/effect/spawner/lootdrop/maintenance/two,
/turf/open/floor/plating,
/area/maintenance/department/science/xenobiology)
+"vgF" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/crew_quarters/heads/hop)
"vgG" = (
/turf/closed/wall,
/area/engine/atmos)
@@ -42572,6 +42533,17 @@
},
/turf/open/floor/plating,
/area/maintenance/department/bridge)
+"vkV" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/crew_quarters/fitness/recreation)
"vlt" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 4
@@ -42807,42 +42779,6 @@
"vqI" = (
/turf/closed/mineral/random/air,
/area/asteroid/paradise)
-"vrf" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engineering)
-"vrl" = (
-/obj/machinery/atmospherics/components/trinary/mixer/airmix/flipped{
- dir = 8;
- piping_layer = 2;
- node1_concentration = 0.21;
- node2_concentration = 0.79
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
- },
-/obj/structure/window/plasma/reinforced{
- dir = 1
- },
-/obj/structure/window/plasma/reinforced{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/engine/atmos)
"vrq" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/box,
@@ -42944,37 +42880,20 @@
},
/turf/open/floor/plating,
/area/maintenance/department/science/central)
-"vtL" = (
-/obj/structure/railing/corner{
- dir = 1
- },
-/obj/effect/turf_decal/siding/dark/corner{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/turf/open/floor/iron/dark/side{
- dir = 8
- },
-/area/hallway/primary/central{
- name = "-2 Primary Hallway"
- })
-"vtZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
+"vtT" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+ dir = 6
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/manifold/dark/visible{
- dir = 1
+/obj/machinery/light_switch{
+ pixel_x = -25;
+ pixel_y = -5
},
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engineering)
+/turf/open/floor/iron/white,
+/area/science/explab)
"vuh" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/box,
@@ -43099,6 +43018,17 @@
},
/turf/open/floor/carpet/blue,
/area/crew_quarters/heads/hop)
+"vwI" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/dark/visible{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engineering)
"vwV" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -43171,6 +43101,23 @@
},
/turf/open/floor/iron/sepia,
/area/quartermaster/storage)
+"vAb" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ pixel_x = 32
+ },
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/engine/engineering)
"vBm" = (
/obj/machinery/door/airlock{
name = "Service Hall";
@@ -43438,23 +43385,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/openspace,
/area/asteroid/paradise)
-"vLB" = (
-/obj/structure/table/optable{
- pixel_y = 7
- },
-/obj/item/surgical_drapes{
- pixel_y = 4
- },
-/obj/machinery/light,
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/item/clothing/gloves/color/latex{
- pixel_x = -1;
- pixel_y = -1
- },
-/turf/open/floor/iron,
-/area/medical/surgery)
"vLP" = (
/turf/closed/wall/r_wall,
/area/storage/tech)
@@ -43729,6 +43659,17 @@
/area/hallway/primary/aft{
name = "-3 Primary Hallway"
})
+"vUe" = (
+/obj/machinery/portable_atmospherics/canister,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/engine/engineering)
"vUl" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -43751,6 +43692,24 @@
},
/turf/open/floor/iron,
/area/security/prison)
+"vUQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/dark/visible{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/atmos)
"vVo" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -43917,24 +43876,6 @@
},
/turf/open/floor/carpet/blue,
/area/crew_quarters/heads/cmo)
-"vYm" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/manifold/general/hidden{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/tcommsat/computer)
"vYB" = (
/obj/effect/turf_decal/tile/yellow/anticorner/contrasted,
/obj/item/kirbyplants/random,
@@ -44001,6 +43942,19 @@
},
/turf/open/floor/iron,
/area/maintenance/disposal/incinerator)
+"vZP" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/item/wallframe/extinguisher_cabinet{
+ pixel_x = -1;
+ pixel_y = 31
+ },
+/obj/item/storage/toolbox/electrical,
+/obj/item/clothing/gloves/color/yellow,
+/turf/open/floor/iron,
+/area/engine/atmos)
"waf" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 4
@@ -44091,20 +44045,6 @@
name = "mainframe floor"
},
/area/tcommsat/server)
-"wbG" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk/multiz/down{
- dir = 8
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/hallway/primary/fore{
- name = "-1 Primary Hallway"
- })
"wbZ" = (
/obj/structure/musician/piano{
icon_state = "piano"
@@ -44692,6 +44632,22 @@
},
/turf/open/floor/plating,
/area/maintenance/department/engine)
+"wqX" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/effect/turf_decal/evac,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
+/turf/open/floor/iron,
+/area/hallway/primary/central{
+ name = "-2 Primary Hallway"
+ })
"wrb" = (
/obj/effect/turf_decal/tile/yellow/half/contrasted{
alpha = 180;
@@ -44782,6 +44738,16 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating/asteroid/planetary,
/area/quartermaster/storage)
+"wuS" = (
+/obj/machinery/atmospherics/components/binary/pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 6
+ },
+/area/hallway/primary/aft{
+ name = "-3 Primary Hallway"
+ })
"wvu" = (
/obj/structure/bed{
dir = 8
@@ -45048,6 +45014,16 @@
},
/turf/open/floor/iron,
/area/security/prison)
+"wCG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/power/apc/auto_name/east,
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/science/central)
"wDb" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -45205,6 +45181,16 @@
},
/turf/open/floor/plating/asteroid/planetary,
/area/asteroid/paradise)
+"wFP" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/hallway/primary/central{
+ name = "-2 Primary Hallway"
+ })
"wGp" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/decal/cleanable/dirt/dust,
@@ -45256,24 +45242,6 @@
},
/turf/open/floor/iron/dark,
/area/maintenance/disposal)
-"wHg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/atmos)
"wHw" = (
/obj/structure/stairs{
dir = 8
@@ -45316,6 +45284,13 @@
},
/turf/open/floor/iron/sepia,
/area/quartermaster/storage)
+"wIp" = (
+/obj/machinery/camera/autoname{
+ dir = 8;
+ network = list("ss13","rd")
+ },
+/turf/open/floor/engine,
+/area/science/explab)
"wIv" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow,
@@ -45384,6 +45359,21 @@
},
/turf/open/openspace,
/area/quartermaster/qm)
+"wLQ" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/central{
+ name = "-2 Primary Hallway"
+ })
"wLS" = (
/obj/structure/railing/corner{
dir = 4
@@ -45552,6 +45542,21 @@
},
/turf/open/floor/iron/white/side,
/area/science/lab)
+"wON" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/camera/autoname{
+ dir = 4;
+ network = list("ss13","engine")
+ },
+/obj/machinery/status_display/evac{
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/engine/engineering)
"wOQ" = (
/obj/effect/decal/cleanable/oil,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
@@ -46219,24 +46224,6 @@
},
/turf/open/floor/plating/asteroid/planetary,
/area/asteroid/paradise)
-"xip" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/table,
-/obj/item/storage/belt/utility/full/engi,
-/obj/item/rcl/pre_loaded,
-/obj/item/rcl/pre_loaded,
-/obj/item/clothing/ears/earmuffs{
- pixel_x = -3;
- pixel_y = -2
- },
-/obj/item/clothing/ears/earmuffs{
- pixel_x = -5;
- pixel_y = 6
- },
-/turf/open/floor/iron/dark,
-/area/engine/engineering)
"xiu" = (
/obj/effect/turf_decal/trimline/white/line{
dir = 1
@@ -46537,18 +46524,6 @@
},
/turf/open/floor/plating/rust,
/area/science/test_area)
-"xoN" = (
-/obj/structure/table,
-/obj/item/airlock_painter{
- pixel_y = 4
- },
-/obj/item/storage/toolbox/electrical,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/item/clothing/gloves/color/yellow,
-/turf/open/floor/iron/dark,
-/area/engine/engineering)
"xoR" = (
/obj/effect/turf_decal/siding/wood{
dir = 10
@@ -46739,6 +46714,18 @@
/area/hallway/primary/central{
name = "-2 Primary Hallway"
})
+"xsc" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal/incinerator)
"xsj" = (
/obj/effect/turf_decal/siding/wood{
dir = 5
@@ -47061,6 +47048,18 @@
/obj/effect/landmark/start/scientist,
/turf/open/floor/iron/white/side,
/area/science/lab)
+"xAy" = (
+/obj/structure/table,
+/obj/item/airlock_painter{
+ pixel_y = 4
+ },
+/obj/item/storage/toolbox/electrical,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/item/clothing/gloves/color/yellow,
+/turf/open/floor/iron/dark,
+/area/engine/engineering)
"xAQ" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/spawner/structure/window/hollow/survival_pod/directional,
@@ -47218,28 +47217,6 @@
/obj/structure/closet/emcloset/anchored,
/turf/open/floor/iron,
/area/maintenance/department/bridge)
-"xFT" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/techstorage/command,
-/obj/effect/turf_decal/delivery,
-/obj/item/radio/intercom{
- pixel_y = 29
- },
-/obj/machinery/power/apc/auto_name/east,
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/machinery/camera/motion{
- c_tag = "Technical Storage";
- dir = 8;
- name = "motion-sensitive Technical Storage";
- network = list("ss13","engine")
- },
-/turf/open/floor/iron/techmaint/planetary,
-/area/storage/tech)
"xGl" = (
/obj/effect/turf_decal/siding/white{
alpha = 100
@@ -47254,6 +47231,21 @@
},
/turf/open/floor/plating/asteroid/planetary,
/area/crew_quarters/dorms)
+"xGw" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction/flip{
+ dir = 2
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/crew_quarters/heads/hop)
"xGG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 10
@@ -47466,6 +47458,21 @@
/obj/structure/ore_box,
/turf/open/floor/plating/asteroid/planetary,
/area/quartermaster/storage)
+"xKs" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/crew_quarters/heads/hop)
"xKF" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -47493,18 +47500,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/sorting)
-"xKZ" = (
-/obj/structure/filingcabinet,
-/obj/item/folder/documents,
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 1
- },
-/obj/machinery/power/apc/auto_name/east,
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/turf/open/floor/iron/dark,
-/area/security/nuke_storage)
"xLc" = (
/obj/item/paper/guides/jobs/medical/morgue,
/obj/effect/turf_decal/bot,
@@ -47861,6 +47856,19 @@
},
/turf/open/floor/carpet/red,
/area/medical/exam_room)
+"xUc" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/item/pickaxe,
+/obj/machinery/firealarm/directional/north,
+/obj/item/clothing/mask/gas/explorer{
+ pixel_x = -5;
+ pixel_y = 6
+ },
+/turf/open/floor/iron,
+/area/engine/atmos)
"xUk" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -47932,13 +47940,6 @@
},
/turf/open/floor/plating,
/area/storage/primary)
-"xWb" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/science/robotics)
"xWe" = (
/obj/structure/lattice,
/turf/open/openspace,
@@ -47987,6 +47988,23 @@
},
/turf/open/floor/iron,
/area/security/brig)
+"xXE" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/engineering/hallway{
+ name = "Engineering Viewing Platform"
+ })
"xXH" = (
/obj/effect/turf_decal/sand/plating,
/obj/structure/fans/tiny{
@@ -48012,15 +48030,6 @@
/obj/effect/spawner/lootdrop/gambling,
/turf/open/floor/carpet/blue,
/area/crew_quarters/cafeteria)
-"xZg" = (
-/obj/machinery/power/emitter/welded{
- dir = 4
- },
-/obj/effect/turf_decal/bot,
-/obj/structure/cable/yellow,
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/engine/engineering)
"xZu" = (
/obj/structure/railing{
dir = 8
@@ -48078,6 +48087,14 @@
dir = 4
},
/area/medical/genetics/cloning)
+"yaU" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/bot,
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/open/floor/iron,
+/area/engine/engineering)
"yaY" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/structure/cable/yellow{
@@ -48202,27 +48219,6 @@
},
/turf/open/floor/iron,
/area/maintenance/department/crew_quarters/dorms)
-"yek" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 10
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engineering)
"yet" = (
/turf/open/floor/plating/beach/coastline_b{
dir = 1
@@ -48308,6 +48304,12 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/iron,
/area/maintenance/department/crew_quarters/dorms)
+"ygc" = (
+/obj/item/toy/plush/lizard_plushie{
+ name = "Swims-the-ocean"
+ },
+/turf/open/floor/plating/beach/deep_water,
+/area/asteroid/paradise/surface/water)
"ygB" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron/dark/side{
@@ -48326,23 +48328,6 @@
},
/turf/open/floor/iron,
/area/engine/engineering)
-"yhn" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 4
- },
-/obj/structure/railing,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/atmos)
"yib" = (
/obj/effect/turf_decal/tile/blue{
dir = 8
@@ -48371,6 +48356,21 @@
/obj/effect/decal/cleanable/food/egg_smudge,
/turf/open/floor/iron/cafeteria,
/area/crew_quarters/kitchen)
+"yjl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/dark/visible{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engineering)
"yjX" = (
/obj/effect/spawner/structure/window/plasma/reinforced,
/obj/machinery/atmospherics/pipe/simple/green/visible,
@@ -57597,7 +57597,7 @@ hbl
uli
mgL
bKc
-vrl
+ugw
cnW
qdc
tIa
@@ -58850,9 +58850,9 @@ dzD
kTN
riv
jap
-ovN
-qWo
-dGX
+aIa
+eZF
+vkV
oMA
xBP
iKu
@@ -58882,7 +58882,7 @@ jOo
jOo
jRB
vgG
-iHQ
+vZP
xQu
aby
dXj
@@ -59396,7 +59396,7 @@ jOo
jOo
jOo
vgG
-cXM
+xUc
lly
fia
ycz
@@ -59896,7 +59896,7 @@ mIY
qZA
qZA
rMK
-nXZ
+axf
tVY
qVO
oZa
@@ -59912,7 +59912,7 @@ tww
vci
eJz
fqM
-qPR
+lll
fVf
dzW
kMN
@@ -60153,7 +60153,7 @@ duC
eog
lxp
rMK
-nXZ
+axf
eVv
jFB
wzA
@@ -60166,15 +60166,15 @@ uly
tpD
tHB
jxW
-oGV
+lsu
eJz
qUr
-yhn
+ipm
cQe
nAD
-jZf
-bsk
-fen
+fAi
+rYi
+pFh
fBG
lLa
ata
@@ -60410,7 +60410,7 @@ pHJ
gdE
vFW
qcy
-sXh
+mCw
nUa
eoY
lqI
@@ -60425,11 +60425,11 @@ dEU
cBs
hBl
eJz
-klc
-adp
-lrs
+mEL
+udm
+pfU
teA
-srp
+cxL
mLQ
niN
ufL
@@ -60682,11 +60682,11 @@ tHB
bAQ
klr
eJz
-rNF
-wHg
-uPP
+kvM
+vUQ
+qwZ
nAD
-nKx
+xsc
csL
xpn
dzW
@@ -60926,7 +60926,7 @@ rru
viT
bdN
wHD
-bhy
+lqc
cfv
xoc
gWp
@@ -60934,7 +60934,7 @@ jPg
qrl
pjs
uly
-xKZ
+kDx
pIl
ptb
roc
@@ -61198,7 +61198,7 @@ eJz
eJz
qOg
gXc
-mhM
+yaU
kbq
dzW
ihL
@@ -61455,12 +61455,12 @@ vLP
xTu
eOD
gXc
-cUd
+jFC
pVY
uUK
-rfl
+uRJ
ecq
-sVw
+aOy
sXB
gqv
gqv
@@ -61713,7 +61713,7 @@ rzg
cTC
upw
oNv
-slR
+wON
jsW
xkz
xkz
@@ -61963,19 +61963,19 @@ feI
tNX
cii
vLP
-xFT
+qWg
oeh
vLP
vgi
mVd
-qJj
+jeF
udt
hAp
wdX
rof
-qgf
-hGv
-bYx
+kCq
+kXq
+iPB
bGW
uAD
bcS
@@ -62225,16 +62225,16 @@ vLP
vLP
top
lts
-vtZ
+nXM
eCn
aIx
fMC
bFF
-uRW
+qDU
wTI
cvP
qzg
-rSg
+oxg
hsv
tVm
jOz
@@ -62482,10 +62482,10 @@ tlH
pVY
pVY
vVo
-ubD
+yjl
wWC
scb
-fRK
+vUe
paJ
dXI
gWU
@@ -62494,7 +62494,7 @@ ezZ
dXI
uAb
wzE
-aIu
+pch
lCS
eGc
mmJ
@@ -62739,9 +62739,9 @@ bHK
onj
rZf
oFu
-ubD
+yjl
wWC
-dQZ
+hDR
dXI
dXI
ifQ
@@ -62751,7 +62751,7 @@ cdq
xiB
lSc
uTP
-elZ
+aJw
sXB
cFP
rzV
@@ -62996,7 +62996,7 @@ nrc
fpH
wEX
pHp
-ubD
+yjl
wWC
pLM
yjX
@@ -63253,7 +63253,7 @@ sMX
ldp
mNP
wDK
-dUB
+vwI
vuh
xOh
pCa
@@ -63510,7 +63510,7 @@ cSZ
ewS
rMf
pHp
-ubD
+yjl
wWC
tBj
vvK
@@ -63758,8 +63758,8 @@ gQE
iuO
gnm
rLR
-oBs
-oAN
+exs
+wuS
gzS
gCg
uWx
@@ -63767,9 +63767,9 @@ kaw
gNi
fFu
pHp
-ubD
+yjl
wWC
-iJo
+vdB
dXI
dXI
ocx
@@ -63779,7 +63779,7 @@ tSB
xiB
lSc
uTP
-elZ
+aJw
sXB
vqI
qnE
@@ -64024,7 +64024,7 @@ sui
gQn
rIZ
pHp
-eqA
+mzu
wWC
bRj
jwj
@@ -64036,7 +64036,7 @@ gFg
dXI
jrk
nAy
-xZg
+nlX
sXB
xqU
eHe
@@ -64281,16 +64281,16 @@ pVY
pVY
dta
kXQ
-yek
+ejo
dHA
gYA
gYA
wpu
-iAO
+dkl
aje
taA
ePy
-jxx
+eib
azB
oYA
gPs
@@ -64538,7 +64538,7 @@ cTa
bwz
aLe
pkS
-jUx
+tts
tRY
nwE
vmX
@@ -64782,7 +64782,7 @@ esx
evW
qXK
gBj
-gYJ
+dKK
iZu
dTP
sFh
@@ -64790,9 +64790,9 @@ qXK
evW
woV
lEQ
-dvF
-seM
-vrf
+cvu
+hos
+khm
ajT
fQW
wTG
@@ -65054,7 +65054,7 @@ oLV
rIq
bJQ
xRl
-orF
+ssf
vKD
rPo
rPo
@@ -65316,10 +65316,10 @@ iUP
uTU
uTU
nWu
-ord
+vAb
nWu
-xoN
-xip
+xAy
+pwo
dEz
vpm
sXB
@@ -65811,7 +65811,7 @@ eZt
mNH
hJA
uIW
-qKE
+ulo
fSJ
mZk
mNH
@@ -67363,7 +67363,7 @@ hCs
hzQ
btw
rEz
-idv
+pVj
oRo
woV
lyU
@@ -69455,8 +69455,8 @@ sLz
mKz
lZV
rNv
-jRA
-jEt
+ccE
+jkD
bXA
vqI
vqI
@@ -122849,7 +122849,7 @@ eWL
tGT
tGT
kND
-uMm
+pJO
vcY
hqw
pjN
@@ -123878,8 +123878,8 @@ bxt
xgH
bkn
nyZ
-mVw
-dZS
+lUo
+hjp
fRu
lKm
axZ
@@ -123910,7 +123910,7 @@ mEr
oCE
cMn
asv
-kfC
+sIB
tHO
gVJ
lJP
@@ -124167,7 +124167,7 @@ oCE
oCE
cMn
qGN
-lkA
+tmX
quQ
aLc
jDC
@@ -124936,7 +124936,7 @@ hoN
pnn
vgG
tYX
-hZc
+lJw
eHd
cny
jUM
@@ -125193,7 +125193,7 @@ iKw
csG
cJP
kgl
-qMs
+fMJ
qwi
eBA
gKl
@@ -126222,8 +126222,8 @@ dYJ
aVS
gDY
dJL
-vYm
-aXv
+tID
+bge
iED
caJ
caJ
@@ -126437,7 +126437,7 @@ xdb
qiO
llQ
umB
-jQe
+nOu
bDD
ejD
tuz
@@ -126949,7 +126949,7 @@ afw
laf
gcq
swh
-hjG
+ukz
vsM
cEM
bDD
@@ -126986,7 +126986,7 @@ eQt
wcq
bbJ
tko
-aFe
+hKX
tTt
oEl
gZh
@@ -128007,16 +128007,16 @@ xgC
bev
teC
kMR
-gZf
-kip
-heo
-lcS
-uno
-gIE
-uRk
-oAl
-svQ
-lYL
+wqX
+wLQ
+dCq
+msj
+tAy
+nYq
+tPV
+lnH
+kWQ
+xXE
hyx
mAS
ifA
@@ -128243,7 +128243,7 @@ gyy
gyy
tbo
uxJ
-rZG
+iyn
jzj
rId
rId
@@ -128264,8 +128264,8 @@ rId
rId
rId
enr
-sof
-ntF
+kvW
+mWk
ndP
clc
noe
@@ -128500,7 +128500,7 @@ gyy
gyy
gyy
gak
-rZG
+iyn
jzj
rId
rId
@@ -129014,7 +129014,7 @@ gyy
gyy
gyy
gak
-rZG
+iyn
jzj
rId
rId
@@ -129043,7 +129043,7 @@ ddQ
ddQ
tPD
hsN
-nyu
+tVz
vJG
aoH
oru
@@ -129271,7 +129271,7 @@ gyy
gyy
qsE
tju
-rZG
+iyn
jzj
rId
rId
@@ -129292,8 +129292,8 @@ rId
rId
rId
vga
-vtL
-css
+cRo
+wFP
ndP
psr
qjF
@@ -129549,7 +129549,7 @@ urc
uma
qjF
xZy
-nCn
+cNI
ndP
pKX
tTb
@@ -132621,7 +132621,7 @@ bDW
jTq
aAV
wMa
-aiv
+jsc
aPc
aPc
mvX
@@ -132878,8 +132878,8 @@ tcM
pMZ
aAV
uMJ
-bMy
-llo
+dSU
+vtT
rAS
utc
aou
@@ -133134,7 +133134,7 @@ olN
ttD
isW
aAV
-aUG
+abU
wjY
lhu
aPc
@@ -133391,9 +133391,9 @@ tss
uWZ
rZM
aAV
-aRk
-aIk
-ajG
+nom
+gmi
+nom
aAV
plG
tEl
@@ -133649,7 +133649,7 @@ xny
wZl
hYK
aYd
-aqy
+fXL
aYd
aAV
aJn
@@ -133905,9 +133905,9 @@ olN
olN
pyQ
nFR
-awc
-tyz
-ake
+qxI
+bOR
+uuH
aAV
aBR
gyH
@@ -134162,9 +134162,9 @@ toA
olN
jBP
nFR
-aKy
-acC
tyz
+jEr
+wIp
aAV
abC
laK
@@ -134418,7 +134418,7 @@ rZM
rZM
cae
qBi
-cae
+aAV
nFR
aAV
aAV
@@ -134942,7 +134942,7 @@ auW
fcC
jsb
aqu
-nxT
+cne
wHe
swz
piQ
@@ -135196,7 +135196,7 @@ aRY
aTx
mMZ
aJe
-fdd
+lnW
mjt
aqu
gXz
@@ -189420,7 +189420,7 @@ jUT
hUe
xpI
xjt
-mwU
+rAh
uhc
qhT
qhT
@@ -189668,16 +189668,16 @@ dgE
wDb
ibc
rPF
-imH
-dMU
-qRl
+cjo
+pLs
+tjN
pTS
gPE
tWb
lol
bAp
mth
-vLB
+azy
uhc
pub
pub
@@ -189926,7 +189926,7 @@ iyS
iyS
iyS
pMY
-mAQ
+oDR
svO
uhc
lVB
@@ -190183,7 +190183,7 @@ pcZ
nlH
iyS
wEt
-gLX
+iDi
thg
aSN
pEf
@@ -193522,7 +193522,7 @@ jNd
rHi
soL
gim
-lzD
+cpR
lOG
cKi
ajZ
@@ -194066,7 +194066,7 @@ bpo
kBY
tkJ
ofn
-wbG
+cgb
sSN
ayl
rMs
@@ -194323,7 +194323,7 @@ nYL
hAh
koS
sgc
-pyi
+rrS
pZI
uYb
wIQ
@@ -194580,7 +194580,7 @@ vRY
kBY
fhb
rKr
-jMP
+llU
eBQ
aFR
kVj
@@ -196124,7 +196124,7 @@ xWg
srJ
ahk
vwV
-hVM
+pbq
voM
gNX
uOZ
@@ -196381,7 +196381,7 @@ dur
iPI
aSp
aRP
-ggT
+gBO
srJ
vwV
srJ
@@ -196613,7 +196613,7 @@ eVJ
ohi
iWs
xiY
-xWb
+eni
enN
eFS
auE
@@ -196638,7 +196638,7 @@ dur
agi
hOi
oLn
-pNs
+xKs
fLl
kcX
srJ
@@ -196870,7 +196870,7 @@ fyA
fyA
pKx
wOQ
-cpJ
+cXy
jxw
eFS
mxd
@@ -196892,9 +196892,9 @@ fqz
gPq
uuD
aqx
-izQ
-oTT
-jLH
+vgF
+ucC
+xGw
uEY
ifB
epZ
@@ -197383,7 +197383,7 @@ bXW
cag
sGo
hvJ
-ntZ
+oEs
nhY
agT
aiA
@@ -198667,7 +198667,7 @@ olN
pZC
tUu
vtn
-iOV
+wCG
tWu
aPc
fJp
@@ -271938,7 +271938,7 @@ sNi
sNi
qCg
qCg
-tPX
+ygc
qCg
sNi
sNi
diff --git a/_maps/map_files/FlandStation/FlandStation.dmm b/_maps/map_files/FlandStation/FlandStation.dmm
index 0afa31a7a810e..0641297c676dd 100644
--- a/_maps/map_files/FlandStation/FlandStation.dmm
+++ b/_maps/map_files/FlandStation/FlandStation.dmm
@@ -19,17 +19,6 @@
},
/turf/open/floor/vault,
/area/engine/engine_room)
-"aaj" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/status_display/evac{
- pixel_y = 32
- },
-/turf/open/floor/grass/no_border,
-/area/crew_quarters/bar/atrium)
"aam" = (
/obj/structure/lattice,
/obj/item/shard,
@@ -72,24 +61,6 @@
},
/turf/open/floor/iron/dark,
/area/chapel/main)
-"aaS" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/end{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/red/end{
- dir = 4
- },
-/obj/machinery/door/airlock/external{
- name = "Labour Shuttle airlock"
- },
-/obj/machinery/atmospherics/pipe/layer_manifold{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/bridge)
"abf" = (
/obj/item/shard{
icon_state = "medium"
@@ -115,6 +86,14 @@
"abm" = (
/turf/closed/wall,
/area/construction)
+"aby" = (
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/grass/no_border,
+/area/science/lobby)
"abz" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -154,6 +133,13 @@
},
/turf/open/floor/iron/grid,
/area/medical/surgery)
+"abH" = (
+/obj/machinery/power/tracker,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/port)
"abI" = (
/turf/closed/wall/mineral/plastitanium,
/area/chapel/main)
@@ -453,6 +439,17 @@
},
/turf/open/floor/carpet/blue,
/area/crew_quarters/heads/hop)
+"agp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"agC" = (
/obj/effect/decal/cleanable/xenoblood,
/turf/open/floor/plating,
@@ -612,27 +609,6 @@
},
/turf/open/floor/iron,
/area/maintenance/aft)
-"ait" = (
-/obj/structure/table,
-/obj/effect/turf_decal/bot,
-/obj/item/stack/sheet/plasteel{
- amount = 15
- },
-/obj/item/bodypart/r_arm/robot{
- pixel_x = 3
- },
-/obj/item/bodypart/l_arm/robot{
- pixel_x = -3
- },
-/obj/item/stack/cable_coil/white,
-/obj/item/assembly/flash/handheld/weak,
-/obj/item/assembly/flash/handheld/weak,
-/obj/item/assembly/flash/handheld/weak,
-/obj/item/assembly/flash/handheld/weak,
-/obj/item/assembly/flash/handheld/weak,
-/obj/item/assembly/flash/handheld/weak,
-/turf/open/floor/iron/grid/steel,
-/area/science/robotics/lab)
"aix" = (
/obj/item/stack/cable_coil,
/obj/structure/lattice/catwalk,
@@ -926,23 +902,6 @@
/obj/machinery/firealarm/directional/north,
/turf/open/floor/iron/white,
/area/medical/medbay/central)
-"amm" = (
-/obj/effect/landmark/start/virologist,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/effect/turf_decal/trimline/green/filled/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/iron/tiled/light,
-/area/medical/virology)
"amr" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating/airless,
@@ -989,6 +948,23 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"amP" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table,
+/obj/item/clothing/mask/balaclava,
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_x = 5
+ },
+/obj/item/assembly/signaler{
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/obj/item/electropack,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/iron/techmaint,
+/area/security/execution/education)
"amS" = (
/obj/structure/lattice/catwalk/over,
/turf/open/floor/plating,
@@ -1101,18 +1077,15 @@
},
/turf/open/floor/iron/checker,
/area/quartermaster/storage)
-"aoC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
+"aoB" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/catwalk_floor,
-/area/engine/atmos)
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/grid/steel,
+/area/medical/virology)
"aoI" = (
/obj/machinery/door/airlock{
id_tag = "stallfood";
@@ -1127,21 +1100,6 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron/cafeteria,
/area/hydroponics/garden)
-"aoP" = (
-/obj/effect/turf_decal/plaque{
- icon_state = "L7"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"aoW" = (
/obj/structure/girder,
/turf/open/floor/plating/foam,
@@ -1330,17 +1288,6 @@
/obj/machinery/firealarm/directional/west,
/turf/open/floor/vault,
/area/engine/engine_room)
-"asj" = (
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/status_display/evac{
- pixel_y = 32
- },
-/turf/open/floor/grass/no_border,
-/area/crew_quarters/bar/atrium)
"ask" = (
/obj/effect/turf_decal/bot,
/obj/effect/decal/cleanable/dirt,
@@ -1553,15 +1500,6 @@
broken = 1
},
/area/maintenance/aft)
-"aup" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/open/floor/iron,
-/area/security/main)
"auw" = (
/obj/item/assembly/prox_sensor{
pixel_x = 9;
@@ -1797,23 +1735,6 @@
},
/turf/open/floor/iron/grid/steel,
/area/science/misc_lab)
-"axd" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/iron/grid/steel,
-/area/medical/virology)
"axC" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 8
@@ -1842,12 +1763,6 @@
},
/turf/open/floor/plating/foam,
/area/asteroid/nearstation)
-"axO" = (
-/obj/effect/turf_decal/siding/thinplating_new/dark{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/security/nuke_storage)
"axS" = (
/obj/machinery/power/apc/auto_name/south{
pixel_y = -24
@@ -2269,6 +2184,9 @@
},
/turf/open/floor/wood,
/area/hallway/primary/aft)
+"aDg" = (
+/turf/open/floor/catwalk_floor,
+/area/drydock/security)
"aDh" = (
/obj/effect/turf_decal/bot,
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
@@ -2641,28 +2559,6 @@
/obj/item/circuitboard/machine/chem_heater,
/turf/open/floor/iron/techmaint,
/area/medical/virology)
-"aGm" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/machinery/door/airlock/external{
- name = "External Solar Access";
- req_access_txt = "10; 13"
- },
-/obj/effect/turf_decal/stripes/closeup{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/solars/port)
"aGq" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
@@ -2768,6 +2664,18 @@
/obj/structure/chair/fancy/plastic,
/turf/open/floor/iron/dark,
/area/engine/atmos)
+"aGZ" = (
+/obj/machinery/button/door{
+ id = "qm_warehouse";
+ name = "Warehouse Door Control";
+ pixel_y = -24;
+ req_access_txt = "31"
+ },
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/side,
+/area/hallway/primary/port)
"aHf" = (
/turf/closed/wall/r_wall,
/area/science/test_area)
@@ -3290,6 +3198,23 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/maintenance/solars/port/fore)
+"aMx" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/obj/structure/table/optable{
+ name = "Robotics Operating Table"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/obj/structure/table/optable{
+ name = "Robotics Operating Table"
+ },
+/turf/open/floor/iron/white/side{
+ dir = 1
+ },
+/area/science/robotics/lab)
"aMJ" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -3355,6 +3280,25 @@
"aNc" = (
/turf/open/floor/iron/dark,
/area/gateway)
+"aNh" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/end{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/red/end{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external/glass{
+ name = "Labour Shuttle airlock";
+ req_access_txt = "63"
+ },
+/obj/machinery/atmospherics/pipe/layer_manifold{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/bridge)
"aNs" = (
/obj/effect/turf_decal/siding/yellow{
dir = 4
@@ -3387,6 +3331,27 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/wood,
/area/vacant_room/office)
+"aNS" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads/captain)
"aNW" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating,
@@ -3572,6 +3537,19 @@
/obj/machinery/light,
/turf/open/floor/iron/white,
/area/medical/medbay/lobby)
+"aPc" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads/captain)
"aPd" = (
/obj/structure/sign/warning/biohazard,
/turf/closed/wall/r_wall,
@@ -3713,6 +3691,18 @@
},
/turf/open/floor/iron/techmaint,
/area/maintenance/port/central)
+"aQm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/science/mixing)
"aQp" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
@@ -3900,22 +3890,6 @@
},
/turf/open/floor/iron/techmaint,
/area/maintenance/port/central)
-"aRU" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/table,
-/obj/effect/turf_decal/bot,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high,
-/obj/item/stock_parts/cell/high,
-/obj/machinery/firealarm/directional/south,
-/obj/item/assembly/prox_sensor{
- pixel_x = 5;
- pixel_y = 7
- },
-/turf/open/floor/iron/grid/steel,
-/area/science/robotics/lab)
"aSc" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -4392,6 +4366,14 @@
},
/turf/open/floor/iron,
/area/maintenance/disposal)
+"aWJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/science/mixing)
"aWR" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/table,
@@ -4421,10 +4403,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"aXg" = (
-/obj/effect/spawner/structure/window/reinforced/tinted,
-/turf/open/floor/cult,
-/area/library)
"aXj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -4514,19 +4492,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"aYp" = (
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/leafybush,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/grass/no_border,
-/area/science/research)
"aYs" = (
/obj/machinery/computer/crew{
dir = 8
@@ -4599,29 +4564,6 @@
/obj/machinery/pipedispenser/disposal,
/turf/open/floor/iron/dark,
/area/engine/atmos)
-"aZp" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=18-BotanyCorner";
- location = "17-Departures"
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"aZB" = (
/obj/structure/sign/departments/minsky/research/xenobiology,
/turf/closed/wall/r_wall,
@@ -4733,6 +4675,19 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron,
/area/hallway/primary/aft)
+"baY" = (
+/obj/structure/bed/dogbed/renault,
+/mob/living/simple_animal/pet/fox/Renault{
+ desc = "Renault, the Captain's trustworthy fox. Shame it's not Peuegot..."
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads/captain)
"bbm" = (
/turf/open/floor/plating/airless{
initial_gas_mix = "o2=14;n2=23;TEMP=300"
@@ -4956,16 +4911,6 @@
/obj/item/kirbyplants/random,
/turf/open/floor/wood,
/area/hallway/primary/aft)
-"beV" = (
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/grass/no_border,
-/area/hallway/secondary/exit/departure_lounge)
"beY" = (
/obj/effect/landmark/event_spawn,
/obj/machinery/holopad,
@@ -4988,31 +4933,10 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/medical/medbay/central)
-"bff" = (
-/obj/machinery/holopad,
-/obj/effect/turf_decal/box,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/iron/techmaint,
-/area/science/explab)
"bfn" = (
/obj/effect/turf_decal/stripes/corner,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"bfy" = (
-/obj/machinery/door/airlock/external{
- name = "Security Escape Pod"
- },
-/obj/effect/turf_decal/stripes/closeup,
-/turf/open/floor/catwalk_floor,
-/area/bridge)
"bfG" = (
/obj/effect/turf_decal/stripes/corner{
dir = 8
@@ -5245,28 +5169,6 @@
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"biN" = (
-/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/iron/cafeteria,
-/area/crew_quarters/heads/cmo)
"biQ" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/effect/decal/cleanable/dirt,
@@ -5347,6 +5249,15 @@
/obj/structure/railing,
/turf/open/floor/plating,
/area/maintenance/department/science)
+"bkz" = (
+/obj/machinery/status_display/evac{
+ pixel_x = 32
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/engine/light,
+/area/science/explab)
"bkB" = (
/obj/structure/bodycontainer/morgue,
/obj/effect/turf_decal/stripes/end{
@@ -5486,13 +5397,6 @@
},
/turf/open/floor/iron/grid/steel,
/area/science/misc_lab)
-"blA" = (
-/obj/item/stack/cable_coil/cut/yellow,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/construction)
"blE" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -5756,6 +5660,12 @@
},
/turf/open/floor/iron,
/area/janitor)
+"bps" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 9
+ },
+/turf/open/floor/catwalk_floor,
+/area/engine/atmos)
"bpv" = (
/obj/machinery/light/small{
dir = 4
@@ -5984,21 +5894,6 @@
},
/turf/open/floor/iron/grid/steel,
/area/bridge)
-"bse" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/science/mixing)
"bsm" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/disposal/bin,
@@ -6099,6 +5994,9 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/supply)
+"buz" = (
+/turf/open/floor/catwalk_floor,
+/area/drydock)
"buA" = (
/obj/structure/table/wood,
/obj/item/flashlight/lamp,
@@ -6372,19 +6270,6 @@
},
/turf/open/floor/iron/dark,
/area/chapel/office)
-"bxW" = (
-/obj/structure/sign/warning/nosmoking{
- pixel_x = 6;
- pixel_y = 32
- },
-/obj/structure/table,
-/obj/effect/turf_decal/bot,
-/obj/item/stack/sheet/iron/fifty,
-/obj/item/stack/sheet/iron/fifty,
-/obj/item/stack/sheet/iron/fifty,
-/obj/item/stack/sheet/glass/fifty,
-/turf/open/floor/iron/grid/steel,
-/area/science/robotics/lab)
"byb" = (
/obj/effect/turf_decal/bot,
/obj/machinery/light/small{
@@ -6587,17 +6472,6 @@
},
/turf/open/floor/iron/dark,
/area/hallway/secondary/exit/departure_lounge)
-"bBJ" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp/green,
-/obj/item/toy/figure/captain{
- pixel_x = 8
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/crew_quarters/heads/captain)
"bBO" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -6615,6 +6489,21 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron/techmaint,
/area/science/robotics/mechbay)
+"bCg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/science/mixing)
"bCj" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -6891,6 +6780,15 @@
},
/turf/open/floor/iron/white,
/area/science/lobby)
+"bHi" = (
+/obj/structure/window/reinforced,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/bush,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/grass/no_border,
+/area/science/shuttledock)
"bHk" = (
/obj/machinery/vending/coffee,
/obj/machinery/light{
@@ -6898,20 +6796,6 @@
},
/turf/open/floor/carpet,
/area/hallway/secondary/entry)
-"bHm" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/solars/starboard/fore)
"bHq" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/box,
@@ -6924,17 +6808,6 @@
},
/turf/open/floor/iron/techmaint,
/area/medical/virology)
-"bHx" = (
-/obj/machinery/power/apc/auto_name/south{
- pixel_y = -24
- },
-/obj/structure/cable/yellow,
-/obj/machinery/light,
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/turf/open/floor/iron,
-/area/security/main)
"bHB" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -7554,6 +7427,17 @@
},
/turf/open/floor/iron/dark,
/area/hallway/primary/central)
+"bQn" = (
+/obj/effect/turf_decal/stripes/closeup,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/door/airlock/external{
+ name = "External Airlock";
+ req_one_access_txt = "13;24;10"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"bQy" = (
/obj/structure/sign/map/right{
desc = "A framed outdated, yet detailed picture of the station. there's even the permanent prison wing in the bottom left!";
@@ -7761,14 +7645,6 @@
},
/turf/open/floor/iron/freezer,
/area/security/prison)
-"bTy" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"bTH" = (
/obj/structure/table,
/obj/effect/spawner/lootdrop/maintenance,
@@ -8018,17 +7894,18 @@
},
/turf/open/floor/iron/white,
/area/science/lobby)
-"bVU" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+"bVS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
/obj/structure/cable/yellow{
- icon_state = "1-2"
+ icon_state = "1-8"
},
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"bVW" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -8165,18 +8042,6 @@
},
/turf/open/floor/iron/dark,
/area/hallway/secondary/exit/departure_lounge)
-"bYW" = (
-/obj/structure/flora/ausbushes/lavendergrass,
-/obj/machinery/door/window/southright{
- name = "Sign door";
- req_one_access = "25"
- },
-/obj/machinery/camera{
- c_tag = "Cafeteria antechamber";
- name = "service camera"
- },
-/turf/open/floor/grass/no_border,
-/area/crew_quarters/bar/atrium)
"bZm" = (
/obj/machinery/vending/cigarette,
/obj/effect/turf_decal/delivery,
@@ -8191,6 +8056,16 @@
},
/turf/open/floor/iron/techmaint,
/area/science/storage)
+"bZz" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/maintenance/disposal/incinerator)
"bZB" = (
/obj/machinery/button/door{
id = "construction";
@@ -8427,39 +8302,6 @@
},
/turf/open/floor/plating,
/area/maintenance/central)
-"cdd" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/eastright{
- dir = 2;
- name = "Robotics Desk";
- req_access_txt = "29"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "robotics_shutters";
- name = "robotics shutters"
- },
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/stripes/closeup,
-/obj/structure/desk_bell{
- pixel_x = -8
- },
-/obj/item/paper_bin{
- pixel_x = 8
- },
-/obj/item/pen{
- pixel_x = 8
- },
-/obj/item/folder/white{
- pixel_x = 2;
- pixel_y = -3
- },
-/turf/open/floor/iron/techmaint,
-/area/science/robotics/lab)
-"cdf" = (
-/obj/structure/window/reinforced,
-/obj/structure/flora/ausbushes/genericbush,
-/turf/open/floor/grass/no_border,
-/area/quartermaster/exploration_prep)
"cdl" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -8500,6 +8342,10 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/hallway/primary/aft)
+"ceh" = (
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/turf/open/floor/cult,
+/area/library)
"ceq" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 1
@@ -8879,16 +8725,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron/grid/steel,
/area/hallway/primary/port)
-"ciJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/effect/turf_decal/siding/wood/corner,
-/turf/open/floor/wood,
-/area/crew_quarters/heads/captain)
"ciN" = (
/obj/structure/lattice/catwalk/over,
/obj/effect/decal/cleanable/dirt,
@@ -9346,6 +9182,16 @@
/obj/effect/landmark/start/roboticist,
/turf/open/floor/iron/techmaint,
/area/science/robotics/lab)
+"cpP" = (
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/solar{
+ id = "aftstarboard";
+ name = "Aft-Starboard Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/port/aft)
"cpS" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -9398,9 +9244,6 @@
},
/turf/open/space/basic,
/area/space/nearstation)
-"cqx" = (
-/turf/open/floor/catwalk_floor,
-/area/drydock)
"cqG" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -9487,6 +9330,16 @@
},
/turf/open/floor/iron/techmaint,
/area/security/prison)
+"crN" = (
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/medical2,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark/side{
+ dir = 5
+ },
+/area/medical/surgery)
"crQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
@@ -9623,6 +9476,16 @@
},
/turf/open/floor/iron/sepia,
/area/maintenance/department/engine)
+"ctP" = (
+/obj/machinery/power/solar{
+ id = "portsolar";
+ name = "Port Solar Array"
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/starboard/fore)
"ctR" = (
/obj/structure/lattice,
/obj/docking_port/stationary/random{
@@ -9808,19 +9671,6 @@
},
/turf/open/floor/iron,
/area/medical/break_room)
-"cwb" = (
-/obj/structure/lattice/catwalk/over,
-/obj/machinery/status_display/ai{
- pixel_x = -32
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/science/explab)
"cwc" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 8
@@ -9914,15 +9764,6 @@
},
/turf/open/floor/vault,
/area/engine/engine_room)
-"cxz" = (
-/obj/structure/table,
-/obj/item/storage/box/bodybags,
-/obj/item/clothing/gloves/color/latex,
-/obj/item/clothing/mask/surgical,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/machinery/airalarm/directional/south,
-/turf/open/floor/iron/dark,
-/area/security/detectives_office)
"cxA" = (
/obj/structure/closet/firecloset,
/turf/open/floor/plating,
@@ -9985,6 +9826,23 @@
dir = 8
},
/area/engine/atmos)
+"cyN" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=21-LobbyCorner";
+ location = "20-Lobby"
+ },
+/turf/open/floor/iron/goonplaque,
+/area/hallway/primary/port)
"cyO" = (
/obj/effect/turf_decal/bot,
/obj/machinery/atmospherics/pipe/layer_manifold{
@@ -10168,17 +10026,6 @@
/obj/machinery/door/firedoor/window,
/turf/open/floor/plating,
/area/science/shuttle)
-"cAI" = (
-/obj/item/kirbyplants/random,
-/obj/machinery/power/apc/auto_name/north{
- pixel_y = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/effect/turf_decal/siding/wood,
-/turf/open/floor/wood,
-/area/crew_quarters/heads/captain)
"cAL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -10225,21 +10072,10 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"cBB" = (
-/obj/structure/lattice/catwalk/over,
-/obj/machinery/firealarm/directional/west,
-/turf/open/floor/plating,
-/area/science/explab)
"cBG" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron,
/area/maintenance/disposal)
-"cBM" = (
-/obj/item/reagent_containers/food/drinks/bottle/vodka{
- desc = "Aah, vodka. Prime choice of drink AND fuel by Russians worldwide. This one used to hold many secrets..."
- },
-/turf/open/floor/cult,
-/area/chapel/office)
"cBZ" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
@@ -10434,6 +10270,28 @@
},
/turf/open/floor/iron/dark,
/area/security/brig)
+"cEY" = (
+/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/iron/cafeteria,
+/area/crew_quarters/heads/cmo)
"cFL" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/airalarm{
@@ -10628,6 +10486,19 @@
},
/turf/open/floor/iron/dark,
/area/crew_quarters/bar)
+"cIF" = (
+/obj/machinery/door/airlock/public/glass{
+ name = "Cryogenic Lounge"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron/grid,
+/area/crew_quarters/cryopods)
"cIH" = (
/obj/structure/table/wood,
/obj/item/reagent_containers/food/drinks/bottle/holywater{
@@ -10760,6 +10631,16 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron/techmaint,
/area/maintenance/solars/port)
+"cJP" = (
+/obj/effect/turf_decal/tile/yellow/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown/opposingcorners,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/construction)
"cKc" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -11012,6 +10893,25 @@
/obj/structure/flora/ausbushes/ppflowers,
/turf/open/floor/grass,
/area/hallway/secondary/entry)
+"cNS" = (
+/obj/structure/table,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/clothing/glasses/welding,
+/obj/item/wrench,
+/obj/item/crowbar,
+/obj/item/stack/sheet/glass/ten,
+/obj/item/stack/sheet/mineral/copper/five,
+/obj/machinery/requests_console{
+ department = "Research Lab";
+ name = "Research RC";
+ pixel_x = 32;
+ receive_ore_updates = 1
+ },
+/turf/open/floor/iron/dark,
+/area/science/lab)
"cNZ" = (
/obj/structure/lattice/catwalk/over,
/turf/open/floor/plating,
@@ -11180,6 +11080,16 @@
},
/turf/open/floor/iron,
/area/science/lab)
+"cQf" = (
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/solar{
+ id = "forestarboard";
+ name = "Fore-Starboard Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/port/fore)
"cQv" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -11511,20 +11421,6 @@
/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted,
/turf/open/floor/iron,
/area/storage/primary)
-"cSU" = (
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/leafybush,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/toy/plush/moth/lovers,
-/turf/open/floor/grass/no_border,
-/area/ai_monitored/security/armory)
"cSY" = (
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -11615,20 +11511,6 @@
},
/turf/open/floor/iron/dark,
/area/science/lab)
-"cUn" = (
-/obj/machinery/airalarm{
- dir = 1;
- pixel_y = -22
- },
-/obj/machinery/light,
-/obj/effect/turf_decal/bot,
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/item/book/manual/wiki/atmospherics,
-/turf/open/floor/iron/dark/side,
-/area/engine/atmos)
"cUp" = (
/obj/effect/spawner/randomvend/cola,
/obj/effect/turf_decal/delivery,
@@ -11674,6 +11556,15 @@
},
/turf/open/floor/iron/techmaint,
/area/hallway/primary/central)
+"cUD" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/entry)
"cUG" = (
/obj/effect/turf_decal/trimline/blue/line,
/obj/effect/turf_decal/trimline/blue/filled/line{
@@ -11917,6 +11808,12 @@
},
/turf/open/floor/iron/ridged/steel,
/area/engine/storage_shared)
+"cYz" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor,
+/area/engine/atmos)
"cYB" = (
/obj/machinery/light{
dir = 4
@@ -12381,6 +12278,21 @@
broken = 1
},
/area/maintenance/port/central)
+"det" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"dew" = (
/obj/effect/turf_decal/trimline/blue/warning{
dir = 1
@@ -12631,6 +12543,13 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"diA" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/obj/machinery/anesthetic_machine,
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/medical/surgery)
"diI" = (
/obj/machinery/newscaster{
pixel_y = 31
@@ -12805,20 +12724,6 @@
},
/turf/open/floor/plating,
/area/maintenance/port/central)
-"dkN" = (
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "emmd";
- name = "Emergency Medical Lockdown Shutters"
- },
-/turf/open/floor/grass/no_border,
-/area/medical/medbay/lobby)
"dkR" = (
/obj/effect/turf_decal/trimline/blue/line{
dir = 1
@@ -13382,6 +13287,19 @@
dir = 1
},
/area/hallway/secondary/exit/departure_lounge)
+"dtg" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"dtE" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
@@ -13410,28 +13328,14 @@
/obj/item/wrench,
/turf/open/floor/iron/dark,
/area/chapel/office)
-"dtH" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
-"dtI" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-4"
+"dtG" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
},
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
+/turf/open/floor/cult,
+/area/library)
"dtO" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/disposalpipe/segment{
@@ -13688,6 +13592,20 @@
},
/turf/open/floor/carpet,
/area/chapel/main)
+"dxv" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/solars/starboard/fore)
"dxK" = (
/obj/structure/table,
/obj/effect/decal/cleanable/dirt,
@@ -13901,11 +13819,29 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/grid/steel,
/area/bridge)
+"dCc" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"dCe" = (
/obj/structure/flora/ausbushes/lavendergrass,
/obj/machinery/light/small,
/turf/open/floor/grass,
/area/hallway/secondary/entry)
+"dCk" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/closeup,
+/obj/machinery/door/airlock/public/glass{
+ name = "Departures Lounge"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/iron/grid/steel,
+/area/hallway/secondary/exit/departure_lounge)
"dCo" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -14319,6 +14255,12 @@
},
/turf/open/floor/iron/dark,
/area/hydroponics)
+"dIB" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor,
+/area/drydock)
"dIJ" = (
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -14361,31 +14303,6 @@
},
/turf/open/floor/iron/dark,
/area/security/courtroom)
-"dJm" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/maintenance/disposal/incinerator)
-"dJr" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor,
-/area/science/shuttle)
"dJu" = (
/obj/effect/turf_decal/tile/blue/opposingcorners{
dir = 1
@@ -14688,12 +14605,6 @@
},
/turf/open/floor/iron/techmaint,
/area/engine/break_room)
-"dLC" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/turf/open/floor/catwalk_floor,
-/area/engine/atmos)
"dLO" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/closeup{
@@ -14711,19 +14622,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/exit/departure_lounge)
-"dLQ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/rack,
-/obj/item/clothing/mask/gas,
-/obj/item/wrench,
-/obj/item/crowbar,
-/obj/item/storage/firstaid/regular,
-/obj/item/storage/toolbox/mechanical,
-/obj/item/book/manual/wiki/xenoarchaeology,
-/turf/open/floor/iron/ridged/steel,
-/area/science/explab)
"dLR" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 8
@@ -14961,15 +14859,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/starboard)
-"dOg" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/entry)
"dOj" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
@@ -15585,21 +15474,6 @@
/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/bridge)
-"dWZ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/science/mixing)
"dXh" = (
/obj/effect/turf_decal/caution/stand_clear{
dir = 8
@@ -15630,22 +15504,6 @@
},
/turf/open/floor/iron/grid/steel,
/area/engine/engine_room)
-"dXV" = (
-/obj/structure/cable,
-/obj/machinery/power/tracker,
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/port/aft)
-"dYe" = (
-/obj/effect/turf_decal/stripes/closeup,
-/obj/machinery/door/airlock/external{
- name = "External Airlock";
- req_one_access_txt = "13;24;10"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"dYq" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/obj/machinery/airalarm{
@@ -15653,6 +15511,17 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai_upload_foyer)
+"dYs" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/science/mixing)
"dYz" = (
/turf/open/floor/iron,
/area/maintenance/central)
@@ -15980,6 +15849,15 @@
/obj/machinery/door/poddoor/incinerator_toxmix,
/turf/open/floor/engine/vacuum,
/area/science/mixing/chamber)
+"ecK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/dark/side,
+/area/hallway/secondary/service)
"ecM" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -15989,6 +15867,12 @@
},
/turf/open/floor/carpet/royalblue,
/area/bridge/meeting_room/council)
+"ecP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"ecS" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
@@ -16153,14 +16037,6 @@
},
/turf/open/floor/iron/dark,
/area/security/brig)
-"efQ" = (
-/obj/structure/table/wood,
-/obj/item/folder,
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = -32
- },
-/turf/open/floor/cult,
-/area/library)
"egl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 9
@@ -16248,6 +16124,13 @@
},
/turf/open/floor/plating,
/area/maintenance/port/central)
+"ehP" = (
+/obj/effect/decal/cleanable/vomit/old,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/construction)
"ehQ" = (
/turf/closed/wall/r_wall,
/area/science/misc_lab/range)
@@ -16366,19 +16249,21 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/port)
-"ejI" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Cryogenic Lounge"
+"ejR" = (
+/obj/structure/sign/poster/official/help_others{
+ pixel_y = 32
},
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/stripes/closeup{
- dir = 1
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
+/obj/machinery/disposal/bin,
+/obj/structure/railing{
+ dir = 4
},
-/turf/open/floor/iron/grid,
-/area/crew_quarters/cryopods)
+/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/iron/dark,
+/area/hallway/primary/central)
"ejS" = (
/obj/effect/turf_decal/stripes/corner{
dir = 8
@@ -16855,14 +16740,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron/dark,
/area/security/brig)
-"eqb" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"eqe" = (
/obj/effect/landmark/start/cook,
/obj/structure/cable/yellow{
@@ -16880,15 +16757,6 @@
/obj/structure/sign/warning/vacuum/external,
/turf/open/floor/plating,
/area/hallway/secondary/entry)
-"eqn" = (
-/obj/structure/window/reinforced,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/bush,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/grass/no_border,
-/area/science/shuttledock)
"eqE" = (
/obj/machinery/vending/wardrobe/engi_wardrobe,
/obj/effect/turf_decal/tile/yellow/opposingcorners,
@@ -16974,21 +16842,6 @@
},
/turf/open/floor/iron/dark,
/area/hallway/secondary/entry)
-"erO" = (
-/obj/item/storage/secure/briefcase{
- pixel_x = -2;
- pixel_y = 4
- },
-/obj/structure/rack,
-/obj/item/book/manual/wiki/security_space_law,
-/obj/machinery/airalarm{
- pixel_y = 22
- },
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/crew_quarters/heads/captain)
"esb" = (
/obj/machinery/airalarm{
dir = 4;
@@ -17262,6 +17115,17 @@
/obj/effect/turf_decal/guideline/guideline_in/red,
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"ewj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/corner,
+/area/hallway/secondary/service)
"ewk" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -17285,6 +17149,15 @@
/obj/item/book/manual/wiki/security_space_law,
/turf/open/floor/carpet/royalblue,
/area/bridge/meeting_room/council)
+"ewE" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/drydock/security)
"ewF" = (
/obj/effect/turf_decal/sand/plating,
/obj/machinery/camera/motion{
@@ -17313,14 +17186,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
-"ewQ" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp/green{
- pixel_x = 1;
- pixel_y = 5
- },
-/turf/open/floor/cult,
-/area/library)
"exg" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
@@ -17436,6 +17301,12 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/turf/open/floor/iron,
/area/hallway/primary/port)
+"ezq" = (
+/obj/structure/window/reinforced,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/bush,
+/turf/open/floor/grass/no_border,
+/area/quartermaster/exploration_prep)
"ezv" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -17801,15 +17672,18 @@
},
/turf/open/floor/grass,
/area/hydroponics)
-"eEh" = (
-/obj/effect/turf_decal/stripes/closeup,
-/obj/machinery/door/airlock/external{
- name = "External Airlock";
- req_one_access_txt = "13;24;10"
+"eDY" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/layer_manifold,
/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
+/area/docking/bridge)
"eEl" = (
/obj/machinery/newscaster{
pixel_x = 28;
@@ -17833,6 +17707,16 @@
/obj/structure/filingcabinet,
/turf/open/floor/wood,
/area/medical/exam_room)
+"eEW" = (
+/obj/machinery/power/solar{
+ id = "portsolar";
+ name = "Port Solar Array"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/port)
"eFk" = (
/obj/structure/table/wood,
/obj/item/gps{
@@ -18033,6 +17917,22 @@
/obj/effect/turf_decal/stripes/openup,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"eHt" = (
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/obj/machinery/door/airlock/external{
+ name = "External Airlock";
+ req_one_access_txt = "13;24;10"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"eHv" = (
/obj/structure/table/wood,
/obj/machinery/computer/libraryconsole{
@@ -18062,17 +17962,6 @@
},
/turf/open/floor/iron/grid/steel,
/area/science/research)
-"eHH" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/iron/dark/side{
- dir = 10
- },
-/area/hallway/secondary/service)
"eHJ" = (
/turf/closed/wall,
/area/ai_monitored/turret_protected/ai_upload_foyer)
@@ -18148,6 +18037,19 @@
},
/turf/open/floor/iron/dark,
/area/security/checkpoint/customs)
+"eIf" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=14.2-AftCrossRet";
+ location = "14.1-GravGen"
+ },
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"eIl" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 4
@@ -18200,12 +18102,6 @@
},
/turf/open/floor/circuit/green,
/area/science/xenobiology)
-"eII" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/drydock)
"eIN" = (
/obj/machinery/door/airlock/maintenance{
name = "Conference room maintenance";
@@ -18326,35 +18222,6 @@
},
/turf/open/floor/iron,
/area/security/main)
-"eJk" = (
-/obj/structure/table/wood,
-/obj/item/folder/blue{
- pixel_x = 8
- },
-/obj/item/stamp/captain{
- pixel_x = 8
- },
-/obj/structure/desk_bell/speed_demon{
- pixel_x = -8
- },
-/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{
- pixel_y = 2
- },
-/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{
- pixel_x = -6;
- pixel_y = 14
- },
-/obj/item/reagent_containers/food/drinks/bottle/whiskey{
- desc = "A bottle of whiskey. There's a label that reads 'tears' taped to the front.";
- name = "Bottle of Tears";
- pixel_x = 8;
- pixel_y = 20
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/crew_quarters/heads/captain)
"eJm" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -18516,6 +18383,14 @@
dir = 6
},
/area/quartermaster/storage)
+"eKw" = (
+/obj/machinery/camera{
+ c_tag = "Shuttle construction area - Custom shuttle dock";
+ dir = 6;
+ name = "hallway camera"
+ },
+/turf/open/floor/catwalk_floor,
+/area/drydock)
"eKx" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -18530,13 +18405,6 @@
},
/turf/open/floor/carpet/royalblue,
/area/bridge/meeting_room/council)
-"eKN" = (
-/obj/machinery/power/tracker,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/port)
"eKW" = (
/obj/machinery/camera{
c_tag = "Escape Shuttle Hallway - Fore";
@@ -18864,25 +18732,6 @@
},
/turf/open/floor/iron/dark,
/area/hydroponics)
-"eNV" = (
-/obj/structure/table,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/item/stack/sheet/iron/fifty,
-/obj/item/clothing/glasses/welding,
-/obj/item/wrench,
-/obj/item/crowbar,
-/obj/item/stack/sheet/glass/ten,
-/obj/item/stack/sheet/mineral/copper/five,
-/obj/machinery/requests_console{
- department = "Research Lab";
- name = "Research RC";
- pixel_x = 32;
- receive_ore_updates = 1
- },
-/turf/open/floor/iron/dark,
-/area/science/lab)
"eNY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 1
@@ -18923,21 +18772,6 @@
},
/turf/open/floor/iron/grid/steel,
/area/science/robotics/lab)
-"eOl" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/dark/hidden{
- dir = 10
- },
-/obj/structure/sign/warning/fire{
- pixel_x = 32
- },
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/maintenance/disposal/incinerator)
"eOs" = (
/obj/structure/reagent_dispensers/virusfood{
pixel_x = -32
@@ -19312,6 +19146,19 @@
},
/turf/open/floor/iron/dark,
/area/security/prison/shielded)
+"eSY" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/grass/no_border,
+/area/bridge)
"eTf" = (
/obj/machinery/camera{
c_tag = "Xenobiology - Cell 5";
@@ -19644,15 +19491,6 @@
burnt = 1
},
/area/maintenance/starboard/fore)
-"eWe" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/catwalk_floor,
-/area/docking/bridge)
"eWg" = (
/obj/structure/railing{
dir = 8
@@ -19661,6 +19499,15 @@
dir = 1
},
/area/hallway/primary/central)
+"eWk" = (
+/obj/effect/turf_decal/stripes/corner,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/dark/hidden{
+ dir = 5
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/maintenance/disposal/incinerator)
"eWG" = (
/obj/machinery/light/small{
dir = 4
@@ -19802,21 +19649,6 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai_upload_foyer)
-"eXK" = (
-/obj/structure/flora/grass/jungle,
-/obj/structure/flora/ausbushes/grassybush,
-/obj/structure/flora/ausbushes/genericbush,
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/sunnybush,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/grass/no_border,
-/area/science/research)
"eXP" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/rack,
@@ -20158,6 +19990,13 @@
/obj/effect/turf_decal/trimline/blue/corner,
/turf/open/floor/iron/white,
/area/medical/medbay/central)
+"fcH" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"fcM" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
dir = 4
@@ -20269,18 +20108,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron/dark,
/area/crew_quarters/heads/chief)
-"fdQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"fec" = (
/mob/living/basic/cockroach,
/obj/effect/turf_decal/bot,
@@ -20355,25 +20182,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"ffv" = (
-/obj/structure/table,
-/obj/item/folder/red{
- pixel_x = 3
- },
-/obj/item/folder/white{
- pixel_x = -4;
- pixel_y = 2
- },
-/obj/item/storage/firstaid/regular,
-/obj/item/reagent_containers/syringe,
-/obj/effect/turf_decal/bot,
-/obj/machinery/camera{
- c_tag = "Security - Medbay";
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/techmaint,
-/area/security/main)
"ffy" = (
/obj/effect/spawner/lootdrop/glowstick/lit,
/turf/open/floor/plating,
@@ -20621,14 +20429,6 @@
},
/turf/open/floor/iron/techmaint,
/area/science/misc_lab)
-"fjh" = (
-/obj/structure/cable,
-/obj/machinery/power/solar{
- id = "forestarboard";
- name = "Fore-Starboard Solar Array"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/port/fore)
"fji" = (
/obj/structure/table/reinforced,
/obj/item/folder/white{
@@ -20686,17 +20486,6 @@
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
/area/storage/art)
-"fkk" = (
-/obj/structure/table/wood/fancy,
-/obj/item/soulstone/anybody/chaplain,
-/obj/item/organ/heart{
- pixel_x = 8;
- pixel_y = 7
- },
-/obj/item/reagent_containers/food/drinks/bottle/holywater,
-/obj/item/book/granter/spell/smoke/lesser,
-/turf/open/floor/cult,
-/area/chapel/office)
"fkn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 8
@@ -20743,25 +20532,6 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/captain/private)
-"fkI" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/machinery/door/airlock/external{
- name = "External Solar Access";
- req_access_txt = "10; 13"
- },
-/obj/effect/turf_decal/stripes/closeup{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/layer_manifold{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/solars/starboard/fore)
"fkK" = (
/obj/structure/cable,
/turf/open/floor/plating/airless,
@@ -20874,14 +20644,6 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/engine,
/area/ai_monitored/turret_protected/ai)
-"fly" = (
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/light,
-/turf/open/floor/grass/no_border,
-/area/quartermaster/exploration_prep)
"flF" = (
/obj/structure/noticeboard{
dir = 8;
@@ -20964,6 +20726,22 @@
},
/turf/open/floor/iron,
/area/crew_quarters/locker)
+"fnj" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/science/mixing)
+"fnu" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron/ridged/steel,
+/area/science/explab)
"fnz" = (
/obj/machinery/light{
dir = 4
@@ -21030,17 +20808,6 @@
},
/turf/open/floor/plating,
/area/quartermaster/miningdock)
-"fof" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/iron/dark/corner,
-/area/hallway/secondary/service)
"fom" = (
/obj/machinery/power/apc/auto_name/north{
pixel_y = 24
@@ -21162,6 +20929,15 @@
},
/turf/open/floor/iron/dark,
/area/security/checkpoint/customs)
+"fpq" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor,
+/area/science/shuttle)
"fpv" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow,
@@ -21269,6 +21045,13 @@
},
/turf/open/floor/iron,
/area/security/main)
+"fro" = (
+/obj/effect/landmark/blobstart,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/construction)
"frp" = (
/obj/effect/landmark/start/assistant,
/obj/effect/turf_decal/siding/wideplating/dark{
@@ -21381,12 +21164,6 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"fsH" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"fsI" = (
/obj/effect/turf_decal/guideline/guideline_out_arrow_con/blue{
dir = 4
@@ -21779,6 +21556,23 @@
luminosity = 2
},
/area/security/nuke_storage)
+"fwA" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/closeup,
+/obj/machinery/door/airlock/external/glass{
+ name = "Labour Shuttle airlock";
+ req_access_txt = "63"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/bridge)
"fwE" = (
/obj/effect/spawner/randomvend/cola,
/obj/effect/turf_decal/delivery,
@@ -21792,6 +21586,13 @@
/obj/machinery/atmospherics/components/unary/cryo_cell,
/turf/open/floor/engine/light,
/area/medical/cryo)
+"fwS" = (
+/obj/machinery/power/tracker,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/port/fore)
"fwV" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -21809,16 +21610,6 @@
},
/turf/open/floor/wood,
/area/quartermaster/qm)
-"fxc" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -26
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/catwalk_floor,
-/area/engine/atmos)
"fxf" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -22655,6 +22446,25 @@
},
/turf/open/floor/iron/dark,
/area/hallway/secondary/entry)
+"fHJ" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/beacon,
+/turf/open/floor/iron/dark,
+/area/hallway/primary/starboard)
"fHQ" = (
/obj/structure/girder,
/turf/open/floor/plating,
@@ -22729,18 +22539,6 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
-"fIG" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/caution{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/engine/light,
-/area/science/explab)
"fIN" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -22900,9 +22698,6 @@
heat_capacity = 1e+006
},
/area/maintenance/department/medical)
-"fKy" = (
-/turf/open/floor/catwalk_floor,
-/area/drydock/security)
"fKP" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -23345,13 +23140,6 @@
dir = 4
},
/area/ai_monitored/storage/eva)
-"fOZ" = (
-/obj/effect/landmark/blobstart,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/construction)
"fPc" = (
/obj/structure/table/reinforced,
/obj/item/aiModule/reset,
@@ -23527,6 +23315,19 @@
},
/turf/open/floor/iron/dark,
/area/chapel/main)
+"fSb" = (
+/obj/effect/turf_decal/stripes/closeup,
+/obj/machinery/advanced_airlock_controller{
+ pixel_y = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer4{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor,
+/area/bridge)
"fSe" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -23585,16 +23386,6 @@
},
/turf/open/floor/iron/techmaint,
/area/science/misc_lab)
-"fSK" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/construction)
"fSP" = (
/obj/machinery/newscaster{
pixel_x = 28;
@@ -23854,18 +23645,6 @@
},
/turf/open/floor/iron/techmaint,
/area/hallway/primary/central)
-"fWj" = (
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/grass/no_border,
-/area/hallway/primary/port)
"fWv" = (
/obj/structure/table,
/obj/effect/turf_decal/trimline/brown/filled/line{
@@ -23994,6 +23773,16 @@
},
/turf/open/floor/wood,
/area/medical/exam_room)
+"fXH" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron/grid/steel,
+/area/hallway/primary/aft)
"fXI" = (
/obj/machinery/light,
/obj/effect/turf_decal/guideline/guideline_in/red{
@@ -24231,25 +24020,6 @@
},
/turf/open/floor/iron/dark,
/area/chapel/main)
-"gap" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 9
- },
-/turf/open/floor/catwalk_floor,
-/area/engine/atmos)
-"gaM" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/heads/captain)
"gaQ" = (
/obj/machinery/light,
/obj/effect/turf_decal/stripes/line,
@@ -24582,14 +24352,6 @@
},
/turf/open/floor/plating,
/area/science/xenobiology)
-"geS" = (
-/obj/structure/chair/fancy/comfy{
- buildstackamount = 0;
- color = "#742925";
- dir = 4
- },
-/turf/open/floor/cult,
-/area/library)
"gfc" = (
/obj/effect/turf_decal/stripes/line,
/obj/structure/chair/fancy/comfy{
@@ -24743,6 +24505,15 @@
/obj/structure/rack,
/turf/open/floor/plating,
/area/maintenance/port/central)
+"ghx" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/hallway/primary/central)
"ghy" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -24805,19 +24576,6 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/captain/private)
-"gii" = (
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/leafybush,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/grass/no_border,
-/area/hallway/primary/port)
"gik" = (
/obj/item/radio/intercom{
pixel_x = -28
@@ -25043,19 +24801,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron/dark,
/area/engine/atmos)
-"gkS" = (
-/obj/effect/turf_decal/stripes/closeup,
-/obj/machinery/advanced_airlock_controller{
- pixel_y = -26
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer4{
- dir = 8
- },
-/turf/open/floor/catwalk_floor,
-/area/bridge)
"gkZ" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 8
@@ -25099,27 +24844,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"glr" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/advanced_airlock_controller{
- pixel_y = 26
- },
-/obj/machinery/light/small,
-/obj/structure/sign/warning/vacuum/external{
- pixel_y = -32
- },
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/solars/port)
"gmh" = (
/obj/machinery/light{
dir = 4
@@ -25791,6 +25515,14 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/exit/departure_lounge)
+"gun" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"guq" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/yellow{
@@ -25928,6 +25660,13 @@
dir = 1
},
/area/hallway/secondary/service)
+"gwC" = (
+/obj/effect/decal/cleanable/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/construction)
"gwI" = (
/turf/open/floor/iron/dark,
/area/crew_quarters/heads/captain)
@@ -25958,17 +25697,6 @@
},
/turf/open/floor/iron/techmaint,
/area/science/mixing)
-"gxd" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/iron/dark/side{
- dir = 4
- },
-/area/hallway/secondary/service)
"gxh" = (
/obj/effect/turf_decal/trimline/red/filled/warning{
dir = 5
@@ -26062,6 +25790,9 @@
},
/turf/open/floor/iron/techmaint,
/area/crew_quarters/heads/chief)
+"gxY" = (
+/turf/open/floor/glass/reinforced,
+/area/crew_quarters/heads/captain)
"gyd" = (
/obj/structure/cable/yellow{
icon_state = "2-4"
@@ -26334,6 +26065,19 @@
dir = 1
},
/area/ai_monitored/storage/eva)
+"gBa" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/machinery/keycard_auth{
+ pixel_x = 26;
+ pixel_y = 8
+ },
+/obj/item/pen/fourcolor,
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads/captain)
"gBh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -26398,22 +26142,6 @@
},
/turf/open/floor/carpet/royalblue,
/area/crew_quarters/heads/captain/private)
-"gCc" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/closeup,
-/obj/machinery/door/airlock/external{
- name = "Labour Shuttle airlock"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/bridge)
"gCn" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -26491,14 +26219,6 @@
},
/turf/open/floor/engine,
/area/security/nuke_storage)
-"gCF" = (
-/obj/structure/cable,
-/obj/machinery/power/solar{
- id = "aftstarboard";
- name = "Aft-Starboard Solar Array"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/port/aft)
"gCI" = (
/obj/structure/closet/crate,
/obj/item/coin/silver,
@@ -26541,16 +26261,6 @@
/obj/effect/turf_decal/tile/yellow/opposingcorners,
/turf/open/floor/iron/sepia,
/area/engine/engineering)
-"gDy" = (
-/obj/structure/displaycase/captain,
-/obj/machinery/status_display/evac{
- pixel_x = 32
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/crew_quarters/heads/captain)
"gDJ" = (
/obj/structure/table/reinforced,
/obj/effect/spawner/lootdrop/aimodule_neutral{
@@ -26630,22 +26340,6 @@
"gEs" = (
/turf/closed/wall/r_wall,
/area/science/lab)
-"gEv" = (
-/obj/effect/turf_decal/trimline/red/filled/warning,
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/iron/dark,
-/area/security/checkpoint/medical)
"gEx" = (
/obj/item/toy/plush/opa,
/turf/open/floor/plating,
@@ -26687,6 +26381,24 @@
/obj/effect/turf_decal/siding/dark/corner,
/turf/open/floor/iron/dark,
/area/crew_quarters/bar/atrium)
+"gEW" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"gFf" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -26750,15 +26462,6 @@
},
/turf/open/floor/iron/sepia,
/area/science/shuttle)
-"gGF" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/rnd/production/circuit_imprinter/department/science,
-/obj/machinery/airalarm{
- pixel_y = 22
- },
-/obj/machinery/ecto_sniffer,
-/turf/open/floor/iron/grid/steel,
-/area/science/robotics/lab)
"gGR" = (
/turf/open/floor/iron/dark,
/area/chapel/main)
@@ -26975,15 +26678,6 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
-"gJH" = (
-/obj/structure/flora/ausbushes/leafybush,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/grass/no_border,
-/area/hallway/secondary/exit/departure_lounge)
"gJI" = (
/obj/item/reagent_containers/glass/bucket,
/obj/structure/window/reinforced{
@@ -27129,15 +26823,6 @@
/obj/effect/turf_decal/stripes/closeup,
/turf/open/floor/iron/techmaint,
/area/security/main)
-"gLi" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/entry)
"gLj" = (
/obj/item/radio/intercom{
pixel_y = -28
@@ -27209,6 +26894,15 @@
/obj/effect/landmark/start/atmospheric_technician,
/turf/open/floor/iron/techmaint,
/area/maintenance/disposal/incinerator)
+"gLR" = (
+/obj/structure/window/reinforced,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/grass/no_border,
+/area/science/shuttledock)
"gLS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 1
@@ -27478,6 +27172,9 @@
/obj/structure/grille,
/turf/open/floor/plating,
/area/maintenance/central/secondary)
+"gPh" = (
+/turf/open/floor/engine/light,
+/area/science/explab)
"gPn" = (
/obj/structure/sign/poster/contraband/red_rum{
pixel_x = 32
@@ -27517,17 +27214,6 @@
},
/turf/open/floor/iron/dark,
/area/crew_quarters/bar)
-"gPz" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"gPE" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/openup{
@@ -27638,25 +27324,6 @@
},
/turf/open/floor/circuit/red,
/area/ai_monitored/turret_protected/ai)
-"gQW" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/item/beacon,
-/turf/open/floor/iron/dark,
-/area/hallway/primary/starboard)
"gRf" = (
/obj/effect/turf_decal/sand/plating,
/obj/machinery/camera/motion{
@@ -27806,13 +27473,6 @@
},
/turf/open/floor/iron/techmaint,
/area/maintenance/starboard/aft)
-"gTk" = (
-/obj/effect/decal/cleanable/glass,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/construction)
"gTm" = (
/obj/structure/chair/fancy/sofa/old/left{
color = "#742925";
@@ -27915,6 +27575,17 @@
/obj/machinery/firealarm/directional/west,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai_upload_foyer)
+"gUM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/central)
"gUV" = (
/obj/machinery/camera{
c_tag = "Escape Shuttle Hallway - Aft";
@@ -28733,23 +28404,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/quartermaster/storage)
-"hhM" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/closeup,
-/obj/machinery/door/airlock/external/glass{
- name = "Labour Shuttle airlock";
- req_access_txt = "63"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/bridge)
"hhW" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -29022,6 +28676,21 @@
},
/turf/open/floor/iron/dark,
/area/crew_quarters/bar)
+"hkZ" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"hlk" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -29159,6 +28828,16 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron/grid/steel,
/area/science/research)
+"hmo" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/construction)
"hmp" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -29305,17 +28984,6 @@
},
/turf/closed/wall,
/area/vacant_room/commissary/commissary1)
-"hpS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/central)
"hpY" = (
/obj/machinery/gateway/centerstation,
/turf/open/floor/iron/dark,
@@ -29578,10 +29246,6 @@
},
/turf/open/floor/iron,
/area/security/main)
-"htz" = (
-/obj/item/beacon,
-/turf/open/floor/iron,
-/area/engine/atmos)
"huc" = (
/obj/structure/cable{
icon_state = "1-8"
@@ -29634,6 +29298,28 @@
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
/area/crew_quarters/heads/captain)
+"huY" = (
+/obj/machinery/computer/turbine_computer{
+ dir = 8;
+ id = "incineratorturbine"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/obj/machinery/button/door/incinerator_vent_atmos_main{
+ pixel_x = 24;
+ pixel_y = -8
+ },
+/obj/machinery/button/door/incinerator_vent_atmos_aux{
+ pixel_x = 24;
+ pixel_y = 8
+ },
+/obj/machinery/button/ignition/incinerator/atmos{
+ pixel_x = 34;
+ pixel_y = 8
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/maintenance/disposal/incinerator)
"hvm" = (
/obj/effect/decal/cleanable/dirt,
/turf/closed/wall,
@@ -29778,18 +29464,37 @@
/obj/structure/lattice/catwalk/over,
/turf/open/floor/plating,
/area/engine/gravity_generator)
-"hwQ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+"hwR" = (
+/obj/machinery/door/airlock/external{
+ name = "Security Escape Pod"
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
+/obj/effect/turf_decal/stripes/closeup,
+/turf/open/floor/catwalk_floor,
+/area/bridge)
+"hxd" = (
+/obj/structure/table,
+/obj/item/computer_hardware/hard_drive/role/medical{
+ pixel_x = 6;
+ pixel_y = 3
},
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
+/obj/item/computer_hardware/hard_drive/role/medical{
+ pixel_x = 3
},
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
+/obj/item/computer_hardware/hard_drive/role/chemistry{
+ pixel_y = 6
+ },
+/obj/item/computer_hardware/hard_drive/role/medical{
+ pixel_x = -3
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/cafeteria,
+/area/crew_quarters/heads/cmo)
"hxg" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -29953,19 +29658,6 @@
},
/turf/open/floor/iron/grid/steel,
/area/science/explab)
-"hzr" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/machinery/keycard_auth{
- pixel_x = 26;
- pixel_y = 8
- },
-/obj/item/pen/fourcolor,
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/crew_quarters/heads/captain)
"hzt" = (
/obj/machinery/door/airlock/maintenance{
name = "cargo maintenance";
@@ -30259,6 +29951,24 @@
dir = 6
},
/area/hallway/primary/central)
+"hDL" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"hDX" = (
/obj/structure/girder,
/obj/structure/cable/yellow{
@@ -30726,6 +30436,15 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron/sepia,
/area/engine/break_room)
+"hKb" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"hKe" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
/obj/item/kirbyplants/random,
@@ -30758,6 +30477,21 @@
/obj/structure/sign/warning/securearea,
/turf/closed/wall,
/area/maintenance/department/engine)
+"hKJ" = (
+/obj/item/storage/secure/briefcase{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/structure/rack,
+/obj/item/book/manual/wiki/security_space_law,
+/obj/machinery/airalarm{
+ pixel_y = 22
+ },
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads/captain)
"hKK" = (
/obj/structure/closet/crate{
name = "food crate"
@@ -31156,34 +30890,6 @@
},
/turf/open/floor/iron/techmaint,
/area/security/prison)
-"hOb" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron/grid/steel,
-/area/medical/virology)
-"hOz" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/machinery/door/airlock/external{
- name = "External Solar Access";
- req_access_txt = "10; 13"
- },
-/obj/effect/turf_decal/stripes/closeup{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/layer_manifold{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/solars/port)
"hOB" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/glass,
@@ -31231,12 +30937,6 @@
dir = 8
},
/area/hallway/primary/aft)
-"hPb" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/maintenance/disposal/incinerator)
"hPe" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/effect/turf_decal/stripes/line{
@@ -31496,28 +31196,6 @@
broken = 1
},
/area/space)
-"hSM" = (
-/obj/machinery/computer/turbine_computer{
- dir = 8;
- id = "incineratorturbine"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/machinery/button/door/incinerator_vent_atmos_main{
- pixel_x = 24;
- pixel_y = -8
- },
-/obj/machinery/button/door/incinerator_vent_atmos_aux{
- pixel_x = 24;
- pixel_y = 8
- },
-/obj/machinery/button/ignition/incinerator/atmos{
- pixel_x = 34;
- pixel_y = 8
- },
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/maintenance/disposal/incinerator)
"hSO" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -31732,6 +31410,9 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"hVF" = (
+/turf/open/floor/glass/reinforced,
+/area/security/main)
"hVK" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/vending/cigarette,
@@ -31775,6 +31456,19 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating/rust,
/area/maintenance/department/medical)
+"hWn" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/grass/no_border,
+/area/bridge)
"hWB" = (
/obj/structure/table/reinforced,
/obj/machinery/cell_charger,
@@ -32162,6 +31856,16 @@
/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/open/floor/iron,
/area/engine/atmos)
+"ibk" = (
+/obj/structure/displaycase/captain,
+/obj/machinery/status_display/evac{
+ pixel_x = 32
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads/captain)
"ibl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 6
@@ -32183,16 +31887,6 @@
},
/turf/open/floor/grass,
/area/storage/art)
-"ibt" = (
-/obj/structure/flora/ausbushes/leafybush,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/grass/no_border,
-/area/medical/medbay/lobby)
"ibu" = (
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/plating,
@@ -32245,12 +31939,6 @@
/obj/machinery/firealarm/directional/west,
/turf/open/floor/iron,
/area/quartermaster/sorting)
-"ibO" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 9
- },
-/turf/open/floor/catwalk_floor,
-/area/drydock)
"ibU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
@@ -32400,13 +32088,6 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai)
-"idB" = (
-/obj/effect/decal/cleanable/oil,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/construction)
"idG" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -32876,6 +32557,9 @@
},
/turf/open/floor/iron/dark,
/area/maintenance/department/science)
+"ikx" = (
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/maintenance/disposal/incinerator)
"ikz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 9
@@ -32894,21 +32578,6 @@
},
/turf/open/floor/iron/dark,
/area/chapel/main)
-"ikE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"ikF" = (
/obj/effect/turf_decal/trimline/blue/corner,
/obj/effect/turf_decal/trimline/blue/filled/line{
@@ -33018,6 +32687,42 @@
},
/turf/open/floor/iron,
/area/medical/medbay/central)
+"imL" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/turf/open/floor/iron/grid/steel,
+/area/hallway/primary/aft)
+"imM" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron/stairs/right{
+ dir = 8
+ },
+/area/hallway/primary/aft)
"imQ" = (
/obj/structure/grille/broken,
/turf/open/floor/plating,
@@ -33139,15 +32844,6 @@
},
/turf/open/floor/iron/dark,
/area/security/execution/transfer)
-"inT" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating/airless{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/science/shuttle)
"ioe" = (
/obj/machinery/camera{
c_tag = "Starboard Primary Hallway - AI antechamber Entrance";
@@ -33307,14 +33003,6 @@
"ipT" = (
/turf/open/floor/plating/asteroid,
/area/hallway/primary/starboard)
-"iqb" = (
-/obj/machinery/door/poddoor/preopen{
- id = "telelab";
- name = "test chamber blast door"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/science/explab)
"iqf" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -33561,19 +33249,6 @@
/obj/item/clothing/mask/joy,
/turf/open/floor/plating,
/area/quartermaster/exploration_prep)
-"ity" = (
-/obj/effect/turf_decal/stripes/closeup,
-/obj/machinery/advanced_airlock_controller{
- pixel_y = 26
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer4{
- dir = 8
- },
-/turf/open/floor/catwalk_floor,
-/area/bridge)
"itO" = (
/obj/effect/turf_decal/stripes/closeup{
dir = 1
@@ -33681,6 +33356,17 @@
},
/turf/open/floor/iron/grid/steel,
/area/bridge)
+"iuB" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/machinery/newscaster{
+ pixel_y = 31
+ },
+/turf/open/floor/cult,
+/area/library)
"iuH" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -33831,18 +33517,6 @@
},
/turf/open/floor/plating,
/area/maintenance/department/medical)
-"ivw" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/structure/disposalpipe/junction/flip{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/hallway/primary/central)
"ivG" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/box,
@@ -34030,20 +33704,6 @@
},
/turf/open/floor/iron/dark,
/area/hallway/primary/aft)
-"ixR" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 26
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"ixT" = (
/obj/effect/turf_decal/trimline/blue/filled/line{
dir = 8
@@ -34225,6 +33885,28 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/iron/dark,
/area/medical/medbay/lobby)
+"izO" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/airlock/external{
+ name = "External Solar Access";
+ req_access_txt = "10; 13"
+ },
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/solars/port)
"izQ" = (
/obj/effect/decal/cleanable/cobweb,
/turf/closed/wall/r_wall,
@@ -34579,6 +34261,16 @@
/obj/structure/chair/wood/normal,
/turf/open/floor/iron/dark,
/area/security/courtroom)
+"iFb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/siding/wood/corner,
+/turf/open/floor/wood,
+/area/crew_quarters/heads/captain)
"iFh" = (
/obj/structure/target_stake,
/obj/item/target/syndicate,
@@ -34594,6 +34286,30 @@
},
/turf/open/floor/iron/freezer,
/area/crew_quarters/toilet/auxiliary)
+"iFo" = (
+/obj/machinery/airalarm{
+ pixel_y = 22
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/siding/wood,
+/turf/open/floor/wood,
+/area/crew_quarters/heads/captain)
+"iFy" = (
+/obj/item/kirbyplants/random,
+/obj/machinery/power/apc/auto_name/north{
+ pixel_y = 24
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/effect/turf_decal/siding/wood,
+/turf/open/floor/wood,
+/area/crew_quarters/heads/captain)
"iFz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 10
@@ -34836,6 +34552,17 @@
},
/turf/open/floor/iron,
/area/maintenance/department/security/brig)
+"iIc" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/obj/item/storage/backpack/duffelbag/med/implant,
+/obj/item/storage/backpack/duffelbag/med/surgery{
+ pixel_y = 8
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/medical/surgery)
"iIf" = (
/obj/structure/table/reinforced,
/obj/machinery/light_switch{
@@ -34857,6 +34584,11 @@
/obj/machinery/firealarm/directional/north,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"iIC" = (
+/obj/structure/cable,
+/obj/machinery/power/tracker,
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/port/aft)
"iID" = (
/obj/machinery/airalarm{
dir = 1;
@@ -34975,6 +34707,22 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron/white,
/area/medical/genetics)
+"iJC" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/sign/barsign{
+ pixel_y = 32
+ },
+/obj/machinery/door/window/southright{
+ base_state = "left";
+ icon_state = "left";
+ name = "Sign door";
+ req_one_access = "25"
+ },
+/turf/open/floor/grass/no_border,
+/area/crew_quarters/bar/atrium)
"iJE" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -35239,27 +34987,6 @@
},
/turf/open/floor/iron/dark,
/area/engine/gravity_generator)
-"iOa" = (
-/obj/structure/closet/crate,
-/obj/item/stack/cable_coil,
-/obj/item/crowbar,
-/obj/effect/turf_decal/bot{
- dir = 1
- },
-/obj/item/stack/sheet/rglass{
- amount = 50
- },
-/obj/item/stack/sheet/iron/fifty,
-/obj/item/screwdriver{
- pixel_y = 5
- },
-/obj/item/radio/off{
- pixel_x = 4
- },
-/turf/open/floor/iron/dark/side{
- dir = 8
- },
-/area/teleporter)
"iOe" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 1
@@ -35566,19 +35293,6 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
-"iSa" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"iSd" = (
/obj/machinery/suit_storage_unit/standard_unit,
/obj/effect/turf_decal/stripes/line{
@@ -35895,6 +35609,17 @@
},
/turf/open/floor/iron/techmaint,
/area/science/misc_lab)
+"iVZ" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green,
+/obj/item/toy/figure/captain{
+ pixel_x = 8
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads/captain)
"iWb" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
@@ -35976,6 +35701,11 @@
},
/turf/open/floor/iron/dark,
/area/security/courtroom)
+"iXt" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plating,
+/area/construction)
"iXy" = (
/obj/structure/rack,
/obj/item/storage/toolbox/electrical{
@@ -35999,19 +35729,6 @@
},
/turf/open/floor/iron/techmaint,
/area/ai_monitored/storage/eva)
-"iXA" = (
-/obj/effect/turf_decal/bot,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/structure/closet/crate,
-/obj/item/reagent_containers/spray/cleaner{
- pixel_x = -3;
- pixel_y = 2
- },
-/obj/item/clothing/mask/surgical,
-/obj/item/clothing/gloves/color/latex,
-/obj/item/reagent_containers/blood/OPlus,
-/turf/open/floor/iron/techmaint,
-/area/security/main)
"iYl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 8
@@ -36260,6 +35977,22 @@
/obj/effect/turf_decal/tile/green/fourcorners/contrasted,
/turf/open/floor/iron/techmaint,
/area/medical/medbay/central)
+"jbx" = (
+/obj/structure/table,
+/obj/effect/turf_decal/bot,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26
+ },
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/stack/sheet/plasteel{
+ amount = 15
+ },
+/obj/item/borg/upgrade/rename,
+/turf/open/floor/iron/grid/steel,
+/area/science/robotics/lab)
"jbB" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -36718,22 +36451,6 @@
},
/turf/open/floor/iron/white,
/area/medical/apothecary)
-"jjc" = (
-/obj/effect/turf_decal/stripes/closeup{
- dir = 1
- },
-/obj/machinery/door/airlock/external{
- name = "External Airlock";
- req_one_access_txt = "13;24;10"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"jjd" = (
/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
/obj/machinery/light/small{
@@ -36796,6 +36513,35 @@
/obj/item/multitool,
/turf/open/floor/iron/dark,
/area/storage/tech)
+"jjr" = (
+/obj/structure/table/wood,
+/obj/item/folder/blue{
+ pixel_x = 8
+ },
+/obj/item/stamp/captain{
+ pixel_x = 8
+ },
+/obj/structure/desk_bell/speed_demon{
+ pixel_x = -8
+ },
+/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{
+ pixel_x = -6;
+ pixel_y = 14
+ },
+/obj/item/reagent_containers/food/drinks/bottle/whiskey{
+ desc = "A bottle of whiskey. There's a label that reads 'tears' taped to the front.";
+ name = "Bottle of Tears";
+ pixel_x = 8;
+ pixel_y = 20
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads/captain)
"jjx" = (
/obj/effect/turf_decal/guideline/guideline_in/red{
dir = 1
@@ -37003,6 +36749,12 @@
},
/turf/open/floor/wood,
/area/library)
+"jkT" = (
+/obj/effect/turf_decal/siding/thinplating_new/dark{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/security/nuke_storage)
"jlz" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -37093,18 +36845,6 @@
/obj/effect/turf_decal/tile/yellow/half/contrasted,
/turf/open/floor/iron,
/area/storage/primary)
-"jmm" = (
-/obj/machinery/status_display/evac{
- pixel_x = 32
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/siding/thinplating_new/dark{
- dir = 4
- },
-/obj/structure/closet/crate/goldcrate,
-/obj/item/crowbar,
-/turf/open/floor/engine,
-/area/security/nuke_storage)
"jmr" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/rack,
@@ -37308,19 +37048,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/locker)
-"jpL" = (
-/obj/structure/lattice/catwalk/over,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/obj/machinery/status_display/evac{
- pixel_x = 32
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/science/explab)
"jpM" = (
/obj/effect/turf_decal/siding/wideplating_new/corner{
dir = 4
@@ -37467,6 +37194,25 @@
dir = 1
},
/area/engine/atmos)
+"jrZ" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external{
+ name = "External Solar Access";
+ req_access_txt = "10; 13"
+ },
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/layer_manifold{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/solars/port)
"jsu" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -37882,6 +37628,13 @@
},
/turf/open/floor/iron/dark,
/area/security/brig)
+"jzf" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/electrical,
+/obj/item/clothing/gloves/color/yellow,
+/turf/open/floor/iron/dark,
+/area/engine/atmos)
"jzp" = (
/obj/effect/turf_decal/bot,
/obj/structure/rack,
@@ -38262,12 +38015,6 @@
},
/turf/open/floor/plating,
/area/maintenance/port)
-"jEA" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/catwalk_floor,
-/area/engine/atmos)
"jEJ" = (
/obj/structure/grille,
/obj/effect/turf_decal/stripes/closeup{
@@ -38313,6 +38060,13 @@
/obj/structure/lattice/catwalk/over,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/ai)
+"jFh" = (
+/obj/machinery/light/small,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/drydock)
"jFq" = (
/obj/item/kirbyplants/random,
/obj/machinery/light/small{
@@ -38331,6 +38085,15 @@
},
/turf/open/floor/iron/freezer,
/area/crew_quarters/toilet/restrooms)
+"jFB" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/entry)
"jFT" = (
/obj/effect/spawner/lootdrop/maintenance/two,
/obj/structure/rack,
@@ -38756,13 +38519,6 @@
},
/turf/open/floor/iron/dark,
/area/engine/gravity_generator)
-"jLq" = (
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/leafybush,
-/obj/structure/window/reinforced,
-/turf/open/floor/grass/no_border,
-/area/crew_quarters/bar/atrium)
"jLt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -38856,6 +38612,21 @@
},
/turf/open/floor/iron/dark,
/area/engine/atmos)
+"jNj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/science/mixing)
"jNv" = (
/obj/machinery/hydroponics/constructable,
/obj/effect/turf_decal/delivery,
@@ -38871,6 +38642,13 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/wood,
/area/hallway/primary/port)
+"jNF" = (
+/obj/machinery/power/tracker,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/starboard/fore)
"jNJ" = (
/obj/structure/lattice/catwalk/over,
/obj/structure/disposalpipe/trunk{
@@ -39037,6 +38815,23 @@
"jOT" = (
/turf/open/floor/plating/rust,
/area/maintenance/port/fore)
+"jOV" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/obj/machinery/door/airlock/virology{
+ name = "Virology Breakroom";
+ req_access_txt = "39"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/grid/steel,
+/area/medical/virology)
"jPi" = (
/obj/effect/turf_decal/stripes/end{
dir = 1
@@ -39253,6 +39048,20 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/bridge)
+"jQy" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "emmd";
+ name = "Emergency Medical Lockdown Shutters"
+ },
+/turf/open/floor/grass/no_border,
+/area/medical/medbay/lobby)
"jQF" = (
/obj/effect/turf_decal/guideline/guideline_in_T/red{
dir = 4
@@ -39328,6 +39137,18 @@
name = "mainframe floor"
},
/area/tcommsat/server)
+"jRp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/dark/hidden{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/maintenance/disposal/incinerator)
"jRx" = (
/obj/effect/turf_decal/trimline/red/filled/line{
dir = 4
@@ -39374,16 +39195,6 @@
dir = 4
},
/area/hallway/primary/port)
-"jRN" = (
-/obj/machinery/power/solar{
- id = "portsolar";
- name = "Port Solar Array"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/port)
"jRO" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -39408,6 +39219,13 @@
},
/turf/open/floor/plating/airless,
/area/space/nearstation)
+"jSu" = (
+/obj/structure/bookcase,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/construction)
"jSv" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -39509,6 +39327,16 @@
},
/turf/open/floor/iron/sepia,
/area/construction/mining/aux_base)
+"jTR" = (
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/mapping_helpers/dead_body_placer/medbay_morgue,
+/turf/open/floor/iron/techmaint,
+/area/medical/morgue)
"jTV" = (
/obj/structure/table/reinforced,
/obj/effect/turf_decal/bot,
@@ -39576,18 +39404,6 @@
},
/turf/open/floor/plating,
/area/maintenance/department/medical)
-"jUU" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/structure/disposalpipe/junction{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/entry)
"jVg" = (
/obj/effect/turf_decal/caution/stand_clear{
dir = 1
@@ -39681,21 +39497,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/port)
-"jWq" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/science/mixing)
"jWE" = (
/obj/structure/table/reinforced,
/obj/item/stack/package_wrap,
@@ -39829,18 +39630,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/hallway/secondary/exit/departure_lounge)
-"jYd" = (
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/grass/no_border,
-/area/science/lobby)
"jYj" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -39991,18 +39780,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/dark,
/area/ai_monitored/storage/eva)
-"jZy" = (
-/obj/machinery/atmospherics/components/binary/valve{
- dir = 4;
- name = "mix to port"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/science/mixing)
"jZL" = (
/obj/machinery/camera{
c_tag = "Engineering Maintenance - Auxiliary Atmospheric entrance";
@@ -40044,18 +39821,6 @@
},
/turf/open/floor/iron/techmaint,
/area/ai_monitored/storage/eva)
-"jZZ" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"kac" = (
/obj/machinery/door/firedoor,
/obj/structure/table,
@@ -40155,6 +39920,19 @@
},
/turf/open/floor/iron/dark,
/area/hallway/primary/starboard)
+"kbK" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/closet/crate,
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/obj/item/clothing/mask/surgical,
+/obj/item/clothing/gloves/color/latex,
+/obj/item/reagent_containers/blood/OPlus,
+/turf/open/floor/iron/techmaint,
+/area/security/main)
"kbL" = (
/obj/machinery/light{
dir = 1
@@ -40213,6 +39991,14 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/starboard)
+"kcg" = (
+/obj/structure/table/wood,
+/obj/item/folder,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = -32
+ },
+/turf/open/floor/cult,
+/area/library)
"kcn" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -40477,6 +40263,16 @@
/obj/structure/window/reinforced,
/turf/open/floor/carpet/royalblack,
/area/bridge/showroom/corporate)
+"kfL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"kfR" = (
/obj/machinery/computer/communications{
dir = 8
@@ -40495,6 +40291,28 @@
},
/turf/open/floor/iron/dark,
/area/medical/storage)
+"kgh" = (
+/obj/item/radio/intercom{
+ pixel_y = -28
+ },
+/obj/effect/turf_decal/bot,
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/item/clothing/head/utility/welding{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/clothing/head/utility/welding{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/multitool{
+ layer = 4
+ },
+/turf/open/floor/iron/dark/side,
+/area/engine/atmos)
"kgq" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/disposalpipe/segment{
@@ -40639,6 +40457,16 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/turf/open/floor/wood,
/area/security/detectives_office)
+"khR" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/catwalk_floor,
+/area/engine/atmos)
"khS" = (
/obj/effect/turf_decal/tile/red/anticorner/contrasted{
dir = 4
@@ -40926,6 +40754,17 @@
},
/turf/open/floor/plating,
/area/maintenance/disposal)
+"klI" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/closeup,
+/obj/machinery/door/airlock/public/glass{
+ name = "Departures Lounge"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/grid/steel,
+/area/hallway/secondary/exit/departure_lounge)
"kmm" = (
/obj/effect/turf_decal/guideline/guideline_in/red,
/obj/effect/turf_decal/guideline/guideline_mid/purple,
@@ -40942,6 +40781,20 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron/dark,
/area/engine/atmos)
+"kmD" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/box,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/techmaint,
+/area/science/explab)
"kmL" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -40998,6 +40851,15 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
+"knu" = (
+/obj/structure/table,
+/obj/item/storage/box/bodybags,
+/obj/item/clothing/gloves/color/latex,
+/obj/item/clothing/mask/surgical,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/iron/dark,
+/area/security/detectives_office)
"knz" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/effect/turf_decal/bot,
@@ -41080,18 +40942,6 @@
},
/turf/open/floor/plating,
/area/security/main)
-"kps" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/dark/hidden{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/maintenance/disposal/incinerator)
"kpO" = (
/obj/machinery/hydroponics/constructable,
/obj/machinery/airalarm/directional/east,
@@ -41173,11 +41023,6 @@
},
/turf/open/floor/iron/techmaint,
/area/ai_monitored/security/armory)
-"kqp" = (
-/obj/structure/flora/ausbushes/grassybush,
-/obj/structure/window/reinforced,
-/turf/open/floor/grass/no_border,
-/area/crew_quarters/bar/atrium)
"kqu" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/box,
@@ -41512,6 +41357,15 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
+"ktQ" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer4,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"ktT" = (
/obj/machinery/conveyor{
dir = 1;
@@ -41576,6 +41430,14 @@
},
/turf/open/floor/iron/techmaint,
/area/maintenance/department/security/brig)
+"kuA" = (
+/obj/structure/chair/fancy/comfy{
+ buildstackamount = 0;
+ color = "#742925";
+ dir = 4
+ },
+/turf/open/floor/cult,
+/area/library)
"kuB" = (
/obj/machinery/light{
dir = 1
@@ -41626,6 +41488,12 @@
},
/turf/open/floor/iron,
/area/security/courtroom)
+"kuS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/construction)
"kuT" = (
/obj/structure/lattice/catwalk/over,
/obj/machinery/conveyor/inverted{
@@ -41854,17 +41722,6 @@
/obj/effect/turf_decal/tile/bar/opposingcorners,
/turf/open/floor/iron/cafeteria,
/area/crew_quarters/kitchen)
-"kyp" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/stripes/closeup,
-/obj/machinery/door/airlock/public/glass{
- name = "Departures Lounge"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron/grid/steel,
-/area/hallway/secondary/exit/departure_lounge)
"kyO" = (
/obj/structure/disposalpipe/segment{
dir = 8
@@ -42090,18 +41947,6 @@
},
/turf/open/floor/iron/dark,
/area/hallway/primary/starboard)
-"kBV" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/security/checkpoint/escape)
"kBX" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 1
@@ -42126,6 +41971,21 @@
},
/turf/open/floor/iron/techmaint,
/area/bridge)
+"kBY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"kCb" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -42198,15 +42058,6 @@
/obj/machinery/vending/cigarette,
/turf/open/floor/iron/dark,
/area/hallway/primary/starboard)
-"kCK" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"kDg" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 8
@@ -42585,16 +42436,6 @@
},
/turf/open/floor/wood,
/area/crew_quarters/dorms)
-"kIv" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/item/beacon,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/mob/living/simple_animal/pet/dog/pug{
- name = "Swanson"
- },
-/turf/open/floor/engine/light,
-/area/science/explab)
"kIy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 5
@@ -42676,6 +42517,21 @@
},
/turf/open/floor/iron/dark,
/area/maintenance/department/science)
+"kJv" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L7"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"kJN" = (
/obj/machinery/firealarm/directional/west,
/turf/open/floor/iron/sepia,
@@ -42780,10 +42636,6 @@
broken = 1
},
/area/maintenance/port/central)
-"kLJ" = (
-/obj/structure/lattice/catwalk/over,
-/turf/open/floor/plating,
-/area/science/explab)
"kLY" = (
/obj/structure/sign/warning/radiation{
pixel_x = 32
@@ -42797,6 +42649,21 @@
/obj/effect/turf_decal/stripes/red/corner,
/turf/open/floor/vault,
/area/engine/engine_room)
+"kLZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/science/mixing)
"kMc" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
@@ -42995,28 +42862,6 @@
},
/turf/open/floor/iron/dark,
/area/security/brig)
-"kON" = (
-/obj/machinery/camera{
- c_tag = "Xenobiology - Aft";
- dir = 9;
- name = "xenobiology camera";
- network = list("ss13","xeno","rd")
- },
-/obj/item/radio/intercom{
- pixel_x = 28
- },
-/obj/structure/table,
-/obj/item/reagent_containers/food/drinks/soda_cans/grey_bull{
- pixel_x = -6;
- pixel_y = 3
- },
-/obj/item/reagent_containers/food/drinks/soda_cans/cola{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/book/manual/wiki/experimentor,
-/turf/open/floor/iron/grid/steel,
-/area/science/xenobiology)
"kPc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -43132,6 +42977,11 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/exit/departure_lounge)
+"kQv" = (
+/obj/structure/window/reinforced,
+/obj/structure/flora/ausbushes/leafybush,
+/turf/open/floor/grass/no_border,
+/area/quartermaster/exploration_prep)
"kQw" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -43310,16 +43160,13 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/carpet/orange,
/area/quartermaster/qm)
-"kST" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+"kSZ" = (
+/obj/effect/landmark/xeno_spawn,
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
+/turf/open/floor/plating,
+/area/construction)
"kTz" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -43595,6 +43442,14 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"kVO" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "testlab";
+ name = "test chamber blast door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/science/explab)
"kVV" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
@@ -43686,6 +43541,22 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron/techmaint,
/area/maintenance/aft)
+"kWB" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/closeup,
+/obj/machinery/door/airlock/external{
+ name = "Labour Shuttle airlock"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/bridge)
"kWE" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/pipe/simple/general/visible{
@@ -43977,6 +43848,32 @@
},
/turf/open/floor/wood,
/area/crew_quarters/dorms)
+"kYw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 4;
+ name = "Xenobiology Junction";
+ sortType = 28
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"kYH" = (
/obj/machinery/disposal/bin,
/obj/effect/turf_decal/delivery,
@@ -44255,6 +44152,13 @@
/obj/effect/turf_decal/siding/thinplating_new,
/turf/open/floor/iron,
/area/hallway/primary/starboard)
+"lbJ" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/open/floor/grass/no_border,
+/area/science/lobby)
"lbO" = (
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
@@ -44286,16 +44190,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"lco" = (
-/obj/effect/turf_decal/stripes/white/line{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/mapping_helpers/dead_body_placer/medbay_morgue,
-/turf/open/floor/iron/techmaint,
-/area/medical/morgue)
"lcx" = (
/obj/structure/chair/stool{
dir = 1
@@ -44680,21 +44574,6 @@
},
/turf/open/floor/noslip/standard,
/area/crew_quarters/fitness/recreation)
-"lhd" = (
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/auto_name/north{
- pixel_y = 24
- },
-/obj/machinery/light_switch{
- pixel_x = -24
- },
-/obj/effect/turf_decal/box,
-/turf/open/floor/plating/airless{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/drydock/security)
"lhf" = (
/turf/open/floor/plating{
broken = 1
@@ -44760,6 +44639,17 @@
},
/turf/open/floor/plating,
/area/vacant_room/commissary/commissaryRandom)
+"lhP" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"lhT" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -45050,6 +44940,18 @@
},
/turf/open/floor/iron/dark,
/area/security/courtroom)
+"lkE" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/junction/flip{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/central)
"lkH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 5
@@ -45091,13 +44993,6 @@
},
/turf/open/floor/wood,
/area/quartermaster/qm)
-"lld" = (
-/obj/machinery/power/tracker,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/starboard/fore)
"lle" = (
/obj/machinery/disposal/bin,
/obj/effect/turf_decal/delivery,
@@ -45409,21 +45304,6 @@
},
/turf/open/floor/plating,
/area/security/checkpoint/customs)
-"lpd" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"lpl" = (
/obj/structure/chair/office{
dir = 4
@@ -45442,19 +45322,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/sorting)
-"lpt" = (
-/obj/machinery/airalarm{
- pixel_y = 22
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/siding/wood,
-/turf/open/floor/wood,
-/area/crew_quarters/heads/captain)
"lpz" = (
/obj/machinery/camera{
c_tag = "Port Primary Hallway - Fore";
@@ -45570,12 +45437,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/science/robotics/lab)
-"lra" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"lrd" = (
/obj/effect/turf_decal/trimline/blue/line{
dir = 4
@@ -45669,6 +45530,19 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"lrR" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/maintenance/disposal/incinerator)
"lrT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -45765,16 +45639,6 @@
"lsS" = (
/turf/open/floor/engine/n2o/light,
/area/engine/atmos)
-"lsZ" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/solar{
- id = "aftstarboard";
- name = "Aft-Starboard Solar Array"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/port/aft)
"lte" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 8
@@ -45822,22 +45686,21 @@
"ltu" = (
/turf/closed/mineral,
/area/maintenance/department/security/brig)
-"ltL" = (
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/grassybush,
-/obj/structure/sign/barsign{
- pixel_y = 32
+"ltB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
},
-/obj/machinery/door/window/southright{
- base_state = "left";
- icon_state = "left";
- name = "Sign door";
- req_one_access = "25"
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
},
-/turf/open/floor/grass/no_border,
-/area/crew_quarters/bar/atrium)
+/obj/machinery/atmospherics/pipe/simple/dark/hidden{
+ dir = 10
+ },
+/obj/structure/sign/warning/fire{
+ pixel_x = 32
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/maintenance/disposal/incinerator)
"ltM" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance/three,
@@ -45884,6 +45747,18 @@
},
/turf/open/floor/plating/rust,
/area/maintenance/aft)
+"lug" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 6
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/iron/dark,
+/area/security/checkpoint/medical)
"luh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 8
@@ -45932,6 +45807,15 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron/dark,
/area/medical/virology)
+"luO" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/caution{
+ dir = 8
+ },
+/turf/open/floor/engine/light,
+/area/science/explab)
"luX" = (
/obj/structure/mirror{
pixel_x = 28
@@ -46127,12 +46011,24 @@
/obj/machinery/firealarm/directional/west,
/turf/open/floor/iron,
/area/hallway/primary/port)
+"lxb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/security/main)
"lxn" = (
/obj/effect/turf_decal/bot,
/obj/structure/closet/cardboard,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/iron,
/area/quartermaster/warehouse)
+"lxs" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/drydock)
"lxx" = (
/obj/machinery/light/small{
dir = 1
@@ -46212,6 +46108,16 @@
/obj/effect/turf_decal/tile/green/opposingcorners,
/turf/open/floor/iron,
/area/hallway/secondary/service)
+"lxK" = (
+/obj/machinery/power/solar{
+ id = "portsolar";
+ name = "Port Solar Array"
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/port)
"lxN" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 8
@@ -46268,22 +46174,6 @@
},
/turf/open/floor/iron/techmaint,
/area/security/execution/transfer)
-"lyy" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Cryogenic Lounge"
- },
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/stripes/closeup{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/iron/grid,
-/area/crew_quarters/cryopods)
"lyM" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
@@ -46381,6 +46271,14 @@
/obj/machinery/light,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai_upload_foyer)
+"lAQ" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/box,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/dark,
+/area/crew_quarters/heads/cmo)
"lAV" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -46439,14 +46337,6 @@
/obj/effect/turf_decal/tile/neutral/opposingcorners,
/turf/open/floor/iron,
/area/crew_quarters/fitness/recreation)
-"lBB" = (
-/obj/effect/turf_decal/plaque{
- icon_state = "L9"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"lBE" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/box,
@@ -46727,9 +46617,18 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"lGa" = (
-/turf/open/floor/glass/reinforced,
-/area/security/main)
+"lFV" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/grass/no_border,
+/area/science/lobby)
"lGe" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
dir = 1
@@ -46757,16 +46656,6 @@
/obj/effect/spawner/structure/window/plasma/reinforced,
/turf/open/floor/engine,
/area/science/mixing/chamber)
-"lGx" = (
-/obj/machinery/power/solar{
- id = "starboardsolar";
- name = "Starboard Solar Array"
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/port)
"lGD" = (
/obj/structure/table,
/obj/item/book/manual/wiki/security_space_law{
@@ -47402,6 +47291,18 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/iron/dark,
/area/medical/apothecary)
+"lQJ" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/security/checkpoint/escape)
"lQM" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/turf_decal/tile/yellow/opposingcorners{
@@ -47440,11 +47341,6 @@
dir = 8
},
/area/ai_monitored/storage/eva)
-"lRj" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/filingcabinet/chestdrawer,
-/turf/open/floor/iron/grid/steel,
-/area/science/robotics/lab)
"lRk" = (
/obj/machinery/camera{
c_tag = "Xenobiology - Cell 2";
@@ -47582,6 +47478,22 @@
/obj/machinery/light/small,
/turf/open/floor/iron/dark,
/area/hallway/primary/starboard)
+"lTF" = (
+/obj/machinery/door/airlock/public/glass{
+ name = "Cryogenic Lounge"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/grid,
+/area/crew_quarters/cryopods)
"lTM" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -47730,6 +47642,15 @@
},
/turf/open/floor/carpet,
/area/vacant_room/office)
+"lVl" = (
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/grass/no_border,
+/area/hallway/secondary/exit/departure_lounge)
"lVp" = (
/obj/item/stack/sheet/iron/fifty,
/obj/item/stack/sheet/iron/fifty,
@@ -47817,6 +47738,25 @@
},
/turf/open/floor/iron/grid/steel,
/area/science/xenobiology)
+"lWD" = (
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/grass/no_border,
+/area/hallway/secondary/exit/departure_lounge)
+"lWK" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/entry)
"lWR" = (
/obj/item/hand_labeler,
/obj/item/crowbar,
@@ -47919,6 +47859,17 @@
/obj/item/organ/eyes,
/turf/open/floor/iron,
/area/maintenance/department/security/brig)
+"lYj" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/grass/no_border,
+/area/hallway/secondary/exit/departure_lounge)
"lYr" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/security/glass{
@@ -48119,16 +48070,6 @@
},
/turf/open/floor/iron,
/area/hydroponics)
-"mbu" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/iron/dark,
-/area/security/main)
"mbH" = (
/obj/machinery/power/apc/auto_name/north{
pixel_y = 24
@@ -48370,15 +48311,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"meL" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/catwalk_floor,
-/area/security/checkpoint/escape)
"meU" = (
/obj/effect/turf_decal/caution/stand_clear,
/obj/effect/turf_decal/stripes/closeup{
@@ -48415,17 +48347,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/engine,
/area/science/storage)
-"mfK" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"mfN" = (
/obj/machinery/reagentgrinder{
desc = "Used to grind things up into raw materials and liquids.";
@@ -48687,18 +48608,6 @@
},
/turf/open/floor/plating,
/area/security/prison)
-"mjz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/trimline/green/filled/line{
- dir = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron/tiled/light,
-/area/medical/virology)
"mjB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/effect/turf_decal/trimline/green/filled/line{
@@ -48820,6 +48729,15 @@
},
/turf/open/floor/iron/dark,
/area/security/checkpoint)
+"mlu" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating/airless{
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/science/shuttle)
"mlH" = (
/obj/effect/turf_decal/trimline/red/filled/line{
dir = 1
@@ -48961,6 +48879,16 @@
},
/turf/open/floor/iron/checker,
/area/quartermaster/storage)
+"mnZ" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"moh" = (
/obj/structure/table/optable,
/obj/effect/turf_decal/bot_white,
@@ -49000,6 +48928,18 @@
},
/turf/open/floor/plating,
/area/engine/atmos)
+"moF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/engine/atmos)
"moJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
@@ -49060,6 +49000,18 @@
/obj/structure/filingcabinet/chestdrawer,
/turf/open/floor/iron,
/area/security/main)
+"mpv" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/grass/no_border,
+/area/hallway/primary/port)
"mpB" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/structure/cable/yellow{
@@ -49628,19 +49580,16 @@
/obj/structure/window/reinforced,
/turf/open/floor/iron/dark,
/area/hallway/primary/central)
-"mxt" = (
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
+"mxD" = (
+/obj/machinery/power/solar{
+ id = "starboardsolar";
+ name = "Starboard Solar Array"
},
-/obj/structure/window/reinforced{
- dir = 4
+/obj/structure/cable{
+ icon_state = "0-8"
},
-/turf/open/floor/grass/no_border,
-/area/bridge)
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/port)
"mxQ" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
@@ -49707,6 +49656,22 @@
/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/bridge)
+"myp" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/grass/no_border,
+/area/science/research)
"myD" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -50093,6 +50058,28 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/storage/tech)
+"mDl" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external{
+ name = "External Solar Access";
+ req_access_txt = "10; 13"
+ },
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/solars/starboard/fore)
"mDn" = (
/obj/effect/turf_decal/trimline/purple/filled/line{
dir = 5
@@ -50585,12 +50572,6 @@
/obj/structure/table/wood,
/turf/open/floor/carpet/purple,
/area/crew_quarters/dorms)
-"mJX" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/catwalk_floor,
-/area/drydock/security)
"mJZ" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -50685,6 +50666,17 @@
dir = 10
},
/area/ai_monitored/storage/eva)
+"mKT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"mKU" = (
/obj/machinery/firealarm/directional/north,
/turf/open/floor/iron,
@@ -50811,15 +50803,6 @@
},
/turf/open/floor/iron/techmaint,
/area/hallway/primary/central)
-"mME" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/science/shuttle)
"mMH" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
@@ -50833,6 +50816,16 @@
/obj/effect/turf_decal/siding/wood,
/turf/open/floor/wood,
/area/bridge/meeting_room/council)
+"mMR" = (
+/obj/machinery/power/solar{
+ id = "starboardsolar";
+ name = "Starboard Solar Array"
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/starboard/fore)
"mMX" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -50854,6 +50847,27 @@
},
/turf/open/floor/wood,
/area/crew_quarters/dorms)
+"mNd" = (
+/obj/structure/closet/crate,
+/obj/item/stack/cable_coil,
+/obj/item/crowbar,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/item/stack/sheet/rglass{
+ amount = 50
+ },
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/screwdriver{
+ pixel_y = 5
+ },
+/obj/item/radio/off{
+ pixel_x = 4
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 8
+ },
+/area/teleporter)
"mNi" = (
/obj/effect/turf_decal/tile/purple/opposingcorners,
/turf/open/floor/iron/white,
@@ -50967,16 +50981,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"mOv" = (
-/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
- dir = 4
- },
-/obj/structure/closet/secure_closet/medical2,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron/dark/side{
- dir = 5
- },
-/area/medical/surgery)
"mOH" = (
/obj/structure/sign/painting/library{
pixel_x = -32
@@ -51229,6 +51233,23 @@
/obj/effect/turf_decal/siding/purple,
/turf/open/floor/iron/white,
/area/science/lobby)
+"mRL" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/open/floor/grass/no_border,
+/area/hallway/primary/port)
"mRN" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -51440,6 +51461,11 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron/dark,
/area/hallway/primary/central)
+"mUh" = (
+/obj/structure/window/reinforced,
+/obj/structure/flora/ausbushes/genericbush,
+/turf/open/floor/grass/no_border,
+/area/quartermaster/exploration_prep)
"mUr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 6
@@ -51450,6 +51476,16 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/port/central)
+"mUu" = (
+/obj/structure/table,
+/obj/item/storage/backpack/duffelbag/sec/surgery{
+ pixel_y = 4
+ },
+/obj/item/clothing/gloves/color/latex,
+/turf/open/floor/iron/white/side{
+ dir = 1
+ },
+/area/science/robotics/lab)
"mUv" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -51655,40 +51691,6 @@
},
/turf/closed/wall/r_wall,
/area/engine/supermatter)
-"mYq" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/button/door{
- id = "rndlabext";
- name = "External Research Shutters Control";
- pixel_x = -6;
- pixel_y = 24;
- req_one_access_txt = "7;29"
- },
-/obj/machinery/button/door{
- id = "rndlabint";
- name = "Internal Research Shutters Control";
- pixel_x = 6;
- pixel_y = 24;
- req_one_access_txt = "7;29"
- },
-/obj/structure/table,
-/obj/item/storage/toolbox/mechanical{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/storage/toolbox/mechanical,
-/obj/item/stack/cable_coil/white,
-/obj/item/stack/cable_coil/white{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/effect/turf_decal/trimline/purple/filled/line{
- dir = 1
- },
-/turf/open/floor/iron/grid/steel,
-/area/science/lab)
"mYB" = (
/obj/structure/sign/departments/minsky/security/security,
/turf/closed/wall/r_wall,
@@ -51757,19 +51759,6 @@
burnt = 1
},
/area/maintenance/port/central)
-"mZE" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=14.2-AftCrossRet";
- location = "14.1-GravGen"
- },
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"mZO" = (
/obj/item/toy/beach_ball,
/mob/living/carbon/monkey,
@@ -51882,6 +51871,10 @@
/obj/effect/turf_decal/tile/yellow/opposingcorners,
/turf/open/floor/iron/sepia,
/area/engine/engineering)
+"nbH" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/floor/catwalk_floor,
+/area/engine/engine_room)
"nbL" = (
/obj/item/reagent_containers/syringe/antiviral{
pixel_x = 7;
@@ -51929,14 +51922,6 @@
/obj/effect/spawner/room/threexthree,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"ncf" = (
-/obj/machinery/newscaster{
- pixel_y = 31
- },
-/obj/item/folder,
-/obj/structure/table/wood,
-/turf/open/floor/cult,
-/area/library)
"nch" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/closeup,
@@ -51950,23 +51935,6 @@
},
/turf/open/floor/iron/techmaint,
/area/science/storage)
-"ncj" = (
-/obj/structure/extinguisher_cabinet{
- pixel_y = -30
- },
-/obj/structure/table/optable{
- name = "Robotics Operating Table"
- },
-/obj/structure/extinguisher_cabinet{
- pixel_y = -30
- },
-/obj/structure/table/optable{
- name = "Robotics Operating Table"
- },
-/turf/open/floor/iron/white/side{
- dir = 1
- },
-/area/science/robotics/lab)
"nck" = (
/obj/item/storage/toolbox/emergency,
/obj/effect/spawner/lootdrop/maintenance,
@@ -52059,6 +52027,12 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
+"ndN" = (
+/obj/structure/window/reinforced,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/open/floor/grass/no_border,
+/area/quartermaster/exploration_prep)
"neg" = (
/obj/structure/chair/foldable{
dir = 8
@@ -52209,26 +52183,19 @@
"nfM" = (
/turf/closed/wall/rust,
/area/maintenance/disposal)
+"nfY" = (
+/obj/machinery/camera{
+ c_tag = "Shuttle construction area - Security shuttle dock";
+ dir = 9;
+ name = "hallway camera"
+ },
+/turf/open/floor/catwalk_floor,
+/area/drydock/security)
"nfZ" = (
/obj/effect/spawner/structure/window/plasma/reinforced,
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/visible,
/turf/open/floor/plating,
/area/engine/engine_room)
-"ngc" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"ngf" = (
/obj/machinery/suit_storage_unit/standard_unit,
/obj/effect/turf_decal/stripes/line,
@@ -52294,9 +52261,6 @@
},
/turf/open/floor/plating,
/area/maintenance/port)
-"ngS" = (
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/maintenance/disposal/incinerator)
"ngZ" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
@@ -52783,15 +52747,6 @@
/obj/machinery/status_display/evac,
/turf/closed/wall,
/area/crew_quarters/bar)
-"nnW" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/drydock/security)
"nnZ" = (
/obj/effect/turf_decal/trimline/red/filled/line{
dir = 8
@@ -52933,6 +52888,17 @@
},
/turf/open/floor/wood,
/area/crew_quarters/bar/atrium)
+"npu" = (
+/obj/machinery/power/apc/auto_name/south{
+ pixel_y = -24
+ },
+/obj/structure/cable/yellow,
+/obj/machinery/light,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/security/main)
"npK" = (
/obj/item/circular_saw,
/obj/item/scalpel{
@@ -53233,6 +53199,23 @@
},
/turf/open/floor/plating,
/area/ai_monitored/storage/eva)
+"nub" = (
+/obj/machinery/light_switch{
+ pixel_x = 24;
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/green/fourcorners/contrasted,
+/obj/item/radio/intercom{
+ pixel_x = -28
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/tiled,
+/area/medical/virology)
"nuc" = (
/obj/machinery/door/airlock{
id_tag = "Toilet1";
@@ -53305,14 +53288,6 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/bar/atrium)
-"nuH" = (
-/obj/machinery/camera{
- c_tag = "Shuttle construction area - Custom shuttle dock";
- dir = 6;
- name = "hallway camera"
- },
-/turf/open/floor/catwalk_floor,
-/area/drydock)
"nuM" = (
/obj/structure/table/wood,
/obj/item/radio/intercom,
@@ -53627,6 +53602,12 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"nzT" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor,
+/area/engine/atmos)
"nzU" = (
/obj/structure/lattice/catwalk/over,
/obj/structure/table/reinforced,
@@ -53721,6 +53702,12 @@
},
/turf/open/floor/iron/dark,
/area/security/courtroom)
+"nBa" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 9
+ },
+/turf/open/floor/catwalk_floor,
+/area/drydock)
"nBb" = (
/obj/machinery/airalarm{
dir = 8;
@@ -53994,14 +53981,6 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/apothecary)
-"nDz" = (
-/obj/machinery/holopad,
-/obj/effect/turf_decal/box,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron/dark,
-/area/crew_quarters/heads/cmo)
"nDQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -54299,25 +54278,6 @@
},
/turf/open/floor/iron/grid/steel,
/area/science/lobby)
-"nHh" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/iron/dark/side{
- dir = 6
- },
-/area/hallway/secondary/service)
"nHl" = (
/obj/machinery/airalarm{
dir = 4;
@@ -54511,6 +54471,12 @@
},
/turf/open/floor/carpet/red,
/area/crew_quarters/dorms)
+"nJc" = (
+/obj/item/reagent_containers/food/drinks/bottle/vodka{
+ desc = "Aah, vodka. Prime choice of drink AND fuel by Russians worldwide. This one used to hold many secrets..."
+ },
+/turf/open/floor/cult,
+/area/chapel/office)
"nJm" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/atmospherics/components/unary/thermomachine/heater,
@@ -54539,13 +54505,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron/techmaint,
/area/science/server)
-"nJY" = (
-/obj/machinery/power/tracker,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/port/fore)
"nKa" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/machinery/portable_atmospherics/canister,
@@ -54643,6 +54602,16 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/security/checkpoint/engineering)
+"nLL" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/grass/no_border,
+/area/hallway/secondary/exit/departure_lounge)
"nLR" = (
/obj/structure/table,
/obj/effect/turf_decal/bot,
@@ -54654,12 +54623,16 @@
/obj/item/slime_scanner,
/turf/open/floor/iron/grid/steel,
/area/science/xenobiology)
-"nLU" = (
-/obj/structure/bookcase,
+"nMc" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Construction Area";
+ req_access_txt = "32"
+ },
+/obj/effect/mapping_helpers/airlock/abandoned,
/obj/structure/disposalpipe/segment{
- dir = 9
+ dir = 4
},
-/turf/open/floor/plating,
+/turf/open/floor/iron/techmaint,
/area/construction)
"nMg" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -54701,6 +54674,22 @@
},
/turf/open/floor/carpet,
/area/hallway/secondary/entry)
+"nMB" = (
+/obj/effect/turf_decal/trimline/red/filled/warning,
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/iron/dark,
+/area/security/checkpoint/medical)
"nMK" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
@@ -54860,19 +54849,6 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/supply)
-"nQr" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron/dark,
-/area/ai_monitored/turret_protected/ai_upload_foyer)
"nQx" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/shutters{
@@ -54881,15 +54857,6 @@
},
/turf/open/floor/plating,
/area/crew_quarters/kitchen)
-"nQA" = (
-/obj/structure/window/reinforced,
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/flora/ausbushes/sparsegrass,
-/obj/structure/flora/ausbushes/ywflowers,
-/turf/open/floor/grass/no_border,
-/area/quartermaster/exploration_prep)
"nQB" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -54954,19 +54921,6 @@
/obj/effect/turf_decal/tile/blue,
/turf/open/floor/iron/white,
/area/medical/medbay/central)
-"nRQ" = (
-/obj/machinery/advanced_airlock_controller{
- pixel_x = 26;
- pixel_y = 2
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"nSl" = (
/obj/machinery/gateway{
dir = 5
@@ -55107,6 +55061,16 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"nUC" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/poddoor/preopen{
+ id = "testlab";
+ name = "test chamber blast door"
+ },
+/obj/effect/turf_decal/stripes/closeup,
+/turf/open/floor/engine,
+/area/science/explab)
"nUP" = (
/obj/machinery/airalarm{
dir = 8;
@@ -55193,23 +55157,6 @@
},
/turf/open/floor/iron/techmaint,
/area/quartermaster/office)
-"nVK" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table,
-/obj/item/clothing/mask/balaclava,
-/obj/item/reagent_containers/spray/cleaner{
- pixel_x = 5
- },
-/obj/item/assembly/signaler{
- pixel_x = -3;
- pixel_y = 2
- },
-/obj/item/electropack,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/iron/techmaint,
-/area/security/execution/education)
"nVO" = (
/obj/structure/table/reinforced,
/obj/effect/turf_decal/bot,
@@ -55391,19 +55338,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron/grid/steel,
/area/crew_quarters/dorms)
-"nZf" = (
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/leafybush,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/grass/no_border,
-/area/bridge)
"nZg" = (
/obj/machinery/telecomms/server/presets/science,
/obj/effect/turf_decal/stripes/closeup,
@@ -55717,18 +55651,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron/dark,
/area/engine/atmos)
-"ocb" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/eastright{
- dir = 1;
- name = "Artifact containment";
- req_access_txt = "47"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/engine/light,
-/area/science/explab)
"ocd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -55768,14 +55690,6 @@
},
/turf/open/floor/plating,
/area/maintenance/port)
-"ocA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"ocC" = (
/obj/effect/turf_decal/guideline/guideline_mid/darkblue{
dir = 1
@@ -55878,6 +55792,14 @@
},
/turf/open/floor/iron/white,
/area/science/research)
+"ods" = (
+/obj/structure/cable,
+/obj/machinery/power/solar{
+ id = "aftstarboard";
+ name = "Aft-Starboard Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/port/aft)
"ody" = (
/obj/machinery/light,
/obj/effect/turf_decal/guideline/guideline_out_arrow_con/blue{
@@ -55906,6 +55828,15 @@
},
/turf/open/floor/iron/dark,
/area/construction/mining/aux_base)
+"odZ" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/security/main)
"oeh" = (
/obj/structure/sign/poster/official/random{
pixel_x = -32
@@ -56068,12 +55999,6 @@
dir = 5
},
/area/crew_quarters/fitness/recreation)
-"ogX" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 5
- },
-/turf/open/floor/catwalk_floor,
-/area/drydock/security)
"ohn" = (
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
@@ -56137,14 +56062,6 @@
},
/turf/open/floor/carpet,
/area/vacant_room/office)
-"oix" = (
-/obj/structure/flora/ausbushes/leafybush,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/grass/no_border,
-/area/science/lobby)
"oiz" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
@@ -56655,6 +56572,9 @@
dir = 1
},
/area/hallway/primary/starboard)
+"opp" = (
+/turf/open/floor/glass/reinforced,
+/area/storage/primary)
"opr" = (
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -56702,6 +56622,14 @@
burnt = 1
},
/area/maintenance/port/central)
+"opV" = (
+/obj/structure/cable,
+/obj/machinery/power/solar{
+ id = "forestarboard";
+ name = "Fore-Starboard Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/port/fore)
"oqa" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -57291,6 +57219,12 @@
/obj/effect/turf_decal/tile/yellow/opposingcorners,
/turf/open/floor/iron/sepia,
/area/engine/engineering)
+"ozB" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor,
+/area/engine/atmos)
"ozD" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -57493,6 +57427,22 @@
},
/turf/open/floor/carpet/orange,
/area/quartermaster/qm)
+"oCF" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/rack,
+/obj/item/clothing/mask/gas,
+/obj/item/wrench,
+/obj/item/crowbar,
+/obj/item/storage/firstaid/regular,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/book/manual/wiki/xenoarchaeology,
+/obj/machinery/newscaster{
+ pixel_y = -28
+ },
+/turf/open/floor/iron/ridged/steel,
+/area/science/explab)
"oCG" = (
/turf/open/floor/iron/dark,
/area/medical/surgery)
@@ -57839,6 +57789,20 @@
},
/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/server)
+"oHv" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/table/reinforced,
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/storage/box/lights/mixed,
+/obj/item/storage/box/lights/mixed,
+/obj/item/assembly/timer,
+/obj/item/assembly/timer,
+/obj/machinery/newscaster{
+ pixel_y = 31
+ },
+/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted,
+/turf/open/floor/iron,
+/area/storage/primary)
"oHE" = (
/obj/machinery/telecomms/broadcaster/preset_right,
/obj/effect/turf_decal/stripes/closeup{
@@ -58253,16 +58217,6 @@
/obj/structure/sign/poster/official/cleanliness,
/turf/closed/wall,
/area/janitor)
-"oNt" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/stripes/closeup,
-/obj/machinery/door/airlock/public/glass{
- name = "Departures Lounge"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/iron/grid/steel,
-/area/hallway/secondary/exit/departure_lounge)
"oNU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/structure/disposalpipe/segment,
@@ -58658,18 +58612,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"oUu" = (
-/obj/effect/turf_decal/trimline/red/filled/line{
- dir = 6
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/iron/dark,
-/area/security/checkpoint/medical)
"oUA" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -58997,6 +58939,16 @@
dir = 1
},
/area/hallway/primary/fore)
+"oZn" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/item/beacon,
+/turf/open/floor/iron,
+/area/crew_quarters/locker)
"oZK" = (
/obj/effect/turf_decal/guideline/guideline_out/blue{
dir = 1
@@ -59181,6 +59133,17 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/engine_smes)
+"pbp" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/hallway/secondary/service)
"pbv" = (
/obj/machinery/telecomms/processor/preset_four,
/obj/effect/turf_decal/stripes/end{
@@ -59208,6 +59171,19 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
+"pbW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/green/fourcorners/contrasted,
+/obj/item/storage/secure/safe{
+ pixel_x = -23
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/tiled,
+/area/medical/virology)
"pcC" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 4
@@ -59276,6 +59252,13 @@
},
/turf/open/floor/plating,
/area/engine/storage)
+"pdk" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/science/mixing)
"pdl" = (
/obj/effect/turf_decal/stripes/closeup{
dir = 6
@@ -59400,12 +59383,6 @@
dir = 1
},
/area/crew_quarters/fitness/recreation)
-"peX" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/construction)
"peZ" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -59540,6 +59517,19 @@
},
/turf/open/floor/wood,
/area/crew_quarters/dorms)
+"pgH" = (
+/obj/effect/turf_decal/stripes/closeup,
+/obj/machinery/advanced_airlock_controller{
+ pixel_y = -26
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer4{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor,
+/area/bridge)
"pgP" = (
/obj/effect/turf_decal/guideline/guideline_mid_arrow_con/purple{
dir = 10
@@ -59560,6 +59550,19 @@
/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/bridge)
+"pgV" = (
+/obj/machinery/advanced_airlock_controller{
+ pixel_x = 26;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"pgZ" = (
/obj/machinery/power/apc/auto_name/east,
/obj/structure/cable/yellow{
@@ -59657,18 +59660,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/quartermaster/sorting)
-"piE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/science/mixing)
"piJ" = (
/turf/closed/wall/r_wall,
/area/maintenance/department/security/brig)
@@ -59740,6 +59731,18 @@
/obj/item/toy/plush/moth/rainbow,
/turf/open/floor/plating,
/area/maintenance/aft)
+"pjK" = (
+/obj/machinery/status_display/evac{
+ pixel_x = 32
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/thinplating_new/dark{
+ dir = 4
+ },
+/obj/structure/closet/crate/goldcrate,
+/obj/item/crowbar,
+/turf/open/floor/engine,
+/area/security/nuke_storage)
"pjL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -59882,6 +59885,15 @@
},
/turf/open/floor/iron/techmaint,
/area/science/storage)
+"plT" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/obj/machinery/camera{
+ c_tag = "Atmospherics - Engine Passage";
+ dir = 4;
+ name = "atmospherics camera"
+ },
+/turf/open/floor/catwalk_floor,
+/area/engine/engine_room)
"plZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -60075,24 +60087,6 @@
name = "mainframe floor"
},
/area/tcommsat/server)
-"poU" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"poV" = (
/obj/structure/table,
/obj/item/camera_film,
@@ -60231,6 +60225,12 @@
/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/hallway/primary/starboard)
+"pqH" = (
+/obj/machinery/xenoartifact_inbox,
+/obj/effect/turf_decal/delivery,
+/obj/item/xenoartifact,
+/turf/open/floor/engine,
+/area/science/explab)
"pqV" = (
/obj/effect/turf_decal/stripes/full,
/obj/effect/turf_decal/stripes/white/full,
@@ -60313,17 +60313,6 @@
},
/turf/open/floor/plating,
/area/security/checkpoint/escape)
-"prY" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/blue/half/contrasted,
-/obj/item/storage/backpack/duffelbag/med/implant,
-/obj/item/storage/backpack/duffelbag/med/surgery{
- pixel_y = 8
- },
-/turf/open/floor/iron/dark/side{
- dir = 4
- },
-/area/medical/surgery)
"psH" = (
/obj/effect/turf_decal/stripes/full,
/obj/effect/turf_decal/stripes/white/full,
@@ -60365,6 +60354,11 @@
burnt = 1
},
/area/maintenance/starboard/fore)
+"ptM" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/filingcabinet/chestdrawer,
+/turf/open/floor/iron/grid/steel,
+/area/science/robotics/lab)
"ptN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
@@ -60640,15 +60634,6 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/turf/open/floor/carpet/red,
/area/library)
-"pxZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron/dark/side,
-/area/hallway/secondary/service)
"pyf" = (
/obj/machinery/power/solar_control{
dir = 8;
@@ -60666,6 +60651,12 @@
/obj/structure/lattice/catwalk/over,
/turf/open/floor/plating/airless,
/area/maintenance/solars/starboard/fore)
+"pym" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/side,
+/area/hallway/secondary/service)
"pyo" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 1
@@ -60749,6 +60740,29 @@
/obj/effect/turf_decal/siding/wood,
/turf/open/floor/wood,
/area/hallway/primary/port)
+"pzz" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
+"pzB" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/catwalk_floor,
+/area/docking/bridge)
"pzF" = (
/obj/machinery/door/airlock{
name = "Bar Backroom";
@@ -60762,6 +60776,14 @@
},
/turf/open/floor/iron/techmaint,
/area/crew_quarters/bar)
+"pzT" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 8
+ },
+/area/hallway/secondary/service)
"pzW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 8
@@ -60861,15 +60883,6 @@
dir = 6
},
/area/engine/atmos)
-"pAO" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer4,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"pBe" = (
/obj/effect/turf_decal/bot{
dir = 1
@@ -61658,16 +61671,6 @@
broken = 1
},
/area/maintenance/starboard/fore)
-"pKL" = (
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/leafybush,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/grass/no_border,
-/area/bridge)
"pKS" = (
/obj/structure/railing/corner{
dir = 4
@@ -62002,21 +62005,6 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"pPS" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"pQq" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 8
@@ -62029,20 +62017,6 @@
/obj/effect/turf_decal/stripes/closeup,
/turf/open/floor/iron/techmaint,
/area/hallway/primary/central)
-"pQE" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/table/reinforced,
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/storage/box/lights/mixed,
-/obj/item/storage/box/lights/mixed,
-/obj/item/assembly/timer,
-/obj/item/assembly/timer,
-/obj/machinery/newscaster{
- pixel_y = 31
- },
-/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/storage/primary)
"pQI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 8
@@ -62294,6 +62268,15 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron/techmaint,
/area/ai_monitored/storage/eva)
+"pUP" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/catwalk_floor,
+/area/security/checkpoint/escape)
"pVe" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -62316,17 +62299,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"pVs" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/turf/open/floor/iron/stairs/right{
- dir = 8
- },
-/area/hallway/primary/aft)
"pVz" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -62391,6 +62363,13 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/tcommsat/server)
+"pWi" = (
+/obj/effect/decal/cleanable/oil,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/construction)
"pWk" = (
/obj/machinery/light/small{
dir = 4
@@ -62489,19 +62468,6 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
-"pYd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/dark/hidden{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/maintenance/disposal/incinerator)
"pYk" = (
/obj/structure/window/reinforced{
dir = 8
@@ -62766,6 +62732,17 @@
},
/turf/open/floor/iron/dark,
/area/vacant_room/commissary/commissaryFood)
+"qba" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron/stairs/right{
+ dir = 8
+ },
+/area/hallway/primary/aft)
"qbd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 8
@@ -62981,6 +62958,17 @@
/obj/machinery/firealarm/directional/east,
/turf/open/floor/iron/freezer,
/area/crew_quarters/kitchen/coldroom)
+"qdA" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"qdH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 8
@@ -63266,19 +63254,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/library)
-"qgW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/tile/green/fourcorners/contrasted,
-/obj/item/storage/secure/safe{
- pixel_x = -23
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron/tiled,
-/area/medical/virology)
"qhc" = (
/obj/machinery/shieldgen,
/turf/open/floor/iron/dark,
@@ -63583,24 +63558,6 @@
/obj/item/storage/firstaid/regular,
/turf/open/floor/iron,
/area/storage/primary)
-"qlo" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"qls" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
@@ -63842,15 +63799,6 @@
/obj/structure/lattice/catwalk/over,
/turf/open/floor/plating,
/area/quartermaster/storage)
-"qoF" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"qoM" = (
/obj/structure/window/reinforced,
/obj/structure/table/reinforced,
@@ -64248,13 +64196,6 @@
},
/turf/open/floor/iron/dark,
/area/engine/gravity_generator)
-"qtI" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/table/reinforced,
-/obj/item/storage/toolbox/electrical,
-/obj/item/clothing/gloves/color/yellow,
-/turf/open/floor/iron/dark,
-/area/engine/atmos)
"qtM" = (
/obj/structure/table/reinforced,
/obj/item/book/granter/crafting_recipe/cooking_sweets_101{
@@ -64485,23 +64426,6 @@
/obj/effect/turf_decal/tile/purple/opposingcorners,
/turf/open/floor/iron/grid/steel,
/area/medical/apothecary)
-"qvq" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=21-LobbyCorner";
- location = "20-Lobby"
- },
-/turf/open/floor/iron/goonplaque,
-/area/hallway/primary/port)
"qvt" = (
/obj/effect/turf_decal/trimline/red/filled/line{
dir = 8
@@ -64546,6 +64470,18 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron/dark,
/area/engine/atmos)
+"qwr" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/open/floor/grass/no_border,
+/area/quartermaster/exploration_prep)
+"qwG" = (
+/obj/item/beacon,
+/turf/open/floor/iron,
+/area/engine/atmos)
"qwL" = (
/obj/machinery/camera{
c_tag = "Arrivals - Inner corridor";
@@ -64647,12 +64583,6 @@
/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/open/floor/iron/techmaint,
/area/maintenance/disposal/incinerator)
-"qxU" = (
-/obj/structure/window/reinforced,
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/fullgrass,
-/turf/open/floor/grass/no_border,
-/area/quartermaster/exploration_prep)
"qxZ" = (
/obj/machinery/newscaster{
pixel_x = -28;
@@ -64672,18 +64602,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron/sepia,
/area/engine/break_room)
-"qyj" = (
-/obj/machinery/button/door{
- id = "qm_warehouse";
- name = "Warehouse Door Control";
- pixel_y = -24;
- req_access_txt = "31"
- },
-/obj/effect/turf_decal/tile/brown/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron/dark/side,
-/area/hallway/primary/port)
"qyq" = (
/obj/machinery/computer/security/telescreen/interrogation{
dir = 4;
@@ -64692,6 +64610,21 @@
},
/turf/open/floor/carpet/grimy,
/area/security/main)
+"qyr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/science/mixing)
"qyx" = (
/obj/machinery/disposal/bin,
/obj/effect/turf_decal/delivery,
@@ -64802,15 +64735,6 @@
/obj/effect/turf_decal/tile/neutral/opposingcorners,
/turf/open/floor/iron,
/area/crew_quarters/fitness/recreation)
-"qAi" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"qAl" = (
/obj/structure/easel,
/obj/item/canvas/twentythree_nineteen,
@@ -65042,6 +64966,16 @@
},
/turf/open/floor/iron/sepia,
/area/maintenance/department/engine)
+"qDL" = (
+/obj/machinery/power/solar{
+ id = "portsolar";
+ name = "Port Solar Array"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/starboard/fore)
"qDZ" = (
/obj/effect/turf_decal/trimline/red/filled/warning{
dir = 1
@@ -65205,16 +65139,6 @@
/obj/effect/turf_decal/trimline/blue/filled/line,
/turf/open/floor/iron/white,
/area/medical/medbay/lobby)
-"qFl" = (
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/grass/no_border,
-/area/hallway/primary/port)
"qFB" = (
/obj/effect/turf_decal/bot,
/obj/effect/decal/cleanable/dirt,
@@ -65457,17 +65381,6 @@
/obj/structure/table/wood/poker,
/turf/open/floor/carpet/red,
/area/crew_quarters/bar/atrium)
-"qIz" = (
-/obj/machinery/door/airlock/engineering{
- name = "Construction Area";
- req_access_txt = "32"
- },
-/obj/effect/mapping_helpers/airlock/abandoned,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/iron/techmaint,
-/area/construction)
"qIB" = (
/obj/effect/turf_decal/plaque{
icon_state = "L1"
@@ -65488,6 +65401,25 @@
/obj/machinery/firealarm/directional/west,
/turf/open/floor/iron/dark,
/area/bridge)
+"qIM" = (
+/obj/structure/table,
+/obj/item/folder/red{
+ pixel_x = 3
+ },
+/obj/item/folder/white{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/item/storage/firstaid/regular,
+/obj/item/reagent_containers/syringe,
+/obj/effect/turf_decal/bot,
+/obj/machinery/camera{
+ c_tag = "Security - Medbay";
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron/techmaint,
+/area/security/main)
"qIO" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -65745,6 +65677,17 @@
"qLH" = (
/turf/closed/wall,
/area/hallway/secondary/exit/departure_lounge)
+"qLQ" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"qLR" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -65849,6 +65792,21 @@
},
/turf/open/floor/iron/techmaint,
/area/janitor)
+"qNG" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads/captain)
"qNK" = (
/turf/closed/wall/r_wall,
/area/security/checkpoint/engineering)
@@ -66212,9 +66170,6 @@
},
/turf/open/floor/wood,
/area/bridge/meeting_room/council)
-"qSp" = (
-/turf/open/floor/glass/reinforced,
-/area/storage/primary)
"qSu" = (
/obj/structure/window/reinforced{
dir = 1
@@ -66370,12 +66325,6 @@
},
/turf/open/floor/iron,
/area/maintenance/disposal)
-"qTh" = (
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/security/main)
"qTo" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow{
@@ -66410,6 +66359,21 @@
broken = 1
},
/area/maintenance/department/medical)
+"qTK" = (
+/obj/effect/turf_decal/guideline/guideline_mid/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/guideline/guideline_out/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/guideline/guideline_in/blue{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/central)
"qTL" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -66623,22 +66587,6 @@
/obj/item/clothing/head/soft/blue,
/turf/open/floor/iron/dark,
/area/crew_quarters/fitness/recreation)
-"qYg" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/item/storage/box/bodybags,
-/obj/item/reagent_containers/syringe{
- name = "steel point"
- },
-/obj/structure/table,
-/obj/effect/turf_decal/bot,
-/obj/effect/turf_decal/tile/red/anticorner/contrasted{
- dir = 1
- },
-/obj/item/stack/medical/gauze,
-/turf/open/floor/iron/white,
-/area/security/main)
"qYs" = (
/obj/machinery/light/small{
dir = 4
@@ -66648,16 +66596,6 @@
},
/turf/open/floor/carpet/red,
/area/crew_quarters/bar/atrium)
-"qYv" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"qYA" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -66787,6 +66725,18 @@
},
/turf/open/floor/carpet/grimy,
/area/crew_quarters/locker)
+"raX" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"rbg" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -67303,6 +67253,25 @@
},
/turf/open/space/basic,
/area/space)
+"rim" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 6
+ },
+/area/hallway/secondary/service)
"rio" = (
/obj/structure/closet/crate{
opened = 1
@@ -67695,16 +67664,6 @@
dir = 8
},
/area/hallway/primary/port)
-"rof" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/solar{
- id = "forestarboard";
- name = "Fore-Starboard Solar Array"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/port/fore)
"roh" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
@@ -67979,6 +67938,14 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/hallway/primary/central)
+"rrE" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L9"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"rrL" = (
/obj/structure/table/reinforced,
/obj/item/folder/yellow,
@@ -68024,6 +67991,12 @@
},
/turf/open/floor/plating,
/area/maintenance/department/medical)
+"rrY" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/drydock)
"rsb" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 1
@@ -68204,6 +68177,16 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
+"ruS" = (
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/grass/no_border,
+/area/medical/medbay/lobby)
"ruU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -68330,20 +68313,6 @@
},
/turf/open/floor/iron/dark,
/area/engine/atmos)
-"rwm" = (
-/obj/structure/flora/ausbushes/grassybush,
-/obj/structure/flora/ausbushes/lavendergrass,
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/sunnybush,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/grass/no_border,
-/area/ai_monitored/security/armory)
"rwr" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/half/contrasted,
@@ -68550,6 +68519,19 @@
},
/turf/open/floor/iron/dark,
/area/engine/engine_room)
+"ryB" = (
+/turf/open/floor/cult,
+/area/library)
+"ryG" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"ryP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/structure/cable/yellow{
@@ -68722,14 +68704,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/maintenance/central/secondary)
-"rAB" = (
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/light,
-/turf/open/floor/grass/no_border,
-/area/quartermaster/exploration_prep)
"rAC" = (
/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
@@ -69200,22 +69174,6 @@
},
/turf/open/floor/engine,
/area/maintenance/department/engine)
-"rGS" = (
-/obj/structure/table,
-/obj/effect/turf_decal/bot,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 26
- },
-/obj/item/stack/sheet/iron/fifty,
-/obj/item/stack/sheet/iron/fifty,
-/obj/item/stack/sheet/iron/fifty,
-/obj/item/stack/sheet/glass/fifty,
-/obj/item/stack/sheet/plasteel{
- amount = 15
- },
-/obj/item/borg/upgrade/rename,
-/turf/open/floor/iron/grid/steel,
-/area/science/robotics/lab)
"rGT" = (
/obj/machinery/light/small{
dir = 4
@@ -69517,17 +69475,6 @@
},
/turf/open/floor/iron/dark,
/area/hallway/primary/starboard)
-"rKf" = (
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/grassybush,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/grass/no_border,
-/area/hallway/secondary/exit/departure_lounge)
"rKh" = (
/obj/effect/turf_decal/delivery,
/mob/living/simple_animal/bot/mulebot{
@@ -69885,6 +69832,27 @@
dir = 10
},
/area/engine/atmos)
+"rOp" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/advanced_airlock_controller{
+ pixel_y = 26
+ },
+/obj/machinery/light/small,
+/obj/structure/sign/warning/vacuum/external{
+ pixel_y = -32
+ },
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/solars/port)
"rOu" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow{
@@ -70117,6 +70085,25 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/carpet/orange,
/area/crew_quarters/heads/chief)
+"rPM" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/airlock/external{
+ name = "External Solar Access";
+ req_access_txt = "10; 13"
+ },
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/layer_manifold{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/solars/starboard/fore)
"rPR" = (
/turf/closed/wall,
/area/security/courtroom)
@@ -70206,6 +70193,15 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/dark,
/area/hallway/primary/central)
+"rQC" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/caution{
+ dir = 4
+ },
+/turf/open/floor/engine/light,
+/area/science/explab)
"rQI" = (
/obj/effect/landmark/start/botanist,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -70262,27 +70258,6 @@
/obj/machinery/firealarm/directional/east,
/turf/open/floor/iron/dark,
/area/bridge)
-"rRt" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/structure/disposalpipe/junction/yjunction{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/heads/captain)
"rRy" = (
/obj/structure/table/reinforced,
/obj/effect/turf_decal/delivery,
@@ -70347,6 +70322,14 @@
},
/turf/open/floor/iron/grid/steel,
/area/crew_quarters/dorms)
+"rSa" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"rSq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -70431,6 +70414,21 @@
"rTo" = (
/turf/closed/wall,
/area/maintenance/disposal/incinerator)
+"rTN" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/auto_name/north{
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -24
+ },
+/obj/effect/turf_decal/box,
+/turf/open/floor/plating/airless{
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/drydock/security)
"rTT" = (
/obj/machinery/door/airlock/maintenance{
name = "Storage Room";
@@ -70509,6 +70507,20 @@
},
/turf/open/floor/engine/vacuum,
/area/science/mixing/chamber)
+"rVi" = (
+/obj/machinery/door/airlock/mining/glass{
+ name = "Delivery Office";
+ req_access_txt = "50"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/turf/open/floor/iron/techmaint,
+/area/quartermaster/storage)
"rVk" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 4
@@ -70769,6 +70781,15 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron/dark/side,
/area/hallway/primary/fore)
+"rYM" = (
+/obj/structure/window/reinforced,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/open/floor/grass/no_border,
+/area/quartermaster/exploration_prep)
"rYQ" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/dark,
@@ -70777,13 +70798,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/maintenance/starboard/fore)
-"rYW" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/open/floor/grass/no_border,
-/area/science/lobby)
"rZb" = (
/obj/effect/turf_decal/trimline/red/filled/line{
dir = 1
@@ -70817,23 +70831,6 @@
},
/turf/open/floor/iron/white,
/area/medical/storage)
-"rZd" = (
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/leafybush,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/light,
-/turf/open/floor/grass/no_border,
-/area/hallway/primary/port)
"rZf" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -71004,6 +71001,19 @@
},
/turf/open/floor/iron/techmaint,
/area/maintenance/department/engine)
+"sbl" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/dark,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
"sbs" = (
/obj/effect/turf_decal/trimline/purple/filled/line,
/turf/open/floor/iron/grid/steel,
@@ -71082,16 +71092,6 @@
},
/turf/open/floor/engine,
/area/engine/engine_room)
-"sck" = (
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/grass/no_border,
-/area/bridge)
"scq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
@@ -71229,11 +71229,6 @@
"sdO" = (
/turf/open/floor/iron/dark,
/area/engine/gravity_generator)
-"sdV" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/plating,
-/area/construction)
"sdX" = (
/obj/structure/table,
/obj/item/storage/briefcase{
@@ -71290,12 +71285,6 @@
},
/turf/open/floor/iron,
/area/storage/primary)
-"sff" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/turf/open/floor/iron/dark/side,
-/area/hallway/secondary/service)
"sfg" = (
/obj/machinery/camera{
c_tag = "Port Primary Hallway - Starboard";
@@ -71515,6 +71504,34 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/quartermaster/miningdock)
+"sie" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/eastright{
+ dir = 2;
+ name = "Robotics Desk";
+ req_access_txt = "29"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "robotics_shutters";
+ name = "robotics shutters"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/closeup,
+/obj/structure/desk_bell{
+ pixel_x = -8
+ },
+/obj/item/paper_bin{
+ pixel_x = 8
+ },
+/obj/item/pen{
+ pixel_x = 8
+ },
+/obj/item/folder/white{
+ pixel_x = 2;
+ pixel_y = -3
+ },
+/turf/open/floor/iron/techmaint,
+/area/science/robotics/lab)
"sif" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -71658,16 +71675,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"sjA" = (
-/obj/machinery/power/solar{
- id = "portsolar";
- name = "Port Solar Array"
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/starboard/fore)
"sjE" = (
/obj/structure/chair/fancy/bench/pew/right{
dir = 8
@@ -71783,6 +71790,14 @@
/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted,
/turf/open/floor/iron,
/area/storage/primary)
+"sle" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/item/beacon,
+/mob/living/simple_animal/pet/dog/pug{
+ name = "Swanson"
+ },
+/turf/open/floor/engine/light,
+/area/science/explab)
"slp" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -71848,15 +71863,6 @@
/obj/item/reagent_containers/glass/bucket,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"smc" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/entry)
"sme" = (
/obj/structure/sign/departments/security,
/turf/closed/wall/r_wall,
@@ -72160,6 +72166,13 @@
},
/turf/open/floor/iron/dark,
/area/hallway/primary/fore)
+"spL" = (
+/obj/machinery/camera/autoname{
+ dir = 8;
+ network = list("ss13","rd")
+ },
+/turf/open/floor/engine/light,
+/area/science/explab)
"spV" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance/two,
@@ -72184,6 +72197,16 @@
/obj/effect/turf_decal/stripes/closeup,
/turf/open/floor/plating,
/area/maintenance/disposal)
+"sqc" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/grass/no_border,
+/area/bridge)
"sqg" = (
/obj/effect/turf_decal/trimline/purple/filled/line{
dir = 10
@@ -72199,6 +72222,21 @@
},
/turf/open/floor/iron/grid/steel,
/area/science/research)
+"sqh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"sqw" = (
/obj/machinery/door/airlock/maintenance{
name = "Storage Room";
@@ -72207,6 +72245,23 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/techmaint,
/area/maintenance/aft)
+"sqF" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 4;
+ name = "Testing Range Junction";
+ sortType = 24
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"sqU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plating,
@@ -72216,17 +72271,15 @@
broken = 1
},
/area/space/nearstation)
-"sqX" = (
-/obj/structure/window/reinforced{
- dir = 4
+"srr" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
},
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/machinery/light{
- dir = 8
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
},
-/turf/open/floor/grass/no_border,
-/area/science/xenobiology)
+/turf/open/floor/catwalk_floor,
+/area/science/shuttle)
"srw" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/blobstart,
@@ -72262,6 +72315,12 @@
},
/turf/open/floor/wood,
/area/library)
+"sso" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 5
+ },
+/turf/open/floor/catwalk_floor,
+/area/drydock/security)
"ssq" = (
/obj/structure/disposalpipe/segment{
dir = 8
@@ -72311,6 +72370,18 @@
/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/port)
+"ssH" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/entry)
"ssN" = (
/obj/machinery/light{
dir = 1
@@ -72643,24 +72714,6 @@
burnt = 1
},
/area/maintenance/aft)
-"sxf" = (
-/obj/machinery/power/solar{
- id = "starboardsolar";
- name = "Starboard Solar Array"
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/starboard/fore)
-"sxh" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/science/mixing)
"sxk" = (
/turf/open/floor/plating,
/area/construction/mining/aux_base)
@@ -72816,6 +72869,22 @@
},
/turf/open/floor/vault,
/area/engine/engine_room)
+"syL" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/dark/visible{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/maintenance/disposal/incinerator)
"syR" = (
/obj/machinery/light,
/obj/structure/disposalpipe/segment{
@@ -72941,16 +73010,6 @@
},
/turf/open/floor/plating,
/area/gateway)
-"szQ" = (
-/obj/machinery/power/solar{
- id = "portsolar";
- name = "Port Solar Array"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/starboard/fore)
"sAh" = (
/obj/effect/turf_decal/siding/wood,
/turf/open/floor/wood,
@@ -73274,17 +73333,6 @@
},
/turf/open/floor/iron/techmaint,
/area/engine/engine_room)
-"sDU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/science/mixing)
"sEl" = (
/obj/effect/turf_decal/pool/corner{
dir = 8
@@ -73734,6 +73782,21 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/crew_quarters/heads/hos)
+"sMm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"sMt" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/segment{
@@ -73823,6 +73886,19 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"sNe" = (
+/obj/structure/sign/warning/nosmoking{
+ pixel_x = 6;
+ pixel_y = 32
+ },
+/obj/structure/table,
+/obj/effect/turf_decal/bot,
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/turf/open/floor/iron/grid/steel,
+/area/science/robotics/lab)
"sNs" = (
/obj/machinery/power/apc/auto_name/south{
pixel_y = -24
@@ -73995,6 +74071,15 @@
/obj/effect/spawner/room/tenxfive,
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
+"sPf" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/rnd/production/circuit_imprinter/department/science,
+/obj/machinery/airalarm{
+ pixel_y = 22
+ },
+/obj/machinery/ecto_sniffer,
+/turf/open/floor/iron/grid/steel,
+/area/science/robotics/lab)
"sPi" = (
/obj/machinery/newscaster{
pixel_x = 28;
@@ -74054,23 +74139,6 @@
},
/turf/open/floor/iron/grid/steel,
/area/science/research)
-"sQy" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/disposalpipe/sorting/mail{
- dir = 4;
- name = "Testing Range Junction";
- sortType = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"sQD" = (
/obj/structure/sink{
dir = 8;
@@ -74120,18 +74188,6 @@
},
/turf/open/floor/iron,
/area/vacant_room/commissary/commissary2)
-"sRe" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/science/mixing)
"sRl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 6
@@ -74480,12 +74536,6 @@
/obj/effect/turf_decal/tile/neutral/opposingcorners,
/turf/open/floor/iron,
/area/quartermaster/sorting)
-"sUJ" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/open/floor/catwalk_floor,
-/area/engine/atmos)
"sUM" = (
/obj/machinery/atmospherics/pipe/simple/orange/visible,
/obj/structure/cable/orange{
@@ -74599,6 +74649,23 @@
},
/turf/open/floor/carpet/red,
/area/crew_quarters/heads/hos)
+"sVY" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ pixel_x = 28
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"sVZ" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
@@ -74666,24 +74733,6 @@
"sWY" = (
/turf/open/floor/engine/n2/light,
/area/engine/atmos)
-"sXb" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/structure/disposalpipe/junction/yjunction{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"sXg" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/sand/plating,
@@ -75230,19 +75279,27 @@
},
/turf/open/floor/plating,
/area/hydroponics)
-"tdA" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/obj/machinery/camera{
- c_tag = "Atmospherics - Engine Passage";
- dir = 4;
- name = "atmospherics camera"
- },
-/turf/open/floor/catwalk_floor,
-/area/engine/engine_room)
"teq" = (
/obj/effect/turf_decal/tile/blue/anticorner/contrasted,
/turf/open/floor/iron/dark,
/area/bridge)
+"ter" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/iron/grid/steel,
+/area/medical/virology)
"teE" = (
/obj/structure/table/reinforced,
/obj/machinery/recharger{
@@ -75316,32 +75373,6 @@
/obj/effect/turf_decal/stripes/closeup,
/turf/open/floor/iron/techmaint,
/area/bridge/showroom/corporate)
-"tfx" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/structure/disposalpipe/sorting/mail{
- dir = 4;
- name = "Xenobiology Junction";
- sortType = 28
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"tfD" = (
/obj/machinery/door/airlock/command{
name = "Corporate Showroom";
@@ -75471,6 +75502,40 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"thE" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/button/door{
+ id = "rndlabext";
+ name = "External Research Shutters Control";
+ pixel_x = -6;
+ pixel_y = 24;
+ req_one_access_txt = "7;29"
+ },
+/obj/machinery/button/door{
+ id = "rndlabint";
+ name = "Internal Research Shutters Control";
+ pixel_x = 6;
+ pixel_y = 24;
+ req_one_access_txt = "7;29"
+ },
+/obj/structure/table,
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/storage/toolbox/mechanical,
+/obj/item/stack/cable_coil/white,
+/obj/item/stack/cable_coil/white{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/effect/turf_decal/trimline/purple/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron/grid/steel,
+/area/science/lab)
"thS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/lattice/catwalk,
@@ -75755,18 +75820,6 @@
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating,
/area/maintenance/port/aft)
-"tlm" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/engine/atmos)
"tlp" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 4
@@ -75857,27 +75910,30 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/exit/departure_lounge)
-"tmq" = (
+"tmg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
/obj/structure/cable/yellow{
- icon_state = "1-2"
+ icon_state = "1-4"
},
-/turf/open/floor/iron,
-/area/engine/atmos)
-"tmC" = (
-/obj/effect/turf_decal/trimline/green/filled/warning{
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 8
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 5
},
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
+"tmq" = (
/obj/structure/cable/yellow{
- icon_state = "4-8"
+ icon_state = "1-2"
},
-/turf/open/floor/iron/tiled/light,
-/area/medical/virology)
+/turf/open/floor/iron,
+/area/engine/atmos)
"tmM" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating{
@@ -76844,10 +76900,6 @@
broken = 1
},
/area/maintenance/aft)
-"tAK" = (
-/obj/machinery/light/small,
-/turf/open/floor/catwalk_floor,
-/area/drydock)
"tAS" = (
/obj/machinery/newscaster{
pixel_y = 31
@@ -77148,15 +77200,6 @@
/obj/effect/turf_decal/tile/yellow/opposingcorners,
/turf/open/floor/iron/sepia,
/area/engine/engineering)
-"tEz" = (
-/obj/structure/window/reinforced,
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/grass/no_border,
-/area/science/shuttledock)
"tEB" = (
/obj/machinery/door/airlock/engineering{
name = "Auxiliary Construction Storage";
@@ -77253,22 +77296,6 @@
},
/turf/open/floor/iron/techmaint,
/area/security/prison)
-"tGQ" = (
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/ausbushes/leafybush,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/grass/no_border,
-/area/science/research)
"tGU" = (
/obj/structure/tank_dispenser/oxygen,
/obj/machinery/firealarm/directional/north,
@@ -77303,14 +77330,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"tHK" = (
-/obj/machinery/camera{
- c_tag = "Shuttle construction area - Security shuttle dock";
- dir = 9;
- name = "hallway camera"
- },
-/turf/open/floor/catwalk_floor,
-/area/drydock/security)
"tHR" = (
/obj/effect/turf_decal/siding/yellow{
dir = 4
@@ -77547,23 +77566,6 @@
},
/turf/open/floor/carpet/red,
/area/crew_quarters/dorms)
-"tKF" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/turf/open/floor/iron/stairs/right{
- dir = 8
- },
-/area/hallway/primary/aft)
"tKI" = (
/obj/effect/turf_decal/bot,
/turf/open/floor/iron/grid/steel,
@@ -77854,6 +77856,18 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
+"tOC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/engine/atmos)
"tOE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 8
@@ -78111,6 +78125,15 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"tRk" = (
+/obj/machinery/advanced_airlock_controller{
+ pixel_x = 26;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/pipe/layer_manifold,
+/obj/structure/lattice/catwalk/over,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"tRq" = (
/obj/machinery/requests_console{
department = "Medbay";
@@ -78320,25 +78343,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"tTV" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/end{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/red/end{
- dir = 4
- },
-/obj/machinery/door/airlock/external/glass{
- name = "Labour Shuttle airlock";
- req_access_txt = "63"
- },
-/obj/machinery/atmospherics/pipe/layer_manifold{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/bridge)
"tTX" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 4
@@ -78459,15 +78463,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
-"tVj" = (
-/obj/machinery/advanced_airlock_controller{
- pixel_x = 26;
- pixel_y = 2
- },
-/obj/machinery/atmospherics/pipe/layer_manifold,
-/obj/structure/lattice/catwalk/over,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"tVl" = (
/obj/machinery/door/poddoor/incinerator_atmos_main,
/obj/effect/turf_decal/stripes/closeup{
@@ -78654,6 +78649,21 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"tXL" = (
+/obj/effect/turf_decal/trimline/green/filled/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/tiled/light,
+/area/medical/virology)
"tXM" = (
/turf/closed/wall,
/area/engine/engineering)
@@ -78745,23 +78755,6 @@
},
/turf/open/floor/wood,
/area/library/lounge)
-"tZw" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/stripes/closeup{
- dir = 1
- },
-/obj/machinery/door/airlock/virology{
- name = "Virology Breakroom";
- req_access_txt = "39"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron/grid/steel,
-/area/medical/virology)
"tZC" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/effect/turf_decal/bot,
@@ -78795,6 +78788,9 @@
/obj/structure/closet/emcloset,
/turf/open/floor/iron/dark,
/area/hallway/primary/starboard)
+"tZZ" = (
+/turf/open/floor/glass/reinforced,
+/area/hallway/secondary/service)
"uae" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -78870,21 +78866,6 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/hallway/primary/port)
-"uaL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"ubb" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -78920,6 +78901,17 @@
/obj/structure/closet/secure_closet/security/cargo,
/turf/open/floor/iron,
/area/security/checkpoint/supply)
+"ubk" = (
+/obj/structure/table/wood/fancy,
+/obj/item/soulstone/anybody/chaplain,
+/obj/item/organ/heart{
+ pixel_x = 8;
+ pixel_y = 7
+ },
+/obj/item/reagent_containers/food/drinks/bottle/holywater,
+/obj/item/book/granter/spell/smoke/lesser,
+/turf/open/floor/cult,
+/area/chapel/office)
"ubo" = (
/obj/effect/spawner/randomvend/cola,
/obj/effect/turf_decal/delivery,
@@ -78942,28 +78934,15 @@
},
/turf/open/floor/iron/techmaint,
/area/medical/morgue)
-"uby" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+"ubz" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 4
},
-/obj/machinery/door/airlock/external{
- name = "External Solar Access";
- req_access_txt = "10; 13"
- },
-/obj/effect/turf_decal/stripes/closeup{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
},
-/turf/open/floor/catwalk_floor,
-/area/maintenance/solars/starboard/fore)
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"ubJ" = (
/obj/machinery/computer/security/labor{
dir = 8
@@ -79020,6 +78999,19 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/central)
+"ucK" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/grass/no_border,
+/area/hallway/primary/port)
"ucO" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -79047,6 +79039,21 @@
},
/turf/open/floor/iron/techmaint,
/area/maintenance/disposal/incinerator)
+"udl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"udr" = (
/obj/structure/ore_box,
/obj/effect/decal/cleanable/dirt,
@@ -79141,6 +79148,18 @@
},
/turf/open/floor/iron/tech/grid,
/area/medical/morgue)
+"uet" = (
+/obj/machinery/atmospherics/components/binary/valve{
+ dir = 4;
+ name = "mix to port"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/science/mixing)
"ueu" = (
/obj/structure/chair/office{
dir = 4
@@ -79156,15 +79175,6 @@
},
/turf/open/floor/iron/dark,
/area/engine/engineering)
-"uey" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/delivery,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/light,
-/turf/open/floor/iron/dark,
-/area/crew_quarters/heads/captain)
"ueE" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating,
@@ -79201,6 +79211,16 @@
},
/turf/open/floor/iron,
/area/quartermaster/office)
+"ufq" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/grass/no_border,
+/area/hallway/primary/port)
"ufw" = (
/obj/item/beacon,
/obj/structure/disposalpipe/segment,
@@ -79278,21 +79298,6 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"ugB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/science/mixing)
"ugD" = (
/obj/effect/turf_decal/trimline/red/filled/line{
dir = 4
@@ -79400,6 +79405,24 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"uif" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/end{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/red/end{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external{
+ name = "Labour Shuttle airlock"
+ },
+/obj/machinery/atmospherics/pipe/layer_manifold{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/bridge)
"uir" = (
/obj/effect/spawner/randomvend/cola,
/obj/effect/turf_decal/delivery,
@@ -79598,16 +79621,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron/dark,
/area/quartermaster/sorting)
-"ukS" = (
-/obj/structure/flora/ausbushes/leafybush,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/grass/no_border,
-/area/hallway/secondary/exit/departure_lounge)
"ukZ" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 4
@@ -79817,6 +79830,17 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/security/checkpoint/engineering)
+"unK" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 10
+ },
+/area/hallway/secondary/service)
"unN" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -80178,28 +80202,6 @@
},
/turf/open/floor/carpet/blue,
/area/crew_quarters/dorms)
-"usF" = (
-/obj/item/radio/intercom{
- pixel_y = -28
- },
-/obj/effect/turf_decal/bot,
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/item/clothing/head/utility/welding{
- pixel_x = -5;
- pixel_y = 3
- },
-/obj/item/clothing/head/utility/welding{
- pixel_x = -5;
- pixel_y = 3
- },
-/obj/item/multitool{
- layer = 4
- },
-/turf/open/floor/iron/dark/side,
-/area/engine/atmos)
"usI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
@@ -80518,6 +80520,19 @@
},
/turf/open/floor/carpet/grimy,
/area/crew_quarters/locker)
+"uvQ" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/grass/no_border,
+/area/science/research)
"uvS" = (
/mob/living/carbon/monkey,
/obj/effect/turf_decal/siding/dark_green{
@@ -80926,6 +80941,12 @@
},
/turf/open/floor/iron/dark,
/area/engine/engine_room)
+"uAv" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"uAA" = (
/obj/effect/turf_decal/trimline/purple/filled/line{
dir = 4
@@ -81203,9 +81224,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron/techmaint,
/area/science/server)
-"uEe" = (
-/turf/open/floor/glass/reinforced,
-/area/hallway/secondary/exit/departure_lounge)
"uEn" = (
/obj/machinery/conveyor{
dir = 8;
@@ -81247,6 +81265,12 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/maintenance/department/security/brig)
+"uEX" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor,
+/area/drydock/security)
"uEZ" = (
/turf/closed/wall/r_wall,
/area/bridge/showroom/corporate)
@@ -81399,6 +81423,18 @@
/obj/effect/turf_decal/trimline/red/warning,
/turf/open/floor/prison,
/area/security/prison)
+"uGp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/tiled/light,
+/area/medical/virology)
"uGw" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 8
@@ -81619,6 +81655,15 @@
/obj/machinery/firealarm/directional/east,
/turf/open/floor/wood,
/area/crew_quarters/bar/atrium)
+"uJc" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor,
+/area/drydock)
"uJg" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/spawner/lootdrop/maintenance/three,
@@ -81640,12 +81685,6 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
-"uJo" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/drydock)
"uJr" = (
/obj/effect/spawner/xmastree,
/turf/open/floor/carpet,
@@ -82235,16 +82274,6 @@
/obj/effect/turf_decal/tile/brown/opposingcorners,
/turf/open/floor/iron,
/area/construction)
-"uQZ" = (
-/obj/structure/table,
-/obj/item/storage/backpack/duffelbag/sec/surgery{
- pixel_y = 4
- },
-/obj/item/clothing/gloves/color/latex,
-/turf/open/floor/iron/white/side{
- dir = 1
- },
-/area/science/robotics/lab)
"uRe" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow{
@@ -82826,17 +82855,6 @@
/obj/effect/spawner/lootdrop/maintenance/two,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"uZg" = (
-/obj/effect/turf_decal/stripes/closeup,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/door/airlock/external{
- name = "External Airlock";
- req_one_access_txt = "13;24;10"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"uZj" = (
/obj/structure/extinguisher_cabinet{
pixel_y = -30
@@ -82873,15 +82891,6 @@
},
/turf/open/floor/iron/freezer,
/area/crew_quarters/toilet/auxiliary)
-"uZr" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 6
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/turf/open/floor/iron/dark,
-/area/hallway/primary/central)
"uZu" = (
/obj/effect/turf_decal/guideline/guideline_in/red,
/turf/open/floor/iron/dark/corner{
@@ -82925,16 +82934,6 @@
},
/turf/open/floor/carpet/grimy,
/area/crew_quarters/locker)
-"uZK" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/stripes/closeup{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/open/floor/iron/grid/steel,
-/area/hallway/primary/aft)
"uZL" = (
/obj/machinery/light/small,
/obj/structure/reagent_dispensers/watertank,
@@ -83224,6 +83223,11 @@
},
/turf/open/floor/iron/techmaint,
/area/maintenance/port)
+"vcW" = (
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/window/reinforced,
+/turf/open/floor/grass/no_border,
+/area/crew_quarters/bar/atrium)
"vcZ" = (
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
@@ -83297,6 +83301,18 @@
},
/turf/open/floor/iron,
/area/hydroponics)
+"vdK" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/machinery/door/window/southright{
+ name = "Sign door";
+ req_one_access = "25"
+ },
+/obj/machinery/camera{
+ c_tag = "Cafeteria antechamber";
+ name = "service camera"
+ },
+/turf/open/floor/grass/no_border,
+/area/crew_quarters/bar/atrium)
"vdU" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -83334,6 +83350,13 @@
},
/turf/open/floor/iron/dark,
/area/security/prison)
+"ven" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/window/reinforced,
+/turf/open/floor/grass/no_border,
+/area/crew_quarters/bar/atrium)
"veo" = (
/obj/structure/table/wood,
/obj/item/toy/cards/deck{
@@ -83441,6 +83464,17 @@
/obj/structure/rack,
/turf/open/floor/plating,
/area/maintenance/aft)
+"vfJ" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/status_display/evac{
+ pixel_y = 32
+ },
+/turf/open/floor/grass/no_border,
+/area/crew_quarters/bar/atrium)
"vfL" = (
/obj/effect/turf_decal/sand/plating,
/obj/effect/turf_decal/stripes/corner{
@@ -83579,6 +83613,27 @@
},
/turf/open/floor/carpet/purple,
/area/crew_quarters/heads/hor)
+"vhv" = (
+/obj/machinery/camera{
+ c_tag = "Xenobiology - Aft";
+ dir = 9;
+ name = "xenobiology camera";
+ network = list("ss13","xeno","rd")
+ },
+/obj/item/radio/intercom{
+ pixel_x = 28
+ },
+/obj/structure/table,
+/obj/item/reagent_containers/food/drinks/soda_cans/grey_bull{
+ pixel_x = -6;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/food/drinks/soda_cans/cola{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/turf/open/floor/iron/grid/steel,
+/area/science/xenobiology)
"vhU" = (
/turf/closed/wall,
/area/medical/apothecary)
@@ -83983,6 +84038,10 @@
"vlU" = (
/turf/closed/wall,
/area/storage/art)
+"vlX" = (
+/obj/machinery/light/small,
+/turf/open/floor/catwalk_floor,
+/area/drydock)
"vmb" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 8
@@ -84111,18 +84170,6 @@
broken = 1
},
/area/maintenance/starboard/fore)
-"vnD" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/docking/bridge)
"vnP" = (
/obj/effect/turf_decal/trimline/red/filled/line{
dir = 1
@@ -84316,18 +84363,6 @@
/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/maintenance/department/engine)
-"vpP" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/caution{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/engine/light,
-/area/science/explab)
"vpQ" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -84632,12 +84667,6 @@
broken = 1
},
/area/maintenance/port)
-"vsQ" = (
-/obj/structure/window/reinforced,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/flora/bush,
-/turf/open/floor/grass/no_border,
-/area/quartermaster/exploration_prep)
"vsR" = (
/obj/effect/turf_decal/trimline/red/filled/line{
dir = 1
@@ -84716,6 +84745,18 @@
/obj/effect/turf_decal/tile/purple/opposingcorners,
/turf/open/floor/iron/white,
/area/medical/genetics)
+"vtC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/science/mixing)
"vtG" = (
/obj/machinery/airalarm{
pixel_y = 22
@@ -85247,25 +85288,6 @@
},
/turf/open/floor/plating,
/area/maintenance/port/central)
-"vxO" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/closeup{
- dir = 1
- },
-/obj/structure/disposalpipe/junction{
- dir = 8
- },
-/turf/open/floor/iron/grid/steel,
-/area/hallway/primary/aft)
"vxQ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 8
@@ -85776,6 +85798,15 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"vDP" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/iron/dark,
+/area/hallway/primary/central)
"vDS" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
@@ -85791,6 +85822,14 @@
"vDW" = (
/turf/closed/wall/r_wall,
/area/gateway)
+"vEa" = (
+/obj/machinery/newscaster{
+ pixel_y = 31
+ },
+/obj/item/folder,
+/obj/structure/table/wood,
+/turf/open/floor/cult,
+/area/library)
"vEb" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{
dir = 1
@@ -85943,6 +85982,9 @@
/obj/structure/girder,
/turf/open/floor/iron,
/area/maintenance/aft)
+"vGy" = (
+/turf/open/floor/glass/reinforced,
+/area/hallway/secondary/exit/departure_lounge)
"vGz" = (
/obj/effect/turf_decal/stripes/closeup,
/obj/effect/turf_decal/delivery,
@@ -86084,9 +86126,6 @@
},
/turf/open/floor/iron/dark,
/area/chapel/main)
-"vIF" = (
-/turf/open/floor/glass/reinforced,
-/area/crew_quarters/heads/captain)
"vIG" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -86362,6 +86401,23 @@
/obj/structure/lattice/catwalk,
/turf/open/space/basic,
/area/space/nearstation)
+"vLP" = (
+/obj/effect/landmark/start/virologist,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/iron/tiled/light,
+/area/medical/virology)
"vMl" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -86714,6 +86770,15 @@
/obj/effect/spawner/room/tenxfive,
/turf/open/floor/plating,
/area/maintenance/port/central)
+"vPh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"vPl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/structure/disposalpipe/segment{
@@ -86972,6 +87037,17 @@
/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/bridge)
+"vRS" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/grass/no_border,
+/area/science/xenobiology)
"vSc" = (
/obj/effect/turf_decal/bot,
/obj/effect/decal/cleanable/dirt,
@@ -87080,6 +87156,12 @@
},
/turf/open/floor/engine/n2/light,
/area/engine/atmos)
+"vTj" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/maintenance/disposal/incinerator)
"vTm" = (
/turf/closed/wall/r_wall,
/area/security/checkpoint/customs)
@@ -87213,6 +87295,29 @@
},
/turf/open/floor/iron,
/area/vacant_room/commissary/commissary2)
+"vUV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=18-BotanyCorner";
+ location = "17-Departures"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"vUZ" = (
/obj/structure/bookcase/random/religion,
/obj/effect/turf_decal/tile/neutral,
@@ -87351,16 +87456,6 @@
/obj/effect/turf_decal/tile/yellow/opposingcorners,
/turf/open/floor/iron/sepia,
/area/engine/engineering)
-"vXv" = (
-/obj/machinery/power/solar{
- id = "portsolar";
- name = "Port Solar Array"
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/port)
"vXA" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -87684,12 +87779,6 @@
},
/turf/open/floor/iron/grid/steel,
/area/science/lab)
-"wcq" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"wcw" = (
/obj/effect/landmark/event_spawn,
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
@@ -87728,17 +87817,6 @@
dir = 1
},
/area/quartermaster/office)
-"wcG" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp/green{
- pixel_x = 1;
- pixel_y = 5
- },
-/obj/machinery/newscaster{
- pixel_y = 31
- },
-/turf/open/floor/cult,
-/area/library)
"wdb" = (
/obj/machinery/computer/card,
/obj/effect/turf_decal/tile/blue/half/contrasted{
@@ -87900,15 +87978,6 @@
},
/turf/open/floor/wood,
/area/bridge/meeting_room/council)
-"weJ" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/turf/open/floor/iron/dark,
-/area/hallway/primary/central)
"weK" = (
/obj/effect/turf_decal/guideline/guideline_out/yellow{
dir = 4
@@ -87974,6 +88043,17 @@
/obj/effect/turf_decal/stripes/closeup,
/turf/open/floor/iron/grid,
/area/crew_quarters/toilet/restrooms)
+"wfj" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/status_display/evac{
+ pixel_y = 32
+ },
+/turf/open/floor/grass/no_border,
+/area/crew_quarters/bar/atrium)
"wfl" = (
/obj/machinery/atmospherics/pipe/manifold/supply/visible{
dir = 1
@@ -88064,6 +88144,15 @@
"wgM" = (
/turf/closed/wall/r_wall,
/area/science/research)
+"wgQ" = (
+/obj/machinery/status_display/ai{
+ pixel_x = -32
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/engine/light,
+/area/science/explab)
"wgV" = (
/turf/open/floor/iron/grid/steel,
/area/science/mixing)
@@ -88138,10 +88227,6 @@
/obj/machinery/power/tesla_coil,
/turf/open/floor/iron/dark,
/area/engine/engine_room)
-"whP" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/turf/open/floor/catwalk_floor,
-/area/engine/engine_room)
"whR" = (
/obj/effect/turf_decal/trimline/red/filled/warning{
dir = 9
@@ -88286,15 +88371,6 @@
},
/turf/open/floor/iron/dark,
/area/maintenance/department/engine)
-"wjV" = (
-/obj/effect/turf_decal/stripes/corner,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/dark/hidden{
- dir = 5
- },
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/maintenance/disposal/incinerator)
"wjZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/highsecurity{
@@ -88326,20 +88402,6 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/qm)
-"wks" = (
-/obj/machinery/door/airlock/mining/glass{
- name = "Delivery Office";
- req_access_txt = "50"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/stripes/closeup{
- dir = 1
- },
-/turf/open/floor/iron/techmaint,
-/area/quartermaster/storage)
"wkx" = (
/obj/effect/turf_decal/caution/stand_clear,
/obj/effect/turf_decal/stripes/closeup{
@@ -88567,6 +88629,19 @@
},
/turf/open/floor/iron/grid/steel,
/area/crew_quarters/locker)
+"wnA" = (
+/obj/structure/table,
+/obj/item/computer_hardware/hard_drive/role/signal/toxins{
+ pixel_x = 6
+ },
+/obj/item/computer_hardware/hard_drive/role/signal/toxins{
+ pixel_x = -6
+ },
+/obj/item/computer_hardware/hard_drive/role/signal/toxins{
+ pixel_y = 6
+ },
+/turf/open/floor/iron/vaporwave,
+/area/crew_quarters/heads/hor)
"wnB" = (
/obj/structure/railing{
dir = 4
@@ -88735,20 +88810,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"wpS" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/shower{
- dir = 8;
- name = "emergency shower"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/obj/machinery/newscaster{
- pixel_y = -28
- },
-/turf/open/floor/noslip/dark,
-/area/science/explab)
"wpW" = (
/obj/effect/turf_decal/bot,
/obj/machinery/computer/cargo{
@@ -88948,6 +89009,15 @@
},
/turf/open/floor/iron/grid/steel,
/area/quartermaster/exploration_prep)
+"wsA" = (
+/obj/effect/turf_decal/stripes/closeup,
+/obj/machinery/door/airlock/external{
+ name = "External Airlock";
+ req_one_access_txt = "13;24;10"
+ },
+/obj/machinery/atmospherics/pipe/layer_manifold,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"wsD" = (
/obj/effect/turf_decal/siding/wood{
dir = 4
@@ -88987,13 +89057,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/techmaint,
/area/maintenance/solars/port/aft)
-"wsM" = (
-/obj/machinery/light/small,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/drydock)
"wsQ" = (
/turf/closed/mineral,
/area/quartermaster/office)
@@ -89033,23 +89096,6 @@
/obj/effect/turf_decal/tile/red/anticorner/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint/escape)
-"wtq" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/item/radio/intercom{
- pixel_x = 28
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"wtt" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -89128,6 +89174,12 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron/dark,
/area/crew_quarters/bar/atrium)
+"wur" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/science)
"wuu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/structure/table,
@@ -89379,6 +89431,29 @@
},
/turf/open/floor/iron/white,
/area/science/research)
+"wxx" = (
+/obj/machinery/vending/wallmed{
+ pixel_x = -24
+ },
+/obj/machinery/camera{
+ c_tag = "Medbay - Surgery";
+ dir = 4;
+ name = "medbay camera";
+ network = list("ss13","medbay")
+ },
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 8
+ },
+/obj/structure/table/reinforced,
+/obj/item/book/manual/wiki/surgery,
+/obj/item/clothing/gloves/color/latex{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 10
+ },
+/area/medical/surgery)
"wxB" = (
/obj/structure/showcase/machinery/cloning_pod,
/obj/structure/window/reinforced{
@@ -89405,12 +89480,6 @@
"wyg" = (
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
-"wym" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/drydock/security)
"wyr" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -89505,15 +89574,6 @@
},
/turf/open/floor/plating,
/area/maintenance/port)
-"wzs" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 8
- },
-/turf/open/floor/catwalk_floor,
-/area/drydock)
"wzw" = (
/obj/structure/sign/directions/science{
dir = 1;
@@ -89656,6 +89716,34 @@
/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/bridge)
+"wAK" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/toy/plush/moth/lovers,
+/turf/open/floor/grass/no_border,
+/area/ai_monitored/security/armory)
+"wAM" = (
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/sunnybush,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/grass/no_border,
+/area/ai_monitored/security/armory)
"wAT" = (
/obj/effect/turf_decal/stripes/closeup{
dir = 1
@@ -89682,29 +89770,6 @@
/obj/effect/turf_decal/tile/red/anticorner/contrasted,
/turf/open/floor/iron/dark,
/area/chapel/office)
-"wBi" = (
-/obj/machinery/vending/wallmed{
- pixel_x = -24
- },
-/obj/machinery/camera{
- c_tag = "Medbay - Surgery";
- dir = 4;
- name = "medbay camera";
- network = list("ss13","medbay")
- },
-/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
- dir = 8
- },
-/obj/structure/table/reinforced,
-/obj/item/book/manual/wiki/surgery,
-/obj/item/clothing/gloves/color/latex{
- pixel_x = 4;
- pixel_y = 4
- },
-/turf/open/floor/iron/dark/side{
- dir = 10
- },
-/area/medical/surgery)
"wBn" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
/obj/structure/disposalpipe/segment,
@@ -89760,29 +89825,12 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/plating,
/area/maintenance/port/aft)
-"wBY" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"wCd" = (
/obj/effect/turf_decal/stripes/full,
/obj/effect/turf_decal/stripes/white/full,
/obj/structure/holosign/barrier/atmos/robust,
/turf/open/floor/plating/airless,
/area/docking/arrival)
-"wCn" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/catwalk_floor,
-/area/drydock)
"wCr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
@@ -90274,6 +90322,14 @@
/obj/machinery/atmospherics/pipe/layer_manifold,
/turf/open/floor/iron/techmaint,
/area/hallway/secondary/entry)
+"wJz" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/open/floor/grass/no_border,
+/area/quartermaster/exploration_prep)
"wJL" = (
/obj/effect/turf_decal/trimline/purple/filled/line{
dir = 1
@@ -90385,30 +90441,6 @@
},
/turf/open/floor/plating,
/area/construction)
-"wLh" = (
-/obj/structure/table,
-/obj/item/computer_hardware/hard_drive/role/medical{
- pixel_x = 6;
- pixel_y = 3
- },
-/obj/item/computer_hardware/hard_drive/role/medical{
- pixel_x = 3
- },
-/obj/item/computer_hardware/hard_drive/role/chemistry{
- pixel_y = 6
- },
-/obj/item/computer_hardware/hard_drive/role/medical{
- pixel_x = -3
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron/cafeteria,
-/area/crew_quarters/heads/cmo)
"wLl" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -90636,16 +90668,22 @@
},
/turf/open/floor/engine,
/area/engine/supermatter)
-"wNJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
+"wNM" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/shower{
+ dir = 8;
+ name = "emergency shower"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
},
-/obj/item/beacon,
-/turf/open/floor/iron,
-/area/crew_quarters/locker)
+/obj/machinery/button/door{
+ id = "testlab";
+ name = "Test Chamber Blast Doors";
+ pixel_y = -24
+ },
+/turf/open/floor/noslip/dark,
+/area/science/explab)
"wNX" = (
/obj/effect/turf_decal/bot,
/obj/effect/turf_decal/trimline/purple/filled/warning{
@@ -91285,19 +91323,6 @@
},
/turf/open/floor/plating,
/area/science/robotics/lab)
-"wUJ" = (
-/obj/structure/bed/dogbed/renault,
-/mob/living/simple_animal/pet/fox/Renault{
- desc = "Renault, the Captain's trustworthy fox. Shame it's not Peuegot..."
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 26
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/crew_quarters/heads/captain)
"wUL" = (
/obj/structure/cable{
icon_state = "1-4"
@@ -91322,6 +91347,13 @@
},
/turf/open/floor/plating,
/area/maintenance/port/central)
+"wUQ" = (
+/obj/item/stack/cable_coil/cut/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/construction)
"wUX" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/modular_fabricator/exosuit_fab,
@@ -91709,22 +91741,6 @@
/obj/item/paicard,
/turf/open/floor/iron,
/area/crew_quarters/locker)
-"wYX" = (
-/obj/structure/table,
-/obj/item/computer_hardware/hard_drive/role/signal/toxins{
- pixel_x = 6
- },
-/obj/item/computer_hardware/hard_drive/role/signal/toxins{
- pixel_x = -6
- },
-/obj/item/computer_hardware/hard_drive/role/signal/toxins{
- pixel_y = 6
- },
-/obj/item/circuitboard/machine/experimentor{
- desc = "You have a vague memory of what this machine used to do, but whatever it was, it's nowadays useless."
- },
-/turf/open/floor/iron/vaporwave,
-/area/crew_quarters/heads/hor)
"wZg" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -91899,16 +91915,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/port)
-"xag" = (
-/obj/effect/turf_decal/tile/yellow/opposingcorners{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown/opposingcorners,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/construction)
"xam" = (
/obj/structure/showcase/machinery/implanter,
/obj/structure/sign/plaques/kiddie/perfect_man{
@@ -91959,21 +91965,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron/dark,
/area/engine/atmos)
-"xaZ" = (
-/obj/effect/turf_decal/siding/wood/corner{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/heads/captain)
"xbh" = (
/obj/machinery/camera{
c_tag = "Shuttle construction area - Fore";
@@ -92099,6 +92090,17 @@
},
/turf/open/floor/iron/dark,
/area/engine/storage_shared)
+"xcM" = (
+/obj/effect/turf_decal/stripes/closeup,
+/obj/machinery/door/airlock/external{
+ name = "External Airlock";
+ req_one_access_txt = "13;24;10"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"xcP" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -92111,6 +92113,22 @@
},
/turf/open/floor/iron,
/area/security/main)
+"xcR" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/storage/box/bodybags,
+/obj/item/reagent_containers/syringe{
+ name = "steel point"
+ },
+/obj/structure/table,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 1
+ },
+/obj/item/stack/medical/gauze,
+/turf/open/floor/iron/white,
+/area/security/main)
"xcT" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/rack,
@@ -92551,6 +92569,27 @@
},
/turf/open/floor/iron/techmaint,
/area/science/lab)
+"xgq" = (
+/obj/structure/table,
+/obj/effect/turf_decal/bot,
+/obj/item/stack/sheet/plasteel{
+ amount = 15
+ },
+/obj/item/bodypart/r_arm/robot{
+ pixel_x = 3
+ },
+/obj/item/bodypart/l_arm/robot{
+ pixel_x = -3
+ },
+/obj/item/stack/cable_coil/white,
+/obj/item/assembly/flash/handheld/weak,
+/obj/item/assembly/flash/handheld/weak,
+/obj/item/assembly/flash/handheld/weak,
+/obj/item/assembly/flash/handheld/weak,
+/obj/item/assembly/flash/handheld/weak,
+/obj/item/assembly/flash/handheld/weak,
+/turf/open/floor/iron/grid/steel,
+/area/science/robotics/lab)
"xgx" = (
/obj/effect/turf_decal/trimline/brown/filled/warning{
dir = 9
@@ -92660,14 +92699,6 @@
},
/turf/open/floor/iron/white,
/area/science/shuttledock)
-"xho" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/iron/ridged/steel,
-/area/science/explab)
"xht" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -93065,6 +93096,20 @@
"xlH" = (
/turf/closed/wall/r_wall,
/area/science/lobby)
+"xlJ" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/light,
+/obj/effect/turf_decal/bot,
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/item/book/manual/wiki/atmospherics,
+/turf/open/floor/iron/dark/side,
+/area/engine/atmos)
"xlK" = (
/obj/effect/turf_decal/bot,
/obj/machinery/requests_console{
@@ -93804,13 +93849,6 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/port)
-"xuE" = (
-/obj/effect/decal/cleanable/vomit/old,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/construction)
"xuO" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -93913,16 +93951,6 @@
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/iron/techmaint,
/area/hallway/secondary/entry)
-"xvO" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/maintenance/disposal/incinerator)
"xvQ" = (
/obj/structure/frame/computer{
anchored = 1;
@@ -94052,11 +94080,6 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"xxm" = (
-/obj/structure/window/reinforced,
-/obj/structure/flora/ausbushes/leafybush,
-/turf/open/floor/grass/no_border,
-/area/quartermaster/exploration_prep)
"xxs" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron/grid/steel,
@@ -94149,16 +94172,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/science/shuttle)
-"xxO" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/science/mixing)
"xxY" = (
/obj/effect/turf_decal/guideline/guideline_in/red{
dir = 4
@@ -94395,6 +94408,16 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"xAE" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/grass/no_border,
+/area/bridge)
"xAI" = (
/obj/machinery/door/airlock/engineering/glass{
name = "Primary Tool Storage"
@@ -94805,18 +94828,6 @@
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating,
/area/maintenance/port/central)
-"xDW" = (
-/obj/machinery/xenoartifact_inbox,
-/obj/effect/turf_decal/delivery,
-/obj/item/xenoartifact,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/turf/open/floor/engine,
-/area/science/explab)
"xDY" = (
/obj/machinery/newscaster{
pixel_x = 28;
@@ -94890,23 +94901,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/engine,
/area/science/storage)
-"xEI" = (
-/obj/machinery/light_switch{
- pixel_x = 24;
- pixel_y = 24
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/tile/green/fourcorners/contrasted,
-/obj/item/radio/intercom{
- pixel_x = -28
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron/tiled,
-/area/medical/virology)
"xEK" = (
/turf/open/floor/iron/dark,
/area/maintenance/department/science)
@@ -94953,9 +94947,6 @@
},
/turf/open/floor/iron/dark,
/area/crew_quarters/bar)
-"xFs" = (
-/turf/open/floor/glass/reinforced,
-/area/hallway/secondary/service)
"xFu" = (
/obj/effect/turf_decal/stripes/closeup{
dir = 1
@@ -95137,13 +95128,6 @@
dir = 4
},
/area/hallway/primary/central)
-"xHj" = (
-/obj/effect/landmark/xeno_spawn,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/construction)
"xHm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 6
@@ -95214,17 +95198,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/dark,
/area/maintenance/department/security/brig)
-"xIh" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/science)
"xIk" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/turf/open/floor/iron/dark,
@@ -96190,21 +96163,6 @@
},
/turf/open/floor/iron/techmaint,
/area/science/mixing/chamber)
-"xQY" = (
-/obj/effect/turf_decal/guideline/guideline_mid/purple{
- dir = 4
- },
-/obj/effect/turf_decal/guideline/guideline_out/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/guideline/guideline_in/blue{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/hallway/primary/central)
"xRi" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plating,
@@ -96492,40 +96450,12 @@
/obj/machinery/firealarm/directional/north,
/turf/open/floor/wood,
/area/quartermaster/qm)
-"xUH" = (
-/obj/structure/sign/poster/official/help_others{
- pixel_y = 32
- },
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 4
- },
-/obj/machinery/disposal/bin,
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/iron/dark,
-/area/hallway/primary/central)
"xUL" = (
/turf/open/floor/iron,
/area/hallway/primary/port)
"xUO" = (
/turf/closed/mineral,
/area/engine/engine_room)
-"xUQ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/maintenance/disposal/incinerator)
"xVd" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
@@ -96702,6 +96632,21 @@
},
/turf/open/floor/iron/dark,
/area/engine/engine_smes)
+"xXx" = (
+/obj/structure/flora/grass/jungle,
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/genericbush,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/sunnybush,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/grass/no_border,
+/area/science/research)
"xXy" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -97014,6 +96959,19 @@
},
/turf/open/floor/iron/techmaint,
/area/crew_quarters/kitchen/coldroom)
+"yaB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/dark/hidden{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/maintenance/disposal/incinerator)
"yaE" = (
/obj/machinery/door/airlock/command{
name = "Emergency Escape";
@@ -97061,6 +97019,22 @@
},
/turf/open/floor/iron/techmaint,
/area/maintenance/aft/secondary)
+"ybk" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/table,
+/obj/effect/turf_decal/bot,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high,
+/obj/item/stock_parts/cell/high,
+/obj/machinery/firealarm/directional/south,
+/obj/item/assembly/prox_sensor{
+ pixel_x = 5;
+ pixel_y = 7
+ },
+/turf/open/floor/iron/grid/steel,
+/area/science/robotics/lab)
"ybl" = (
/obj/machinery/power/apc/auto_name/south{
pixel_y = -24
@@ -97180,14 +97154,6 @@
"ycI" = (
/turf/closed/wall/r_wall,
/area/security/brig)
-"ycK" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/iron/dark/side{
- dir = 8
- },
-/area/hallway/secondary/service)
"ycS" = (
/obj/machinery/door/airlock/highsecurity{
name = "Engineering Heavy-Equipment Storage";
@@ -97294,13 +97260,21 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"ydW" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+"ydU" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
},
-/turf/open/floor/catwalk_floor/iron_smooth,
-/area/science/mixing)
+/obj/machinery/light,
+/turf/open/floor/iron/dark,
+/area/crew_quarters/heads/captain)
+"ydX" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/drydock/security)
"yeb" = (
/turf/closed/wall/r_wall,
/area/bridge)
@@ -97386,6 +97360,18 @@
},
/turf/open/floor/iron/dark,
/area/chapel/office)
+"yfa" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"yfi" = (
/obj/machinery/airalarm{
dir = 8;
@@ -97423,13 +97409,6 @@
/obj/structure/closet/wardrobe/black,
/turf/open/floor/iron/grid/steel,
/area/crew_quarters/locker)
-"yfP" = (
-/obj/effect/turf_decal/tile/blue/half/contrasted,
-/obj/machinery/anesthetic_machine,
-/turf/open/floor/iron/dark/side{
- dir = 4
- },
-/area/medical/surgery)
"yfU" = (
/turf/closed/wall,
/area/library)
@@ -97965,9 +97944,6 @@
"ylW" = (
/turf/open/floor/engine,
/area/science/xenobiology)
-"ylZ" = (
-/turf/open/floor/cult,
-/area/library)
"ymc" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
@@ -104028,7 +104004,7 @@ nnx
nnx
csJ
nnx
-eKN
+abH
nnx
csJ
nnx
@@ -104789,27 +104765,27 @@ nnx
nnx
xJu
nnx
-jRN
-jRN
-jRN
-jRN
-jRN
-jRN
-jRN
-jRN
-jRN
+eEW
+eEW
+eEW
+eEW
+eEW
+eEW
+eEW
+eEW
+eEW
csJ
vwI
csJ
-jRN
-jRN
-jRN
-jRN
-jRN
-jRN
-jRN
-jRN
-jRN
+eEW
+eEW
+eEW
+eEW
+eEW
+eEW
+eEW
+eEW
+eEW
nnx
xJu
nnx
@@ -105303,27 +105279,27 @@ nnx
nnx
xJu
nnx
-vXv
-vXv
-vXv
-vXv
-vXv
-vXv
-vXv
-vXv
-vXv
+lxK
+lxK
+lxK
+lxK
+lxK
+lxK
+lxK
+lxK
+lxK
csJ
kPA
csJ
-lGx
-lGx
-lGx
-lGx
-lGx
-lGx
-lGx
-lGx
-vXv
+mxD
+mxD
+mxD
+mxD
+mxD
+mxD
+mxD
+mxD
+lxK
nnx
xJu
nnx
@@ -105817,27 +105793,27 @@ nnx
nnx
xJu
nnx
-jRN
-jRN
-jRN
-jRN
-jRN
-jRN
-jRN
-jRN
-jRN
+eEW
+eEW
+eEW
+eEW
+eEW
+eEW
+eEW
+eEW
+eEW
csJ
kPA
csJ
-jRN
-jRN
-jRN
-jRN
-jRN
-jRN
-jRN
-jRN
-jRN
+eEW
+eEW
+eEW
+eEW
+eEW
+eEW
+eEW
+eEW
+eEW
nnx
csJ
nnx
@@ -106331,27 +106307,27 @@ nnx
nnx
csJ
nnx
-vXv
-vXv
-vXv
-vXv
-vXv
-vXv
-vXv
-vXv
-vXv
+lxK
+lxK
+lxK
+lxK
+lxK
+lxK
+lxK
+lxK
+lxK
csJ
kPA
csJ
-lGx
-lGx
-lGx
-lGx
-lGx
-lGx
-lGx
-lGx
-vXv
+mxD
+mxD
+mxD
+mxD
+mxD
+mxD
+mxD
+mxD
+lxK
nnx
xJu
nnx
@@ -106845,27 +106821,27 @@ nnx
nnx
csJ
nnx
-jRN
-jRN
-jRN
-jRN
-jRN
-jRN
-jRN
-jRN
-jRN
+eEW
+eEW
+eEW
+eEW
+eEW
+eEW
+eEW
+eEW
+eEW
csJ
kPA
csJ
-jRN
-jRN
-jRN
-jRN
-jRN
-jRN
-jRN
-jRN
-jRN
+eEW
+eEW
+eEW
+eEW
+eEW
+eEW
+eEW
+eEW
+eEW
nnx
xJu
nnx
@@ -107359,27 +107335,27 @@ nnx
nnx
xJu
nnx
-lGx
-lGx
-lGx
-lGx
-lGx
-lGx
-lGx
-lGx
-vXv
+mxD
+mxD
+mxD
+mxD
+mxD
+mxD
+mxD
+mxD
+lxK
csJ
kPA
csJ
-lGx
-lGx
-lGx
-lGx
-lGx
-lGx
-lGx
-lGx
-vXv
+mxD
+mxD
+mxD
+mxD
+mxD
+mxD
+mxD
+mxD
+lxK
nnx
wMM
nnx
@@ -107873,27 +107849,27 @@ nnx
nnx
xJu
nnx
-jRN
-jRN
-jRN
-jRN
-jRN
-jRN
-jRN
-jRN
-jRN
+eEW
+eEW
+eEW
+eEW
+eEW
+eEW
+eEW
+eEW
+eEW
csJ
kPA
csJ
-jRN
-jRN
-jRN
-jRN
-jRN
-jRN
-jRN
-jRN
-jRN
+eEW
+eEW
+eEW
+eEW
+eEW
+eEW
+eEW
+eEW
+eEW
nnx
xJu
nnx
@@ -108387,27 +108363,27 @@ nnx
nnx
xJu
nnx
-lGx
-lGx
-lGx
-lGx
-lGx
-lGx
-lGx
-lGx
-vXv
+mxD
+mxD
+mxD
+mxD
+mxD
+mxD
+mxD
+mxD
+lxK
csJ
kPA
csJ
-lGx
-lGx
-lGx
-lGx
-lGx
-lGx
-lGx
-lGx
-vXv
+mxD
+mxD
+mxD
+mxD
+mxD
+mxD
+mxD
+mxD
+lxK
nnx
xJu
nnx
@@ -109939,7 +109915,7 @@ nnx
nnx
vLM
bTg
-hOz
+jrZ
bTg
vLM
nnx
@@ -110196,7 +110172,7 @@ nnx
nnx
vLM
wNw
-glr
+rOp
wNw
vLM
nnx
@@ -110453,7 +110429,7 @@ nnx
nnx
nsg
wNw
-aGm
+izO
wNw
nsg
nsg
@@ -112210,7 +112186,7 @@ nnx
nnx
nnx
gIl
-kBV
+lQJ
jAt
klC
tqK
@@ -112316,14 +112292,14 @@ cTG
cDP
vMr
aCf
-fKy
-mJX
-fKy
-fKy
-fKy
-fKy
-mJX
-fKy
+aDg
+uEX
+aDg
+aDg
+aDg
+aDg
+uEX
+aDg
fei
wJt
csJ
@@ -112467,7 +112443,7 @@ nnx
nnx
nnx
aGy
-meL
+pUP
jBG
gIl
kqb
@@ -112574,8 +112550,8 @@ cLe
lgv
aCf
hvt
-ogX
-fKy
+sso
+aDg
sOx
sOx
sOx
@@ -113588,7 +113564,7 @@ vDW
bII
phD
aCf
-wzs
+uJc
cRQ
cRQ
cRQ
@@ -113596,13 +113572,13 @@ hXx
cRQ
cRQ
cRQ
-wsM
+jFh
aCf
cQH
qYA
mZp
tyS
-dJr
+fpq
eTH
sOx
sOx
@@ -113758,11 +113734,11 @@ ijw
raz
sFZ
ktr
-gJH
+lVl
bBG
nak
ktr
-beV
+nLL
bSV
vdu
vit
@@ -113845,7 +113821,7 @@ vDW
rov
ibU
nfd
-ibO
+nBa
cRQ
cRQ
cRQ
@@ -113853,13 +113829,13 @@ cRQ
cRQ
cRQ
cRQ
-uJo
+lxs
cAH
dnd
cjs
iSy
xxN
-mME
+srr
eTH
sOx
sOx
@@ -114003,8 +113979,8 @@ cHU
swD
mnH
jXV
-lra
-fsH
+ecP
+uAv
xKt
nQT
qxZ
@@ -114015,11 +113991,11 @@ jXV
rde
sKZ
ktr
-ukS
+lWD
bSV
nak
ktr
-rKf
+lYj
bSV
vdu
vit
@@ -114102,7 +114078,7 @@ vDW
cje
bkO
cAH
-cqx
+buz
cRQ
cRQ
cRQ
@@ -114110,7 +114086,7 @@ cRQ
cRQ
cRQ
cRQ
-uJo
+lxs
cAH
cRz
dHZ
@@ -114260,16 +114236,16 @@ gdJ
sFJ
mwr
fow
-dtI
-uEe
-uEe
-uEe
-uEe
-uEe
-uEe
-kCK
-kyp
-aoP
+fcH
+vGy
+vGy
+vGy
+vGy
+vGy
+vGy
+ubz
+klI
+kJv
sSy
wMC
jhy
@@ -114359,7 +114335,7 @@ vDW
ggr
bkO
aCf
-nuH
+eKw
cRQ
xdK
cRQ
@@ -114367,7 +114343,7 @@ cRQ
cRQ
bQc
cRQ
-uJo
+lxs
aCf
cTp
pVM
@@ -114517,23 +114493,23 @@ guj
kEJ
vov
mRP
-pPS
-uEe
-uEe
-uEe
-uEe
-uEe
-uEe
-jZZ
-oNt
-lBB
+udl
+vGy
+vGy
+vGy
+vGy
+vGy
+vGy
+yfa
+dCk
+rrE
tmd
eKW
-rKf
+lYj
bSV
nak
ktr
-beV
+nLL
bSV
vdu
gUV
@@ -114616,7 +114592,7 @@ vDW
cAH
sRz
aCf
-wCn
+dIB
cRQ
cRQ
cRQ
@@ -114624,13 +114600,13 @@ cRQ
cRQ
cRQ
cRQ
-wsM
+jFh
aCf
jHH
cAH
aCf
aCf
-inT
+mlu
aCf
sOx
sOx
@@ -114774,23 +114750,23 @@ xKt
kRT
vhb
jXV
-lpd
-ixR
-wtq
-wBY
-aZp
-wBY
-mfK
-fdQ
+sqh
+pzz
+sVY
+agp
+vUV
+agp
+qLQ
+bVS
jXV
rvY
tSE
ktr
-gJH
+lVl
bSV
nak
ktr
-ukS
+lWD
bSV
lJQ
olY
@@ -114828,7 +114804,7 @@ oBk
wLn
nvW
taP
-smc
+cUD
mFs
tTj
gzo
@@ -114873,7 +114849,7 @@ vDW
suE
bns
cAH
-cqx
+buz
cRQ
cRQ
cRQ
@@ -114881,14 +114857,14 @@ cRQ
cRQ
cRQ
cRQ
-uJo
+lxs
cAH
uPJ
jtC
aCf
-lhd
-nnW
-fKy
+rTN
+ewE
+aDg
sOx
sOx
sOx
@@ -115034,8 +115010,8 @@ aKc
cdD
aKc
aKc
-uZK
-vxO
+fXH
+imL
qFL
qLH
jXV
@@ -115130,7 +115106,7 @@ vDW
fJy
eah
eNE
-cqx
+buz
cRQ
bQc
cRQ
@@ -115138,19 +115114,19 @@ cRQ
aHo
cRQ
cRQ
-eII
+rrY
scs
kwm
fJy
aCf
-fKy
-wym
-fKy
-fKy
-tHK
-fKy
-wym
-fKy
+aDg
+ydX
+aDg
+aDg
+nfY
+aDg
+ydX
+aDg
wUr
wJt
csJ
@@ -115291,8 +115267,8 @@ mTI
aHA
beF
aKc
-pVs
-tKF
+qba
+imM
hOZ
jXV
cia
@@ -115342,7 +115318,7 @@ iCD
odD
oxg
qiw
-dOg
+lWK
fiF
tNJ
djY
@@ -115387,7 +115363,7 @@ vDW
aCf
aCf
aCf
-cqx
+buz
cRQ
cRQ
cRQ
@@ -115395,7 +115371,7 @@ cRQ
cRQ
cRQ
cRQ
-cqx
+buz
aCf
aCf
aCf
@@ -115644,7 +115620,7 @@ kHH
kHH
kHH
aCf
-wCn
+dIB
cRQ
cRQ
cRQ
@@ -115652,7 +115628,7 @@ cRQ
cRQ
cRQ
cRQ
-tAK
+vlX
aCf
kHH
kHH
@@ -115901,7 +115877,7 @@ kHH
kHH
kHH
aCf
-cqx
+buz
cRQ
cRQ
cRQ
@@ -115909,7 +115885,7 @@ cRQ
cRQ
cRQ
cRQ
-cqx
+buz
aCf
kHH
kHH
@@ -116899,7 +116875,7 @@ qdt
qgC
qgC
qgC
-jUU
+ssH
qgC
qgC
qgC
@@ -117060,8 +117036,8 @@ abN
abN
kHH
yjW
-cBM
-fkk
+nJc
+ubk
yjW
aMO
byH
@@ -117156,7 +117132,7 @@ vEQ
xuO
wpP
uZN
-gLi
+jFB
xuO
xuO
fyG
@@ -117413,7 +117389,7 @@ uId
vSg
abm
abm
-qIz
+nMc
abm
sGf
abm
@@ -117589,7 +117565,7 @@ sJo
oQZ
yfU
dPk
-aXg
+ceh
dVt
yfU
dLn
@@ -117670,7 +117646,7 @@ uId
kvd
abm
chd
-xag
+cJP
wTj
klr
cIk
@@ -117927,7 +117903,7 @@ xqO
xqO
abm
msj
-gTk
+gwC
uQX
ftA
jpl
@@ -118184,7 +118160,7 @@ bOO
wWK
abm
wIf
-fOZ
+fro
lQM
xuW
bZE
@@ -118441,7 +118417,7 @@ xqO
ljs
abm
wIz
-xHj
+kSZ
qJg
xvQ
haj
@@ -118698,7 +118674,7 @@ qTB
vSj
abm
wKh
-idB
+pWi
qJg
xwp
wwp
@@ -118955,7 +118931,7 @@ uId
uId
abm
wKB
-xuE
+ehP
wgD
koV
xFZ
@@ -119140,11 +119116,11 @@ esb
iuH
jgb
yfU
-geS
-ylZ
+kuA
+ryB
yfU
-ylZ
-geS
+ryB
+kuA
yfU
jKy
une
@@ -119212,9 +119188,9 @@ xqO
vSF
abm
wLf
-fSK
+hmo
pkx
-blA
+wUQ
xxv
abm
oUS
@@ -119397,11 +119373,11 @@ hiR
bMo
lKq
yfU
-ncf
-ewQ
+vEa
+dtG
yfU
-wcG
-efQ
+iuB
+kcg
yfU
wZn
gFf
@@ -119469,7 +119445,7 @@ bOO
bOO
abm
wLC
-peX
+kuS
wIz
pSO
dIU
@@ -119725,8 +119701,8 @@ iPv
eNo
iPv
abm
-sdV
-nLU
+iXt
+jSu
oKs
xwM
ira
@@ -119934,8 +119910,8 @@ nMg
oaY
lkP
oVr
-ycK
-eHH
+pzT
+unK
qAE
mib
mib
@@ -120189,10 +120165,10 @@ ptN
iop
nMm
goz
-xFs
-xFs
-xFs
-pxZ
+tZZ
+tZZ
+tZZ
+ecK
qAN
mib
mib
@@ -120446,10 +120422,10 @@ mEU
iop
aeb
cGF
-fof
+ewj
mbL
-gxd
-nHh
+pbp
+rim
ltj
pLu
vnZ
@@ -120462,7 +120438,7 @@ kyo
hhj
iyS
jOJ
-aaj
+wfj
vmw
kwn
jOJ
@@ -120703,7 +120679,7 @@ ptN
kFI
ehF
kZd
-sff
+pym
xNi
pBe
mtl
@@ -120719,7 +120695,7 @@ czD
mib
iyS
wRF
-kqp
+vcW
vmw
gET
lOZ
@@ -120976,7 +120952,7 @@ fiV
mib
njG
jOJ
-ltL
+iJC
bwH
xnO
wuC
@@ -121233,7 +121209,7 @@ czD
mib
qrj
jOJ
-bYW
+vdK
mIB
xGG
jgo
@@ -121490,7 +121466,7 @@ mib
mib
osl
wRF
-jLq
+ven
vmw
eVr
lOZ
@@ -121747,7 +121723,7 @@ qjZ
qjZ
vqH
jOJ
-asj
+vfJ
vmw
doQ
jOJ
@@ -122002,7 +121978,7 @@ qIi
afj
afj
qIi
-qFl
+ufq
jOJ
lOZ
upt
@@ -122027,7 +122003,7 @@ xPG
svS
bqq
xGp
-qyj
+aGZ
tDV
sTw
tVL
@@ -122528,7 +122504,7 @@ oUH
tUE
ylD
ceL
-qvq
+cyN
hmI
xTG
cnU
@@ -123312,7 +123288,7 @@ rWE
tzA
xlj
xGp
-fWj
+mpv
wRY
wRY
wRY
@@ -123534,10 +123510,10 @@ vQh
cST
qbo
pXj
-qSp
-qSp
-qSp
-qSp
+opp
+opp
+opp
+opp
usI
uag
jTV
@@ -123569,7 +123545,7 @@ fZA
xUL
rxI
xGp
-gii
+ucK
vxb
paE
vLj
@@ -123749,7 +123725,7 @@ vcT
oXE
dfc
ooa
-lco
+jTR
fiI
ubt
byo
@@ -123788,7 +123764,7 @@ phi
hPX
wYb
vQh
-pQE
+oHv
qbo
pXj
bfN
@@ -124340,7 +124316,7 @@ xTG
xUL
rws
xGp
-rZd
+mRL
wRY
drs
cmn
@@ -124537,7 +124513,7 @@ ceV
hRQ
xmu
jcx
-wBi
+wxx
bFp
ygM
ccd
@@ -125061,14 +125037,14 @@ byc
rmz
hLq
cOk
-dkN
+jQy
mhb
esg
fTN
jId
xAu
fdE
-ibt
+ruS
wqJ
sDy
qSQ
@@ -125111,7 +125087,7 @@ viG
xUL
rws
xGp
-fWj
+mpv
vxb
hJz
uue
@@ -125562,10 +125538,10 @@ cLx
ntR
pEs
ceV
-mOv
-yfP
+crN
+diA
fjl
-prY
+iIc
rIY
ceV
adk
@@ -126321,7 +126297,7 @@ pMM
cWI
dAM
aID
-axd
+ter
mfQ
gJq
eNd
@@ -126404,7 +126380,7 @@ uRe
wFZ
wFZ
wtF
-wks
+rVi
wtF
wtF
uCS
@@ -126578,7 +126554,7 @@ gQk
gcp
gLI
lfJ
-hOb
+aoB
mRZ
jDs
cWr
@@ -126603,14 +126579,14 @@ ceV
kcJ
tNk
etJ
-ibt
+ruS
mke
bwQ
nGH
bwQ
mke
bwQ
-dkN
+jQy
wqJ
sDy
wrM
@@ -126835,7 +126811,7 @@ gWX
xUl
rGy
rGy
-tZw
+jOV
rGy
aeJ
wgG
@@ -127092,7 +127068,7 @@ aeJ
aeJ
aeJ
wrS
-tmC
+tXL
eFz
aeJ
oWl
@@ -127346,15 +127322,15 @@ daE
dgw
aOU
dAz
-xEI
-qgW
-mjz
-amm
+nub
+pbW
+uGp
+vLP
wiv
wuW
-wLh
-nDz
-biN
+hxd
+lAQ
+cEY
grZ
eSp
xsG
@@ -127929,7 +127905,7 @@ wLe
iSJ
rno
xfi
-cxz
+knu
iSJ
jVm
sCI
@@ -128188,9 +128164,9 @@ rop
lKT
nkn
iSJ
-xUH
-weJ
-uZr
+ejR
+ghx
+vDP
xTG
mKU
cpS
@@ -128393,7 +128369,7 @@ ayc
bdg
vHr
wmy
-gEv
+nMB
kar
fGE
voQ
@@ -128447,7 +128423,7 @@ vUF
dPJ
onT
rhV
-xQY
+qTK
nBk
vNv
buH
@@ -128650,7 +128626,7 @@ ayc
vPc
vHr
vad
-oUu
+lug
fsa
pAH
pLE
@@ -128704,7 +128680,7 @@ lVX
xHG
auR
cci
-ivw
+lkE
lAj
gko
fCp
@@ -128743,19 +128719,19 @@ teK
teK
ncv
tus
-bVU
-sXb
-qoF
-qoF
-qoF
-qoF
-gPz
-qYv
-dtH
-hwQ
-mZE
-kST
-ocA
+qdA
+hDL
+hKb
+hKb
+hKb
+hKb
+lhP
+mnZ
+hkZ
+raX
+eIf
+kfL
+gun
wMr
xhb
lGL
@@ -128943,7 +128919,7 @@ wWu
vkW
aVN
bNb
-cSU
+wAK
jjX
ggO
xDn
@@ -129001,7 +128977,7 @@ pSd
qfG
qfG
xEK
-ikE
+sMm
xEK
ktD
xEK
@@ -129200,7 +129176,7 @@ wWu
cRA
uPR
aJs
-rwm
+wAM
iUg
rlY
pNu
@@ -129258,7 +129234,7 @@ xNW
xJG
qfG
iJx
-ikE
+sMm
rNq
ocP
lIP
@@ -129478,7 +129454,7 @@ hyl
meF
cnM
hZd
-iOa
+mNd
tTr
kIo
ltV
@@ -129515,7 +129491,7 @@ vjD
vjD
qfG
xEK
-ikE
+sMm
xEK
ygW
lIP
@@ -129772,7 +129748,7 @@ wwl
rFL
qfG
ojF
-ikE
+sMm
xEK
lIP
lIP
@@ -130029,10 +130005,10 @@ xip
xip
xip
imW
-ikE
+sMm
ktD
lIP
-cdf
+mUh
jeG
trp
ojp
@@ -130040,7 +130016,7 @@ lVK
oZg
wdF
lIP
-eqn
+bHi
bnZ
czW
bRq
@@ -130286,10 +130262,10 @@ vOS
lXa
xip
huh
-ikE
+sMm
dWP
lIP
-xxm
+kQv
dgL
trp
wrU
@@ -130297,7 +130273,7 @@ eMQ
apB
nyc
lIP
-tEz
+gLR
qbz
czW
bIn
@@ -130431,7 +130407,7 @@ lLM
boD
jID
vxN
-hpS
+gUM
xWn
xWn
xWn
@@ -130543,10 +130519,10 @@ xip
wbz
xip
kOi
-iSa
+dtg
xEK
lIP
-nQA
+rYM
lWR
vQk
dcd
@@ -130800,15 +130776,15 @@ ovU
iaw
xip
iJx
-ikE
+sMm
xEK
lIP
-vsQ
+ezq
fJb
trp
xiI
gTQ
-fly
+wJz
wTh
cbq
xxZ
@@ -131041,7 +131017,7 @@ xJP
mhe
bzK
goj
-uQZ
+mUu
yfq
cVw
xAs
@@ -131057,15 +131033,15 @@ jCn
uux
xip
xEK
-ikE
+sMm
xEK
lIP
-qxU
+ndN
bwD
oKv
wHY
vWb
-rAB
+qwr
wTh
gcs
pqX
@@ -131250,8 +131226,8 @@ xcP
oba
xJU
pUn
-aup
-bHx
+odZ
+npu
ycI
vsR
qqd
@@ -131298,7 +131274,7 @@ xJW
xph
eBc
jxi
-ncj
+aMx
yfq
jxZ
jxZ
@@ -131503,12 +131479,12 @@ kKG
lgf
wdt
scg
-lGa
+hVF
wTK
giZ
lMd
-lGa
-qTh
+hVF
+lxb
jnX
yhl
cfI
@@ -131571,7 +131547,7 @@ eZj
aWR
xip
tZF
-ikE
+sMm
xEK
siW
cwF
@@ -131579,7 +131555,7 @@ iOo
wpZ
eNZ
xDt
-sqX
+vRS
siW
siW
nvh
@@ -131760,12 +131736,12 @@ wBt
wBt
wBt
cLg
-lGa
+hVF
bjB
kXy
wPS
-lGa
-qTh
+hVF
+lxb
jTB
maO
qqd
@@ -131805,7 +131781,7 @@ bHe
cvE
bVQ
yfq
-gGF
+sPf
xph
xik
dhc
@@ -131828,7 +131804,7 @@ chN
tsq
xip
kOi
-iSa
+dtg
xEK
siW
aOa
@@ -132012,17 +131988,17 @@ vtm
wdS
vtm
vUR
-qYg
+xcR
dNT
pSe
knc
scg
-lGa
+hVF
wTK
chH
lMd
-lGa
-mbu
+hVF
+ryG
jnX
yhl
qqd
@@ -132066,7 +132042,7 @@ eOj
xph
bGo
xJW
-aRU
+ybk
uwE
rhg
uwE
@@ -132085,7 +132061,7 @@ jlz
dYL
xip
kJm
-ikE
+sMm
iHz
aZB
dBq
@@ -132319,7 +132295,7 @@ chI
nCN
vBG
wUH
-lRj
+ptM
xph
bGo
xJW
@@ -132342,7 +132318,7 @@ iQL
rYr
ntV
iJx
-ikE
+sMm
xEK
imz
xbT
@@ -132575,7 +132551,7 @@ wJL
chI
hZQ
vBG
-cdd
+sie
eQc
xYS
mhe
@@ -132598,9 +132574,9 @@ piT
eHE
llI
vFx
-wcq
-tfx
-bTy
+wur
+kYw
+dCc
bTk
rJy
pJN
@@ -132833,9 +132809,9 @@ chI
hZQ
vBG
yfq
-bxW
-rGS
-ait
+sNe
+jbx
+xgq
trH
kYH
wAn
@@ -132856,7 +132832,7 @@ lew
wgY
jam
xEK
-ngc
+kBY
xEK
pyA
qTc
@@ -132885,7 +132861,7 @@ sMR
qTc
tBr
qTc
-kON
+vhv
haP
ozc
nnx
@@ -133113,7 +133089,7 @@ kcS
kcS
wzw
ktD
-ikE
+sMm
ktD
aZB
oRx
@@ -133297,8 +133273,8 @@ vBi
mTT
oEj
vUR
-ffv
-iXA
+qIM
+kbK
oYn
xIV
iZK
@@ -133346,7 +133322,7 @@ chI
chI
hZQ
vBG
-oix
+aby
wVA
vym
wHc
@@ -133363,14 +133339,14 @@ cQD
kcS
lod
foY
-dLQ
+oCF
kcS
-cBB
-cwb
-kLJ
+gPh
+wgQ
+gPh
kcS
xEK
-ikE
+sMm
xEK
siW
siW
@@ -133488,17 +133464,17 @@ nnx
nnx
xJu
nnx
-rof
+cQf
tIf
-fjh
+opV
nnx
-rof
+cQf
tIf
-fjh
+opV
nnx
-rof
+cQf
tIf
-fjh
+opV
nnx
xJu
nnx
@@ -133568,7 +133544,7 @@ kkX
nVS
wvS
iyg
-nVK
+amP
nVS
eSR
hHi
@@ -133603,7 +133579,7 @@ ajd
vuf
rdC
vBG
-rYW
+lbJ
dFQ
gpC
jrR
@@ -133621,13 +133597,13 @@ kcS
lsO
mBP
yec
-iqb
+kVO
vKy
-fIG
+luO
swG
kcS
gmR
-ikE
+sMm
ktD
mrn
bNA
@@ -133745,17 +133721,17 @@ nnx
nnx
xJu
nnx
-rof
+cQf
vfe
-fjh
+opV
nnx
-rof
+cQf
vfe
-fjh
+opV
nnx
-rof
+cQf
vfe
-fjh
+opV
nnx
xJu
nnx
@@ -133860,7 +133836,7 @@ chI
lRo
hZQ
vBG
-jYd
+lFV
sEu
xpH
sFH
@@ -133876,19 +133852,19 @@ kqu
aRM
kcS
sch
-bff
-xho
-ocb
-kIv
-xDW
+kmD
+fnu
+nUC
+sle
+pqH
toB
kcS
iHt
-poU
-qAi
-qAi
-xIh
-qlo
+gEW
+vPh
+vPh
+mKT
+tmg
ikr
skP
pSl
@@ -134002,17 +133978,17 @@ nnx
nnx
xJu
nnx
-rof
+cQf
vfe
-fjh
+opV
nnx
-rof
+cQf
vfe
-fjh
+opV
nnx
-rof
+cQf
vfe
-fjh
+opV
nnx
xJu
nnx
@@ -134135,9 +134111,9 @@ kcS
bmD
jhn
tSW
-iqb
+kVO
xsY
-vpP
+rQC
sYN
kcS
oDs
@@ -134145,7 +134121,7 @@ fqT
xav
xav
dnu
-ikE
+sMm
xEK
rHU
fLu
@@ -134259,17 +134235,17 @@ nnx
nnx
xJu
nnx
-rof
+cQf
vfe
-fjh
+opV
nnx
-rof
+cQf
vfe
-fjh
+opV
nnx
-rof
+cQf
vfe
-fjh
+opV
nnx
xJu
nnx
@@ -134391,18 +134367,18 @@ whB
kcS
rpX
hzp
-wpS
+wNM
kcS
-kLJ
-jpL
-kLJ
+gPh
+bkz
+spL
kcS
kUt
kUt
kUt
kUt
sMM
-ikE
+sMm
xni
fRu
fRu
@@ -134516,17 +134492,17 @@ nnx
nnx
xJu
nnx
-rof
+cQf
vfe
-fjh
+opV
nnx
-rof
+cQf
vfe
-fjh
+opV
nnx
-rof
+cQf
vfe
-fjh
+opV
nnx
xJu
nnx
@@ -134773,17 +134749,17 @@ nnx
nnx
xJu
nnx
-rof
+cQf
vfe
-fjh
+opV
nnx
-rof
+cQf
vfe
-fjh
+opV
nnx
-rof
+cQf
vfe
-fjh
+opV
nnx
xJu
nnx
@@ -134916,7 +134892,7 @@ eYX
sWK
wUG
ktD
-ikE
+sMm
lXI
jGx
lqv
@@ -135030,17 +135006,17 @@ nnx
nnx
xJu
nnx
-rof
+cQf
vfe
-fjh
+opV
nnx
-rof
+cQf
vfe
-fjh
+opV
nnx
-rof
+cQf
vfe
-fjh
+opV
nnx
xJu
nnx
@@ -135173,7 +135149,7 @@ pIw
iaG
wUG
ktD
-sQy
+sqF
xeF
aPJ
mAi
@@ -135287,17 +135263,17 @@ nnx
nnx
xJu
nnx
-rof
+cQf
vfe
-fjh
+opV
nnx
-rof
+cQf
vfe
-fjh
+opV
nnx
-rof
+cQf
vfe
-fjh
+opV
nnx
xJu
nnx
@@ -135430,7 +135406,7 @@ tcZ
xZv
wUG
kOi
-iSa
+dtg
xEK
fRu
qAX
@@ -135544,17 +135520,17 @@ xJu
csJ
csJ
nnx
-rof
+cQf
vfe
-fjh
+opV
nnx
-rof
+cQf
vfe
-fjh
+opV
nnx
-rof
+cQf
vfe
-fjh
+opV
nnx
xJu
csJ
@@ -135687,7 +135663,7 @@ xMY
eRR
wUG
pJI
-ikE
+sMm
xEK
fbb
blx
@@ -135912,7 +135888,7 @@ jKi
rKy
wTM
gEs
-mYq
+thE
dAl
sTe
sTe
@@ -135921,9 +135897,9 @@ wWV
jDt
dpN
xMs
-tGQ
-aYp
-eXK
+myp
+uvQ
+xXx
pzW
vQj
xSV
@@ -135931,7 +135907,7 @@ pNp
uUU
vzE
wDv
-dWZ
+kLZ
hZn
ioH
wUG
@@ -135944,7 +135920,7 @@ tcN
euN
wUG
xEK
-ikE
+sMm
vjw
fRu
uGw
@@ -136055,7 +136031,7 @@ nnx
nnx
wMM
nnx
-nJY
+fwS
adg
adg
agV
@@ -136188,7 +136164,7 @@ rzq
kLc
aWg
wDv
-jWq
+qyr
ape
gMU
wUG
@@ -136201,7 +136177,7 @@ iWp
bbM
wUG
ktD
-ikE
+sMm
rwH
fRu
fRu
@@ -136445,7 +136421,7 @@ xuS
oYh
auw
eiS
-jWq
+qyr
mmm
gwX
wUG
@@ -136453,12 +136429,12 @@ mvm
fEm
mdu
wUG
-wYX
+wnA
xFn
dNq
wUG
jUk
-ikE
+sMm
bkl
kUt
kUt
@@ -136572,17 +136548,17 @@ xJu
csJ
csJ
nnx
-rof
+cQf
aka
-fjh
+opV
nnx
-rof
+cQf
aka
-fjh
+opV
nnx
-rof
+cQf
aka
-fjh
+opV
nnx
xJu
csJ
@@ -136702,7 +136678,7 @@ fBJ
ccr
ccr
ccr
-ugB
+jNj
mcR
wOd
wUG
@@ -136715,7 +136691,7 @@ wUG
wUG
wUG
mra
-ikE
+sMm
cpU
qvW
rFZ
@@ -136829,17 +136805,17 @@ nnx
nnx
csJ
nnx
-rof
+cQf
aka
-fjh
+opV
nnx
-rof
+cQf
aka
-fjh
+opV
nnx
-rof
+cQf
aka
-fjh
+opV
nnx
xJu
nnx
@@ -136959,7 +136935,7 @@ nwM
wgV
wgV
wgV
-sRe
+vtC
tNd
aMc
vpQ
@@ -136972,7 +136948,7 @@ oqW
bOb
oqW
xEK
-ikE
+sMm
tSo
ktD
feq
@@ -137086,17 +137062,17 @@ nnx
nnx
xJu
nnx
-rof
+cQf
aka
-fjh
+opV
nnx
-rof
+cQf
aka
-fjh
+opV
nnx
-rof
+cQf
aka
-fjh
+opV
nnx
xJu
nnx
@@ -137197,7 +137173,7 @@ cfY
wdn
sQK
gEs
-eNV
+cNS
cUd
rlX
gad
@@ -137216,9 +137192,9 @@ gNB
xpc
rUi
lBE
-bse
-ydW
-ydW
+bCg
+pdk
+pdk
nch
mHV
buo
@@ -137229,7 +137205,7 @@ dHn
cNZ
nnw
xEK
-uaL
+det
xFN
lXI
blY
@@ -137343,17 +137319,17 @@ nnx
nnx
xJu
nnx
-rof
+cQf
aka
-fjh
+opV
nnx
-rof
+cQf
aka
-fjh
+opV
nnx
-rof
+cQf
aka
-fjh
+opV
nnx
xJu
nnx
@@ -137468,12 +137444,12 @@ wgM
xSV
rHf
vZw
-xxO
-sDU
-jZy
-sxh
-sxh
-piE
+fnj
+dYs
+uet
+aWJ
+aWJ
+aQm
bCW
rpo
oqW
@@ -137486,7 +137462,7 @@ oqW
cSS
oqW
ktD
-ikE
+sMm
pwm
pOi
fWL
@@ -137600,17 +137576,17 @@ nnx
nnx
xJu
nnx
-rof
+cQf
aka
-fjh
+opV
nnx
-rof
+cQf
aka
-fjh
+opV
nnx
-rof
+cQf
aka
-fjh
+opV
nnx
xJu
nnx
@@ -137857,17 +137833,17 @@ nnx
nnx
xJu
nnx
-rof
+cQf
aka
-fjh
+opV
nnx
-rof
+cQf
aka
-fjh
+opV
nnx
-rof
+cQf
aka
-fjh
+opV
nnx
xJu
nnx
@@ -138114,17 +138090,17 @@ nnx
nnx
xJu
nnx
-rof
+cQf
aka
-fjh
+opV
nnx
-rof
+cQf
aka
-fjh
+opV
nnx
-rof
+cQf
aka
-fjh
+opV
nnx
xJu
nnx
@@ -138371,17 +138347,17 @@ nnx
nnx
xJu
nnx
-rof
+cQf
aka
-fjh
+opV
nnx
-rof
+cQf
aka
-fjh
+opV
nnx
-rof
+cQf
aka
-fjh
+opV
nnx
xJu
nnx
@@ -138628,17 +138604,17 @@ nnx
nnx
xJu
nnx
-rof
+cQf
akb
-fjh
+opV
nnx
-rof
+cQf
akb
-fjh
+opV
nnx
-rof
+cQf
akb
-fjh
+opV
nnx
xJu
nnx
@@ -139517,7 +139493,7 @@ gfX
shs
xfR
aOI
-cUn
+xlJ
uUs
rsg
vzI
@@ -139774,7 +139750,7 @@ uUs
cjS
xfR
aOI
-usF
+kgh
uUs
uUs
uUs
@@ -139954,13 +139930,13 @@ jeD
dRk
qoM
iuy
-pKL
+xAE
qRm
sfU
-sck
+sqc
oVu
fji
-sck
+sqc
aiP
pWT
gsv
@@ -140040,7 +140016,7 @@ kvJ
cys
oCf
jWE
-fxc
+khR
hzR
vmG
kiu
@@ -140211,13 +140187,13 @@ nHR
elQ
inh
iuy
-pKL
+xAE
tMh
ewH
-sck
+sqc
wdb
knt
-pKL
+xAE
dGm
doY
izc
@@ -140468,13 +140444,13 @@ nHR
elQ
oZh
iuy
-pKL
+xAE
ezK
ycp
-pKL
+xAE
jPK
vvB
-pKL
+xAE
pUw
uJm
izc
@@ -140725,13 +140701,13 @@ oXV
emd
aJD
iuy
-sck
+sqc
dZA
ewH
-pKL
+xAE
qWx
knt
-sck
+sqc
vJa
doY
izc
@@ -140804,9 +140780,9 @@ kmo
vIM
xAk
uUs
-qtI
+jzf
lVp
-aoC
+moF
puI
bAb
tMD
@@ -140982,13 +140958,13 @@ nHR
elQ
iKl
eNy
-nZf
+eSY
rXf
ntQ
-nZf
+eSY
mwN
teq
-mxt
+hWn
dbN
alG
izc
@@ -141320,7 +141296,7 @@ knz
uUs
sRB
iJl
-tlm
+tOC
eRj
ufF
kXt
@@ -143303,12 +143279,12 @@ hGM
hGw
hZN
iqP
-ciJ
-xaZ
-rRt
-gaM
+iFb
+qNG
+aNS
+aPc
jwg
-uey
+ydU
yiC
rPl
rDU
@@ -143560,10 +143536,10 @@ hGU
fuq
gBJ
wfA
-lpt
-vIF
-vIF
-bBJ
+iFo
+gxY
+gxY
+iVZ
hcD
hvr
yiC
@@ -143817,10 +143793,10 @@ iMl
aji
iMl
wfA
-cAI
-vIF
-vIF
-eJk
+iFy
+gxY
+gxY
+jjr
hcD
oFa
yiC
@@ -143897,7 +143873,7 @@ uLE
uzm
ijV
uzm
-htz
+qwG
uzm
ijV
mcv
@@ -144074,10 +144050,10 @@ fZh
akH
gBU
wfA
-erO
-gDy
-wUJ
-hzr
+hKJ
+ibk
+baY
+gBa
jwC
kfR
yiC
@@ -144655,7 +144631,7 @@ rPL
wTf
uUs
aGS
-dLC
+ozB
sup
xCv
hEO
@@ -145171,10 +145147,10 @@ uUs
nhL
xfR
adh
-jEA
+cYz
xZT
vzn
-sUJ
+nzT
mcp
oPF
yiB
@@ -145421,11 +145397,11 @@ lba
lMw
sEC
sDI
-whP
-tdA
-whP
+nbH
+plT
+nbH
xDS
-gap
+bps
xfR
wfl
iyk
@@ -146106,7 +146082,7 @@ nnx
nnx
bvJ
cxT
-bfy
+hwR
brZ
dqz
bYm
@@ -146127,9 +146103,9 @@ ykw
ibC
ydm
fZC
-axO
+jkT
gEm
-jmm
+pjK
hLg
gzT
ydm
@@ -146625,12 +146601,12 @@ aAL
drK
ubJ
yeb
-gCc
+kWB
yeb
dKp
dOA
yeb
-hhM
+fwA
yeb
nVa
vRR
@@ -146882,12 +146858,12 @@ cIg
dse
uzC
yeb
-ity
+fSb
cIg
-vnD
-eWe
+eDY
+pzB
uzC
-gkS
+pgH
yeb
yeb
yeb
@@ -146928,8 +146904,8 @@ wDO
wDO
cIi
cIi
-lyy
-ejI
+lTF
+cIF
cIi
cIi
uZI
@@ -147139,12 +147115,12 @@ bOn
dst
dst
yeb
-aaS
+uif
yeb
dLp
jhj
yeb
-tTV
+aNh
yeb
gsS
epQ
@@ -147273,17 +147249,17 @@ nnx
nnx
csJ
nnx
-lsZ
+cpP
anf
-gCF
+ods
nnx
-lsZ
+cpP
anf
-gCF
+ods
nnx
-lsZ
+cpP
anf
-gCF
+ods
nnx
xJu
nnx
@@ -147423,7 +147399,7 @@ cZZ
cZZ
jVH
cZZ
-gQW
+fHJ
taC
xTa
xsq
@@ -147530,17 +147506,17 @@ nnx
nnx
csJ
nnx
-lsZ
+cpP
vMV
-gCF
+ods
nnx
-lsZ
+cpP
vMV
-gCF
+ods
nnx
-lsZ
+cpP
vMV
-gCF
+ods
nnx
xJu
nnx
@@ -147754,12 +147730,12 @@ uGV
tJY
gQn
gVe
-dJm
-xUQ
-xUQ
-xUQ
-xUQ
-xUQ
+syL
+lrR
+lrR
+lrR
+lrR
+lrR
jYj
gJY
gJY
@@ -147787,17 +147763,17 @@ nnx
nnx
csJ
nnx
-lsZ
+cpP
vMV
-gCF
+ods
nnx
-lsZ
+cpP
vMV
-gCF
+ods
nnx
-lsZ
+cpP
vMV
-gCF
+ods
nnx
xJu
nnx
@@ -148011,11 +147987,11 @@ jZL
wLN
rTo
tby
-kps
+jRp
uam
pip
uam
-ngS
+ikx
bPL
rTo
vXB
@@ -148044,17 +148020,17 @@ nnx
nnx
csJ
nnx
-lsZ
+cpP
vMV
-gCF
+ods
nnx
-lsZ
+cpP
vMV
-gCF
+ods
nnx
-lsZ
+cpP
vMV
-gCF
+ods
nnx
xJu
nnx
@@ -148268,11 +148244,11 @@ hgB
ble
rTo
wSL
-kps
+jRp
xyv
frM
gLO
-ngS
+ikx
bsm
rTo
air
@@ -148301,17 +148277,17 @@ nnx
nnx
csJ
nnx
-lsZ
+cpP
vMV
-gCF
+ods
nnx
-lsZ
+cpP
vMV
-gCF
+ods
nnx
-lsZ
+cpP
vMV
-gCF
+ods
nnx
xJu
nnx
@@ -148441,7 +148417,7 @@ eHQ
drE
sJD
eXI
-nQr
+sbl
fYs
sJD
lAI
@@ -148558,17 +148534,17 @@ nnx
nnx
csJ
nnx
-lsZ
+cpP
vMV
-gCF
+ods
nnx
-lsZ
+cpP
vMV
-gCF
+ods
nnx
-lsZ
+cpP
vMV
-gCF
+ods
nnx
xJu
nnx
@@ -148782,11 +148758,11 @@ hgB
rSR
rTo
wUB
-pYd
+yaB
ahp
qxK
kCA
-hPb
+vTj
ymc
rTo
vXB
@@ -148815,17 +148791,17 @@ nnx
nnx
csJ
nnx
-lsZ
+cpP
vMV
-gCF
+ods
nnx
-lsZ
+cpP
vMV
-gCF
+ods
nnx
-lsZ
+cpP
vMV
-gCF
+ods
nnx
csJ
nnx
@@ -149039,11 +149015,11 @@ hgB
itO
rTo
gzZ
-eOl
-wjV
+ltB
+eWk
apI
-xvO
-hSM
+bZz
+huY
hoD
rTo
mmz
@@ -149072,17 +149048,17 @@ abN
nnx
csJ
nnx
-lsZ
+cpP
vMV
-gCF
+ods
nnx
-lsZ
+cpP
vMV
-gCF
+ods
nnx
-lsZ
+cpP
vMV
-gCF
+ods
nnx
csJ
nnx
@@ -149329,17 +149305,17 @@ abN
nnx
csJ
nnx
-lsZ
+cpP
vMV
-gCF
+ods
nnx
-lsZ
+cpP
vMV
-gCF
+ods
nnx
-lsZ
+cpP
vMV
-gCF
+ods
nnx
csJ
csJ
@@ -149856,7 +149832,7 @@ lus
bii
xIL
xIL
-dXV
+iIC
csJ
wMM
nnx
@@ -150278,7 +150254,7 @@ ovZ
vQs
wEN
xiE
-wNJ
+oZn
wlU
xMx
duI
@@ -150357,17 +150333,17 @@ nnx
nnx
csJ
nnx
-lsZ
+cpP
wZr
-gCF
+ods
nnx
-lsZ
+cpP
wZr
-gCF
+ods
nnx
-lsZ
+cpP
wZr
-gCF
+ods
nnx
csJ
csJ
@@ -150568,10 +150544,10 @@ pSW
rXm
xCJ
rFB
-uZg
-eqb
-tVj
-dYe
+bQn
+rSa
+tRk
+xcM
vLM
nnx
nnx
@@ -150614,17 +150590,17 @@ nnx
nnx
csJ
nnx
-lsZ
+cpP
wZr
-gCF
+ods
nnx
-lsZ
+cpP
wZr
-gCF
+ods
nnx
-lsZ
+cpP
wZr
-gCF
+ods
nnx
csJ
nnx
@@ -150871,17 +150847,17 @@ csJ
csJ
csJ
nnx
-lsZ
+cpP
wZr
-gCF
+ods
nnx
-lsZ
+cpP
wZr
-gCF
+ods
nnx
-lsZ
+cpP
wZr
-gCF
+ods
nnx
csJ
nnx
@@ -151128,17 +151104,17 @@ nnx
nnx
csJ
nnx
-lsZ
+cpP
wZr
-gCF
+ods
nnx
-lsZ
+cpP
wZr
-gCF
+ods
nnx
-lsZ
+cpP
wZr
-gCF
+ods
nnx
xJu
nnx
@@ -151385,17 +151361,17 @@ nnx
nnx
csJ
nnx
-lsZ
+cpP
wZr
-gCF
+ods
nnx
-lsZ
+cpP
wZr
-gCF
+ods
nnx
-lsZ
+cpP
wZr
-gCF
+ods
nnx
xJu
nnx
@@ -151642,17 +151618,17 @@ nnx
nnx
csJ
nnx
-lsZ
+cpP
wZr
-gCF
+ods
nnx
-lsZ
+cpP
wZr
-gCF
+ods
nnx
-lsZ
+cpP
wZr
-gCF
+ods
nnx
xJu
nnx
@@ -151899,17 +151875,17 @@ nnx
nnx
csJ
nnx
-lsZ
+cpP
wZr
-gCF
+ods
nnx
-lsZ
+cpP
wZr
-gCF
+ods
nnx
-lsZ
+cpP
wZr
-gCF
+ods
nnx
xJu
nnx
@@ -152105,7 +152081,7 @@ rDo
vLM
rXm
rTd
-jjc
+eHt
hgB
rXm
xCJ
@@ -152156,17 +152132,17 @@ nnx
nnx
csJ
nnx
-lsZ
+cpP
wZr
-gCF
+ods
nnx
-lsZ
+cpP
wZr
-gCF
+ods
nnx
-lsZ
+cpP
wZr
-gCF
+ods
nnx
xJu
nnx
@@ -152314,7 +152290,7 @@ kHH
kHH
nRn
nRn
-uby
+mDl
nRn
jXP
kHH
@@ -152360,9 +152336,9 @@ ssu
ecS
ssu
vLM
-eEh
-pAO
-nRQ
+wsA
+ktQ
+pgV
kTI
rXm
elg
@@ -152413,17 +152389,17 @@ nnx
nnx
csJ
nnx
-lsZ
+cpP
wZr
-gCF
+ods
nnx
-lsZ
+cpP
wZr
-gCF
+ods
nnx
-lsZ
+cpP
xkE
-gCF
+ods
nnx
cZO
nnx
@@ -152571,7 +152547,7 @@ kHH
kHH
jZt
orP
-bHm
+dxv
pyl
unp
kHH
@@ -152828,7 +152804,7 @@ abN
abN
unp
otS
-fkI
+rPM
otS
unp
kHH
@@ -153595,27 +153571,27 @@ dyJ
nnx
nnx
nnx
-szQ
-szQ
-szQ
-szQ
-szQ
-szQ
-szQ
-szQ
-szQ
+qDL
+qDL
+qDL
+qDL
+qDL
+qDL
+qDL
+qDL
+qDL
qYE
qYE
qYE
-szQ
-szQ
-szQ
-szQ
-szQ
-szQ
-szQ
-szQ
-szQ
+qDL
+qDL
+qDL
+qDL
+qDL
+qDL
+qDL
+qDL
+qDL
nnx
wDO
qgi
@@ -154109,27 +154085,27 @@ abN
abN
csJ
nnx
-sjA
-sjA
-sjA
-sjA
-sjA
-sjA
-sjA
-sjA
-sjA
+ctP
+ctP
+ctP
+ctP
+ctP
+ctP
+ctP
+ctP
+ctP
qYE
qYE
qYE
-sxf
-sxf
-sxf
-sxf
-sxf
-sxf
-sxf
-sxf
-sjA
+mMR
+mMR
+mMR
+mMR
+mMR
+mMR
+mMR
+mMR
+ctP
nnx
wDO
nnx
@@ -154623,27 +154599,27 @@ abN
nnx
csJ
nnx
-szQ
-szQ
-szQ
-szQ
-szQ
-szQ
-szQ
-szQ
-szQ
+qDL
+qDL
+qDL
+qDL
+qDL
+qDL
+qDL
+qDL
+qDL
qYE
qYE
qYE
-szQ
-szQ
-szQ
-szQ
-szQ
-szQ
-szQ
-szQ
-szQ
+qDL
+qDL
+qDL
+qDL
+qDL
+qDL
+qDL
+qDL
+qDL
nnx
wMM
vLM
@@ -155137,27 +155113,27 @@ abN
nnx
csJ
nnx
-sjA
-sjA
-sjA
-sjA
-sjA
-sjA
-sjA
-sjA
-sjA
+ctP
+ctP
+ctP
+ctP
+ctP
+ctP
+ctP
+ctP
+ctP
qYE
qYE
qYE
-sxf
-sxf
-sxf
-sxf
-sxf
-sxf
-sxf
-sxf
-sjA
+mMR
+mMR
+mMR
+mMR
+mMR
+mMR
+mMR
+mMR
+ctP
nnx
csJ
nnx
@@ -155651,27 +155627,27 @@ abN
nnx
csJ
nnx
-szQ
-szQ
-szQ
-szQ
-szQ
-szQ
-szQ
-szQ
-szQ
+qDL
+qDL
+qDL
+qDL
+qDL
+qDL
+qDL
+qDL
+qDL
qYE
qYE
qYE
-szQ
-szQ
-szQ
-szQ
-szQ
-szQ
-szQ
-szQ
-szQ
+qDL
+qDL
+qDL
+qDL
+qDL
+qDL
+qDL
+qDL
+qDL
nnx
csJ
nnx
@@ -156165,27 +156141,27 @@ nnx
nnx
csJ
nnx
-sxf
-sxf
-sxf
-sxf
-sxf
-sxf
-sxf
-sxf
-sjA
+mMR
+mMR
+mMR
+mMR
+mMR
+mMR
+mMR
+mMR
+ctP
qYE
qYE
qYE
-sxf
-sxf
-sxf
-sxf
-sxf
-sxf
-sxf
-sxf
-sjA
+mMR
+mMR
+mMR
+mMR
+mMR
+mMR
+mMR
+mMR
+ctP
nnx
csJ
nnx
@@ -156679,27 +156655,27 @@ nnx
nnx
csJ
nnx
-szQ
-szQ
-szQ
-szQ
-szQ
-szQ
-szQ
-szQ
-szQ
+qDL
+qDL
+qDL
+qDL
+qDL
+qDL
+qDL
+qDL
+qDL
qYE
qYE
qYE
-szQ
-szQ
-szQ
-szQ
-szQ
-szQ
-szQ
-szQ
-szQ
+qDL
+qDL
+qDL
+qDL
+qDL
+qDL
+qDL
+qDL
+qDL
nnx
csJ
nnx
@@ -157193,27 +157169,27 @@ nnx
nnx
xJu
nnx
-sxf
-sxf
-sxf
-sxf
-sxf
-sxf
-sxf
-sxf
-sjA
+mMR
+mMR
+mMR
+mMR
+mMR
+mMR
+mMR
+mMR
+ctP
qYE
rBQ
qYE
-sxf
-sxf
-sxf
-sxf
-sxf
-sxf
-sxf
-sxf
-sjA
+mMR
+mMR
+mMR
+mMR
+mMR
+mMR
+mMR
+mMR
+ctP
nnx
xJu
nnx
@@ -157974,7 +157950,7 @@ nnx
nnx
csJ
nnx
-lld
+jNF
nnx
csJ
nnx
diff --git a/_maps/map_files/KiloStation/KiloStation.dmm b/_maps/map_files/KiloStation/KiloStation.dmm
index c962f1bb2c875..0a2036c7ea29a 100644
--- a/_maps/map_files/KiloStation/KiloStation.dmm
+++ b/_maps/map_files/KiloStation/KiloStation.dmm
@@ -4007,16 +4007,6 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/grass,
/area/chapel/main)
-"aqq" = (
-/obj/machinery/status_display/ai{
- pixel_x = -32
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/item/beacon,
-/turf/open/floor/engine,
-/area/science/explab)
"aqr" = (
/obj/structure/flora/grass/jungle,
/obj/structure/flora/ausbushes/grassybush,
@@ -4502,14 +4492,6 @@
"atn" = (
/turf/closed/wall/r_wall/rust,
/area/security/courtroom)
-"atq" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "telelab";
- name = "Test Chamber Blast Door"
- },
-/turf/open/floor/plating,
-/area/science/robotics/lab)
"atu" = (
/obj/effect/turf_decal/loading_area{
dir = 1
@@ -4653,15 +4635,6 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard)
-"aub" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 9
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/turf/open/floor/iron/showroomfloor,
-/area/science/explab)
"auc" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -6990,13 +6963,6 @@
/obj/machinery/atmospherics/miner/station/n2o,
/turf/open/floor/engine/n2o,
/area/engine/atmos)
-"aFs" = (
-/obj/effect/turf_decal/box/corners{
- dir = 1
- },
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/engine,
-/area/science/explab)
"aFw" = (
/obj/effect/turf_decal/stripes/corner{
dir = 4
@@ -7222,21 +7188,6 @@
},
/turf/open/floor/plating,
/area/engine/break_room)
-"aGx" = (
-/obj/structure/table,
-/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/obj/item/storage/toolbox/emergency{
- pixel_y = 8
- },
-/obj/item/storage/toolbox/electrical,
-/obj/item/clothing/gloves/color/yellow{
- pixel_y = 4
- },
-/turf/open/floor/iron/dark,
-/area/engine/atmos)
"aGz" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/pipedispenser,
@@ -7914,18 +7865,6 @@
/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall/rust,
/area/engine/engineering)
-"aLO" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/poddoor/preopen{
- id = "telelab";
- name = "Test Chamber Blast Door"
- },
-/obj/effect/turf_decal/caution/stand_clear,
-/turf/open/floor/engine,
-/area/science/explab)
"aLP" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
@@ -9056,6 +8995,13 @@
},
/turf/open/floor/grass,
/area/chapel/main)
+"aVx" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
"aVy" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -9176,26 +9122,9 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/science/server)
-"aWV" = (
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/engine,
-/area/science/explab)
"aWY" = (
/turf/closed/wall/r_wall,
/area/science/explab)
-"aXb" = (
-/obj/effect/landmark/blobstart,
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/engine,
-/area/science/explab)
-"aXc" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "telelab";
- name = "Test Chamber Blast Door"
- },
-/turf/open/floor/plating,
-/area/science/explab)
"aXf" = (
/obj/machinery/door/firedoor/heavy,
/obj/machinery/door/airlock/command{
@@ -9242,11 +9171,6 @@
"aXl" = (
/turf/closed/wall/r_wall/rust,
/area/science/mixing)
-"aXo" = (
-/obj/machinery/rnd/experimentor,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/engine,
-/area/science/explab)
"aXp" = (
/obj/effect/turf_decal/tile/blue/half/contrasted{
dir = 1
@@ -9320,20 +9244,6 @@
},
/turf/open/floor/plating,
/area/science/server)
-"aXS" = (
-/turf/open/floor/engine,
-/area/science/explab)
-"aXU" = (
-/obj/effect/turf_decal/box/corners{
- dir = 4
- },
-/obj/machinery/button/door{
- id = "telelab";
- name = "Test Chamber Toggle";
- pixel_y = 25
- },
-/turf/open/floor/engine,
-/area/science/explab)
"aXW" = (
/turf/closed/wall/rust,
/area/maintenance/starboard/fore)
@@ -10170,12 +10080,6 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/miningoffice)
-"bdb" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/science/explab)
"bdd" = (
/obj/effect/decal/cleanable/blood/old,
/obj/structure/table/optable{
@@ -10184,17 +10088,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron/dark,
/area/science/robotics/lab)
-"bde" = (
-/obj/structure/sign/warning/fire{
- pixel_y = 32
- },
-/obj/machinery/camera{
- c_tag = "Experimenter Chamber";
- name = "science camera";
- network = list("ss13","rd")
- },
-/turf/open/floor/engine,
-/area/science/explab)
"bdf" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/caution/stand_clear,
@@ -10252,15 +10145,6 @@
},
/turf/open/floor/iron/dark,
/area/crew_quarters/theatre)
-"bdA" = (
-/obj/effect/turf_decal/box/corners{
- dir = 8
- },
-/obj/item/radio/intercom{
- pixel_x = -28
- },
-/turf/open/floor/engine,
-/area/science/explab)
"bdD" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on,
/turf/open/floor/engine,
@@ -10331,14 +10215,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plating,
/area/maintenance/central)
-"bdS" = (
-/obj/effect/turf_decal/box/corners,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/turf/open/floor/engine,
-/area/science/explab)
"bed" = (
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -32717,6 +32593,12 @@
},
/turf/open/space/basic,
/area/solar/starboard/fore)
+"eln" = (
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/maintenance/starboard/fore)
"elv" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/sand/plating,
@@ -33323,6 +33205,23 @@
},
/turf/open/floor/iron/showroomfloor,
/area/crew_quarters/toilet/restrooms)
+"exd" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/power/apc{
+ areastring = "/area/science/explab";
+ dir = 1;
+ name = "Experimentation Lab APC";
+ pixel_y = 24
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted,
+/turf/open/floor/iron/dark,
+/area/science/explab)
"exh" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -42801,6 +42700,33 @@
},
/turf/open/floor/iron/showroomfloor,
/area/crew_quarters/heads/cmo)
+"hHL" = (
+/obj/structure/table,
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/head/utility/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 6
+ },
+/obj/item/clothing/head/utility/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 6
+ },
+/obj/item/clothing/head/utility/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 6
+ },
+/obj/item/clothing/glasses/meson/engine,
+/obj/item/clothing/glasses/meson/engine,
+/obj/item/clothing/glasses/meson/engine,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron/dark,
+/area/engine/engineering)
"hHN" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/green/visible{
@@ -45955,6 +45881,13 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/engine/break_room)
+"iLb" = (
+/obj/machinery/door/window/southright{
+ name = "Testing Chamber"
+ },
+/obj/item/beacon,
+/turf/open/floor/engine,
+/area/science/explab)
"iLd" = (
/obj/structure/table,
/obj/item/paper_bin{
@@ -51293,20 +51226,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/plating,
/area/maintenance/fore)
-"ktk" = (
-/obj/machinery/atmospherics/components/binary/pump{
- desc = "A pump that moves gas by pressure. Shower not included.";
- dir = 8;
- name = "Gas to Chamber"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron/showroomfloor,
-/area/science/explab)
"ktS" = (
/turf/closed/wall,
/area/science/shuttledock)
@@ -51525,6 +51444,15 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/exit/departure_lounge)
+"kxv" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/obj/effect/mapping_helpers/airlock/abandoned,
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/maintenance/starboard/fore)
"kxA" = (
/obj/structure/chair/fancy/bench/pew{
dir = 8
@@ -52129,6 +52057,15 @@
/obj/effect/turf_decal/tile/neutral/opposingcorners,
/turf/open/floor/iron/dark,
/area/crew_quarters/bar)
+"kLg" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/room/threexthree,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
"kLS" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -52490,6 +52427,12 @@
},
/turf/open/floor/iron/dark,
/area/crew_quarters/locker)
+"kUs" = (
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/showroomfloor,
+/area/science/explab)
"kUv" = (
/obj/structure/closet/secure_closet/security/sec,
/obj/effect/turf_decal/bot,
@@ -54863,6 +54806,28 @@
burnt = 1
},
/area/maintenance/starboard/fore)
+"lES" = (
+/obj/structure/table,
+/obj/item/paper_bin{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/pen,
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ name = "Science RC";
+ pixel_y = 30;
+ receive_ore_updates = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/science/explab)
"lEY" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -56807,6 +56772,13 @@
},
/turf/open/floor/iron/showroomfloor,
/area/medical/medbay/lobby)
+"mnH" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/maintenance/starboard/fore)
"mnR" = (
/obj/structure/rack,
/obj/effect/turf_decal/bot,
@@ -59107,6 +59079,14 @@
},
/turf/open/floor/iron/showroomfloor,
/area/crew_quarters/kitchen)
+"ngU" = (
+/obj/structure/table,
+/obj/item/storage/box/beakers{
+ pixel_y = 5
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron/dark,
+/area/science/explab)
"nha" = (
/obj/effect/decal/cleanable/blood/old,
/obj/effect/decal/cleanable/dirt,
@@ -61021,24 +61001,6 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/iron/showroomfloor,
/area/medical/medbay/central)
-"nQw" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/effect/turf_decal/delivery,
-/obj/machinery/power/apc{
- areastring = "/area/science/explab";
- dir = 1;
- name = "Experimentation Lab APC";
- pixel_y = 24
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/effect/turf_decal/tile/neutral/anticorner/contrasted,
-/turf/open/floor/iron/dark,
-/area/science/explab)
"nQJ" = (
/obj/effect/turf_decal/stripes/corner{
dir = 4
@@ -65052,6 +65014,14 @@
broken = 1
},
/area/maintenance/starboard/aft)
+"pfK" = (
+/obj/effect/turf_decal/bot,
+/obj/item/radio/intercom{
+ pixel_x = -28
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron/dark,
+/area/science/explab)
"pfM" = (
/obj/effect/turf_decal/stripes/corner{
dir = 8
@@ -67215,19 +67185,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/starboard)
-"pOC" = (
-/obj/structure/table,
-/obj/item/storage/box/beakers{
- pixel_y = 5
- },
-/obj/machinery/button/door{
- id = "telelab";
- name = "Test Chamber Toggle";
- pixel_x = -24
- },
-/obj/effect/turf_decal/tile/neutral/half/contrasted,
-/turf/open/floor/iron/dark,
-/area/science/explab)
"pPb" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -72242,6 +72199,16 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/prison,
/area/security/prison)
+"rwq" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/plating{
+ burnt = 1
+ },
+/area/maintenance/starboard/fore)
"rws" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/firecloset,
@@ -72669,6 +72636,16 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"rHE" = (
+/obj/machinery/status_display/ai{
+ pixel_x = -32
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron/dark,
+/area/science/explab)
"rHI" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/space_heater,
@@ -73081,6 +73058,10 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron/dark,
/area/security/warden)
+"rNW" = (
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
"rOd" = (
/obj/machinery/door/airlock/security{
name = "EVA room";
@@ -73861,19 +73842,6 @@
},
/turf/open/floor/iron/showroomfloor,
/area/science/lab)
-"scZ" = (
-/obj/machinery/computer/rdconsole/experiment{
- dir = 4
- },
-/obj/effect/turf_decal/bot,
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
- dir = 4
- },
-/turf/open/floor/iron/dark,
-/area/science/explab)
"sds" = (
/obj/structure/rack,
/obj/effect/turf_decal/bot,
@@ -76003,6 +75971,15 @@
/obj/effect/turf_decal/tile/purple,
/turf/open/floor/iron/showroomfloor,
/area/science/explab)
+"sPe" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ burnt = 1
+ },
+/area/maintenance/starboard/fore)
"sPs" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -77228,31 +77205,6 @@
},
/turf/open/floor/iron/dark,
/area/engine/atmos)
-"tkf" = (
-/obj/structure/table,
-/obj/item/paper_bin{
- pixel_x = -4;
- pixel_y = 4
- },
-/obj/item/pen,
-/obj/machinery/requests_console{
- department = "Science";
- departmentType = 2;
- name = "Science RC";
- pixel_y = 30;
- receive_ore_updates = 1
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron/dark,
-/area/science/explab)
"tks" = (
/obj/machinery/firealarm{
dir = 4;
@@ -77575,12 +77527,6 @@
/obj/effect/turf_decal/tile/blue/opposingcorners,
/turf/open/floor/iron,
/area/engine/atmos)
-"toT" = (
-/obj/machinery/door/window/southright{
- name = "Testing Chamber"
- },
-/turf/open/floor/engine,
-/area/science/explab)
"toW" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -78776,16 +78722,6 @@
/obj/structure/barricade/wooden,
/turf/open/floor/plating,
/area/quartermaster/warehouse)
-"tLi" = (
-/obj/structure/table,
-/obj/item/folder{
- pixel_x = -6
- },
-/obj/item/book/manual/wiki/experimentor,
-/obj/item/pen,
-/obj/effect/turf_decal/tile/neutral/half/contrasted,
-/turf/open/floor/iron/dark,
-/area/science/explab)
"tLy" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/power/apc{
@@ -81010,33 +80946,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/secondary/exit/departure_lounge)
-"uBi" = (
-/obj/structure/table,
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/clothing/suit/hazardvest,
-/obj/item/clothing/suit/hazardvest,
-/obj/item/clothing/suit/hazardvest,
-/obj/item/clothing/head/utility/hardhat/orange{
- name = "protective hat";
- pixel_y = 6
- },
-/obj/item/clothing/head/utility/hardhat/orange{
- name = "protective hat";
- pixel_y = 6
- },
-/obj/item/clothing/head/utility/hardhat/orange{
- name = "protective hat";
- pixel_y = 6
- },
-/obj/item/clothing/glasses/meson/engine,
-/obj/item/clothing/glasses/meson/engine,
-/obj/item/clothing/glasses/meson/engine,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral,
-/turf/open/floor/iron/dark,
-/area/engine/engineering)
"uCE" = (
/obj/structure/bookcase/random/religion,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -87256,6 +87165,15 @@
},
/turf/open/floor/iron,
/area/hydroponics)
+"wxP" = (
+/obj/structure/table,
+/obj/item/folder{
+ pixel_x = -6
+ },
+/obj/item/pen,
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron/dark,
+/area/science/explab)
"wyd" = (
/obj/effect/turf_decal/stripes/corner{
dir = 4
@@ -88276,6 +88194,21 @@
burnt = 1
},
/area/maintenance/port)
+"wPw" = (
+/obj/structure/table,
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/item/storage/toolbox/emergency{
+ pixel_y = 8
+ },
+/obj/item/storage/toolbox/electrical,
+/obj/item/clothing/gloves/color/yellow{
+ pixel_y = 4
+ },
+/turf/open/floor/iron/dark,
+/area/engine/atmos)
"wPP" = (
/obj/effect/turf_decal/bot,
/obj/machinery/camera{
@@ -90641,6 +90574,16 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/storage)
+"xED" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/structure/girder,
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/maintenance/starboard/fore)
"xEQ" = (
/obj/machinery/door/window/westleft{
name = "Monkey Pen";
@@ -120352,7 +120295,7 @@ fHc
rQa
vbd
tqC
-aGx
+wPw
kBa
amY
aFJ
@@ -126510,7 +126453,7 @@ iLa
nhY
iFd
axS
-uBi
+hHL
xdk
nSc
mbY
@@ -128242,10 +128185,10 @@ alu
amE
kWq
apB
-aXk
-aXk
-aWY
-aWY
+eln
+mnH
+sPe
+xED
aZS
crQ
xay
@@ -128499,11 +128442,11 @@ alB
alB
aep
apC
-aWY
-aFs
-aqq
-bdA
-aXj
+aXW
+baH
+kxv
+aXW
+bam
eCp
jOx
jJP
@@ -128756,11 +128699,11 @@ bfs
bwe
crh
jjT
-aWY
-bde
-aXo
-aXS
-atq
+baH
+rwq
+aVx
+kLg
+aZS
yeg
xay
aBe
@@ -129013,11 +128956,11 @@ bhu
alB
aeN
apC
-aXk
-aWV
-aXb
-aXS
-atq
+aXW
+cFi
+cFi
+cFi
+aZS
jRr
dwD
iBB
@@ -129270,11 +129213,11 @@ bft
alB
aeT
apN
-aWY
-aXU
-bdb
-bdS
-bah
+baH
+rNW
+cFi
+cFi
+aZS
jzV
pqL
cIq
@@ -129528,10 +129471,10 @@ alB
nHp
apT
aWY
-aXc
-aLO
-aXc
-bah
+aWY
+aWY
+aXk
+aZS
bai
bah
aXj
@@ -129785,11 +129728,11 @@ alB
ctJ
apY
aWY
-tkf
-ktk
-scZ
-pOC
-tLi
+lES
+rHE
+pfK
+ngU
+wxP
gAW
aZv
luD
@@ -130042,8 +129985,8 @@ aeX
cuG
dZe
aWY
-nQw
-aub
+exd
+kUs
szy
hum
jCp
@@ -133621,7 +133564,7 @@ gCl
hvl
wRZ
lmA
-toT
+iLb
lNK
hSs
btR
diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm
index 3fc18dec9c111..e8e850631b776 100644
--- a/_maps/map_files/MetaStation/MetaStation.dmm
+++ b/_maps/map_files/MetaStation/MetaStation.dmm
@@ -581,12 +581,6 @@
"aeq" = (
/turf/closed/wall/r_wall,
/area/ai_monitored/security/armory)
-"aer" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/tcommsat/server)
"aeu" = (
/obj/machinery/computer/prisoner/management,
/turf/open/floor/iron/dark,
@@ -1176,15 +1170,6 @@
"ajD" = (
/turf/closed/wall,
/area/security/main)
-"ajK" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/siding/yellow/corner,
-/turf/open/floor/iron,
-/area/engine/break_room)
"ajO" = (
/obj/machinery/atmospherics/miner/station/nitrogen,
/turf/open/floor/engine/n2,
@@ -1414,9 +1399,6 @@
},
/turf/open/floor/iron,
/area/security/brig)
-"alV" = (
-/turf/open/floor/glass/reinforced,
-/area/medical/medbay/lobby)
"amb" = (
/obj/machinery/light/small{
dir = 8
@@ -1954,13 +1936,6 @@
/obj/effect/spawner/lootdrop/donkpockets,
/turf/open/floor/iron,
/area/security/main)
-"apZ" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard)
"aqa" = (
/turf/closed/wall/r_wall,
/area/security/main)
@@ -2495,17 +2470,6 @@
},
/turf/open/floor/wood,
/area/crew_quarters/dorms)
-"auh" = (
-/obj/structure/chair,
-/obj/effect/landmark/start/assistant,
-/obj/effect/turf_decal/tile/blue/half/contrasted{
- dir = 4
- },
-/obj/effect/turf_decal/siding/dark_blue{
- dir = 3
- },
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
"auo" = (
/obj/effect/turf_decal/tile/red{
dir = 4
@@ -2830,13 +2794,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer4,
/turf/open/floor/iron,
/area/engine/atmos)
-"axH" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/external{
- name = "Escape Pod Four"
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"axL" = (
/obj/item/caution,
/obj/effect/turf_decal/stripes/line{
@@ -2844,15 +2801,6 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
-"axN" = (
-/obj/structure/chair,
-/obj/effect/landmark/start/assistant,
-/obj/effect/turf_decal/tile/purple/half/contrasted{
- dir = 4
- },
-/obj/effect/turf_decal/siding/purple,
-/turf/open/floor/iron/white,
-/area/science/research)
"axP" = (
/obj/structure/safe,
/obj/item/storage/secure/briefcase{
@@ -2885,16 +2833,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/engine/engineering)
-"axU" = (
-/obj/machinery/door/window/southright{
- dir = 4;
- name = "Engineering Deliveries";
- req_access_txt = "10"
- },
-/obj/effect/turf_decal/delivery,
-/obj/structure/window/reinforced,
-/turf/open/floor/iron,
-/area/engine/engineering)
"axX" = (
/obj/machinery/light_switch{
pixel_x = 23
@@ -3041,14 +2979,6 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/crew_quarters/dorms)
-"ayS" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/iron,
-/area/engine/engineering)
"ayY" = (
/obj/structure/chair{
dir = 1
@@ -3429,16 +3359,6 @@
"aBI" = (
/turf/closed/wall,
/area/engine/engineering)
-"aBJ" = (
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -22
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/engine/engineering)
"aBN" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
@@ -4457,9 +4377,6 @@
},
/turf/open/floor/iron,
/area/construction/storage_wing)
-"aHu" = (
-/turf/open/floor/glass/reinforced,
-/area/science/research)
"aHx" = (
/turf/closed/wall/r_wall,
/area/hallway/primary/fore)
@@ -4550,19 +4467,6 @@
"aHY" = (
/turf/open/floor/iron,
/area/engine/engineering)
-"aHZ" = (
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/clothing/suit/hazardvest,
-/obj/item/clothing/suit/hazardvest,
-/obj/item/tank/internals/emergency_oxygen/engi,
-/obj/item/tank/internals/emergency_oxygen/engi,
-/obj/effect/turf_decal/delivery,
-/obj/structure/table,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/engine/engineering)
"aIc" = (
/obj/effect/spawner/structure/window/plasma/reinforced,
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
@@ -5171,6 +5075,18 @@
/obj/item/clothing/glasses/sunglasses/advanced/big,
/turf/open/floor/carpet/green,
/area/lawoffice)
+"aLI" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"aLK" = (
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -7539,13 +7455,6 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/ai)
-"aYB" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"aYC" = (
/obj/structure/sign/warning/docking,
/turf/closed/wall,
@@ -7785,6 +7694,22 @@
/obj/machinery/door/firedoor,
/turf/open/floor/wood,
/area/library)
+"aZP" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/disposal/incinerator";
+ dir = 1;
+ name = "Incinerator APC";
+ pixel_y = 24
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"aZQ" = (
/obj/effect/landmark/start/ai/secondary,
/obj/item/radio/intercom{
@@ -8176,13 +8101,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/hallway/primary/port)
-"bbX" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 10
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"bbY" = (
/turf/open/floor/iron,
/area/hallway/primary/port)
@@ -9192,18 +9110,6 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/patients_rooms)
-"bid" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/advanced_airlock_controller{
- dir = 4;
- pixel_x = -24
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2,
-/turf/open/floor/catwalk_floor/iron,
-/area/maintenance/solars/port/aft)
"bie" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -9424,6 +9330,16 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"bjn" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engineering)
"bjo" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -9741,24 +9657,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/maintenance/starboard)
-"bkY" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/advanced_airlock_controller{
- dir = 8;
- pixel_x = 24
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2,
-/turf/open/floor/catwalk_floor,
-/area/hallway/secondary/exit/departure_lounge)
-"blc" = (
-/obj/effect/turf_decal/siding/white/corner{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"blf" = (
/obj/structure/chair/stool/bar,
/turf/open/floor/iron/cafeteria_red,
@@ -9909,18 +9807,6 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"bmo" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/siding/white{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"bmr" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
@@ -10061,12 +9947,6 @@
},
/turf/open/floor/iron,
/area/engine/break_room)
-"bnc" = (
-/obj/structure/disposalpipe/junction{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"bne" = (
/obj/machinery/newscaster{
pixel_y = -30
@@ -10289,6 +10169,37 @@
"bnS" = (
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/cmo)
+"bnU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engineering)
+"boj" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/landmark/start/scientist,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/science/explab)
"bok" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -10704,6 +10615,16 @@
},
/turf/open/floor/iron,
/area/storage/art)
+"brp" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/structure/closet/crate{
+ opened = 1
+ },
+/obj/item/wirecutters,
+/obj/item/weldingtool,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/iron,
+/area/maintenance/starboard/secondary)
"bry" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -10711,16 +10632,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/starboard)
-"brz" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/solar{
- id = "forestarboard";
- name = "Fore-Starboard Solar Array"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/starboard/fore)
"brC" = (
/obj/item/stack/package_wrap,
/obj/item/stack/package_wrap,
@@ -11064,13 +10975,6 @@
/obj/item/stamp/captain,
/turf/open/floor/wood,
/area/crew_quarters/heads/captain/private)
-"btg" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"btu" = (
/obj/item/storage/toolbox/emergency,
/obj/effect/spawner/lootdrop/maintenance,
@@ -11142,6 +11046,16 @@
/obj/machinery/holopad,
/turf/open/floor/iron,
/area/engine/atmos)
+"btN" = (
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/solar{
+ id = "aftport";
+ name = "Aft-Port Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/port/aft)
"btO" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
@@ -11373,19 +11287,6 @@
},
/turf/open/floor/circuit/green,
/area/ai_monitored/turret_protected/ai)
-"bvg" = (
-/obj/effect/turf_decal/bot{
- dir = 1
- },
-/obj/machinery/rnd/production/protolathe/department/engineering,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/turf/open/floor/iron/dark/corner,
-/area/engine/storage_shared)
"bvj" = (
/obj/structure/table,
/obj/machinery/light{
@@ -11530,19 +11431,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"bvR" = (
-/obj/machinery/holopad,
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/atmos)
"bvW" = (
/turf/closed/wall,
/area/crew_quarters/toilet/auxiliary)
@@ -11622,15 +11510,6 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
-"bwD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/atmos)
"bwS" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -12142,6 +12021,12 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
+"bAi" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"bAm" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -12166,21 +12051,6 @@
/obj/effect/spawner/lootdrop/gambling,
/turf/open/floor/wood,
/area/crew_quarters/bar)
-"bAw" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/iron/dark,
-/area/science/explab)
"bAz" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -12321,6 +12191,21 @@
},
/turf/open/space,
/area/space/nearstation)
+"bAZ" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/light_switch{
+ pixel_x = -20;
+ pixel_y = -20
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
"bBb" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -13339,21 +13224,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/command)
-"bGJ" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/green/visible{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
"bGL" = (
/obj/structure/chair{
dir = 1
@@ -13537,6 +13407,34 @@
},
/turf/open/floor/iron/dark/telecomms,
/area/tcommsat/server)
+"bHJ" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/table,
+/obj/item/reagent_containers/glass/bottle/epinephrine{
+ pixel_x = 7;
+ pixel_y = -3
+ },
+/obj/item/reagent_containers/glass/bottle/charcoal{
+ pixel_x = -4;
+ pixel_y = -3
+ },
+/obj/item/reagent_containers/syringe/epinephrine{
+ pixel_x = 3;
+ pixel_y = -2
+ },
+/obj/item/reagent_containers/dropper,
+/obj/item/reagent_containers/glass/beaker{
+ pixel_x = 8;
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/dark_blue,
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"bHK" = (
/obj/item/book/manual/wiki/security_space_law{
pixel_x = -3;
@@ -14193,13 +14091,6 @@
/obj/structure/bookcase/random/reference,
/turf/open/floor/wood,
/area/library)
-"bLm" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 5
- },
-/turf/open/space/basic,
-/area/space/nearstation)
"bLn" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -15309,11 +15200,6 @@
/obj/structure/chair/office,
/turf/open/floor/wood,
/area/library)
-"bRm" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
-/obj/structure/lattice,
-/turf/open/space,
-/area/space/nearstation)
"bRn" = (
/obj/structure/bookcase{
name = "Forbidden Knowledge"
@@ -15572,6 +15458,26 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"bRW" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
+"bSb" = (
+/obj/structure/cable,
+/obj/machinery/power/solar{
+ id = "aftport";
+ name = "Aft-Port Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/port/aft)
"bSd" = (
/obj/machinery/portable_atmospherics/canister,
/turf/open/floor/plating,
@@ -16512,22 +16418,6 @@
/obj/structure/closet/secure_closet/hydroponics,
/turf/open/floor/iron,
/area/hydroponics)
-"bWX" = (
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/white/line{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
"bXd" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -17106,17 +16996,6 @@
},
/turf/open/floor/iron,
/area/medical/chemistry)
-"cbC" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/iron/goonplaque{
- desc = "\"This is a plaque in honour of our comrades on the G4407 Stations. Hopefully TG4407 model can live up to your fame and fortune.\" Scratched in beneath that is a crude image of sentient postcards in a realm of darkness. The station model number is MSv42A-160516"
- },
-/area/hallway/primary/port)
"cbG" = (
/obj/machinery/power/apc{
areastring = "/area/maintenance/solars/starboard/fore";
@@ -17691,6 +17570,41 @@
/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/bridge/showroom/corporate)
+"chy" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/flasher{
+ id = "secentranceflasher";
+ pixel_x = 25
+ },
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "outerbrig";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "Secure Gate";
+ name = "Brig Blast door"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "brig-entrance"
+ },
+/turf/open/floor/iron,
+/area/security/brig)
"chB" = (
/obj/machinery/space_heater,
/obj/effect/landmark/blobstart,
@@ -17846,6 +17760,30 @@
},
/turf/open/floor/wood,
/area/crew_quarters/theatre)
+"ciw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research/glass{
+ name = "Research Testing Range";
+ req_one_access_txt = "49;47"
+ },
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/white/half/contrasted,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "sci-maint-passthrough"
+ },
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"cix" = (
/obj/machinery/firealarm{
dir = 1;
@@ -18364,18 +18302,6 @@
dir = 5
},
/area/science/research)
-"clR" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/effect/turf_decal/bot{
- dir = 1
- },
-/turf/open/floor/iron/white/side{
- dir = 4
- },
-/area/science/research)
"clT" = (
/obj/machinery/door/airlock/external{
name = "Departure Lounge Airlock"
@@ -18426,6 +18352,13 @@
"cmu" = (
/turf/closed/wall,
/area/crew_quarters/heads/cmo)
+"cmB" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 6
+ },
+/turf/open/space,
+/area/space/nearstation)
"cmF" = (
/obj/item/radio/intercom{
dir = 8;
@@ -18642,15 +18575,6 @@
},
/turf/open/floor/iron/white,
/area/science/research)
-"cpv" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"cpH" = (
/obj/structure/bed/roller,
/obj/effect/turf_decal/stripes/line{
@@ -18714,6 +18638,18 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron/grid/steel,
/area/medical/patients_rooms)
+"cqi" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"cqw" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -18857,16 +18793,6 @@
},
/turf/open/floor/iron/white,
/area/science/research)
-"cqQ" = (
-/obj/machinery/light_switch{
- pixel_x = -23
- },
-/obj/item/kirbyplants/random,
-/obj/effect/turf_decal/trimline/purple/filled/line{
- dir = 10
- },
-/turf/open/floor/iron/white,
-/area/science/explab)
"cqR" = (
/obj/machinery/power/apc{
areastring = "/area/science/explab";
@@ -18877,19 +18803,6 @@
/obj/effect/turf_decal/trimline/purple/filled/line,
/turf/open/floor/iron/white,
/area/science/explab)
-"cqS" = (
-/obj/item/radio/intercom{
- pixel_y = -29
- },
-/obj/machinery/camera{
- c_tag = "Experimentation Lab";
- dir = 1;
- network = list("ss13","rd")
- },
-/obj/machinery/light,
-/obj/effect/turf_decal/trimline/purple/filled/line,
-/turf/open/floor/iron/white,
-/area/science/explab)
"cqV" = (
/turf/open/floor/iron/white,
/area/science/explab)
@@ -19045,6 +18958,18 @@
},
/turf/open/floor/carpet/grimy,
/area/security/detectives_office)
+"csF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"csI" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 1
@@ -19478,10 +19403,18 @@
},
/turf/open/floor/circuit/green/telecomms/mainframe,
/area/science/server)
-"cwx" = (
-/obj/effect/turf_decal/siding/yellow,
+"cwb" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 4
+ },
/turf/open/floor/iron,
-/area/engine/break_room)
+/area/hallway/secondary/exit/departure_lounge)
"cwA" = (
/turf/open/floor/iron/white,
/area/medical/genetics)
@@ -19522,17 +19455,6 @@
},
/turf/open/floor/iron/white,
/area/science/research)
-"cwP" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/siding/yellow{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"cwY" = (
/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
dir = 1;
@@ -20230,16 +20152,6 @@
"cDL" = (
/turf/closed/wall/r_wall,
/area/medical/virology)
-"cDO" = (
-/obj/structure/table/wood,
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/obj/item/folder,
-/obj/item/folder,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/cult,
-/area/library)
"cDP" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 4
@@ -20326,17 +20238,14 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/maintenance/aft)
-"cEH" = (
-/obj/machinery/airalarm{
+"cFd" = (
+/obj/structure/noticeboard{
dir = 4;
- pixel_x = -22
+ pixel_x = -27
},
-/obj/machinery/light{
+/obj/effect/turf_decal/stripes/line{
dir = 8
},
-/obj/effect/turf_decal/bot,
-/obj/machinery/rnd/production/circuit_imprinter/department/science,
-/obj/machinery/ecto_sniffer,
/turf/open/floor/iron,
/area/science/robotics/lab)
"cFf" = (
@@ -20386,6 +20295,19 @@
},
/turf/open/floor/wood,
/area/crew_quarters/bar)
+"cFX" = (
+/obj/structure/table,
+/obj/item/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/clothing/glasses/science,
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple,
+/turf/open/floor/iron/white,
+/area/science/research)
"cGa" = (
/obj/machinery/computer/rdconsole/robotics{
dir = 4
@@ -20437,18 +20359,22 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
/area/science/test_area)
-"cGW" = (
-/turf/closed/wall/r_wall,
-/area/medical/morgue)
-"cGZ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
+"cGV" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -22
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+/obj/machinery/light{
dir = 8
},
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/tcommsat/server)
+/obj/effect/turf_decal/bot,
+/obj/machinery/rnd/production/circuit_imprinter/department/science,
+/obj/machinery/ecto_sniffer,
+/turf/open/floor/iron,
+/area/science/robotics/lab)
+"cGW" = (
+/turf/closed/wall/r_wall,
+/area/medical/morgue)
"cHb" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -20466,16 +20392,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/security/main)
-"cHi" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Holodeck Door"
- },
-/obj/machinery/door/firedoor,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
- cycle_id = "holodeck"
- },
-/turf/open/floor/iron,
-/area/crew_quarters/fitness/recreation)
"cHk" = (
/obj/structure/cable,
/obj/machinery/power/tracker,
@@ -20556,17 +20472,6 @@
},
/turf/open/floor/wood,
/area/library)
-"cIo" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/iron,
-/area/engine/break_room)
"cIH" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -20725,21 +20630,6 @@
/obj/structure/girder,
/turf/open/floor/plating,
/area/maintenance/port)
-"cKe" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/newscaster{
- pixel_x = 1;
- pixel_y = 34
- },
-/obj/item/storage/backpack/duffelbag/med/surgery{
- pixel_y = 4
- },
-/turf/open/floor/iron/white,
-/area/medical/surgery)
"cKg" = (
/obj/structure/grille,
/turf/open/floor/plating,
@@ -21015,6 +20905,16 @@
},
/turf/open/floor/plating,
/area/maintenance/department/medical/central)
+"cNu" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white/corner,
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"cNw" = (
/obj/machinery/power/compressor{
comp_id = "incineratorturbine";
@@ -21264,6 +21164,29 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/hallway/secondary/exit/departure_lounge)
+"cPx" = (
+/obj/machinery/door/airlock/atmos/glass{
+ name = "Atmospherics Monitoring";
+ req_access_txt = "24"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"cPz" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -21387,13 +21310,6 @@
},
/turf/open/floor/iron/white,
/area/science/research)
-"cQh" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 10
- },
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
"cQl" = (
/turf/open/floor/iron/chapel,
/area/chapel/main)
@@ -21768,16 +21684,6 @@
"cSn" = (
/turf/open/floor/engine,
/area/science/xenobiology)
-"cSo" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron,
-/area/crew_quarters/locker)
"cSq" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -21849,15 +21755,6 @@
},
/turf/open/floor/engine,
/area/science/xenobiology)
-"cSz" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/purple/filled/line{
- dir = 6
- },
-/turf/open/floor/iron/white,
-/area/science/explab)
"cSF" = (
/obj/machinery/camera{
c_tag = "Xenobiology Lab - Pen #6";
@@ -21955,16 +21852,23 @@
},
/turf/open/floor/iron,
/area/science/lab)
-"cTP" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engineering)
"cTR" = (
/obj/effect/spawner/xmastree,
/turf/open/floor/wood,
/area/crew_quarters/bar)
+"cTU" = (
+/obj/structure/rack,
+/obj/machinery/camera{
+ c_tag = "Brig - Infirmary";
+ dir = 1
+ },
+/obj/item/clothing/under/rank/medical/doctor/purple{
+ pixel_y = -4
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted,
+/obj/item/stack/medical/gauze,
+/turf/open/floor/iron/white,
+/area/security/brig)
"cUm" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -22225,16 +22129,6 @@
"cXA" = (
/turf/closed/wall/r_wall,
/area/security/checkpoint/engineering)
-"cXB" = (
-/obj/effect/turf_decal/siding/dark_blue/corner,
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
-"cXE" = (
-/obj/effect/turf_decal/siding/yellow/corner{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"cXG" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/power/apc{
@@ -22354,14 +22248,6 @@
dir = 4
},
/area/chapel/main)
-"cZE" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "Cooling to Unfiltered"
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
"cZO" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -22379,9 +22265,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/security/execution/education)
-"daj" = (
-/turf/open/floor/glass/reinforced,
-/area/hallway/secondary/exit/departure_lounge)
"das" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -22456,14 +22339,6 @@
},
/turf/open/floor/engine,
/area/engine/supermatter)
-"dbc" = (
-/obj/item/radio/intercom{
- pixel_y = 21
- },
-/obj/structure/closet/secure_closet/engineering_personal,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/iron,
-/area/engine/engineering)
"dbe" = (
/obj/machinery/keycard_auth{
pixel_x = 26
@@ -22536,20 +22411,6 @@
/obj/structure/cable,
/turf/open/space,
/area/solar/starboard/aft)
-"dcv" = (
-/obj/effect/landmark/start/cyborg,
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/camera/motion{
- c_tag = "AI Upload Foyer";
- network = list("aiupload")
- },
-/obj/machinery/airalarm{
- pixel_y = 26
- },
-/turf/open/floor/iron/dark,
-/area/ai_monitored/turret_protected/ai_upload_foyer)
"dcH" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -23709,16 +23570,6 @@
},
/turf/open/floor/wood,
/area/crew_quarters/theatre)
-"dkr" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/advanced_airlock_controller{
- dir = 8;
- pixel_x = 24
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2,
-/turf/open/floor/catwalk_floor,
-/area/hallway/secondary/entry)
"dkt" = (
/obj/machinery/vending/security,
/obj/machinery/firealarm{
@@ -23730,6 +23581,16 @@
},
/turf/open/floor/iron/showroomfloor,
/area/security/main)
+"dkJ" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 6
+ },
+/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
+/obj/item/pen,
+/turf/open/floor/iron,
+/area/medical/genetics)
"dkO" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow,
@@ -23766,6 +23627,12 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/tcommsat/computer)
+"dlc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/tcommsat/server)
"dle" = (
/obj/effect/landmark/start/virologist,
/obj/structure/chair/office/light{
@@ -23968,12 +23835,6 @@
/obj/structure/closet/emcloset,
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"dnx" = (
-/obj/effect/turf_decal/siding/purple/corner{
- dir = 8
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"dnz" = (
/obj/machinery/space_heater,
/turf/open/floor/plating,
@@ -24094,16 +23955,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"dpn" = (
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/iron,
-/area/engine/break_room)
"dpE" = (
/obj/machinery/light{
dir = 8
@@ -24191,18 +24042,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"dru" = (
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 9
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
"drD" = (
/obj/machinery/door/airlock{
id_tag = "Cabin7";
@@ -24258,21 +24097,6 @@
/obj/machinery/light,
/turf/open/floor/iron/grid/steel,
/area/medical/patients_rooms)
-"drY" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/light_switch{
- pixel_x = -20;
- pixel_y = -20
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/ai_monitored/turret_protected/ai_upload_foyer)
"drZ" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -24411,6 +24235,10 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/hallway/primary/central)
+"dua" = (
+/obj/effect/turf_decal/box/corners,
+/turf/open/floor/engine,
+/area/science/explab)
"duk" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -24549,6 +24377,38 @@
/obj/structure/table/reinforced,
/turf/open/floor/prison,
/area/security/prison)
+"dwB" = (
+/obj/structure/table,
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/pen{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/machinery/status_display/evac{
+ pixel_y = 32
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/machinery/camera{
+ c_tag = "Research Division - Lobby";
+ network = list("ss13","rd")
+ },
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"dwL" = (
/turf/closed/wall/r_wall,
/area/maintenance/starboard/secondary)
@@ -24745,12 +24605,6 @@
},
/turf/open/floor/iron,
/area/science/lab)
-"dBb" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/atmos)
"dBu" = (
/turf/closed/wall,
/area/engine/gravity_generator)
@@ -25041,6 +24895,18 @@
/mob/living/carbon/monkey/punpun,
/turf/open/floor/wood/big,
/area/crew_quarters/bar)
+"dFt" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"dFv" = (
/obj/effect/turf_decal/tile/yellow/opposingcorners{
dir = 1
@@ -25064,6 +24930,22 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plating,
/area/maintenance/starboard/secondary)
+"dFS" = (
+/obj/machinery/door/airlock/public/glass{
+ name = "Holodeck Door"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "holodeck"
+ },
+/turf/open/floor/iron,
+/area/crew_quarters/fitness/recreation)
"dFY" = (
/obj/structure/sign/map/left{
desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
@@ -25148,6 +25030,12 @@
/obj/machinery/portable_atmospherics/canister/air,
/turf/open/floor/iron,
/area/maintenance/central)
+"dIZ" = (
+/obj/machinery/vending/tool,
+/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/engine/storage_shared)
"dJG" = (
/obj/structure/table/reinforced,
/obj/item/kitchen/rollingpin,
@@ -25215,6 +25103,35 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
+"dKV" = (
+/obj/machinery/door/airlock/maintenance{
+ req_one_access_txt = "49;47;12"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "sci-maint-passthrough"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/science)
+"dKY" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/science/explab)
"dLb" = (
/obj/machinery/chem_dispenser/drinks/beer,
/obj/structure/table/reinforced,
@@ -25317,6 +25234,23 @@
},
/turf/open/floor/prison,
/area/security/prison)
+"dNs" = (
+/obj/structure/table,
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/item/storage/box/bodybags{
+ pixel_y = 2
+ },
+/obj/item/clothing/gloves/color/latex,
+/obj/item/razor{
+ pixel_y = 5
+ },
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/science/robotics/lab)
"dNv" = (
/obj/structure/table/reinforced,
/obj/item/storage/box/donkpockets{
@@ -25439,9 +25373,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/dark,
/area/aisat)
-"dPg" = (
-/turf/open/space,
-/area/space/nearstation)
"dPr" = (
/obj/structure/closet/secure_closet/security/med,
/obj/effect/turf_decal/tile/red/half/contrasted{
@@ -25491,6 +25422,16 @@
},
/turf/open/floor/wood,
/area/crew_quarters/bar)
+"dQl" = (
+/obj/machinery/holopad{
+ pixel_x = 16;
+ pixel_y = -16
+ },
+/obj/effect/turf_decal/siding/purple{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"dQx" = (
/obj/effect/turf_decal/tile/green/fourcorners/contrasted,
/obj/structure/disposalpipe/segment{
@@ -25526,19 +25467,21 @@
/obj/effect/turf_decal/tile/brown/anticorner/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/port)
-"dRx" = (
-/obj/structure/closet/secure_closet/engineering_personal,
-/obj/item/clothing/suit/hooded/wintercoat/engineering,
-/obj/effect/turf_decal/delivery,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/engine/engineering)
"dRB" = (
/obj/structure/sign/departments/medbay/alt,
/turf/closed/wall,
/area/medical/morgue)
+"dRM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"dRS" = (
/obj/machinery/status_display/ai,
/turf/closed/wall,
@@ -25713,22 +25656,6 @@
},
/turf/open/floor/iron,
/area/medical/storage)
-"dVd" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Holodeck Door"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
- cycle_id = "holodeck"
- },
-/turf/open/floor/iron,
-/area/crew_quarters/fitness/recreation)
"dWb" = (
/obj/machinery/computer/shuttle_flight/mining{
dir = 4
@@ -25806,6 +25733,23 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron/dark,
/area/aisat)
+"dXZ" = (
+/obj/machinery/camera{
+ c_tag = "Engineering Supermatter Fore";
+ dir = 4;
+ network = list("ss13","engine")
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -26
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engineering)
"dYi" = (
/obj/structure/closet/emcloset,
/obj/structure/sign/map/left{
@@ -25863,14 +25807,6 @@
},
/turf/open/floor/iron/white,
/area/science/research)
-"dZq" = (
-/obj/structure/chair,
-/obj/effect/turf_decal/tile/blue/half/contrasted{
- dir = 4
- },
-/obj/effect/turf_decal/siding/dark_blue,
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
"dZH" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -25920,9 +25856,6 @@
},
/turf/open/floor/iron,
/area/science/shuttledock)
-"eas" = (
-/turf/closed/wall,
-/area/engine/break_room)
"eaF" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -25981,6 +25914,15 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
+"ebP" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/start/atmospheric_technician,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal/incinerator)
"ebR" = (
/obj/structure/chair/office/light{
dir = 8
@@ -26103,12 +26045,6 @@
},
/turf/open/floor/circuit/telecomms,
/area/maintenance/department/science/xenobiology)
-"efe" = (
-/obj/effect/turf_decal/siding/white/corner{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"efi" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -26240,19 +26176,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/security/armory)
-"ehv" = (
-/obj/structure/table,
-/obj/item/stack/medical/gauze,
-/obj/item/stack/medical/ointment,
-/obj/item/stack/medical/bruise_pack,
-/obj/effect/turf_decal/tile/blue/half/contrasted{
- dir = 4
- },
-/obj/effect/turf_decal/siding/dark_blue{
- dir = 3
- },
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
"ehx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 1
@@ -26340,20 +26263,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"elb" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
- dir = 1
- },
-/obj/machinery/camera/autoname{
- dir = 4;
- network = list("ss13","medbay")
- },
-/obj/item/storage/backpack/duffelbag/med/implant{
- pixel_y = 4
- },
-/turf/open/floor/iron/white,
-/area/medical/surgery)
"eln" = (
/obj/machinery/light/small{
dir = 1
@@ -26436,17 +26345,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/security/brig)
-"emu" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/poddoor/preopen{
- id = "Engineering";
- name = "Engineering Security Doors"
- },
-/obj/structure/sign/warning/securearea{
- pixel_y = 32
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"emC" = (
/obj/machinery/atmospherics/components/binary/pump/on,
/obj/structure/sign/warning/fire{
@@ -26507,15 +26405,6 @@
},
/turf/open/floor/plating,
/area/medical/chemistry)
-"enH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engineering)
"eob" = (
/obj/machinery/door/airlock/engineering{
name = "Port Quarter Solar Access";
@@ -26563,19 +26452,6 @@
/obj/item/bedsheet/medical,
/turf/open/floor/iron/white,
/area/medical/surgery)
-"epj" = (
-/obj/structure/rack,
-/obj/machinery/camera{
- c_tag = "Brig - Infirmary";
- dir = 1
- },
-/obj/item/clothing/under/rank/medical/doctor/purple{
- pixel_y = -4
- },
-/obj/effect/turf_decal/tile/red/anticorner/contrasted,
-/obj/item/stack/medical/gauze,
-/turf/open/floor/iron/white,
-/area/security/brig)
"epn" = (
/obj/effect/landmark/secequipment,
/obj/effect/turf_decal/bot,
@@ -26610,6 +26486,12 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plating,
/area/maintenance/fore)
+"epE" = (
+/obj/machinery/door/morgue{
+ name = "Chapel Garden"
+ },
+/turf/open/floor/cult,
+/area/chapel/main)
"eqc" = (
/obj/structure/sign/warning/vacuum/external{
pixel_x = 32
@@ -26765,6 +26647,12 @@
/obj/machinery/telecomms/hub/preset/exploration,
/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
+"esQ" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"esR" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -26802,26 +26690,6 @@
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/iron,
/area/maintenance/starboard/fore)
-"etM" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/obj/machinery/door/airlock/atmos/glass{
- name = "Distribution Loop";
- req_access_txt = "24"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/white/line{
- dir = 1
- },
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/atmos)
"etX" = (
/obj/structure/disposalpipe/segment{
dir = 10
@@ -26875,6 +26743,12 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/gateway)
+"ewn" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/reagent_dispensers/fueltank,
+/obj/item/storage/toolbox/emergency,
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"ewK" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance/three,
@@ -27097,6 +26971,12 @@
},
/turf/open/floor/iron,
/area/security/main)
+"eBQ" = (
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"eBT" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/item/kirbyplants/random,
@@ -27196,6 +27076,15 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/security/nuke_storage)
+"eDT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/dark_blue/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"eEa" = (
/obj/machinery/door/airlock/maintenance{
name = "Disposal Access";
@@ -27234,15 +27123,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/command)
-"eEl" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/tcommsat/server)
"eEw" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -27446,6 +27326,18 @@
},
/turf/open/floor/iron/white,
/area/crew_quarters/heads/hor)
+"eHS" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/light_switch{
+ pixel_x = 24;
+ pixel_y = -24
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/ai_monitored/turret_protected/ai_upload)
"eId" = (
/obj/machinery/telecomms/broadcaster/preset_exploration,
/obj/structure/cable/yellow{
@@ -27577,11 +27469,6 @@
/obj/structure/bed/roller,
/turf/open/floor/iron/white,
/area/medical/surgery)
-"eKy" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/closet/bombcloset,
-/turf/open/floor/iron/dark,
-/area/science/explab)
"eKT" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -27722,6 +27609,17 @@
},
/turf/open/floor/iron,
/area/crew_quarters/fitness/recreation)
+"eOT" = (
+/obj/structure/table/glass,
+/obj/item/lightreplacer{
+ pixel_y = 7
+ },
+/obj/item/storage/belt/utility,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"ePn" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -27731,6 +27629,13 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plating,
/area/maintenance/port/fore)
+"ePp" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron,
+/area/maintenance/aft)
"ePz" = (
/obj/structure/cable/yellow{
icon_state = "2-4"
@@ -27783,22 +27688,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/storage/eva)
-"eQJ" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/obj/structure/sign/warning/deathsposal{
- pixel_y = 32
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"eQO" = (
/obj/machinery/power/apc{
areastring = "/area/security/checkpoint/science/research";
@@ -27873,6 +27762,18 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/maintenance/port)
+"eSY" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/engine/break_room)
"eTg" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -27904,6 +27805,13 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/iron,
/area/maintenance/starboard/fore)
+"eUc" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 5
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
"eUh" = (
/obj/structure/table,
/obj/item/paper_bin{
@@ -27915,6 +27823,18 @@
},
/turf/open/floor/iron,
/area/quartermaster/qm)
+"eUo" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/visible{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"eUt" = (
/obj/effect/turf_decal/tile/neutral{
dir = 8
@@ -28219,21 +28139,6 @@
/obj/effect/turf_decal/bot_red,
/turf/open/floor/iron/dark,
/area/science/storage)
-"eZH" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/siding/purple{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"eZK" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
@@ -28280,6 +28185,31 @@
"faV" = (
/turf/open/floor/plating,
/area/maintenance/department/medical/central)
+"fbm" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/machinery/door/window/eastright{
+ dir = 8;
+ name = "Genetics Desk";
+ req_access_txt = "5;9"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/desk_bell{
+ pixel_x = -8
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "geneticslab";
+ name = "Genetics Lab Shutters"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "quarantineshutters";
+ name = "isolation shutters"
+ },
+/turf/open/floor/plating,
+/area/medical/genetics)
"fbK" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 4
@@ -28321,44 +28251,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat/foyer)
-"fct" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/science/explab)
-"fcG" = (
-/obj/structure/rack,
-/obj/item/storage/firstaid/regular{
- empty = 1;
- name = "First-Aid (empty)"
- },
-/obj/item/storage/firstaid/regular{
- empty = 1;
- name = "First-Aid (empty)"
- },
-/obj/item/storage/firstaid/regular{
- empty = 1;
- name = "First-Aid (empty)"
- },
-/obj/item/radio/headset/headset_sci{
- pixel_x = -3
- },
-/obj/effect/turf_decal/delivery,
-/obj/item/healthanalyzer{
- pixel_x = 4;
- pixel_y = -4
- },
-/obj/item/healthanalyzer{
- pixel_x = 4;
- pixel_y = -4
- },
-/obj/item/healthanalyzer{
- pixel_x = 4;
- pixel_y = -4
- },
-/turf/open/floor/iron,
-/area/science/robotics/lab)
"fcY" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -28449,6 +28341,13 @@
},
/turf/open/floor/wood,
/area/crew_quarters/theatre)
+"ffP" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 5
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
"ffQ" = (
/obj/machinery/airalarm{
dir = 4;
@@ -28703,18 +28602,18 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/security/main)
-"fjB" = (
-/obj/machinery/light/small{
+"fjD" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/advanced_airlock_controller{
- dir = 4;
- pixel_x = -24
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2,
-/turf/open/floor/catwalk_floor,
-/area/hallway/secondary/exit/departure_lounge)
+/obj/effect/turf_decal/trimline/purple/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"fjM" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -28775,17 +28674,6 @@
},
/turf/open/floor/iron,
/area/science/shuttledock)
-"fkR" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -26
- },
-/obj/machinery/vending/wardrobe/science_wardrobe,
-/obj/effect/turf_decal/trimline/purple/filled/line{
- dir = 8
- },
-/turf/open/floor/iron/white,
-/area/science/explab)
"fkX" = (
/obj/machinery/airalarm{
dir = 1;
@@ -28989,6 +28877,19 @@
},
/turf/open/floor/iron/dark,
/area/aisat)
+"fpx" = (
+/obj/machinery/holopad,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"fpB" = (
/obj/machinery/airalarm{
dir = 4;
@@ -29367,6 +29268,33 @@
},
/turf/open/floor/wood,
/area/library)
+"fwY" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "innerbrig";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "brig-entrance"
+ },
+/turf/open/floor/iron,
+/area/security/brig)
"fxf" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -29378,12 +29306,17 @@
/obj/effect/turf_decal/siding/wood,
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
-"fxK" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 5
+"fxC" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10
},
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/tcommsat/server)
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
+"fxD" = (
+/obj/structure/table/glass,
+/turf/open/floor/iron,
+/area/engine/break_room)
"fxZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -29409,14 +29342,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/maintenance/department/medical/central)
-"fyu" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal/incinerator)
"fyG" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -29694,6 +29619,17 @@
/obj/machinery/light,
/turf/open/floor/iron,
/area/medical/break_room)
+"fBw" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/purple/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/science/explab)
"fBI" = (
/obj/structure/window/reinforced{
dir = 4
@@ -29953,18 +29889,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"fFQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/siding/dark_blue{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
"fFT" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -30140,6 +30064,17 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/command)
+"fJH" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/goonplaque{
+ desc = "\"This is a plaque in honour of our comrades on the G4407 Stations. Hopefully TG4407 model can live up to your fame and fortune.\" Scratched in beneath that is a crude image of sentient postcards in a realm of darkness. The station model number is MSv42A-160516"
+ },
+/area/hallway/primary/port)
"fKN" = (
/obj/structure/closet/secure_closet/personal,
/obj/effect/turf_decal/box,
@@ -30170,6 +30105,13 @@
},
/turf/open/floor/iron/showroomfloor,
/area/crew_quarters/cryopods)
+"fLC" = (
+/obj/machinery/door/morgue{
+ name = "Relic Closet";
+ req_access_txt = "22"
+ },
+/turf/open/floor/cult,
+/area/chapel/office)
"fLK" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -30203,9 +30145,6 @@
},
/turf/open/floor/iron/dark,
/area/science/nanite)
-"fMp" = (
-/turf/open/floor/glass/reinforced,
-/area/engine/break_room)
"fMs" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -30414,20 +30353,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"fPe" = (
-/obj/machinery/door/airlock/highsecurity{
- name = "AI Upload";
- req_access_txt = "16"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/ai_monitored/turret_protected/ai_upload)
"fPf" = (
/obj/machinery/light_switch{
pixel_y = -28
@@ -30589,6 +30514,18 @@
},
/turf/open/floor/iron,
/area/gateway)
+"fRn" = (
+/obj/machinery/holopad,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/heat_exchanging/manifold,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/tcommsat/server)
"fRq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -30953,16 +30890,6 @@
/obj/effect/turf_decal/tile/neutral/opposingcorners,
/turf/open/floor/iron,
/area/vacant_room/commissary)
-"fWL" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/solar{
- id = "aftstarboard";
- name = "Aft-Starboard Solar Array"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/starboard/aft)
"fWX" = (
/obj/machinery/disposal/bin,
/obj/effect/turf_decal/bot,
@@ -31180,6 +31107,25 @@
},
/turf/open/floor/iron/white,
/area/science/research)
+"gaE" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/newscaster{
+ pixel_x = 1;
+ pixel_y = 34
+ },
+/obj/item/storage/backpack/duffelbag/med/surgery{
+ pixel_y = 4
+ },
+/turf/open/floor/iron/white,
+/area/medical/surgery)
+"gaF" = (
+/obj/effect/turf_decal/siding/white,
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"gaH" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -31248,14 +31194,6 @@
/obj/structure/closet,
/turf/open/floor/carpet/grimy,
/area/security/detectives_office)
-"gcb" = (
-/obj/structure/closet/secure_closet/engineering_personal,
-/obj/effect/turf_decal/delivery,
-/obj/machinery/camera{
- c_tag = "Engineering - Fore"
- },
-/turf/open/floor/iron,
-/area/engine/engineering)
"gcg" = (
/obj/machinery/door/airlock/engineering{
name = "Starboard Quarter Solar Access";
@@ -31417,41 +31355,6 @@
},
/turf/open/floor/circuit/telecomms,
/area/maintenance/department/science/xenobiology)
-"geZ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/closed/wall,
-/area/engine/break_room)
-"gfm" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4;
- pixel_x = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/turf/open/floor/catwalk_floor/iron,
-/area/science/storage)
-"gfD" = (
-/obj/structure/sign/warning/fire{
- pixel_x = 32
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/binary/pump{
- name = "Fuel Pipe to Incinerator"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
-"gfL" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4;
- pixel_x = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor/iron,
-/area/science/storage)
"ggj" = (
/obj/effect/turf_decal/trimline/purple/filled/line,
/turf/open/floor/iron,
@@ -31479,21 +31382,16 @@
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/atmos)
-"gha" = (
-/obj/structure/sign/warning/vacuum/external{
- pixel_y = -32
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/advanced_airlock_controller{
- pixel_y = 24
+"ghF" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -31
},
-/obj/machinery/atmospherics/components/binary/dp_vent_pump{
- dir = 4
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/trinary/filter{
+ dir = 8
},
-/turf/open/floor/catwalk_floor,
-/area/engine/atmos)
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"ghP" = (
/obj/machinery/camera{
c_tag = "Research Division Hallway - Robotics";
@@ -31532,6 +31430,12 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/hallway/primary/starboard)
+"giH" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engineering)
"gjc" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -31597,6 +31501,14 @@
},
/turf/open/floor/iron,
/area/maintenance/aft)
+"gkC" = (
+/obj/structure/chair,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/dark_blue,
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"gkS" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/components/binary/pump/on{
@@ -31783,6 +31695,12 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
+"goW" = (
+/obj/effect/turf_decal/siding/purple{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"gpf" = (
/obj/structure/window/reinforced{
dir = 1
@@ -31838,22 +31756,6 @@
},
/turf/open/floor/iron,
/area/hydroponics)
-"gqg" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/turf/open/floor/iron,
-/area/maintenance/starboard/fore)
"gqB" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -31919,17 +31821,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"gsb" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/bottle/holywater{
- pixel_x = -2;
- pixel_y = 2
- },
-/obj/item/organ/heart,
-/obj/item/soulstone/anybody/chaplain,
-/obj/item/book/granter/spell/smoke/lesser,
-/turf/open/floor/cult,
-/area/chapel/office)
"gsj" = (
/obj/effect/turf_decal/stripes/corner{
dir = 1
@@ -31983,11 +31874,15 @@
},
/turf/open/floor/plating,
/area/security/brig)
-"gui" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
+"guq" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Supermatter Engine";
+ req_access_txt = "10"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
"gus" = (
/obj/effect/spawner/structure/window/reinforced/tinted,
/turf/open/floor/plating,
@@ -32037,6 +31932,26 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/maintenance/solars/port/aft)
+"gvf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/obj/machinery/door/airlock/atmos/glass{
+ name = "Distribution Loop";
+ req_access_txt = "24"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"gvg" = (
/obj/machinery/light/small,
/obj/machinery/airalarm{
@@ -32150,6 +32065,16 @@
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plating,
/area/maintenance/aft)
+"gyj" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/engine/break_room)
"gyr" = (
/obj/machinery/door/airlock/security{
aiControlDisabled = 1;
@@ -32193,15 +32118,6 @@
/obj/structure/grille,
/turf/open/floor/iron,
/area/maintenance/aft)
-"gAz" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/siding/white{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"gBh" = (
/obj/machinery/door/airlock/maintenance{
name = "Security Maintenance";
@@ -32262,20 +32178,6 @@
},
/turf/open/floor/iron,
/area/maintenance/aft)
-"gBX" = (
-/obj/item/radio/intercom{
- pixel_x = -28
- },
-/obj/structure/table,
-/obj/item/clothing/mask/balaclava,
-/obj/item/reagent_containers/spray/cleaner{
- pixel_x = 5
- },
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron/dark,
-/area/security/execution/education)
"gCm" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -32309,19 +32211,6 @@
},
/turf/open/floor/iron/white/corner,
/area/hallway/secondary/entry)
-"gCH" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/siding/purple/corner{
- dir = 4
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"gDg" = (
/obj/effect/turf_decal/stripes/red/line,
/obj/effect/turf_decal/stripes/red/line{
@@ -32345,12 +32234,6 @@
},
/turf/open/floor/iron/showroomfloor,
/area/security/main)
-"gDP" = (
-/obj/effect/turf_decal/siding/yellow{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"gEg" = (
/obj/structure/grille,
/turf/open/floor/plating,
@@ -32490,6 +32373,14 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai_upload)
+"gGD" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engineering)
"gGF" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -32531,25 +32422,6 @@
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
/turf/open/floor/iron,
/area/engine/gravity_generator)
-"gHP" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/holopad,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/siding/yellow/corner{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"gHS" = (
/obj/structure/chair/fancy/bench/pew/right,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -32569,6 +32441,21 @@
},
/turf/open/floor/iron/white,
/area/medical/surgery)
+"gIz" = (
+/turf/open/floor/glass/reinforced,
+/area/engine/break_room)
+"gIE" = (
+/obj/structure/table,
+/obj/item/radio/intercom{
+ pixel_x = -29
+ },
+/obj/item/storage/backpack/duffelbag/sec/surgery{
+ pixel_y = 5
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 4
+ },
+/area/science/robotics/lab)
"gIK" = (
/obj/effect/turf_decal/tile/blue/opposingcorners{
dir = 1
@@ -32581,24 +32468,10 @@
},
/turf/open/floor/iron/white,
/area/crew_quarters/heads/cmo)
-"gIX" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/atmos)
"gJs" = (
/obj/effect/spawner/structure/window/plasma/reinforced,
/turf/open/floor/plating,
/area/engine/atmos)
-"gJB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/atmos)
"gKc" = (
/obj/machinery/mineral/stacking_unit_console{
machinedir = 8;
@@ -32760,12 +32633,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/gateway)
-"gNK" = (
-/obj/machinery/door/morgue{
- name = "Study #2"
- },
-/turf/open/floor/cult,
-/area/library)
"gNW" = (
/obj/structure/window/reinforced{
dir = 1
@@ -32820,13 +32687,11 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"gOw" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor/iron,
-/area/maintenance/aft)
+"gOu" = (
+/obj/effect/turf_decal/caution,
+/obj/item/beacon,
+/turf/open/floor/engine,
+/area/science/explab)
"gOz" = (
/obj/effect/landmark/start/scientist,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -32834,31 +32699,6 @@
},
/turf/open/floor/iron/dark,
/area/science/explab)
-"gOE" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/siding/purple{
- dir = 4
- },
-/turf/open/floor/iron/white/side{
- dir = 8
- },
-/area/science/research)
-"gOZ" = (
-/obj/structure/extinguisher_cabinet{
- pixel_y = -31
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/trinary/filter{
- dir = 8
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"gPd" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -32874,23 +32714,6 @@
},
/turf/open/floor/wood,
/area/crew_quarters/bar)
-"gPw" = (
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/white/line{
- dir = 1
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "Atmos to Loop"
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
"gPy" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -33019,6 +32842,12 @@
/obj/effect/turf_decal/tile/blue,
/turf/open/floor/iron/dark,
/area/bridge)
+"gRe" = (
+/obj/effect/turf_decal/siding/yellow{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"gRf" = (
/obj/structure/cable/yellow{
icon_state = "2-4"
@@ -33186,6 +33015,14 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/maintenance/starboard/aft)
+"gUu" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4;
+ pixel_x = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron,
+/area/science/storage)
"gUB" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -33269,14 +33106,6 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
-"gVf" = (
-/obj/machinery/vending/modularpc,
-/obj/effect/turf_decal/tile/purple/half/contrasted{
- dir = 4
- },
-/obj/effect/turf_decal/siding/purple,
-/turf/open/floor/iron/white,
-/area/science/research)
"gVo" = (
/obj/machinery/door/airlock/maintenance{
req_one_access_txt = "12;22;25;37;38;46"
@@ -33335,14 +33164,6 @@
},
/turf/open/floor/carpet/royalblue,
/area/crew_quarters/heads/captain/private)
-"gVP" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
- dir = 4
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"gWe" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -33445,6 +33266,18 @@
"gXq" = (
/turf/open/space/basic,
/area/space/nearstation)
+"gXM" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 9
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"gXN" = (
/obj/structure/chair{
dir = 1
@@ -33464,28 +33297,6 @@
},
/turf/open/floor/iron,
/area/security/main)
-"gYg" = (
-/obj/structure/table/glass,
-/obj/item/lightreplacer{
- pixel_y = 7
- },
-/obj/item/storage/belt/utility,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
-"gYl" = (
-/obj/machinery/power/smes{
- capacity = 9e+006;
- charge = 10000
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"gYo" = (
/obj/machinery/light/small{
dir = 8
@@ -33549,29 +33360,6 @@
},
/turf/open/floor/iron/dark,
/area/security/execution/education)
-"hal" = (
-/mob/living/simple_animal/pet/dog/pug{
- desc = "It's Pugley IV, the research department's lovable pug clone. Hopefully nothing happens to this one - fourth time lucky!";
- name = "Pugley IV";
- real_name = "Pugley IV"
- },
-/obj/machinery/xenoartifact_inbox,
-/obj/effect/turf_decal/delivery,
-/obj/item/xenoartifact,
-/turf/open/floor/engine,
-/area/science/explab)
-"har" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 9
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/tcommsat/server)
"hbi" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -33940,6 +33728,14 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/storage/tech)
+"hhY" = (
+/obj/structure/closet/secure_closet/engineering_personal,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/camera{
+ c_tag = "Engineering - Fore"
+ },
+/turf/open/floor/iron,
+/area/engine/engineering)
"hih" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 27
@@ -34006,21 +33802,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/starboard)
-"hiY" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal/incinerator)
"hje" = (
/obj/structure/chair/office{
dir = 8
@@ -34103,41 +33884,6 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"hkj" = (
-/obj/machinery/turretid{
- control_area = "/area/ai_monitored/turret_protected/ai_upload";
- icon_state = "control_stun";
- name = "AI Upload turret control";
- pixel_y = 28
- },
-/obj/item/radio/intercom{
- broadcasting = 1;
- frequency = 1447;
- name = "Private AI Channel";
- pixel_x = -24;
- pixel_y = 24
- },
-/obj/effect/landmark/start/cyborg,
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- areastring = "/area/ai_monitored/turret_protected/ai_upload_foyer";
- name = "AI Upload Access APC";
- pixel_y = -24
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching the AI Upload.";
- dir = 4;
- name = "AI Upload Monitor";
- network = list("aiupload");
- pixel_x = -29
- },
-/turf/open/floor/iron/dark,
-/area/ai_monitored/turret_protected/ai_upload_foyer)
"hkq" = (
/turf/open/floor/iron,
/area/engine/storage_shared)
@@ -34210,18 +33956,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/qm)
-"hlF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/atmos)
"hlT" = (
/obj/structure/easel,
/obj/item/canvas/twentythree_twentythree,
@@ -34419,38 +34153,11 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/central)
-"hpB" = (
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/obj/effect/turf_decal/siding/dark_blue{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
"hpQ" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/siding/wood,
/turf/open/floor/wood,
/area/lawoffice)
-"hpW" = (
-/obj/machinery/door/airlock/command{
- name = "Corporate Showroom";
- req_access_txt = "19";
- security_level = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/siding/wood/end,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
- cycle_id = "showroom"
- },
-/turf/open/floor/wood,
-/area/bridge/showroom/corporate)
"hql" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
@@ -34533,6 +34240,16 @@
},
/turf/open/floor/wood,
/area/bridge/showroom/corporate)
+"hrN" = (
+/obj/structure/table,
+/obj/item/pen,
+/obj/item/storage/firstaid/regular,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/dark_blue,
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"hsd" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 8
@@ -34640,6 +34357,22 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/hallway/primary/port)
+"huY" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/dark/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal/incinerator)
"hvh" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -34684,18 +34417,6 @@
/obj/effect/turf_decal/tile/red/anticorner/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint/science/research)
-"hwa" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/effect/turf_decal/tile/blue/half/contrasted{
- dir = 1
- },
-/obj/effect/turf_decal/siding/dark_blue/corner{
- dir = 4
- },
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
"hwd" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -34923,14 +34644,17 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"hzZ" = (
-/obj/structure/cable,
-/obj/machinery/power/solar{
- id = "forestarboard";
- name = "Fore-Starboard Solar Array"
+"hAo" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/poddoor/preopen{
+ id = "Engineering";
+ name = "Engineering Security Doors"
},
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/starboard/fore)
+/obj/structure/sign/warning/securearea{
+ pixel_y = 32
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"hAp" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/power/apc{
@@ -34993,6 +34717,11 @@
},
/turf/open/floor/iron,
/area/quartermaster/warehouse)
+"hBr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"hBw" = (
/obj/machinery/power/apc{
areastring = "/area/maintenance/solars/port/fore";
@@ -35029,6 +34758,22 @@
},
/turf/open/floor/iron/dark,
/area/medical/morgue)
+"hCu" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/science/research)
"hCB" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -35071,6 +34816,15 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/secondary)
+"hDh" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "testlab";
+ name = "test chamber blast door"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/stripes/closeup,
+/turf/open/floor/engine,
+/area/science/explab)
"hDA" = (
/obj/structure/closet{
name = "Evidence Closet 5"
@@ -35591,6 +35345,10 @@
},
/turf/open/floor/carpet/blue,
/area/crew_quarters/heads/cmo)
+"hLe" = (
+/obj/effect/turf_decal/siding/dark_blue/corner,
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"hLw" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -35681,6 +35439,26 @@
},
/turf/open/floor/plating,
/area/science/xenobiology)
+"hME" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sink/kitchen{
+ desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
+ name = "old sink";
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
+"hMK" = (
+/obj/structure/table/reinforced,
+/obj/item/book/manual/wiki/surgery,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/medical/surgery)
"hNf" = (
/obj/machinery/door/airlock{
id_tag = "sec Toilet 2";
@@ -35697,25 +35475,6 @@
},
/turf/open/floor/wood,
/area/library)
-"hNj" = (
-/obj/structure/table,
-/obj/item/stack/cable_coil,
-/obj/item/assembly/igniter{
- pixel_x = -4;
- pixel_y = -4
- },
-/obj/item/screwdriver{
- pixel_y = 16
- },
-/obj/item/gps{
- gpstag = "RD0"
- },
-/obj/effect/turf_decal/tile/purple/half/contrasted{
- dir = 4
- },
-/obj/effect/turf_decal/siding/purple,
-/turf/open/floor/iron/white,
-/area/science/research)
"hNl" = (
/obj/structure/closet/wardrobe/science_white,
/obj/structure/window/reinforced{
@@ -35761,12 +35520,6 @@
},
/turf/open/floor/iron/stairs,
/area/maintenance/department/science/xenobiology)
-"hPk" = (
-/obj/effect/turf_decal/siding/purple{
- dir = 8
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"hPp" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 1
@@ -35805,12 +35558,6 @@
},
/turf/open/floor/carpet/orange,
/area/crew_quarters/dorms)
-"hPX" = (
-/obj/effect/turf_decal/siding/white{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"hQd" = (
/obj/machinery/light{
dir = 1
@@ -35829,14 +35576,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
-"hQr" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/atmos)
"hQy" = (
/obj/machinery/door/airlock/security{
name = "Evidence Storage";
@@ -36016,14 +35755,6 @@
/obj/effect/landmark/blobstart,
/turf/open/floor/iron,
/area/maintenance/port/fore)
-"hTP" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/tcommsat/server)
"hTY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
@@ -36140,6 +35871,15 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron/white,
/area/medical/medbay/central)
+"hVW" = (
+/obj/structure/table/glass,
+/obj/item/storage/box/donkpockets,
+/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"hVX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -36220,6 +35960,12 @@
},
/turf/open/floor/iron/dark,
/area/aisat)
+"hYA" = (
+/obj/effect/turf_decal/siding/yellow/corner{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"hYN" = (
/obj/item/radio/intercom{
pixel_y = -28
@@ -36319,6 +36065,12 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/crew_quarters/locker)
+"ibD" = (
+/obj/machinery/door/morgue{
+ name = "Study #2"
+ },
+/turf/open/floor/cult,
+/area/library)
"ibE" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -36535,15 +36287,6 @@
},
/turf/open/floor/iron/showroomfloor,
/area/crew_quarters/cryopods)
-"ieW" = (
-/obj/structure/table/glass,
-/obj/item/storage/box/donkpockets,
-/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko{
- pixel_x = -6;
- pixel_y = 6
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"ifc" = (
/obj/structure/sign/plaques/deempisi{
pixel_y = 28
@@ -36587,12 +36330,6 @@
},
/turf/open/floor/iron,
/area/engine/engineering)
-"ifO" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/reagent_dispensers/fueltank,
-/obj/item/storage/toolbox/emergency,
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"ifW" = (
/obj/structure/disposalpipe/segment{
dir = 10
@@ -36714,11 +36451,6 @@
},
/turf/open/floor/iron,
/area/maintenance/port/fore)
-"iit" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
"iiJ" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -36790,16 +36522,6 @@
},
/turf/open/floor/iron/white,
/area/medical/surgery)
-"ija" = (
-/obj/machinery/airalarm{
- dir = 8;
- pixel_x = 24
- },
-/obj/effect/turf_decal/trimline/purple/filled/line{
- dir = 4
- },
-/turf/open/floor/iron/white,
-/area/science/explab)
"ijn" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -37133,6 +36855,13 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/dark,
/area/aisat)
+"iqD" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 10
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
"iqE" = (
/obj/effect/decal/cleanable/blood/old,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -37294,12 +37023,6 @@
},
/turf/open/floor/iron/white,
/area/medical/genetics)
-"ith" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/iron/dark,
-/area/science/explab)
"its" = (
/obj/machinery/power/solar_control{
dir = 1;
@@ -37322,10 +37045,6 @@
},
/turf/open/floor/iron,
/area/maintenance/department/science)
-"iug" = (
-/obj/effect/turf_decal/siding/white,
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"ium" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/banner/medical/mundane,
@@ -37370,15 +37089,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
-"iuM" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27
- },
-/obj/effect/turf_decal/trimline/purple/filled/line{
- dir = 4
- },
-/turf/open/floor/iron/white,
-/area/science/explab)
"ivo" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
@@ -37399,18 +37109,6 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/supply)
-"iwc" = (
-/obj/structure/table,
-/obj/item/radio/intercom{
- pixel_x = -29
- },
-/obj/item/storage/backpack/duffelbag/sec/surgery{
- pixel_y = 5
- },
-/turf/open/floor/iron/white/corner{
- dir = 4
- },
-/area/science/robotics/lab)
"iwf" = (
/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -37428,6 +37126,21 @@
},
/turf/open/floor/plating,
/area/science/xenobiology)
+"iwT" = (
+/obj/structure/sign/warning/vacuum/external{
+ pixel_y = -32
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/advanced_airlock_controller{
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/components/binary/dp_vent_pump{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/engine/atmos)
"ixc" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -37475,6 +37188,14 @@
},
/turf/open/floor/plating,
/area/maintenance/port)
+"iyt" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/engine/storage_shared)
"iyD" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -37662,6 +37383,11 @@
/obj/effect/turf_decal/siding/wood,
/turf/open/floor/wood/big,
/area/crew_quarters/bar)
+"iCQ" = (
+/obj/effect/landmark/xeno_spawn,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"iCT" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -37764,18 +37490,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/engine/break_room)
-"iEj" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/siding/white{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"iEo" = (
/obj/machinery/door/airlock/medical/glass{
name = "Medbay Storage";
@@ -37789,18 +37503,6 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/storage)
-"iEw" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/siding/white/corner{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"iEP" = (
/obj/structure/urinal{
pixel_y = 28
@@ -37842,12 +37544,6 @@
},
/turf/open/floor/plating,
/area/science/shuttledock)
-"iFE" = (
-/obj/effect/turf_decal/tile/yellow/half/contrasted{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"iFW" = (
/obj/structure/closet/bombcloset,
/obj/machinery/power/apc{
@@ -37870,18 +37566,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/security/nuke_storage)
-"iGg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/atmos)
"iGB" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -37945,12 +37629,6 @@
},
/turf/open/floor/iron/dark,
/area/aisat)
-"iHl" = (
-/obj/machinery/vending/tool,
-/obj/effect/turf_decal/delivery,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/iron,
-/area/engine/storage_shared)
"iHB" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -38074,29 +37752,6 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/aft)
-"iJy" = (
-/obj/machinery/door/airlock/atmos/glass{
- name = "Atmospherics Monitoring";
- req_access_txt = "24"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/atmos)
"iJC" = (
/obj/machinery/power/apc/highcap/five_k{
areastring = "/area/bridge/showroom/corporate";
@@ -38200,6 +37855,9 @@
},
/turf/open/floor/holofloor/plating,
/area/holodeck/prison)
+"iKI" = (
+/turf/closed/wall,
+/area/engine/break_room)
"iKR" = (
/obj/structure/cable/yellow{
icon_state = "2-4"
@@ -38320,15 +37978,6 @@
/obj/effect/mapping_helpers/make_non_slip,
/turf/open/floor/iron,
/area/engine/atmos)
-"iNf" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/radio/intercom{
- pixel_y = 21
- },
-/turf/open/floor/engine,
-/area/science/explab)
"iNs" = (
/obj/machinery/door/airlock/security{
name = "Court Cell";
@@ -38341,6 +37990,15 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron/dark,
/area/security/courtroom)
+"iNO" = (
+/obj/machinery/advanced_airlock_controller{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2,
+/turf/open/floor/catwalk_floor,
+/area/hallway/secondary/exit/departure_lounge)
"iOf" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -38350,10 +38008,6 @@
/obj/machinery/atmospherics/pipe/simple/general/hidden,
/turf/open/floor/carpet/grimy,
/area/tcommsat/computer)
-"iOD" = (
-/obj/effect/turf_decal/siding/white/corner,
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"iOF" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 4
@@ -38650,12 +38304,6 @@
},
/turf/open/floor/plating,
/area/maintenance/aft/secondary)
-"iTw" = (
-/obj/structure/window/reinforced,
-/obj/machinery/modular_fabricator/autolathe,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/engine/storage_shared)
"iTz" = (
/obj/structure/disposalpipe/segment{
dir = 1
@@ -38706,16 +38354,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/locker)
-"iVe" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4;
- pixel_x = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/turf/open/floor/catwalk_floor/iron,
-/area/science/storage)
"iVn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -38797,6 +38435,13 @@
},
/turf/open/floor/engine,
/area/science/xenobiology)
+"iWX" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
"iXf" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -27
@@ -38983,16 +38628,19 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/carpet/grimy,
/area/hallway/primary/port)
-"jaY" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
+"jay" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
+/obj/structure/disposalpipe/trunk{
+ dir = 8
},
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/corner,
+/area/engine/storage_shared)
"jbm" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
@@ -39360,33 +39008,6 @@
},
/turf/open/floor/plating,
/area/security/prison)
-"jji" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/door/airlock/security/glass{
- id_tag = "innerbrig";
- name = "Brig";
- req_access_txt = "63"
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 8
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
- cycle_id = "brig-entrance"
- },
-/turf/open/floor/iron,
-/area/security/brig)
"jjv" = (
/obj/structure/closet/firecloset,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -39511,18 +39132,14 @@
/obj/effect/turf_decal/tile/red/half/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint/science/research)
-"jls" = (
-/obj/machinery/holopad,
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
+"jlw" = (
+/obj/effect/turf_decal/siding/yellow,
+/obj/machinery/light{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/heat_exchanging/manifold,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/tcommsat/server)
+/obj/machinery/digital_clock/directional/north,
+/turf/open/floor/iron,
+/area/engine/break_room)
"jmb" = (
/obj/structure/table/reinforced,
/obj/item/book/manual/wiki/security_space_law{
@@ -39555,23 +39172,6 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/supply)
-"jmI" = (
-/obj/machinery/door/window/eastleft{
- dir = 2
- },
-/turf/open/floor/engine,
-/area/science/explab)
-"jmL" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp/green{
- pixel_x = 1;
- pixel_y = 5
- },
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = 30
- },
-/turf/open/floor/cult,
-/area/library)
"jmN" = (
/obj/effect/decal/cleanable/blood/old,
/obj/effect/decal/cleanable/dirt,
@@ -39677,6 +39277,19 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/engine/engineering)
+"jpI" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"jpJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -40054,13 +39667,6 @@
},
/turf/open/floor/iron,
/area/maintenance/port)
-"jyt" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 6
- },
-/turf/open/space,
-/area/space/nearstation)
"jyu" = (
/obj/effect/turf_decal/tile/blue{
dir = 4
@@ -40345,18 +39951,6 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
-"jCt" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal/incinerator)
"jCx" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -40366,6 +39960,14 @@
},
/turf/open/floor/iron,
/area/maintenance/central)
+"jCR" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"jDq" = (
/obj/effect/turf_decal/tile/blue,
/turf/open/floor/iron/white,
@@ -40437,16 +40039,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/command)
-"jEs" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/effect/turf_decal/siding/dark_blue/corner{
- dir = 8
- },
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
"jFo" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -40493,6 +40085,19 @@
},
/turf/open/floor/iron,
/area/maintenance/department/science)
+"jGR" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"jHp" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -40558,17 +40163,6 @@
},
/turf/open/floor/wood/big,
/area/crew_quarters/bar)
-"jIH" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/trimline/purple/filled/line{
- dir = 8
- },
-/turf/open/floor/iron/white,
-/area/science/explab)
"jJU" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -40636,18 +40230,6 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/patients_rooms)
-"jKR" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/purple/filled/line{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"jLo" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
@@ -40685,12 +40267,6 @@
},
/turf/open/floor/iron,
/area/security/prison)
-"jLA" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/science/explab)
"jLJ" = (
/obj/effect/turf_decal/bot_white,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -40726,22 +40302,6 @@
},
/turf/open/floor/iron/white,
/area/medical/chemistry)
-"jMc" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal/incinerator)
"jMi" = (
/obj/structure/window/reinforced{
dir = 4
@@ -40782,6 +40342,25 @@
},
/turf/open/floor/iron,
/area/security/brig)
+"jMB" = (
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "innerbrig";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "brig-entrance"
+ },
+/turf/open/floor/iron,
+/area/security/brig)
"jMN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
@@ -40865,20 +40444,6 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
-"jOb" = (
-/obj/structure/table,
-/obj/item/storage/box/bodybags{
- pixel_x = 3;
- pixel_y = 2
- },
-/obj/effect/turf_decal/tile/blue/half/contrasted{
- dir = 4
- },
-/obj/effect/turf_decal/siding/dark_blue{
- dir = 3
- },
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
"jOm" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -40950,15 +40515,12 @@
/obj/effect/turf_decal/tile/purple,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"jPp" = (
-/obj/machinery/advanced_airlock_controller{
- dir = 8;
- pixel_x = 24
+"jPQ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2,
-/turf/open/floor/catwalk_floor,
-/area/hallway/secondary/exit/departure_lounge)
+/turf/open/floor/engine,
+/area/engine/engineering)
"jPS" = (
/obj/item/radio/intercom{
pixel_y = -28
@@ -41214,6 +40776,17 @@
},
/turf/open/floor/iron,
/area/gateway)
+"jUv" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/iron,
+/area/engine/break_room)
"jUG" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/tile/black/opposingcorners{
@@ -41249,30 +40822,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/prison,
/area/security/prison)
-"jVy" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research/glass{
- name = "Research Testing Range";
- req_one_access_txt = "49;47"
- },
-/obj/effect/turf_decal/tile/purple/half/contrasted{
- dir = 1
- },
-/obj/effect/turf_decal/tile/white/half/contrasted,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
- cycle_id = "sci-maint-passthrough"
- },
-/turf/open/floor/iron,
-/area/maintenance/department/science)
"jVZ" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -41319,27 +40868,6 @@
},
/turf/open/floor/iron,
/area/science/mixing)
-"jXp" = (
-/obj/machinery/airalarm/directional/north,
-/obj/structure/rack,
-/obj/item/rollerbed{
- pixel_x = -2
- },
-/obj/item/rollerbed{
- pixel_x = 1;
- pixel_y = 3
- },
-/obj/item/rollerbed{
- pixel_x = 5;
- pixel_y = 8
- },
-/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
- dir = 1
- },
-/obj/machinery/digital_clock/directional/west,
-/obj/effect/turf_decal/siding/dark_blue/corner,
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
"jXr" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -41368,6 +40896,12 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
+"jXT" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/closed/wall,
+/area/engine/break_room)
"jXZ" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -41391,15 +40925,6 @@
},
/turf/open/floor/iron/dark,
/area/crew_quarters/heads/hor)
-"jYR" = (
-/obj/machinery/door/airlock/engineering{
- name = "Supermatter Engine";
- req_access_txt = "10"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/turf/open/floor/plating,
-/area/maintenance/starboard)
"jZd" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -41426,12 +40951,6 @@
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/turf/open/floor/iron/white,
/area/science/research)
-"jZq" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/tcommsat/server)
"jZO" = (
/obj/item/radio/intercom{
pixel_y = 21
@@ -41640,27 +41159,6 @@
/obj/structure/closet/firecloset,
/turf/open/floor/iron/dark,
/area/hallway/primary/central)
-"kcw" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/purple/filled/warning{
- dir = 4
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"kcH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 9
@@ -41760,22 +41258,12 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"keh" = (
-/obj/machinery/holopad{
- pixel_x = 16;
- pixel_y = -16
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/effect/turf_decal/siding/dark_blue{
- dir = 8
+"kea" = (
+/obj/machinery/door/morgue{
+ name = "Study #1"
},
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
+/turf/open/floor/cult,
+/area/library)
"keB" = (
/obj/structure/table,
/obj/item/paper_bin{
@@ -41839,22 +41327,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/maintenance/department/science)
-"kfd" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/solar{
- id = "aftport";
- name = "Aft-Port Solar Array"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/port/aft)
-"kfz" = (
-/obj/machinery/meter,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"kfY" = (
/obj/structure/table/wood,
/obj/structure/window/reinforced,
@@ -42017,6 +41489,21 @@
},
/turf/open/floor/iron/white,
/area/science/research)
+"kja" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/dark/visible{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal/incinerator)
"kjq" = (
/obj/structure/window/reinforced{
dir = 4
@@ -42168,10 +41655,6 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"klx" = (
-/obj/effect/turf_decal/trimline/purple/filled/corner,
-/turf/open/floor/iron/white,
-/area/science/explab)
"klT" = (
/obj/effect/turf_decal/tile/neutral,
/obj/item/kirbyplants/random,
@@ -42207,6 +41690,19 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron/checker,
/area/crew_quarters/kitchen)
+"kml" = (
+/obj/structure/table,
+/obj/item/stack/medical/gauze,
+/obj/item/stack/medical/ointment,
+/obj/item/stack/medical/bruise_pack,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/dark_blue{
+ dir = 3
+ },
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"kmr" = (
/obj/machinery/computer/scan_consolenew{
dir = 4
@@ -42237,12 +41733,9 @@
},
/area/science/research)
"kmW" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
+/obj/effect/turf_decal/siding/yellow,
+/turf/open/floor/iron,
+/area/engine/break_room)
"kmY" = (
/obj/structure/table,
/obj/item/assembly/igniter{
@@ -42322,6 +41815,12 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
+"koM" = (
+/obj/effect/turf_decal/siding/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"koR" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -42430,6 +41929,22 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/engineering)
+"kqX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/maintenance/starboard/fore)
"krk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
@@ -42453,6 +41968,11 @@
dir = 8
},
/area/science/shuttledock)
+"krO" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"kse" = (
/obj/structure/chair/office/light{
dir = 1
@@ -42725,21 +42245,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"kxj" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/machinery/door/airlock/engineering/glass{
- name = "Supermatter Engine";
- req_access_txt = "10"
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engineering)
"kxk" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -42861,16 +42366,19 @@
/obj/item/kirbyplants/random,
/turf/open/floor/iron,
/area/hallway/secondary/service)
+"kyt" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/siding/purple/corner,
+/turf/open/floor/iron/white,
+/area/science/research)
"kyV" = (
/obj/structure/closet/emcloset,
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/plating,
/area/maintenance/aft)
-"kzk" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/closet/emcloset,
-/turf/open/floor/iron/dark,
-/area/science/explab)
"kzn" = (
/obj/machinery/door/airlock/external{
name = "Departure Lounge Airlock"
@@ -42939,24 +42447,6 @@
},
/turf/open/floor/wood,
/area/library)
-"kAi" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 10
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/tcommsat/server)
"kAl" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -43071,18 +42561,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/security/brig)
-"kDj" = (
-/obj/effect/turf_decal/siding/white{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
-"kDy" = (
-/obj/effect/turf_decal/siding/dark_blue{
- dir = 4
- },
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
"kDG" = (
/obj/machinery/door/airlock/engineering{
name = "Tech Storage";
@@ -43120,6 +42598,14 @@
},
/turf/open/floor/iron,
/area/science/robotics/mechbay)
+"kDZ" = (
+/obj/machinery/vending/modularpc,
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple,
+/turf/open/floor/iron/white,
+/area/science/research)
"kEa" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -43202,13 +42688,6 @@
},
/turf/open/floor/iron/freezer,
/area/security/prison)
-"kFv" = (
-/obj/item/cigbutt,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard)
"kFB" = (
/obj/effect/spawner/structure/window/plasma/reinforced,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -43278,6 +42757,12 @@
},
/turf/open/floor/carpet/grimy,
/area/tcommsat/computer)
+"kGm" = (
+/obj/machinery/meter,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"kGn" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/westleft{
@@ -43475,11 +42960,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/maintenance/starboard)
-"kKf" = (
-/obj/effect/landmark/xeno_spawn,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"kKh" = (
/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{
dir = 1
@@ -43523,6 +43003,19 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/exit/departure_lounge)
+"kKq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal/incinerator)
"kKG" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
@@ -43822,6 +43315,13 @@
/obj/effect/loot_jobscale/armoury/disabler,
/turf/open/floor/iron/dark,
/area/ai_monitored/security/armory)
+"kPx" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/external{
+ name = "Escape Pod Four"
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"kPZ" = (
/obj/structure/closet/emcloset,
/obj/machinery/status_display/supply{
@@ -43882,6 +43382,17 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/security/brig)
+"kRA" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = 30
+ },
+/turf/open/floor/cult,
+/area/library)
"kRQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
@@ -43905,6 +43416,14 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
+"kSn" = (
+/obj/machinery/lapvend,
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple,
+/turf/open/floor/iron/white,
+/area/science/research)
"kTa" = (
/obj/structure/bookcase,
/obj/effect/turf_decal/siding/wood{
@@ -43936,6 +43455,18 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/hallway/primary/central)
+"kTH" = (
+/obj/structure/table,
+/obj/item/storage/firstaid/regular,
+/obj/item/reagent_containers/syringe,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/security/brig)
"kTP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -43945,26 +43476,6 @@
},
/turf/open/floor/iron,
/area/science/shuttledock)
-"kTZ" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/tcommsat/server)
-"kUc" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/landmark/start/scientist,
-/turf/open/floor/iron/white,
-/area/science/explab)
"kUe" = (
/obj/structure/disposalpipe/segment,
/obj/effect/landmark/start/cargo_technician,
@@ -44120,6 +43631,15 @@
},
/turf/open/floor/iron,
/area/hydroponics)
+"kWr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/siding/yellow/corner,
+/turf/open/floor/iron,
+/area/engine/break_room)
"kWA" = (
/obj/machinery/door/window{
name = "MiniSat Walkway Access"
@@ -44131,6 +43651,14 @@
},
/turf/open/floor/iron/dark,
/area/aisat)
+"kWG" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/engine/engineering)
"kWV" = (
/obj/machinery/chem_master{
dir = 4
@@ -44174,16 +43702,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"kYQ" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin{
- pixel_x = -2;
- pixel_y = 6
- },
-/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
-/obj/item/pen,
-/turf/open/floor/iron,
-/area/medical/genetics)
"kYZ" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -44214,16 +43732,18 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/central)
-"kZp" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/siding/purple{
+"kZz" = (
+/obj/machinery/light/small{
dir = 4
},
-/turf/open/floor/iron/white,
-/area/science/research)
+/obj/machinery/advanced_airlock_controller{
+ dir = 4;
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2,
+/turf/open/floor/catwalk_floor,
+/area/hallway/secondary/exit/departure_lounge)
"kZQ" = (
/obj/structure/table/reinforced,
/obj/item/food/grown/carrot{
@@ -44331,12 +43851,6 @@
},
/turf/open/floor/iron,
/area/medical/patients_rooms)
-"lbV" = (
-/obj/machinery/door/morgue{
- name = "Chapel Garden"
- },
-/turf/open/floor/cult,
-/area/chapel/main)
"lcl" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 8
@@ -44406,12 +43920,29 @@
/obj/effect/turf_decal/tile/red/anticorner/contrasted,
/turf/open/floor/iron,
/area/hallway/secondary/exit/departure_lounge)
+"lep" = (
+/turf/open/floor/cult,
+/area/library)
"leM" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 4
},
/turf/open/floor/iron/checker,
/area/crew_quarters/kitchen)
+"leO" = (
+/obj/structure/table,
+/obj/item/storage/box/bodybags{
+ pixel_x = 3;
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/dark_blue{
+ dir = 3
+ },
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"leU" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -44491,6 +44022,28 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/storage/tools)
+"lfO" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/advanced_airlock_controller{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2,
+/turf/open/floor/catwalk_floor,
+/area/hallway/secondary/entry)
+"lfZ" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/machinery/button/door{
+ id = "robotics_shutters";
+ name = "robotics shutters control";
+ pixel_x = -26;
+ pixel_y = 26;
+ req_access_txt = "29"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/science/robotics/lab)
"lge" = (
/obj/effect/spawner/randomarcade,
/obj/machinery/airalarm{
@@ -44543,6 +44096,15 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
/turf/open/floor/iron,
/area/engine/gravity_generator)
+"lhF" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engineering)
"lhL" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -44728,6 +44290,12 @@
},
/turf/open/floor/iron,
/area/medical/break_room)
+"lmu" = (
+/obj/effect/turf_decal/siding/purple/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"lmF" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -44814,21 +44382,6 @@
/obj/structure/lattice/catwalk/over,
/turf/open/floor/plating,
/area/maintenance/department/science/xenobiology)
-"lps" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable/cyan{
- icon_state = "4-8"
- },
-/obj/structure/transit_tube/crossing/horizontal,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/turf/open/space,
-/area/space/nearstation)
"lpP" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 8
@@ -44918,6 +44471,22 @@
},
/turf/open/floor/carpet/grimy,
/area/security/detectives_office)
+"lsk" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/closet/radiation,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/science/research)
"lsn" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -45067,19 +44636,6 @@
/obj/effect/turf_decal/stripes/corner,
/turf/open/floor/plating,
/area/maintenance/aft)
-"luh" = (
-/obj/item/kirbyplants/random,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/effect/turf_decal/trimline/purple/filled/line{
- dir = 5
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"luO" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -45115,6 +44671,36 @@
},
/turf/open/floor/wood,
/area/crew_quarters/bar)
+"lvG" = (
+/obj/machinery/power/apc{
+ areastring = "/area/science/robotics/lab";
+ dir = 1;
+ name = "Robotics Lab APC";
+ pixel_y = 24
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/structure/table,
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/effect/turf_decal/delivery,
+/obj/item/pen{
+ pixel_x = -2;
+ pixel_y = 6
+ },
+/turf/open/floor/iron,
+/area/science/robotics/lab)
"lvM" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -45138,16 +44724,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"lwb" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/item/extinguisher,
-/obj/machinery/light/small,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/radio/intercom{
- pixel_y = -29
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"lwd" = (
/obj/structure/sign/departments/minsky/research/robotics{
pixel_x = 32
@@ -45163,6 +44739,16 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
+"lwg" = (
+/obj/machinery/door/window/southright{
+ dir = 4;
+ name = "Engineering Deliveries";
+ req_access_txt = "10"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/structure/window/reinforced,
+/turf/open/floor/iron,
+/area/engine/engineering)
"lwq" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -45228,20 +44814,6 @@
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating,
/area/maintenance/aft)
-"lxO" = (
-/obj/structure/table/reinforced,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/machinery/light_switch{
- pixel_y = -22
- },
-/obj/item/stack/sheet/mineral/copper{
- amount = 5
- },
-/turf/open/floor/iron/dark/corner,
-/area/engine/storage_shared)
"lxS" = (
/obj/structure/rack,
/obj/machinery/firealarm{
@@ -45266,6 +44838,17 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/fitness/recreation)
+"lyj" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/food/drinks/bottle/holywater{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/organ/heart,
+/obj/item/soulstone/anybody/chaplain,
+/obj/item/book/granter/spell/smoke/lesser,
+/turf/open/floor/cult,
+/area/chapel/office)
"lyF" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -45285,6 +44868,13 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/central)
+"lyX" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 10
+ },
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
"lzc" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
/turf/open/floor/iron/dark,
@@ -45318,17 +44908,6 @@
},
/turf/open/floor/iron/dark/telecomms,
/area/tcommsat/server)
-"lzs" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/yellow/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"lzt" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -45366,6 +44945,16 @@
},
/turf/open/floor/wood,
/area/library)
+"lAV" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4;
+ pixel_x = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/science/storage)
"lBd" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 4
@@ -45421,6 +45010,14 @@
/obj/effect/turf_decal/tile/brown/half/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/port)
+"lCi" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/tcommsat/server)
"lCt" = (
/obj/effect/turf_decal/tile/blue{
dir = 8
@@ -45499,42 +45096,9 @@
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/aft)
-"lDw" = (
-/obj/machinery/camera{
- c_tag = "Engineering Supermatter Fore";
- dir = 4;
- network = list("ss13","engine")
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -26
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engineering)
-"lDx" = (
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{
- dir = 4
- },
-/obj/machinery/advanced_airlock_controller{
- dir = 1;
- pixel_y = -24
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/science/shuttledock)
+"lDD" = (
+/turf/open/floor/glass/reinforced,
+/area/science/research)
"lDF" = (
/obj/effect/turf_decal/siding/wood/corner{
dir = 1
@@ -45594,17 +45158,6 @@
},
/turf/open/floor/carpet/red,
/area/crew_quarters/heads/hos)
-"lER" = (
-/obj/machinery/shower{
- dir = 8;
- name = "emergency shower"
- },
-/obj/effect/landmark/blobstart,
-/obj/effect/turf_decal/trimline/purple/filled/line{
- dir = 4
- },
-/turf/open/floor/noslip/white,
-/area/science/explab)
"lFc" = (
/obj/structure/table,
/obj/item/electropack,
@@ -45721,20 +45274,23 @@
},
/turf/open/floor/iron,
/area/hallway/primary/starboard)
-"lIm" = (
+"lIc" = (
+/obj/machinery/door/airlock/command{
+ name = "Corporate Showroom";
+ req_access_txt = "19";
+ security_level = 1
+ },
+/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/obj/machinery/advanced_airlock_controller{
- dir = 8;
- pixel_x = 24
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{
- dir = 1
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/siding/wood/end,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "showroom"
},
-/turf/open/floor/catwalk_floor,
-/area/hallway/secondary/entry)
+/turf/open/floor/wood,
+/area/bridge/showroom/corporate)
"lIC" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -45867,6 +45423,21 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/hallway/secondary/command)
+"lKx" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"lKE" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -45910,6 +45481,20 @@
},
/turf/open/floor/iron,
/area/science/robotics/mechbay)
+"lLf" = (
+/obj/machinery/door/airlock/highsecurity{
+ name = "AI Upload";
+ req_access_txt = "16"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/ai_monitored/turret_protected/ai_upload)
"lLC" = (
/obj/structure/rack,
/obj/item/clothing/under/color/blue,
@@ -45988,6 +45573,24 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
+"lMw" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/effect/turf_decal/siding/purple/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"lMB" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -46037,6 +45640,24 @@
/obj/machinery/digital_clock/directional/east,
/turf/open/floor/iron,
/area/hallway/primary/port)
+"lMX" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/science/explab)
"lNb" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -46081,6 +45702,14 @@
/obj/structure/easel,
/turf/open/floor/iron,
/area/maintenance/starboard/fore)
+"lNH" = (
+/obj/machinery/button/door{
+ id = "testlab";
+ name = "Test Chamber Blast Doors";
+ pixel_y = 24
+ },
+/turf/open/floor/iron/white,
+/area/science/explab)
"lNI" = (
/obj/structure/table,
/obj/item/clothing/head/utility/hardhat/cakehat,
@@ -46194,10 +45823,6 @@
},
/turf/open/floor/carpet/grimy,
/area/security/detectives_office)
-"lPW" = (
-/obj/structure/table/glass,
-/turf/open/floor/iron,
-/area/engine/break_room)
"lQb" = (
/obj/structure/sign/warning/vacuum/external{
pixel_y = -32
@@ -46277,16 +45902,6 @@
},
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"lRo" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/turf/open/floor/catwalk_floor/iron,
-/area/crew_quarters/locker)
"lRI" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 4
@@ -46370,6 +45985,12 @@
},
/turf/open/floor/iron/dark,
/area/maintenance/department/science/xenobiology)
+"lSI" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"lTw" = (
/obj/structure/window/reinforced{
dir = 8;
@@ -46475,21 +46096,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/crew_quarters/toilet/auxiliary)
-"lVq" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/iron/dark,
-/area/science/explab)
"lVB" = (
/obj/effect/turf_decal/siding/wood{
dir = 4
@@ -46625,10 +46231,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/hallway/secondary/command)
-"lYn" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating,
-/area/engine/break_room)
"lYy" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -46657,6 +46259,22 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/engine/engineering)
+"lZw" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/dark/visible,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/light_switch{
+ pixel_x = -24;
+ pixel_y = 8
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal/incinerator)
"lZO" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -46799,6 +46417,21 @@
/obj/machinery/light,
/turf/open/floor/carpet/grimy,
/area/hallway/primary/central)
+"mdQ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/siding/purple{
+ dir = 4
+ },
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/science/research)
"mdY" = (
/obj/item/radio/intercom{
pixel_x = 1;
@@ -46875,6 +46508,14 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
+"mfH" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Cooling to Unfiltered"
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"mfS" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 8
@@ -46890,15 +46531,6 @@
"mgj" = (
/turf/open/floor/iron/dark,
/area/maintenance/department/science/xenobiology)
-"mgm" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/delivery,
-/obj/structure/sign/warning/nosmoking{
- pixel_x = -28
- },
-/obj/structure/closet/radiation,
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"mgI" = (
/obj/machinery/door/airlock/public/glass{
name = "Command Hallway"
@@ -46918,6 +46550,22 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/command)
+"mgK" = (
+/obj/machinery/holopad{
+ pixel_x = 16;
+ pixel_y = -16
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/dark_blue{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"mgN" = (
/obj/machinery/computer/mech_bay_power_console{
dir = 1
@@ -47107,14 +46755,13 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/bar)
-"mmN" = (
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
+"mmr" = (
+/obj/structure/chair,
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/effect/turf_decal/siding/white,
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
+/turf/open/floor/plating,
+/area/engine/break_room)
"mnd" = (
/obj/effect/turf_decal/tile/green/fourcorners/contrasted,
/obj/structure/disposalpipe/segment{
@@ -47613,6 +47260,15 @@
},
/turf/open/floor/iron,
/area/security/brig)
+"mvP" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/status_display/ai{
+ pixel_x = -32
+ },
+/turf/open/floor/engine,
+/area/science/explab)
"mvU" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/iron,
@@ -47625,12 +47281,6 @@
/obj/machinery/light/small,
/turf/open/floor/engine,
/area/engine/supermatter)
-"mwn" = (
-/obj/effect/turf_decal/trimline/purple/filled/line{
- dir = 8
- },
-/turf/open/floor/iron/white,
-/area/science/explab)
"mww" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -47756,16 +47406,35 @@
/obj/item/kirbyplants/random,
/turf/open/floor/iron/white,
/area/medical/genetics/cloning)
-"mzq" = (
-/obj/structure/cable{
- icon_state = "0-8"
+"myO" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -26
},
-/obj/machinery/power/solar{
- id = "aftstarboard";
- name = "Aft-Starboard Solar Array"
+/obj/effect/turf_decal/trimline/purple/filled/line{
+ dir = 8
},
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/starboard/aft)
+/obj/item/radio/intercom{
+ pixel_y = 21
+ },
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12
+ },
+/turf/open/floor/iron/white,
+/area/science/explab)
+"mze" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/advanced_airlock_controller{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2,
+/turf/open/floor/catwalk_floor,
+/area/hallway/secondary/exit/departure_lounge)
"mzt" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -47964,14 +47633,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
-"mCP" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/atmos)
"mDa" = (
/obj/machinery/light{
light_color = "#7AC3FF"
@@ -48053,6 +47714,19 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/security/courtroom)
+"mDH" = (
+/obj/machinery/hydroponics/soil{
+ pixel_y = 8
+ },
+/obj/item/food/grown/flower/harebell,
+/obj/item/food/grown/flower/harebell,
+/obj/item/food/grown/flower/harebell,
+/obj/item/food/grown/flower/harebell,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/cult,
+/area/chapel/main)
"mDK" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
@@ -48134,6 +47808,12 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
+"mEq" = (
+/obj/effect/turf_decal/siding/purple/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"mEH" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -48151,15 +47831,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plating,
/area/maintenance/solars/port/fore)
-"mEU" = (
-/obj/machinery/advanced_airlock_controller{
- dir = 4;
- pixel_x = -24
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2,
-/turf/open/floor/catwalk_floor,
-/area/hallway/secondary/exit/departure_lounge)
"mEV" = (
/obj/item/radio/intercom{
dir = 4;
@@ -48183,31 +47854,6 @@
},
/turf/open/floor/iron/chapel,
/area/chapel/main)
-"mFm" = (
-/obj/structure/table,
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/obj/machinery/light_switch{
- pixel_x = -26
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/item/storage/toolbox/electrical,
-/obj/item/clothing/head/utility/welding{
- pixel_x = -5;
- pixel_y = 3
- },
-/obj/item/clothing/head/utility/welding{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/clothing/gloves/color/yellow,
-/turf/open/floor/iron/dark/corner{
- dir = 1
- },
-/area/engine/atmos)
"mFp" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -48261,6 +47907,19 @@
},
/turf/open/floor/engine,
/area/engine/engineering)
+"mFM" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"mFN" = (
/obj/structure/disposalpipe/segment{
dir = 8
@@ -48446,21 +48105,13 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/maintenance/starboard/aft)
-"mJA" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/mob/living/simple_animal/bot/medbot{
- auto_patrol = 1;
- desc = "A little medical robot, officially part of the Nanotrasen medical inspectorate. He looks somewhat underwhelmed.";
- name = "Inspector Johnson"
- },
-/obj/effect/turf_decal/siding/dark_blue/corner{
- dir = 1
+"mKs" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/obj/machinery/light/small{
+ dir = 8
},
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
+/turf/open/floor/plating,
+/area/maintenance/starboard)
"mLa" = (
/obj/structure/closet/emcloset,
/obj/structure/sign/warning/pods{
@@ -48469,6 +48120,24 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/fitness/recreation)
+"mLd" = (
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/camera{
+ c_tag = "Incinerator";
+ dir = 8;
+ network = list("ss13","turbine")
+ },
+/obj/machinery/atmospherics/pipe/simple/dark/visible{
+ dir = 10
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"mLe" = (
/obj/structure/chair/office/light,
/turf/open/floor/carpet/blue,
@@ -48553,6 +48222,38 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/exit/departure_lounge)
+"mMn" = (
+/obj/structure/rack,
+/obj/item/storage/firstaid/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/storage/firstaid/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/storage/firstaid/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/radio/headset/headset_sci{
+ pixel_x = -3
+ },
+/obj/effect/turf_decal/delivery,
+/obj/item/healthanalyzer{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/obj/item/healthanalyzer{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/obj/item/healthanalyzer{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/turf/open/floor/iron,
+/area/science/robotics/lab)
"mMC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 1
@@ -48617,13 +48318,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"mNG" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/obj/structure/closet/radiation,
-/turf/open/floor/iron/dark,
-/area/science/explab)
"mNL" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/structure/disposalpipe/segment,
@@ -48707,15 +48401,12 @@
},
/turf/open/floor/iron,
/area/hydroponics)
-"mPE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
+"mPw" = (
+/obj/effect/turf_decal/siding/dark_blue{
dir = 4
},
-/turf/open/floor/catwalk_floor,
-/area/engine/atmos)
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"mPP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -48801,22 +48492,16 @@
},
/turf/open/floor/carpet/blue,
/area/crew_quarters/heads/cmo)
-"mQU" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "0-4"
+"mQV" = (
+/mob/living/simple_animal/pet/dog/pug{
+ density = 0;
+ dir = 8
},
-/obj/machinery/power/apc{
- areastring = "/area/maintenance/disposal/incinerator";
- dir = 1;
- name = "Incinerator APC";
- pixel_y = 24
+/obj/effect/turf_decal/box/corners{
+ dir = 8
},
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
+/turf/open/floor/engine,
+/area/science/explab)
"mRb" = (
/obj/structure/bed/dogbed/runtime,
/mob/living/simple_animal/pet/cat/Runtime,
@@ -48839,6 +48524,16 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/library)
+"mRy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/crew_quarters/locker)
"mRK" = (
/obj/machinery/door/airlock/maintenance{
name = "Vacant Office Maintenance";
@@ -49017,16 +48712,6 @@
},
/turf/open/floor/iron/white,
/area/medical/chemistry)
-"mVU" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/obj/effect/turf_decal/trimline/purple/filled/line{
- dir = 4
- },
-/turf/open/floor/iron/white,
-/area/science/explab)
"mVY" = (
/obj/structure/table/reinforced,
/obj/effect/turf_decal/delivery,
@@ -49052,18 +48737,6 @@
},
/turf/open/floor/iron/white,
/area/medical/chemistry)
-"mWM" = (
-/obj/structure/cable/white{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/orange/visible{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
"mWQ" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -49309,10 +48982,6 @@
},
/turf/open/floor/iron,
/area/medical/genetics)
-"mYV" = (
-/obj/effect/turf_decal/trimline/purple/filled/line,
-/turf/open/floor/iron/white,
-/area/science/explab)
"mZn" = (
/obj/structure/table/wood,
/obj/structure/cable/yellow{
@@ -49353,6 +49022,9 @@
/obj/effect/turf_decal/tile/red/half/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint/supply)
+"mZQ" = (
+/turf/open/floor/engine,
+/area/science/explab)
"mZR" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
@@ -49456,20 +49128,28 @@
},
/turf/open/floor/iron,
/area/security/brig)
-"ncb" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+"ncc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+/obj/effect/turf_decal/stripes/line{
dir = 4
},
-/obj/effect/turf_decal/stripes/line{
- dir = 6
+/turf/open/floor/catwalk_floor,
+/area/engine/atmos)
+"ncG" = (
+/obj/item/radio/intercom{
+ pixel_y = -29
},
-/turf/open/floor/iron/dark,
+/obj/machinery/camera{
+ c_tag = "Experimentation Lab";
+ dir = 1;
+ network = list("ss13","rd")
+ },
+/obj/machinery/light,
+/obj/effect/turf_decal/trimline/purple/filled/line,
+/obj/effect/landmark/xeno_spawn,
+/turf/open/floor/iron/white,
/area/science/explab)
"ncI" = (
/obj/effect/decal/cleanable/dirt,
@@ -49816,14 +49496,6 @@
/obj/effect/landmark/start/chaplain,
/turf/open/floor/carpet/grimy,
/area/chapel/office)
-"njX" = (
-/obj/machinery/lapvend,
-/obj/effect/turf_decal/tile/purple/half/contrasted{
- dir = 4
- },
-/obj/effect/turf_decal/siding/purple,
-/turf/open/floor/iron/white,
-/area/science/research)
"nkb" = (
/obj/structure/sign/warning/biohazard{
pixel_x = -32
@@ -49931,27 +49603,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"nmz" = (
-/obj/machinery/computer/turbine_computer{
- dir = 1;
- id = "incineratorturbine"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/machinery/button/door/incinerator_vent_atmos_aux{
- pixel_x = 24;
- pixel_y = 8
- },
-/obj/machinery/button/door/incinerator_vent_atmos_main{
- pixel_x = 24;
- pixel_y = -8
- },
-/obj/machinery/button/ignition/incinerator/atmos{
- pixel_x = 38;
- pixel_y = -7
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"nmL" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -50056,6 +49707,11 @@
},
/turf/open/floor/iron,
/area/security/brig)
+"noP" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/junction,
+/obj/effect/spawner/structure/window/plasma/reinforced,
+/turf/open/floor/plating,
+/area/engine/engineering)
"noQ" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/decal/cleanable/dirt,
@@ -50222,16 +49878,6 @@
/obj/effect/turf_decal/tile/blue/half/contrasted,
/turf/open/floor/iron/white,
/area/medical/medbay/central)
-"ntt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/tcommsat/server)
-"ntI" = (
-/obj/effect/turf_decal/siding/purple/corner{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"nuw" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -50335,15 +49981,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/aisat)
-"nwq" = (
-/obj/effect/turf_decal/tile/blue/half/contrasted{
- dir = 1
- },
-/obj/effect/turf_decal/siding/dark_blue{
- dir = 4
- },
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
"nwP" = (
/obj/structure/closet/crate,
/obj/effect/decal/cleanable/blood/old,
@@ -50939,6 +50576,22 @@
/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
/turf/open/floor/prison,
/area/security/prison)
+"nHL" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/purple/filled/corner,
+/turf/open/floor/iron/white,
+/area/science/explab)
"nIo" = (
/obj/machinery/power/apc/highcap/five_k{
areastring = "/area/maintenance/starboard/aft";
@@ -51116,6 +50769,22 @@
/obj/machinery/fax/service,
/turf/open/floor/iron,
/area/hallway/secondary/service)
+"nKi" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"nKz" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -51214,12 +50883,16 @@
/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/security/execution/education)
-"nMr" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
+"nMk" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/extinguisher,
+/obj/machinery/light/small,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/radio/intercom{
+ pixel_y = -29
},
-/turf/open/floor/iron/dark,
-/area/science/explab)
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"nMs" = (
/obj/machinery/door/airlock/maintenance{
name = "Security Maintenance";
@@ -51457,6 +51130,15 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/maintenance/starboard/fore)
+"nPx" = (
+/obj/structure/chair,
+/obj/effect/landmark/start/assistant,
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple,
+/turf/open/floor/iron/white,
+/area/science/research)
"nPB" = (
/obj/machinery/door/airlock/public/glass{
name = "Cryogenic Lounge"
@@ -51503,6 +51185,16 @@
},
/turf/open/floor/iron/white,
/area/science/research)
+"nPS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/crew_quarters/locker)
"nPW" = (
/obj/machinery/photocopier{
pixel_y = 3
@@ -51536,15 +51228,6 @@
},
/turf/open/floor/iron/white,
/area/science/research)
-"nQx" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/aug_manipulator,
-/turf/open/floor/iron/white/corner{
- dir = 1
- },
-/area/science/robotics/lab)
"nQH" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -51608,17 +51291,6 @@
},
/turf/open/floor/iron,
/area/science/mixing)
-"nRO" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/iron/dark,
-/area/science/explab)
"nRP" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -51822,13 +51494,6 @@
},
/turf/open/floor/iron/dark/corner,
/area/hallway/primary/starboard)
-"nUN" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/delivery,
-/obj/structure/window/reinforced,
-/obj/structure/closet/secure_closet/atmospherics,
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"nVb" = (
/obj/structure/cable/yellow{
icon_state = "2-4"
@@ -51999,12 +51664,6 @@
},
/turf/open/floor/iron,
/area/medical/surgery)
-"nXw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/tcommsat/server)
"nXA" = (
/obj/structure/rack{
icon = 'icons/obj/stationobjs.dmi';
@@ -52063,18 +51722,6 @@
/obj/effect/turf_decal/trimline/blue/filled/warning,
/turf/open/floor/iron/white,
/area/medical/medbay/aft)
-"nYC" = (
-/obj/machinery/airalarm/all_access{
- dir = 8;
- pixel_x = 24
- },
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"nZd" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=8";
@@ -52171,18 +51818,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/exit/departure_lounge)
-"oaZ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/sink/kitchen{
- desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
- name = "old sink";
- pixel_y = 28
- },
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"obf" = (
/obj/effect/turf_decal/trimline/purple/filled/line,
/turf/open/floor/iron/white,
@@ -52207,14 +51842,6 @@
},
/turf/open/floor/plating,
/area/construction/mining/aux_base)
-"occ" = (
-/obj/effect/turf_decal/siding/yellow,
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/digital_clock/directional/north,
-/turf/open/floor/iron,
-/area/engine/break_room)
"oce" = (
/obj/structure/closet/emcloset,
/turf/open/floor/iron,
@@ -52301,6 +51928,15 @@
/obj/effect/turf_decal/tile/brown/anticorner/contrasted,
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
+"odm" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/dark_blue{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"odn" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -52354,6 +51990,18 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"odI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"odT" = (
/obj/item/clothing/glasses/meson,
/obj/structure/closet/crate,
@@ -52393,6 +52041,14 @@
},
/turf/open/floor/iron,
/area/medical/break_room)
+"oeP" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 6
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"off" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -52406,6 +52062,15 @@
},
/turf/open/floor/plating,
/area/maintenance/port)
+"ofn" = (
+/obj/structure/table/wood,
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/obj/item/folder,
+/obj/item/folder,
+/turf/open/floor/cult,
+/area/library)
"ofI" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -52442,6 +52107,15 @@
},
/turf/open/floor/iron/white/corner,
/area/hallway/secondary/entry)
+"ofV" = (
+/obj/item/radio/intercom{
+ pixel_y = 21
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"ofW" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -52559,16 +52233,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"oiw" = (
-/obj/structure/table,
-/obj/item/pen,
-/obj/item/storage/firstaid/regular,
-/obj/effect/turf_decal/tile/blue/half/contrasted{
- dir = 4
- },
-/obj/effect/turf_decal/siding/dark_blue,
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
"ojf" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -52735,18 +52399,6 @@
},
/turf/open/floor/wood,
/area/bridge/showroom/corporate)
-"olB" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/siding/white/corner{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"olU" = (
/obj/effect/landmark/start/clown,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -52766,13 +52418,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/office)
-"olZ" = (
-/obj/effect/landmark/event_spawn,
-/obj/effect/turf_decal/siding/purple{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"omg" = (
/obj/machinery/camera{
c_tag = "Xenobiology Lab - Pen #2";
@@ -53031,6 +52676,16 @@
},
/turf/open/floor/iron,
/area/maintenance/starboard/fore)
+"oqw" = (
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/solar{
+ id = "forestarboard";
+ name = "Fore-Starboard Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/starboard/fore)
"oqR" = (
/obj/structure/sign/departments/minsky/engineering/engineering{
pixel_y = 32
@@ -53128,11 +52783,6 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
-"orF" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/obj/machinery/meter,
-/turf/open/floor/plating,
-/area/maintenance/starboard)
"orR" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 8
@@ -53795,6 +53445,14 @@
},
/turf/open/floor/iron/dark,
/area/medical/morgue)
+"oDr" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/item/xenoartifact,
+/turf/open/floor/iron/dark,
+/area/science/explab)
"oDB" = (
/obj/effect/landmark/xeno_spawn,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -53977,6 +53635,14 @@
/obj/effect/landmark/start/medical_doctor,
/turf/open/floor/iron/grid/steel,
/area/medical/patients_rooms)
+"oFW" = (
+/obj/item/radio/intercom{
+ pixel_y = 21
+ },
+/obj/structure/closet/secure_closet/engineering_personal,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/engine/engineering)
"oGb" = (
/obj/effect/landmark/start/chaplain,
/turf/open/floor/iron/dark,
@@ -54027,14 +53693,6 @@
},
/turf/open/floor/iron,
/area/engine/engineering)
-"oHz" = (
-/obj/effect/turf_decal/stripes/corner,
-/obj/structure/closet/firecloset,
-/obj/structure/sign/warning/nosmoking{
- pixel_y = 32
- },
-/turf/open/floor/iron/dark,
-/area/science/explab)
"oHJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 6
@@ -54125,6 +53783,22 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/lobby)
+"oJb" = (
+/obj/effect/turf_decal/siding/dark_blue{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
+"oJn" = (
+/obj/machinery/vending/wardrobe/science_wardrobe,
+/obj/effect/turf_decal/trimline/purple/filled/line{
+ dir = 4
+ },
+/obj/structure/sign/warning/nosmoking{
+ pixel_y = 32
+ },
+/turf/open/floor/iron/white,
+/area/science/explab)
"oJA" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -54201,6 +53875,25 @@
},
/turf/open/floor/iron,
/area/quartermaster/office)
+"oKt" = (
+/obj/machinery/light,
+/obj/structure/table/reinforced,
+/obj/item/clothing/glasses/science,
+/obj/item/clothing/glasses/science{
+ pixel_y = 9
+ },
+/obj/item/xenoartifact_labeler{
+ pixel_x = -5;
+ pixel_y = 7
+ },
+/obj/item/clothing/gloves/artifact_pinchers,
+/obj/item/clothing/gloves/artifact_pinchers,
+/obj/item/xenoartifact_labeler,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/science/explab)
"oKC" = (
/obj/structure/disposalpipe/segment{
dir = 8
@@ -54335,6 +54028,18 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"oMW" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"oNb" = (
/obj/machinery/door/airlock{
name = "Bar Storage";
@@ -54473,6 +54178,18 @@
},
/turf/open/floor/plating,
/area/maintenance/department/science/central)
+"oRw" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 9
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/tcommsat/server)
"oRB" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -54565,6 +54282,15 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/engine/engineering)
+"oSU" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/purple/filled/line{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/science/explab)
"oTf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -54741,16 +54467,11 @@
},
/turf/open/floor/plating,
/area/maintenance/department/science/xenobiology)
-"oWR" = (
-/obj/structure/noticeboard{
- dir = 4;
- pixel_x = -27
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/science/robotics/lab)
+"oXu" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/obj/structure/lattice,
+/turf/open/space,
+/area/space/nearstation)
"oXI" = (
/obj/structure/table,
/obj/item/radio/intercom{
@@ -54859,10 +54580,6 @@
},
/turf/open/floor/carpet/grimy,
/area/tcommsat/computer)
-"pbg" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/tcommsat/server)
"pbu" = (
/obj/structure/table,
/obj/item/analyzer,
@@ -54927,6 +54644,9 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/turf/open/floor/iron,
/area/hydroponics/garden)
+"peq" = (
+/turf/open/floor/glass/reinforced,
+/area/hallway/secondary/exit/departure_lounge)
"pfh" = (
/obj/effect/landmark/xeno_spawn,
/obj/structure/cable{
@@ -54935,6 +54655,26 @@
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/port/aft)
+"pfq" = (
+/obj/structure/table,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/item/mmi,
+/obj/item/mmi{
+ pixel_y = 4
+ },
+/obj/item/mmi{
+ pixel_y = 8
+ },
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/science/robotics/lab)
"pfB" = (
/obj/effect/turf_decal/tile/brown/half/contrasted,
/turf/open/floor/iron,
@@ -55290,29 +55030,6 @@
},
/turf/open/floor/iron/dark,
/area/aisat)
-"pmo" = (
-/obj/machinery/door/airlock/security/glass{
- id_tag = "outerbrig";
- name = "Brig";
- req_access_txt = "63"
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 4
- },
-/obj/machinery/door/poddoor/preopen{
- id = "Secure Gate";
- name = "Brig Blast door"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
- cycle_id = "brig-entrance"
- },
-/turf/open/floor/iron,
-/area/security/brig)
"pmr" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -55344,6 +55061,17 @@
},
/turf/open/floor/iron,
/area/engine/break_room)
+"pmN" = (
+/obj/structure/chair,
+/obj/effect/landmark/start/assistant,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/dark_blue{
+ dir = 3
+ },
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"pmT" = (
/obj/machinery/firealarm{
dir = 4;
@@ -55442,6 +55170,12 @@
/obj/structure/grille,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"ppH" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/xenoartifact_inbox,
+/obj/item/xenoartifact,
+/turf/open/floor/engine,
+/area/science/explab)
"ppT" = (
/obj/structure/table/wood/poker,
/obj/item/clothing/mask/cigarette/cigar{
@@ -55474,6 +55208,15 @@
/obj/machinery/vending/cigarette,
/turf/open/floor/iron,
/area/vacant_room/commissary)
+"pqA" = (
+/obj/machinery/camera/autoname{
+ dir = 6
+ },
+/obj/effect/turf_decal/box/corners{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/science/explab)
"pqE" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -55567,6 +55310,12 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"pst" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/tcommsat/server)
"psw" = (
/obj/structure/chair{
dir = 4
@@ -55715,11 +55464,6 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
-"pvJ" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/junction,
-/obj/effect/spawner/structure/window/plasma/reinforced,
-/turf/open/floor/plating,
-/area/engine/engineering)
"pvR" = (
/obj/structure/chair/stool,
/obj/structure/cable{
@@ -55791,15 +55535,6 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"pxK" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engineering)
"pyc" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -55816,21 +55551,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/starboard)
-"pyD" = (
-/obj/effect/turf_decal/siding/white{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
-"pyS" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/table,
-/obj/item/borg/upgrade/rename,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/iron,
-/area/science/robotics/lab)
"pyU" = (
/obj/effect/spawner/randomvend/cola,
/turf/open/floor/carpet,
@@ -55862,6 +55582,30 @@
},
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
+"pzs" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
+"pzy" = (
+/obj/structure/table,
+/obj/item/stack/sheet/glass,
+/obj/item/electronics/airlock,
+/obj/item/assembly/timer{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple,
+/turf/open/floor/iron/white,
+/area/science/research)
"pzG" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -55987,6 +55731,18 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/heads/chief)
+"pCn" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"pCp" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -56011,6 +55767,14 @@
dir = 5
},
/area/science/research)
+"pDG" = (
+/obj/structure/cable,
+/obj/machinery/power/solar{
+ id = "forestarboard";
+ name = "Fore-Starboard Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/starboard/fore)
"pDJ" = (
/obj/structure/chair/stool{
dir = 1
@@ -56183,21 +55947,6 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
-"pFo" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/purple/filled/line{
- dir = 4
- },
-/turf/open/floor/iron/white,
-/area/science/explab)
"pFG" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -56290,6 +56039,19 @@
},
/turf/open/floor/wood,
/area/library)
+"pIn" = (
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/effect/turf_decal/delivery,
+/obj/structure/table,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/engine/engineering)
"pIQ" = (
/obj/structure/chair/wood/wings{
dir = 8
@@ -56323,15 +56085,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
-"pJf" = (
-/obj/structure/table/wood,
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/obj/item/folder,
-/obj/item/folder,
-/turf/open/floor/cult,
-/area/library)
"pJi" = (
/obj/machinery/disposal/bin{
pixel_x = 2;
@@ -56346,6 +56099,12 @@
},
/turf/open/floor/wood,
/area/crew_quarters/bar)
+"pJB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/tcommsat/server)
"pJC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -56414,6 +56173,15 @@
/obj/effect/turf_decal/tile/green/anticorner/contrasted,
/turf/open/floor/iron,
/area/hydroponics)
+"pLv" = (
+/obj/structure/closet/secure_closet/engineering_personal,
+/obj/item/clothing/suit/hooded/wintercoat/engineering,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/engine/engineering)
"pLx" = (
/obj/effect/turf_decal/tile/red/opposingcorners,
/obj/effect/turf_decal/tile/blue/opposingcorners{
@@ -56452,22 +56220,6 @@
},
/turf/open/floor/iron/white/corner,
/area/hallway/primary/aft)
-"pLT" = (
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/turf/open/space,
-/area/space/nearstation)
-"pLU" = (
-/obj/item/radio/intercom{
- pixel_y = 21
- },
-/obj/effect/turf_decal/tile/yellow/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"pLY" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -56572,41 +56324,6 @@
},
/turf/open/floor/iron,
/area/maintenance/department/medical/central)
-"pNE" = (
-/obj/machinery/holopad{
- pixel_x = 16;
- pixel_y = -16
- },
-/obj/effect/turf_decal/siding/purple{
- dir = 8
- },
-/turf/open/floor/iron/white,
-/area/science/research)
-"pNF" = (
-/obj/structure/table/reinforced,
-/obj/item/folder/white{
- pixel_x = 4;
- pixel_y = -3
- },
-/obj/machinery/door/window/eastright{
- dir = 8;
- name = "Genetics Desk";
- req_access_txt = "5;9"
- },
-/obj/machinery/door/firedoor,
-/obj/structure/desk_bell{
- pixel_x = -8
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "geneticslab";
- name = "Genetics Lab Shutters"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "quarantineshutters";
- name = "isolation shutters"
- },
-/turf/open/floor/plating,
-/area/medical/genetics)
"pNG" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -56627,12 +56344,6 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai_upload)
-"pOc" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/machinery/portable_atmospherics/canister,
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"pOk" = (
/obj/effect/landmark/xeno_spawn,
/obj/structure/cable/yellow{
@@ -56685,6 +56396,31 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
+"pPa" = (
+/obj/structure/table,
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/obj/machinery/light_switch{
+ pixel_x = -26
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/item/storage/toolbox/electrical,
+/obj/item/clothing/head/utility/welding{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/clothing/head/utility/welding{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/clothing/gloves/color/yellow,
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/engine/atmos)
"pPd" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
@@ -56719,25 +56455,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/security/main)
-"pPT" = (
-/obj/machinery/door/airlock/security/glass{
- id_tag = "innerbrig";
- name = "Brig";
- req_access_txt = "63"
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 8
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
- cycle_id = "brig-entrance"
- },
-/turf/open/floor/iron,
-/area/security/brig)
"pQr" = (
/obj/structure/disposalpipe/segment{
dir = 6
@@ -56789,12 +56506,6 @@
},
/turf/open/floor/iron,
/area/engine/break_room)
-"pRz" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/engine/break_room)
"pRG" = (
/obj/effect/turf_decal/trimline/purple/filled/line{
dir = 9
@@ -56949,6 +56660,20 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/maintenance/department/medical/central)
+"pTW" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/advanced_airlock_controller{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor,
+/area/hallway/secondary/entry)
"pUh" = (
/obj/structure/table,
/obj/item/stack/sheet/mineral/copper{
@@ -56974,14 +56699,6 @@
},
/turf/open/floor/iron,
/area/engine/engineering)
-"pUs" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/obj/effect/landmark/xeno_spawn,
-/obj/effect/turf_decal/trimline/purple/filled/line,
-/turf/open/floor/iron/white,
-/area/science/explab)
"pUF" = (
/obj/machinery/airalarm{
pixel_y = 23
@@ -57031,15 +56748,6 @@
/obj/item/cigbutt,
/turf/open/floor/iron/dark,
/area/medical/surgery)
-"pVo" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/siding/dark_blue/corner{
- dir = 4
- },
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
"pVv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -57104,6 +56812,17 @@
},
/turf/open/floor/wood/big,
/area/crew_quarters/bar)
+"pWh" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/ai_monitored/turret_protected/ai_upload)
"pWm" = (
/obj/item/radio/intercom{
frequency = 1485;
@@ -57166,6 +56885,12 @@
},
/turf/open/floor/plating,
/area/security/prison)
+"pXq" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"pXu" = (
/obj/effect/turf_decal/bot,
/obj/machinery/portable_atmospherics/pump,
@@ -57247,16 +56972,6 @@
},
/turf/open/floor/iron/white,
/area/science/research)
-"pYy" = (
-/obj/machinery/airalarm{
- dir = 8;
- pixel_x = 24
- },
-/obj/effect/spawner/randomvend/cola,
-/turf/open/floor/iron/white/side{
- dir = 4
- },
-/area/science/research)
"pYN" = (
/obj/structure/cable/yellow{
icon_state = "2-4"
@@ -57779,12 +57494,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/storage/tech)
-"qgP" = (
-/obj/machinery/door/morgue{
- name = "Study #1"
- },
-/turf/open/floor/cult,
-/area/library)
"qhf" = (
/obj/effect/turf_decal/tile/blue/half/contrasted{
dir = 1
@@ -57946,6 +57655,17 @@
},
/turf/open/floor/iron,
/area/hydroponics)
+"qkz" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/purple/filled/line,
+/obj/machinery/light_switch{
+ pixel_x = 7;
+ pixel_y = -26
+ },
+/turf/open/floor/iron/white,
+/area/science/explab)
"qkD" = (
/obj/structure/table,
/obj/item/wirecutters,
@@ -58159,6 +57879,10 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/aisat)
+"qpw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/tcommsat/server)
"qpE" = (
/obj/structure/table,
/obj/machinery/cell_charger,
@@ -58553,6 +58277,13 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/maintenance/starboard/secondary)
+"qzm" = (
+/obj/item/cigbutt,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
"qzv" = (
/obj/structure/cable/white{
icon_state = "2-4"
@@ -58569,13 +58300,6 @@
},
/turf/open/floor/engine,
/area/engine/engineering)
-"qzI" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/science/explab)
"qzT" = (
/obj/effect/spawner/lootdrop/maintenance,
/obj/structure/disposalpipe/segment,
@@ -58710,30 +58434,6 @@
/obj/effect/turf_decal/tile/brown/half/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/port)
-"qBJ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/command{
- name = "Corporate Showroom";
- req_access_txt = "19";
- security_level = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/siding/wood/end{
- dir = 1
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
- cycle_id = "showroom"
- },
-/turf/open/floor/wood,
-/area/bridge/showroom/corporate)
"qBL" = (
/obj/effect/decal/cleanable/oil,
/turf/open/floor/iron,
@@ -58839,19 +58539,6 @@
},
/turf/open/floor/iron,
/area/medical/break_room)
-"qCK" = (
-/obj/machinery/hydroponics/soil{
- pixel_y = 8
- },
-/obj/item/food/grown/flower/harebell,
-/obj/item/food/grown/flower/harebell,
-/obj/item/food/grown/flower/harebell,
-/obj/item/food/grown/flower/harebell,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/cult,
-/area/chapel/main)
"qDn" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -58865,6 +58552,24 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/security/brig)
+"qDA" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/advanced_airlock_controller{
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/solars/starboard/aft)
"qDN" = (
/obj/machinery/light/small{
dir = 8
@@ -58910,6 +58615,15 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/security/armory)
+"qEw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"qEx" = (
/obj/effect/turf_decal/siding/wood{
dir = 6
@@ -59029,19 +58743,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/maintenance/port)
-"qGr" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/bot{
- dir = 1
- },
-/turf/open/floor/iron/dark/corner,
-/area/engine/storage_shared)
"qGx" = (
/obj/machinery/newscaster,
/turf/closed/wall,
@@ -59200,6 +58901,16 @@
},
/turf/open/floor/iron/white,
/area/medical/surgery)
+"qJQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/tcommsat/server)
+"qKa" = (
+/obj/effect/turf_decal/siding/white/corner,
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"qKb" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -59215,6 +58926,21 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
+"qKn" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"qKA" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -59242,6 +58968,11 @@
},
/turf/open/floor/iron,
/area/security/brig)
+"qLa" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/obj/machinery/meter,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
"qLf" = (
/obj/structure/table/wood,
/obj/item/storage/photo_album,
@@ -59335,6 +59066,21 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
+"qNc" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/engine/engineering)
"qNj" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -59373,14 +59119,6 @@
/obj/machinery/holopad,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"qNU" = (
-/obj/structure/cable,
-/obj/machinery/power/solar{
- id = "foreport";
- name = "Fore-Port Solar Array"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/port/fore)
"qOu" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -59470,6 +59208,13 @@
},
/turf/open/floor/iron/white,
/area/science/mixing)
+"qPP" = (
+/obj/effect/decal/cleanable/blood/old,
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/iron,
+/area/maintenance/starboard/secondary)
"qPQ" = (
/obj/effect/turf_decal/tile/blue{
dir = 8
@@ -59493,6 +59238,20 @@
},
/turf/open/floor/iron/dark,
/area/science/xenobiology)
+"qQS" = (
+/obj/effect/landmark/start/cyborg,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/camera/motion{
+ c_tag = "AI Upload Foyer";
+ network = list("aiupload")
+ },
+/obj/machinery/airalarm{
+ pixel_y = 26
+ },
+/turf/open/floor/iron/dark,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
"qRl" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -59655,6 +59414,20 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat/foyer)
+"qUk" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 1
+ },
+/obj/machinery/camera/autoname{
+ dir = 4;
+ network = list("ss13","medbay")
+ },
+/obj/item/storage/backpack/duffelbag/med/implant{
+ pixel_y = 4
+ },
+/turf/open/floor/iron/white,
+/area/medical/surgery)
"qUm" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/chair/stool,
@@ -59705,6 +59478,13 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/engine/break_room)
+"qVh" = (
+/obj/effect/landmark/event_spawn,
+/obj/effect/turf_decal/siding/purple{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"qVi" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -59718,6 +59498,23 @@
},
/turf/open/floor/iron,
/area/quartermaster/office)
+"qVm" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/secondary)
+"qVH" = (
+/obj/machinery/power/smes{
+ capacity = 9e+006;
+ charge = 10000
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"qVS" = (
/obj/machinery/camera{
c_tag = "Arrivals - Middle Arm";
@@ -59837,6 +59634,18 @@
},
/turf/open/floor/iron/dark,
/area/engine/engineering)
+"qYh" = (
+/obj/machinery/airalarm/all_access{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"qYD" = (
/obj/item/radio/intercom{
pixel_x = 26
@@ -59944,19 +59753,18 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"qZH" = (
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 10
- },
-/turf/open/space,
-/area/space/nearstation)
"qZI" = (
/obj/effect/turf_decal/tile/neutral{
dir = 1
},
/turf/closed/wall,
/area/medical/break_room)
+"qZL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/secondary)
"qZP" = (
/obj/effect/landmark/blobstart,
/obj/machinery/power/apc{
@@ -60132,6 +59940,18 @@
},
/turf/open/floor/plating,
/area/maintenance/department/science/central)
+"rcz" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/purple/filled/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"rcC" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -60297,6 +60117,12 @@
},
/turf/open/floor/plating,
/area/security/warden)
+"rhM" = (
+/obj/effect/turf_decal/siding/purple{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"rhP" = (
/obj/machinery/door/airlock/security/glass{
name = "Security Office";
@@ -60368,38 +60194,6 @@
/obj/effect/turf_decal/numbers/two_nine,
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
-"rjw" = (
-/obj/structure/table,
-/obj/item/paper_bin{
- pixel_x = -2;
- pixel_y = 4
- },
-/obj/item/pen{
- pixel_x = -2;
- pixel_y = 4
- },
-/obj/machinery/status_display/evac{
- pixel_y = 32
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 24
- },
-/obj/machinery/camera{
- c_tag = "Research Division - Lobby";
- network = list("ss13","rd")
- },
-/obj/effect/turf_decal/tile/purple/half/contrasted{
- dir = 4
- },
-/obj/effect/turf_decal/siding/purple/corner{
- dir = 8
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"rjC" = (
/obj/machinery/microwave{
pixel_y = 4
@@ -60408,12 +60202,6 @@
/obj/item/storage/box/donkpockets,
/turf/open/floor/carpet/grimy,
/area/tcommsat/computer)
-"rjD" = (
-/obj/effect/turf_decal/siding/yellow{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"rjF" = (
/obj/effect/turf_decal/trimline/purple/filled/line,
/obj/structure/extinguisher_cabinet{
@@ -60462,6 +60250,12 @@
/obj/effect/turf_decal/tile/blue,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat_interior)
+"rke" = (
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"rkA" = (
/obj/structure/disposalpipe/segment{
dir = 9
@@ -60569,6 +60363,12 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/aft)
+"rmo" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"rmt" = (
/obj/machinery/power/apc/highcap/five_k{
areastring = "/area/security/main";
@@ -60936,6 +60736,27 @@
},
/turf/open/floor/iron,
/area/hydroponics)
+"rsX" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/purple/filled/warning{
+ dir = 5
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"rti" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -60962,6 +60783,16 @@
/obj/effect/mapping_helpers/airlock/locked,
/turf/open/floor/engine,
/area/science/mixing/chamber)
+"rtI" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/status_display/evac{
+ pixel_x = 32
+ },
+/turf/open/floor/engine,
+/area/science/explab)
"rub" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow{
@@ -60998,6 +60829,12 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"ruP" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"rvd" = (
/obj/item/storage/crayons,
/obj/machinery/light/small{
@@ -61230,6 +61067,11 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/maintenance/starboard)
+"rAr" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/crate,
+/turf/open/floor/iron,
+/area/maintenance/starboard/secondary)
"rAK" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -61264,12 +61106,6 @@
},
/turf/open/floor/iron/dark,
/area/science/server)
-"rBA" = (
-/obj/effect/turf_decal/siding/dark_blue{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
"rBE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -61341,24 +61177,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
-"rDu" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/terminal{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/camera{
- c_tag = "Incinerator";
- dir = 8;
- network = list("ss13","turbine")
- },
-/obj/machinery/atmospherics/pipe/simple/dark/visible{
- dir = 10
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"rDz" = (
/obj/machinery/disposal/bin,
/obj/effect/turf_decal/bot,
@@ -61511,6 +61329,18 @@
},
/turf/open/floor/carpet/blue,
/area/crew_quarters/heads/hop)
+"rFh" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/dark_blue{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"rFo" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -61550,6 +61380,12 @@
"rFZ" = (
/turf/open/floor/iron/freezer,
/area/crew_quarters/kitchen)
+"rGb" = (
+/obj/structure/chair/fancy/comfy{
+ dir = 1
+ },
+/turf/open/floor/cult,
+/area/library)
"rGe" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -61578,6 +61414,29 @@
},
/turf/open/floor/wood,
/area/library)
+"rHx" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/green/visible{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"rHy" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"rHz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 9
@@ -61619,23 +61478,6 @@
/obj/effect/landmark/start/assistant,
/turf/open/floor/iron/freezer,
/area/crew_quarters/toilet/restrooms)
-"rIA" = (
-/obj/machinery/door/airlock/maintenance{
- req_one_access_txt = "12;47"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
- cycle_id = "sci-maint-passthrough"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/science)
"rIV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 6
@@ -61645,6 +61487,27 @@
},
/turf/open/floor/iron/dark,
/area/aisat)
+"rJa" = (
+/obj/machinery/airalarm/directional/north,
+/obj/structure/rack,
+/obj/item/rollerbed{
+ pixel_x = -2
+ },
+/obj/item/rollerbed{
+ pixel_x = 1;
+ pixel_y = 3
+ },
+/obj/item/rollerbed{
+ pixel_x = 5;
+ pixel_y = 8
+ },
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 1
+ },
+/obj/machinery/digital_clock/directional/west,
+/obj/effect/turf_decal/siding/dark_blue/corner,
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"rJg" = (
/obj/structure/bed{
dir = 4
@@ -61712,6 +61575,22 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
+"rKW" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"rLS" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -61900,18 +61779,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/storage)
-"rPx" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/atmos)
"rPy" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -61949,15 +61816,6 @@
},
/turf/open/floor/iron/dark,
/area/science/xenobiology)
-"rPJ" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/firstaid/regular,
-/obj/item/clothing/neck/stethoscope,
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/open/floor/iron/dark,
-/area/science/explab)
"rPM" = (
/obj/structure/disposalpipe/segment{
dir = 6
@@ -62091,10 +61949,40 @@
/obj/machinery/announcement_system,
/turf/open/floor/carpet/grimy,
/area/tcommsat/computer)
+"rRN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/structure/closet/bombcloset,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/science/research)
+"rSd" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"rSn" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
/area/maintenance/aft)
+"rSp" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/tcommsat/server)
"rSy" = (
/obj/structure/chair,
/obj/effect/turf_decal/pool,
@@ -62337,18 +62225,6 @@
/obj/effect/turf_decal/tile/red/anticorner/contrasted,
/turf/open/floor/iron,
/area/security/main)
-"rWv" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 6
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/tcommsat/server)
"rWA" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 8
@@ -62429,6 +62305,35 @@
},
/turf/open/floor/iron,
/area/hallway/primary/starboard)
+"rWS" = (
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{
+ dir = 4
+ },
+/obj/machinery/advanced_airlock_controller{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/science/shuttledock)
+"rWW" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
+"rXi" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 5
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/tcommsat/server)
"rXp" = (
/obj/machinery/button/flasher{
id = "holdingflash";
@@ -62524,6 +62429,12 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plating,
/area/maintenance/fore)
+"rZU" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/engine/break_room)
"rZZ" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
@@ -62982,6 +62893,15 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/aft)
+"siM" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"siT" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -63070,6 +62990,15 @@
},
/turf/open/floor/iron,
/area/science/mixing)
+"slv" = (
+/obj/machinery/advanced_airlock_controller{
+ dir = 4;
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2,
+/turf/open/floor/catwalk_floor,
+/area/hallway/secondary/exit/departure_lounge)
"slA" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -63162,6 +63091,16 @@
},
/turf/open/floor/iron,
/area/quartermaster/office)
+"snQ" = (
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/solar{
+ id = "foreport";
+ name = "Fore-Port Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/port/fore)
"soe" = (
/obj/structure/table,
/obj/item/paper_bin{
@@ -63175,6 +63114,20 @@
/obj/effect/turf_decal/tile/green/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/central)
+"sos" = (
+/obj/item/radio/intercom{
+ pixel_x = -28
+ },
+/obj/structure/table,
+/obj/item/clothing/mask/balaclava,
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_x = 5
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/security/execution/education)
"soL" = (
/obj/structure/rack,
/obj/item/storage/box/firingpins{
@@ -63197,12 +63150,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"spf" = (
-/obj/structure/chair/fancy/comfy{
- dir = 1
- },
-/turf/open/floor/cult,
-/area/library)
"spm" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 8
@@ -63254,6 +63201,10 @@
},
/turf/open/floor/iron,
/area/security/courtroom)
+"spX" = (
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron,
+/area/engine/break_room)
"sqh" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 4
@@ -63344,6 +63295,21 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"sqY" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/structure/transit_tube/crossing/horizontal,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space/nearstation)
"srs" = (
/turf/open/floor/prison,
/area/security/prison)
@@ -63469,12 +63435,6 @@
},
/turf/open/floor/iron,
/area/maintenance/port/fore)
-"ste" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/science/explab)
"sth" = (
/obj/structure/bed/dogbed/vector,
/mob/living/simple_animal/pet/hamster/vector,
@@ -63489,13 +63449,6 @@
},
/turf/open/floor/iron,
/area/security/brig)
-"stD" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/science/explab)
"stH" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -63545,6 +63498,20 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
+"sux" = (
+/obj/structure/table/reinforced,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_y = -22
+ },
+/obj/item/stack/sheet/mineral/copper{
+ amount = 5
+ },
+/turf/open/floor/iron/dark/corner,
+/area/engine/storage_shared)
"suL" = (
/obj/structure/chair/stool{
pixel_y = 8
@@ -63636,6 +63603,29 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/carpet/royalblue,
/area/crew_quarters/heads/captain/private)
+"svW" = (
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "outerbrig";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "Secure Gate";
+ name = "Brig Blast door"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "brig-entrance"
+ },
+/turf/open/floor/iron,
+/area/security/brig)
"sxa" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -63646,34 +63636,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/maintenance/starboard/secondary)
-"sxj" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/door/airlock/research{
- name = "Xenobiology Lab";
- req_access_txt = "55"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "xeno_blastdoor";
- name = "Secure Lab Shutters"
- },
-/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
- cycle_id = "sci-maint-passthrough"
- },
-/turf/open/floor/iron,
-/area/maintenance/department/science)
"sxu" = (
/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -64090,12 +64052,6 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/customs)
-"sFF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/tcommsat/server)
"sGm" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -64181,6 +64137,15 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/carpet/purple,
/area/vacant_room/office)
+"sHl" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/tcommsat/server)
"sHt" = (
/obj/machinery/light/small,
/obj/machinery/atmospherics/components/unary/portables_connector{
@@ -64311,14 +64276,6 @@
"sJW" = (
/turf/closed/wall/mineral/plastitanium,
/area/engine/break_room)
-"sKf" = (
-/obj/structure/cable,
-/obj/machinery/power/solar{
- id = "aftport";
- name = "Aft-Port Solar Array"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/port/aft)
"sKj" = (
/obj/machinery/shower{
dir = 4
@@ -64373,6 +64330,24 @@
},
/turf/open/floor/iron,
/area/engine/gravity_generator)
+"sLA" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 10
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/tcommsat/server)
"sLD" = (
/obj/structure/sink{
dir = 4;
@@ -64385,19 +64360,6 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
/turf/open/floor/iron,
/area/hydroponics)
-"sLI" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal/incinerator)
"sLY" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -64585,6 +64547,19 @@
},
/turf/open/floor/iron,
/area/storage/primary)
+"sQi" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/trimline/purple/filled/line{
+ dir = 5
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"sQx" = (
/obj/machinery/door/airlock/security{
name = "Interrogation";
@@ -64683,6 +64658,15 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/construction/mining/aux_base)
+"sRD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/dark_blue{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"sSg" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -64691,6 +64675,21 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/crew_quarters/locker)
+"sSn" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Supermatter Engine";
+ req_access_txt = "10"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engineering)
"sSp" = (
/obj/structure/table/wood,
/obj/machinery/light/small{
@@ -64778,18 +64777,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
-"sTx" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/light_switch{
- pixel_x = 24;
- pixel_y = -24
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/ai_monitored/turret_protected/ai_upload)
"sTS" = (
/obj/effect/turf_decal/tile/green/fourcorners/contrasted,
/obj/structure/disposalpipe/segment{
@@ -65088,21 +65075,6 @@
},
/turf/open/floor/iron/white,
/area/science/mixing)
-"taV" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/turf/open/floor/iron,
-/area/engine/engineering)
"taZ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 4
@@ -65268,15 +65240,16 @@
},
/turf/open/floor/iron,
/area/ai_monitored/storage/eva)
-"tep" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+"tdu" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -22
},
-/obj/effect/turf_decal/siding/dark_blue{
- dir = 1
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
},
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
+/turf/open/floor/iron,
+/area/engine/engineering)
"tfc" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -65503,6 +65476,19 @@
},
/turf/open/floor/iron/cafeteria_red,
/area/crew_quarters/bar)
+"tiv" = (
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/machinery/rnd/production/protolathe/department/engineering,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/iron/dark/corner,
+/area/engine/storage_shared)
"tiS" = (
/obj/machinery/smartfridge/chemistry,
/turf/closed/wall/r_wall,
@@ -65730,18 +65716,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/dark,
/area/chapel/office)
-"tmr" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/siding/white/corner{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"tmK" = (
/obj/structure/table,
/obj/item/crowbar,
@@ -65769,18 +65743,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
-"tmR" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/tile/yellow/half/contrasted{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/iron,
-/area/engine/break_room)
"tmV" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -66026,21 +65988,6 @@
/obj/structure/disposaloutlet,
/turf/open/floor/engine,
/area/science/xenobiology)
-"tqn" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/siding/purple{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"tqy" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -66135,6 +66082,16 @@
},
/turf/open/floor/iron/dark,
/area/science/server)
+"tsq" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/siding/purple{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"tsr" = (
/obj/machinery/door/airlock/security/glass{
name = "Security E.V.A. Storage";
@@ -66385,24 +66342,6 @@
},
/turf/open/floor/iron/white,
/area/science/research)
-"txo" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/trimline/purple/filled/warning{
- dir = 8
- },
-/turf/open/floor/iron/white,
-/area/science/explab)
"txr" = (
/obj/structure/lattice/catwalk,
/obj/structure/transit_tube/junction/flipped{
@@ -66419,18 +66358,6 @@
},
/turf/open/space,
/area/space/nearstation)
-"txw" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp/green{
- pixel_x = 1;
- pixel_y = 5
- },
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = 30
- },
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/cult,
-/area/library)
"txI" = (
/obj/structure/girder,
/obj/structure/grille,
@@ -66454,6 +66381,25 @@
},
/turf/open/floor/plating,
/area/medical/chemistry)
+"tyK" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/holopad,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/yellow/corner{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"tyV" = (
/obj/machinery/firealarm{
dir = 4;
@@ -66502,14 +66448,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/exit/departure_lounge)
-"tAk" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/atmos)
"tAR" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -66535,6 +66473,15 @@
/mob/living/carbon/monkey,
/turf/open/floor/iron/freezer,
/area/medical/genetics)
+"tBl" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/tcommsat/server)
"tBB" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -66552,12 +66499,6 @@
/obj/machinery/atmospherics/components/unary/cryo_cell,
/turf/open/floor/iron,
/area/medical/patients_rooms)
-"tCo" = (
-/obj/effect/turf_decal/siding/purple{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"tCy" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -66639,6 +66580,17 @@
},
/turf/open/floor/engine,
/area/engine/supermatter)
+"tEl" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4;
+ pixel_x = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/science/storage)
"tEq" = (
/obj/structure/disposalpipe/segment{
dir = 5
@@ -66891,18 +66843,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"tIB" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/regular,
-/obj/item/reagent_containers/syringe,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -27
- },
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/security/brig)
"tIU" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -67044,19 +66984,9 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"tLY" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
+"tMi" = (
+/turf/open/floor/glass/reinforced,
+/area/medical/medbay/lobby)
"tMl" = (
/obj/structure/chair/office/light{
dir = 1
@@ -67110,6 +67040,24 @@
},
/turf/open/floor/carpet/grimy,
/area/chapel/office)
+"tNz" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4;
+ pixel_x = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/science/storage)
"tND" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -67387,18 +67335,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"tTY" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/siding/white{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"tUe" = (
/obj/machinery/light{
dir = 1
@@ -67496,24 +67432,6 @@
/obj/effect/spawner/room/fivexthree,
/turf/open/floor/plating,
/area/maintenance/department/medical/central)
-"tUQ" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/effect/turf_decal/siding/purple/corner{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"tUS" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
@@ -67678,6 +67596,41 @@
/obj/machinery/light,
/turf/open/floor/iron,
/area/hydroponics)
+"tYY" = (
+/obj/machinery/turretid{
+ control_area = "/area/ai_monitored/turret_protected/ai_upload";
+ icon_state = "control_stun";
+ name = "AI Upload turret control";
+ pixel_y = 28
+ },
+/obj/item/radio/intercom{
+ broadcasting = 1;
+ frequency = 1447;
+ name = "Private AI Channel";
+ pixel_x = -24;
+ pixel_y = 24
+ },
+/obj/effect/landmark/start/cyborg,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/ai_monitored/turret_protected/ai_upload_foyer";
+ name = "AI Upload Access APC";
+ pixel_y = -24
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the AI Upload.";
+ dir = 4;
+ name = "AI Upload Monitor";
+ network = list("aiupload");
+ pixel_x = -29
+ },
+/turf/open/floor/iron/dark,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
"tZv" = (
/obj/machinery/door/airlock/maintenance{
name = "Chapel Office Maintenance";
@@ -67695,21 +67648,33 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/plating,
/area/chapel/office)
-"tZG" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/iron/dark,
-/area/science/explab)
"tZR" = (
/obj/effect/turf_decal/siding/wood{
dir = 8
},
/turf/open/floor/wood,
/area/crew_quarters/heads/captain/private)
-"uaz" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
+"uan" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/turf/open/floor/iron,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/effect/turf_decal/trimline/purple/filled/line{
+ dir = 6
+ },
+/turf/open/floor/iron/white,
+/area/science/explab)
+"ube" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
/area/engine/break_room)
"ubt" = (
/obj/structure/cable/yellow{
@@ -67805,24 +67770,6 @@
},
/turf/open/floor/iron/dark,
/area/aisat)
-"ucJ" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/advanced_airlock_controller{
- pixel_y = 24
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/solars/starboard/aft)
"ucX" = (
/obj/item/trash/candy,
/obj/effect/decal/cleanable/dirt,
@@ -67941,15 +67888,18 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
-"ueQ" = (
-/obj/structure/cable{
- icon_state = "1-2"
+"ufu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
},
-/obj/effect/landmark/start/atmospheric_technician,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal/incinerator)
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"ufT" = (
/obj/machinery/photocopier,
/obj/machinery/power/apc{
@@ -68165,24 +68115,6 @@
/obj/effect/turf_decal/tile/blue,
/turf/open/floor/iron/dark,
/area/bridge)
-"uiS" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4;
- pixel_x = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron,
-/area/science/storage)
"uiY" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -68361,12 +68293,6 @@
/obj/item/hand_labeler,
/turf/open/floor/iron/techmaint,
/area/science/shuttledock)
-"ulJ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/iron/dark,
-/area/science/explab)
"ulL" = (
/obj/item/kirbyplants/random,
/obj/effect/turf_decal/tile/yellow/opposingcorners{
@@ -68614,14 +68540,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plating,
/area/engine/engineering)
-"uro" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 6
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"urp" = (
/obj/structure/closet/toolcloset,
/obj/effect/turf_decal/tile/yellow/half/contrasted{
@@ -68716,6 +68634,11 @@
},
/turf/open/floor/iron,
/area/medical/break_room)
+"utL" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
"utM" = (
/obj/structure/window/reinforced{
dir = 4
@@ -68942,6 +68865,15 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/storage/eva)
+"uyf" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/aug_manipulator,
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/science/robotics/lab)
"uyg" = (
/obj/machinery/power/apc/highcap/five_k{
areastring = "/area/ai_monitored/security/armory";
@@ -69070,12 +69002,6 @@
},
/turf/open/floor/iron/white,
/area/science/research)
-"uAy" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
"uAI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -69172,19 +69098,9 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/maintenance/starboard)
-"uBX" = (
-/obj/structure/table,
-/obj/item/folder/white{
- pixel_x = 4;
- pixel_y = -3
- },
-/obj/item/clothing/glasses/science,
-/obj/effect/turf_decal/tile/purple/half/contrasted{
- dir = 4
- },
-/obj/effect/turf_decal/siding/purple,
-/turf/open/floor/iron/white,
-/area/science/research)
+"uBV" = (
+/turf/open/space,
+/area/space/nearstation)
"uCb" = (
/obj/machinery/photocopier,
/obj/machinery/camera{
@@ -69262,6 +69178,33 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
/turf/open/floor/iron,
/area/engine/gravity_generator)
+"uEd" = (
+/obj/structure/table,
+/obj/item/stack/cable_coil,
+/obj/item/assembly/igniter{
+ pixel_x = -4;
+ pixel_y = -4
+ },
+/obj/item/screwdriver{
+ pixel_y = 16
+ },
+/obj/item/gps{
+ gpstag = "RD0"
+ },
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple,
+/turf/open/floor/iron/white,
+/area/science/research)
+"uEf" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "testlab";
+ name = "test chamber blast door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/science/explab)
"uEk" = (
/obj/machinery/suit_storage_unit/exploration,
/obj/structure/window/reinforced,
@@ -69289,12 +69232,6 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
-"uEN" = (
-/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"uEU" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -69331,6 +69268,16 @@
/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
/turf/open/floor/prison,
/area/security/prison)
+"uFV" = (
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/solar{
+ id = "aftstarboard";
+ name = "Aft-Starboard Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/starboard/aft)
"uFY" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
@@ -69339,26 +69286,6 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/turf/open/floor/carpet/green,
/area/library)
-"uHh" = (
-/obj/structure/table,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/obj/item/mmi,
-/obj/item/mmi{
- pixel_y = 4
- },
-/obj/item/mmi{
- pixel_y = 8
- },
-/turf/open/floor/iron/white/side{
- dir = 8
- },
-/area/science/robotics/lab)
"uHp" = (
/obj/machinery/light_switch{
pixel_x = 23;
@@ -69440,6 +69367,18 @@
},
/turf/open/floor/iron,
/area/maintenance/port/fore)
+"uJG" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/advanced_airlock_controller{
+ dir = 4;
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2,
+/turf/open/floor/catwalk_floor/iron,
+/area/maintenance/solars/port/aft)
"uJU" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -69562,6 +69501,14 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/medical)
+"uLK" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engineering)
"uMc" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/effect/turf_decal/bot,
@@ -69609,6 +69556,21 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/starboard/aft)
+"uNs" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/mob/living/simple_animal/bot/medbot{
+ auto_patrol = 1;
+ desc = "A little medical robot, officially part of the Nanotrasen medical inspectorate. He looks somewhat underwhelmed.";
+ name = "Inspector Johnson"
+ },
+/obj/effect/turf_decal/siding/dark_blue/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"uNB" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -69671,36 +69633,6 @@
},
/turf/open/floor/iron/dark/corner,
/area/hallway/primary/starboard)
-"uOp" = (
-/obj/machinery/power/apc{
- areastring = "/area/science/robotics/lab";
- dir = 1;
- name = "Robotics Lab APC";
- pixel_y = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/structure/table,
-/obj/item/paper_bin{
- pixel_x = -2;
- pixel_y = 4
- },
-/obj/item/assembly/prox_sensor{
- pixel_x = -8;
- pixel_y = 4
- },
-/obj/item/assembly/prox_sensor{
- pixel_x = -8;
- pixel_y = 4
- },
-/obj/effect/turf_decal/delivery,
-/obj/item/pen{
- pixel_x = -2;
- pixel_y = 6
- },
-/turf/open/floor/iron,
-/area/science/robotics/lab)
"uOs" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -69749,13 +69681,6 @@
},
/turf/open/floor/plating,
/area/science/xenobiology)
-"uPT" = (
-/obj/machinery/door/morgue{
- name = "Relic Closet";
- req_access_txt = "22"
- },
-/turf/open/floor/cult,
-/area/chapel/office)
"uPU" = (
/obj/machinery/door/poddoor/shutters/preopen{
id = "research_shutters";
@@ -69771,6 +69696,12 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron/white,
/area/science/lab)
+"uQa" = (
+/obj/effect/turf_decal/siding/yellow/corner{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"uQr" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -70270,14 +70201,6 @@
},
/turf/open/floor/iron/white,
/area/science/xenobiology)
-"vbz" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engineering)
"vbF" = (
/obj/effect/turf_decal/bot,
/obj/machinery/portable_atmospherics/scrubber,
@@ -70296,14 +70219,6 @@
},
/turf/open/floor/iron/dark,
/area/science/storage)
-"vbL" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/siding/purple/corner,
-/turf/open/floor/iron/white,
-/area/science/research)
"vcc" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -70339,6 +70254,23 @@
},
/turf/open/floor/iron,
/area/maintenance/starboard/secondary)
+"vcY" = (
+/obj/machinery/door/airlock/maintenance{
+ req_one_access_txt = "12;47"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "sci-maint-passthrough"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/science)
"vdt" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 1
@@ -70575,25 +70507,17 @@
},
/turf/open/floor/iron,
/area/vacant_room/commissary)
-"vho" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/light,
-/obj/structure/table/reinforced,
-/obj/item/clothing/glasses/science,
-/obj/item/clothing/glasses/science{
- pixel_y = 9
+"vhn" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/obj/item/xenoartifact_labeler{
- pixel_x = -5;
- pixel_y = 7
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/siding/yellow{
+ dir = 4
},
-/obj/item/clothing/gloves/artifact_pinchers,
-/obj/item/clothing/gloves/artifact_pinchers,
-/obj/item/xenoartifact_labeler,
-/turf/open/floor/iron/dark,
-/area/science/explab)
+/turf/open/floor/iron,
+/area/engine/break_room)
"vhy" = (
/obj/effect/turf_decal/plaque{
icon_state = "L3"
@@ -70703,16 +70627,10 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/heads/chief)
-"vjZ" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engineering)
+"vkc" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/engine,
+/area/science/explab)
"vkd" = (
/obj/structure/closet/emcloset,
/turf/open/floor/iron,
@@ -70759,6 +70677,18 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/teleporter)
+"vkN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal/incinerator)
"vlu" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -70790,18 +70720,6 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
-"vlM" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/machinery/button/door{
- id = "robotics_shutters";
- name = "robotics shutters control";
- pixel_x = -26;
- pixel_y = 26;
- req_access_txt = "29"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/iron,
-/area/science/robotics/lab)
"vlO" = (
/obj/effect/turf_decal/tile/red/anticorner/contrasted{
dir = 8
@@ -71138,6 +71056,16 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/hallway/primary/central)
+"vrw" = (
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/solar{
+ id = "aftstarboard";
+ name = "Aft-Starboard Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/starboard/aft)
"vrF" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -71176,6 +71104,13 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
+"vsg" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/space,
+/area/space/nearstation)
"vsi" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/effect/decal/cleanable/dirt,
@@ -71324,6 +71259,12 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/security/brig)
+"vuv" = (
+/obj/effect/spawner/randomvend/cola,
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/science/research)
"vuX" = (
/obj/machinery/computer/atmos_alert,
/obj/effect/turf_decal/tile/brown/half/contrasted{
@@ -71403,6 +71344,14 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/storage/tech)
+"vwj" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"vwr" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -71489,6 +71438,21 @@
},
/turf/open/floor/iron,
/area/security/prison)
+"vxn" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/purple/filled/warning{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/science/explab)
"vxo" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -71529,6 +71493,15 @@
},
/turf/open/floor/iron,
/area/crew_quarters/locker)
+"vxJ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/delivery,
+/obj/structure/sign/warning/nosmoking{
+ pixel_x = -28
+ },
+/obj/structure/closet/radiation,
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"vyk" = (
/obj/machinery/camera{
c_tag = "Arrivals - Aft Arm - Far";
@@ -71872,10 +71845,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/heads/chief)
-"vFC" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron/dark/smooth_large,
-/area/maintenance/disposal/incinerator)
"vFE" = (
/obj/structure/table/reinforced,
/obj/item/paper_bin,
@@ -71920,17 +71889,22 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron/dark,
/area/medical/morgue)
-"vGx" = (
+"vGy" = (
/obj/structure/cable/yellow{
- icon_state = "2-8"
+ icon_state = "4-8"
},
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/obj/structure/sign/warning/deathsposal{
+ pixel_y = 32
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/ai_monitored/turret_protected/ai_upload)
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"vGI" = (
/obj/structure/chair{
dir = 8;
@@ -72129,13 +72103,10 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/dark/corner,
/area/hallway/primary/starboard)
-"vKM" = (
-/obj/structure/chair,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/engine/break_room)
+"vKV" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/tcommsat/server)
"vKY" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -72161,10 +72132,6 @@
},
/turf/open/floor/iron,
/area/security/courtroom)
-"vLq" = (
-/obj/item/kirbyplants/random,
-/turf/open/floor/iron,
-/area/engine/break_room)
"vLs" = (
/obj/machinery/ai_slipper{
uses = 10
@@ -72308,14 +72275,6 @@
},
/turf/open/floor/iron,
/area/maintenance/fore)
-"vNb" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engineering)
"vNe" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -72460,6 +72419,16 @@
},
/turf/open/floor/iron/dark/corner,
/area/engine/storage_shared)
+"vPH" = (
+/obj/machinery/door/airlock/public/glass{
+ name = "Holodeck Door"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "holodeck"
+ },
+/turf/open/floor/iron,
+/area/crew_quarters/fitness/recreation)
"vQr" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -72588,6 +72557,10 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/crew_quarters/fitness/recreation)
+"vTs" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/maintenance/starboard/secondary)
"vTv" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -72728,41 +72701,6 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron/dark,
/area/maintenance/department/science)
-"vVU" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/flasher{
- id = "secentranceflasher";
- pixel_x = 25
- },
-/obj/machinery/door/airlock/security/glass{
- id_tag = "outerbrig";
- name = "Brig";
- req_access_txt = "63"
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 4
- },
-/obj/machinery/door/poddoor/preopen{
- id = "Secure Gate";
- name = "Brig Blast door"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
- cycle_id = "brig-entrance"
- },
-/turf/open/floor/iron,
-/area/security/brig)
"vVW" = (
/obj/structure/rack,
/obj/effect/turf_decal/bot{
@@ -72825,6 +72763,17 @@
},
/turf/open/floor/wood,
/area/bridge/showroom/corporate)
+"vXi" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/caution{
+ dir = 1
+ },
+/obj/effect/landmark/xeno_spawn,
+/obj/item/radio/intercom{
+ pixel_y = 21
+ },
+/turf/open/floor/engine,
+/area/science/explab)
"vXq" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -73122,6 +73071,15 @@
/obj/item/book/manual/wiki/sopservice,
/turf/open/floor/iron,
/area/hallway/secondary/service)
+"wdQ" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"wdT" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -73175,20 +73133,6 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/security/main)
-"weI" = (
-/obj/structure/table,
-/obj/item/stack/sheet/glass,
-/obj/item/electronics/airlock,
-/obj/item/assembly/timer{
- pixel_x = -4;
- pixel_y = 2
- },
-/obj/effect/turf_decal/tile/purple/half/contrasted{
- dir = 4
- },
-/obj/effect/turf_decal/siding/purple,
-/turf/open/floor/iron/white,
-/area/science/research)
"weN" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -73324,6 +73268,16 @@
/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
/turf/open/floor/iron,
/area/security/main)
+"wgH" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/dark_blue/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"wgX" = (
/obj/machinery/camera{
c_tag = "Xenobiology Lab - Fore";
@@ -73359,6 +73313,18 @@
},
/turf/open/floor/iron,
/area/crew_quarters/fitness/recreation)
+"whk" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/dark_blue/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"whR" = (
/obj/structure/table,
/obj/item/clothing/gloves/color/fyellow,
@@ -73574,6 +73540,34 @@
},
/turf/open/floor/plating,
/area/maintenance/port/fore)
+"wlR" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/door/airlock/research{
+ name = "Xenobiology Lab";
+ req_access_txt = "55"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "xeno_blastdoor";
+ name = "Secure Lab Shutters"
+ },
+/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "sci-maint-passthrough"
+ },
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"wmI" = (
/obj/structure/disposalpipe/segment{
dir = 6
@@ -73925,6 +73919,12 @@
"wsV" = (
/turf/closed/wall/r_wall,
/area/medical/chemistry)
+"wto" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/science/explab)
"wtq" = (
/turf/closed/wall,
/area/maintenance/aft/secondary)
@@ -73944,6 +73944,13 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/maintenance/port/fore)
+"wtF" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 5
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
"wtK" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -74150,6 +74157,13 @@
},
/turf/open/floor/iron,
/area/science/shuttledock)
+"wxD" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 10
+ },
+/turf/open/space,
+/area/space/nearstation)
"wxI" = (
/obj/structure/cable/yellow{
icon_state = "2-4"
@@ -74372,6 +74386,23 @@
},
/turf/open/floor/engine,
/area/engine/supermatter)
+"wAW" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/structure/table/reinforced,
+/obj/item/storage/firstaid/regular,
+/obj/item/clothing/neck/stethoscope,
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/turf/open/floor/iron/dark,
+/area/science/explab)
"wAX" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -74383,6 +74414,20 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/secondary)
+"wBJ" = (
+/obj/structure/window/reinforced,
+/obj/machinery/modular_fabricator/autolathe,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/engine/storage_shared)
+"wBO" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white,
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"wBW" = (
/obj/structure/table,
/obj/item/stock_parts/subspace/treatment,
@@ -74506,6 +74551,30 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
/turf/open/floor/circuit,
/area/science/robotics/mechbay)
+"wDD" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/command{
+ name = "Corporate Showroom";
+ req_access_txt = "19";
+ security_level = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/siding/wood/end{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "showroom"
+ },
+/turf/open/floor/wood,
+/area/bridge/showroom/corporate)
"wDQ" = (
/obj/machinery/firealarm{
pixel_y = 32
@@ -74562,12 +74631,6 @@
/obj/effect/turf_decal/siding/wood,
/turf/open/floor/wood,
/area/crew_quarters/heads/captain/private)
-"wEE" = (
-/obj/effect/turf_decal/siding/yellow/corner{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"wFH" = (
/obj/structure/grille,
/obj/effect/landmark/blobstart,
@@ -74687,6 +74750,14 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/turf/open/floor/plating,
/area/maintenance/port)
+"wIz" = (
+/obj/structure/cable,
+/obj/machinery/power/solar{
+ id = "foreport";
+ name = "Fore-Port Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/port/fore)
"wIB" = (
/obj/effect/turf_decal/tile/white/half/contrasted,
/obj/effect/turf_decal/tile/yellow{
@@ -74703,6 +74774,13 @@
},
/turf/open/floor/iron,
/area/medical/chemistry)
+"wII" = (
+/obj/effect/landmark/event_spawn,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"wIV" = (
/obj/effect/turf_decal/tile/blue/half/contrasted,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
@@ -74710,6 +74788,23 @@
},
/turf/open/floor/iron/white,
/area/medical/genetics/cloning)
+"wJa" = (
+/obj/structure/cable/white{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Atmos to Loop"
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"wJg" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -74876,21 +74971,6 @@
},
/turf/open/floor/iron,
/area/medical/patients_rooms)
-"wLK" = (
-/obj/machinery/door/airlock/maintenance{
- req_one_access_txt = "49;47;12"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
- cycle_id = "sci-maint-passthrough"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/science)
"wLL" = (
/obj/effect/turf_decal/plaque{
icon_state = "L5"
@@ -75217,6 +75297,12 @@
},
/turf/open/floor/plating,
/area/chapel/main)
+"wQo" = (
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"wQy" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
/turf/open/floor/iron/dark,
@@ -75418,16 +75504,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/security/execution/education)
-"wVv" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/siding/white/corner,
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"wVw" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -75562,22 +75638,18 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"wXM" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+"wXJ" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = 30
},
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/atmos)
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/cult,
+/area/library)
"wXO" = (
/obj/machinery/door/poddoor/preopen{
id = "xenobio1";
@@ -75602,14 +75674,6 @@
},
/turf/open/floor/wood,
/area/library)
-"wXX" = (
-/obj/structure/table/reinforced,
-/obj/item/book/manual/wiki/surgery,
-/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
- dir = 8
- },
-/turf/open/floor/iron/white,
-/area/medical/surgery)
"wYc" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -75672,12 +75736,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/plating,
/area/maintenance/starboard)
-"wZO" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/iron/dark,
-/area/science/explab)
"wZQ" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -75706,6 +75764,15 @@
/obj/item/canvas/twentythree_twentythree,
/turf/open/floor/iron,
/area/storage/art)
+"xan" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/table,
+/obj/item/borg/upgrade/rename,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/science/robotics/lab)
"xaq" = (
/obj/structure/flora/junglebush/b,
/obj/structure/window/reinforced,
@@ -75899,6 +75966,13 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron,
/area/medical/chemistry)
+"xeD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"xeI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -76005,6 +76079,12 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/dark,
/area/medical/medbay/central)
+"xgB" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"xgP" = (
/obj/item/radio/intercom{
pixel_y = 20
@@ -76177,18 +76257,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/maintenance/port)
-"xiJ" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/siding/white/corner{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"xiL" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -76358,13 +76426,6 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/aft)
-"xls" = (
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 5
- },
-/turf/open/space/basic,
-/area/space/nearstation)
"xlH" = (
/obj/structure/grille,
/obj/structure/lattice,
@@ -76516,6 +76577,13 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
+"xnJ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/delivery,
+/obj/structure/window/reinforced,
+/obj/structure/closet/secure_closet/atmospherics,
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"xnK" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/machinery/airalarm{
@@ -76695,18 +76763,6 @@
},
/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/ai)
-"xqQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/atmos)
"xqS" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 27
@@ -76774,6 +76830,16 @@
/obj/machinery/vending/wardrobe/det_wardrobe,
/turf/open/floor/carpet/grimy,
/area/security/detectives_office)
+"xsg" = (
+/obj/structure/table/wood,
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/obj/item/folder,
+/obj/item/folder,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/turf/open/floor/cult,
+/area/library)
"xsh" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -76799,14 +76865,6 @@
},
/turf/open/floor/iron,
/area/maintenance/port)
-"xsn" = (
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/iron,
-/area/engine/storage_shared)
"xsB" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
@@ -76854,6 +76912,18 @@
},
/turf/open/floor/iron,
/area/engine/gravity_generator)
+"xts" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 6
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/tcommsat/server)
"xty" = (
/obj/item/cigbutt,
/obj/structure/cable/yellow{
@@ -76865,6 +76935,13 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/plating,
/area/maintenance/starboard)
+"xtU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"xtX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -76928,19 +77005,6 @@
},
/turf/open/floor/iron,
/area/science/robotics/mechbay)
-"xuG" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/engine/engineering)
"xuR" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -77162,16 +77226,6 @@
},
/turf/open/floor/iron/dark,
/area/medical/morgue)
-"xzk" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/power/solar{
- id = "foreport";
- name = "Fore-Port Solar Array"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/port/fore)
"xzs" = (
/obj/machinery/firealarm/directional/west,
/obj/effect/turf_decal/delivery,
@@ -77280,6 +77334,14 @@
},
/turf/open/floor/iron,
/area/engine/break_room)
+"xAE" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal/incinerator)
"xAI" = (
/obj/machinery/light{
dir = 1
@@ -77344,6 +77406,16 @@
/obj/effect/turf_decal/tile/red,
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"xCg" = (
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/trimline/purple/filled/line{
+ dir = 10
+ },
+/obj/machinery/requests_console{
+ pixel_x = -32
+ },
+/turf/open/floor/iron/white,
+/area/science/explab)
"xCh" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
@@ -77413,23 +77485,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron/white,
/area/science/xenobiology)
-"xDI" = (
-/obj/structure/table,
-/obj/structure/window/reinforced{
- dir = 1;
- pixel_y = 1
- },
-/obj/item/storage/box/bodybags{
- pixel_y = 2
- },
-/obj/item/clothing/gloves/color/latex,
-/obj/item/razor{
- pixel_y = 5
- },
-/turf/open/floor/iron/white/side{
- dir = 4
- },
-/area/science/robotics/lab)
"xDR" = (
/obj/structure/disposalpipe/segment{
dir = 6
@@ -77497,6 +77552,17 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai)
+"xFt" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/blobstart,
+/turf/open/floor/plating,
+/area/maintenance/starboard/secondary)
"xFu" = (
/obj/structure/disposalpipe/segment{
dir = 9
@@ -77585,6 +77651,18 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron/dark,
/area/maintenance/department/science)
+"xHh" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"xHo" = (
/obj/structure/chair/fancy/comfy{
dir = 8
@@ -77761,13 +77839,6 @@
},
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"xJx" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 5
- },
-/turf/open/space/basic,
-/area/space/nearstation)
"xJM" = (
/obj/machinery/suit_storage_unit/standard_unit,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -77781,34 +77852,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/maintenance/aft)
-"xKC" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/table,
-/obj/item/reagent_containers/glass/bottle/epinephrine{
- pixel_x = 7;
- pixel_y = -3
- },
-/obj/item/reagent_containers/glass/bottle/charcoal{
- pixel_x = -4;
- pixel_y = -3
- },
-/obj/item/reagent_containers/syringe/epinephrine{
- pixel_x = 3;
- pixel_y = -2
- },
-/obj/item/reagent_containers/dropper,
-/obj/item/reagent_containers/glass/beaker{
- pixel_x = 8;
- pixel_y = 2
- },
-/obj/effect/turf_decal/tile/blue/half/contrasted{
- dir = 4
- },
-/obj/effect/turf_decal/siding/dark_blue,
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
"xLb" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -77821,13 +77864,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/engine/break_room)
-"xLz" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 10
- },
-/turf/open/space/basic,
-/area/space/nearstation)
"xLI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -78013,9 +78049,6 @@
},
/turf/open/floor/iron,
/area/science/robotics/mechbay)
-"xNL" = (
-/turf/open/floor/cult,
-/area/library)
"xNM" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -78047,17 +78080,6 @@
dir = 1
},
/area/hallway/primary/starboard)
-"xOA" = (
-/obj/structure/rack,
-/obj/item/storage/toolbox/mechanical{
- pixel_x = -2;
- pixel_y = -1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/iron/dark,
-/area/science/explab)
"xOG" = (
/turf/closed/wall,
/area/medical/virology)
@@ -78189,21 +78211,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/dark,
/area/security/brig)
-"xPL" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/atmos)
"xPP" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -78345,6 +78352,27 @@
},
/turf/open/floor/iron/dark,
/area/aisat)
+"xSc" = (
+/obj/machinery/computer/turbine_computer{
+ dir = 1;
+ id = "incineratorturbine"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/machinery/button/door/incinerator_vent_atmos_aux{
+ pixel_x = 24;
+ pixel_y = 8
+ },
+/obj/machinery/button/door/incinerator_vent_atmos_main{
+ pixel_x = 24;
+ pixel_y = -8
+ },
+/obj/machinery/button/ignition/incinerator/atmos{
+ pixel_x = 38;
+ pixel_y = -7
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"xSh" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 4
@@ -78478,6 +78506,14 @@
},
/turf/open/floor/iron/dark,
/area/maintenance/department/science)
+"xWi" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"xWn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 10
@@ -78652,22 +78688,6 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/hallway/secondary/command)
-"xZn" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/dark/visible,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/light_switch{
- pixel_x = -24;
- pixel_y = 8
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal/incinerator)
"xZv" = (
/obj/effect/turf_decal/trimline/blue/filled/line{
dir = 8
@@ -78878,6 +78898,16 @@
},
/turf/open/floor/iron,
/area/quartermaster/storage)
+"yeg" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/dark_blue{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"yen" = (
/obj/structure/table,
/obj/structure/cable/yellow{
@@ -78931,13 +78961,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/command)
-"yeV" = (
-/obj/effect/landmark/event_spawn,
-/obj/effect/turf_decal/siding/white{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"yeX" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -78998,6 +79021,16 @@
},
/turf/open/floor/iron/grid/steel,
/area/science/shuttledock)
+"ygn" = (
+/obj/structure/sign/warning/fire{
+ pixel_x = 32
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/binary/pump{
+ name = "Fuel Pipe to Incinerator"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"ygo" = (
/obj/effect/landmark/xeno_spawn,
/obj/machinery/light/small,
@@ -79167,19 +79200,6 @@
/obj/machinery/telecomms/bus/preset_exploration,
/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
-"yiI" = (
-/obj/machinery/requests_console{
- department = "Science";
- departmentType = 2;
- name = "Science Requests Console";
- pixel_x = -30;
- receive_ore_updates = 1
- },
-/obj/effect/turf_decal/trimline/purple/filled/line{
- dir = 8
- },
-/turf/open/floor/iron/white,
-/area/science/explab)
"yji" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -79198,6 +79218,12 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/patients_rooms)
+"yjl" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/machinery/portable_atmospherics/canister,
+/turf/open/floor/iron/dark/smooth_large,
+/area/maintenance/disposal/incinerator)
"yjy" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -90059,7 +90085,7 @@ aDb
tNJ
cXv
fOr
-dkr
+lfO
djC
aaa
aaa
@@ -90069,7 +90095,7 @@ aaa
aaa
aaa
aRW
-lIm
+pTW
oTr
jtl
lCP
@@ -91644,17 +91670,17 @@ aaa
anT
aaa
aaa
-kfd
+btN
cvd
-sKf
+bSb
aaf
-kfd
+btN
cvd
-sKf
+bSb
aaf
-kfd
+btN
cvd
-sKf
+bSb
aaa
aaf
aaa
@@ -91858,7 +91884,7 @@ aDb
jRt
cXv
fOr
-dkr
+lfO
djC
aaa
aaa
@@ -91868,7 +91894,7 @@ aaa
aaa
aaa
aRW
-lIm
+pTW
oTr
jtl
uZB
@@ -91901,17 +91927,17 @@ aaa
anT
aaf
aaf
-kfd
+btN
cve
-sKf
+bSb
aaf
-kfd
+btN
cve
-sKf
+bSb
aaa
-kfd
+btN
cve
-sKf
+bSb
aaa
aaa
aaa
@@ -92158,17 +92184,17 @@ aaa
anT
aaa
aaf
-kfd
+btN
cve
-sKf
+bSb
aaf
-kfd
+btN
cve
-sKf
+bSb
aaf
-kfd
+btN
cve
-sKf
+bSb
aaa
aaf
aaa
@@ -92415,17 +92441,17 @@ aaa
aaa
aaa
aaa
-kfd
+btN
cve
-sKf
+bSb
aaa
-kfd
+btN
cve
-sKf
+bSb
aaa
-kfd
+btN
cve
-sKf
+bSb
aaf
aaf
aaa
@@ -92672,17 +92698,17 @@ anT
aaa
aaa
aaa
-kfd
+btN
cve
-sKf
+bSb
aaf
-kfd
+btN
cve
-sKf
+bSb
aaf
-kfd
+btN
cve
-sKf
+bSb
aaa
aaf
aaa
@@ -93175,7 +93201,7 @@ kjs
gve
lGA
kKX
-bid
+uJG
jyQ
jkj
jkj
@@ -93700,17 +93726,17 @@ anT
aaa
aaa
aaa
-kfd
+btN
cvh
-sKf
+bSb
aaf
-kfd
+btN
cvh
-sKf
+bSb
aaf
-kfd
+btN
cvh
-sKf
+bSb
aaa
aaa
aaa
@@ -93957,17 +93983,17 @@ cJh
cJh
aaa
aaf
-kfd
+btN
cvh
-sKf
+bSb
aaa
-kfd
+btN
cvh
-sKf
+bSb
aaf
-kfd
+btN
cvh
-sKf
+bSb
aaa
anT
aaa
@@ -94214,17 +94240,17 @@ aup
cJh
aaa
aaf
-kfd
+btN
cvh
-sKf
+bSb
aaf
-kfd
+btN
cvh
-sKf
+bSb
aaf
-kfd
+btN
cvh
-sKf
+bSb
aaf
aai
aaa
@@ -94471,17 +94497,17 @@ bXE
cJh
aaa
aaf
-kfd
+btN
cvh
-sKf
+bSb
aaa
-kfd
+btN
cvh
-sKf
+bSb
aaa
-kfd
+btN
cvh
-sKf
+bSb
aaa
aaf
aaa
@@ -94728,17 +94754,17 @@ bXE
cJh
aaa
aaa
-kfd
+btN
cvi
-sKf
+bSb
aaf
-kfd
+btN
cvi
-sKf
+bSb
aaf
-kfd
+btN
cvi
-sKf
+bSb
aaa
anT
aaf
@@ -94884,17 +94910,17 @@ aaa
aaa
aaj
aaa
-xzk
+snQ
aan
-qNU
+wIz
aaa
-xzk
+snQ
aan
-qNU
+wIz
aaa
-xzk
+snQ
aan
-qNU
+wIz
aaf
aag
aaf
@@ -95141,17 +95167,17 @@ aaa
aaa
aag
aaf
-xzk
+snQ
aao
-qNU
+wIz
aaa
-xzk
+snQ
aao
-qNU
+wIz
aaa
-xzk
+snQ
aao
-qNU
+wIz
aaf
aaf
aaf
@@ -95398,17 +95424,17 @@ aaa
aaf
aag
aaf
-xzk
+snQ
aao
-qNU
+wIz
aaf
-xzk
+snQ
aao
-qNU
+wIz
aaf
-xzk
+snQ
aao
-qNU
+wIz
aaf
aaa
aaf
@@ -95655,17 +95681,17 @@ aaa
aaf
aaa
aaa
-xzk
+snQ
aao
-qNU
+wIz
aaa
-xzk
+snQ
aao
-qNU
+wIz
aaa
-xzk
+snQ
aao
-qNU
+wIz
aaf
aaa
aaf
@@ -95757,9 +95783,9 @@ dux
wLx
cia
wZm
-wXX
-cKe
-elb
+hMK
+gaE
+qUk
sVF
cia
sSr
@@ -95912,17 +95938,17 @@ aag
aaj
aaa
aaa
-xzk
+snQ
aao
-qNU
+wIz
aaa
-xzk
+snQ
aao
-qNU
+wIz
aaa
-xzk
+snQ
aao
-qNU
+wIz
aaf
aaf
aaf
@@ -96493,7 +96519,7 @@ biD
bkg
bme
fRZ
-cbC
+fJH
tMI
dod
bvW
@@ -96940,17 +96966,17 @@ aaj
aaj
aaa
aaf
-xzk
+snQ
aas
-qNU
+wIz
aaa
-xzk
+snQ
aas
-qNU
+wIz
aaa
-xzk
+snQ
aas
-qNU
+wIz
aaa
aaf
aaa
@@ -97197,17 +97223,17 @@ aaa
aaa
aaa
aaa
-xzk
+snQ
aas
-qNU
+wIz
aaf
-xzk
+snQ
aas
-qNU
+wIz
aaa
-xzk
+snQ
aas
-qNU
+wIz
aaa
aaf
aaa
@@ -97454,17 +97480,17 @@ aaa
aaa
aag
aaf
-xzk
+snQ
aas
-qNU
+wIz
aaa
-xzk
+snQ
aas
-qNU
+wIz
aaf
-xzk
+snQ
aas
-qNU
+wIz
aaf
aaf
aaf
@@ -97582,7 +97608,7 @@ avr
sxv
fSO
yhE
-gOw
+ePp
iOR
ack
ack
@@ -97711,17 +97737,17 @@ aaa
aaa
aai
aaf
-xzk
+snQ
aas
-qNU
+wIz
aaf
-xzk
+snQ
aas
-qNU
+wIz
aaa
-xzk
+snQ
aas
-qNU
+wIz
aaa
aaf
aaa
@@ -97968,17 +97994,17 @@ aaa
aaa
aaj
aaa
-xzk
+snQ
aat
-qNU
+wIz
aaa
-xzk
+snQ
aat
-qNU
+wIz
aaa
-xzk
+snQ
aat
-qNU
+wIz
aaa
aaf
aaa
@@ -99388,7 +99414,7 @@ cPB
cPZ
cQT
cMI
-qCK
+mDH
cPA
aaa
aaa
@@ -99645,7 +99671,7 @@ cPC
djX
cPC
cMI
-lbV
+epE
cMI
aaa
aaa
@@ -100094,9 +100120,9 @@ lhn
tnN
bsH
bue
-txw
-xNL
-qgP
+wXJ
+lep
+kea
lAz
bwc
kOK
@@ -100351,8 +100377,8 @@ hJL
bql
tMI
bue
-pJf
-spf
+ofn
+rGb
bue
pAL
bwc
@@ -100865,9 +100891,9 @@ hJL
bqw
tMI
bue
-jmL
-xNL
-gNK
+kRA
+lep
+ibD
lAz
dCX
kOK
@@ -101122,8 +101148,8 @@ fRZ
bqw
tMI
bue
-cDO
-spf
+xsg
+rGb
bue
opm
bwc
@@ -101434,7 +101460,7 @@ cCe
sub
kbc
cLa
-uPT
+fLC
cLa
cLa
cLa
@@ -101691,7 +101717,7 @@ cCe
eEV
jRz
cLa
-gsb
+lyj
cLa
oUI
cOh
@@ -103130,7 +103156,7 @@ acm
uAd
tbE
adm
-gBX
+sos
aeg
cZX
aaZ
@@ -103969,9 +103995,9 @@ aZa
jfB
bSS
bSS
-jXp
-nwq
-hwa
+rJa
+odm
+whk
vXT
nOZ
idd
@@ -104226,9 +104252,9 @@ aYX
sST
ooE
frP
-oiw
-alV
-tep
+hrN
+tMi
+sRD
eFh
trD
pOu
@@ -104447,7 +104473,7 @@ sIq
aPu
aRT
aJS
-hkj
+tYY
aUx
xiW
ehJ
@@ -104483,9 +104509,9 @@ aYX
iov
bXN
mdh
-xKC
-alV
-tep
+bHJ
+tMi
+sRD
lQG
wsV
wsV
@@ -104528,7 +104554,7 @@ lHx
kJe
tcZ
clT
-bkY
+mze
kzn
aaa
aaa
@@ -104701,10 +104727,10 @@ aLs
aMH
aOc
gGB
-vGx
-sTx
-fPe
-drY
+pWh
+eHS
+lLf
+bAZ
iLv
xHH
qNF
@@ -104740,9 +104766,9 @@ wXy
isj
bXN
frP
-dZq
-alV
-fFQ
+gkC
+tMi
+rFh
pWm
wsV
wsV
@@ -104776,11 +104802,11 @@ gqY
cKw
cLm
cLm
-iOD
-pyD
-pyD
-pyD
-efe
+qKa
+bAi
+bAi
+bAi
+rke
cLm
cMf
kMl
@@ -104961,7 +104987,7 @@ pNT
aMH
aRV
aJS
-dcv
+qQS
aUx
bDf
aYX
@@ -104997,9 +105023,9 @@ dCE
mLB
ttR
msp
-jEs
-keh
-mJA
+wgH
+mgK
+uNs
jKj
wsV
fHf
@@ -105033,16 +105059,16 @@ oju
cKw
fOM
cLm
-iug
-daj
-daj
-daj
-hPX
+gaF
+peq
+peq
+peq
+ruP
cLm
cQo
pPd
clT
-mEU
+slv
kzn
aaa
aaa
@@ -105186,7 +105212,7 @@ aaa
lMJ
ajm
wdz
-tIB
+kTH
lTw
hbB
xfg
@@ -105254,9 +105280,9 @@ aYX
ukx
bXN
chG
-cXB
-kDy
-pVo
+hLe
+mPw
+eDT
wlF
wsV
hVo
@@ -105290,11 +105316,11 @@ cPb
xjk
xvp
cLm
-iug
-daj
-daj
-daj
-yeV
+gaF
+peq
+peq
+peq
+wII
cLm
cMf
kMl
@@ -105511,9 +105537,9 @@ aYX
ukx
bXN
frP
-auh
-alV
-hpB
+pmN
+tMi
+yeg
jgw
eng
hcg
@@ -105547,11 +105573,11 @@ tfZ
vQr
cLr
cMe
-olB
-iEj
-iEj
-iEj
-tmr
+xHh
+cqi
+cqi
+cqi
+dFt
cPT
cMf
kMl
@@ -105768,9 +105794,9 @@ aYX
ukx
bXQ
mdh
-jOb
-alV
-rBA
+leO
+tMi
+oJb
oIR
mVY
acB
@@ -105959,7 +105985,7 @@ ajm
rrR
tpo
dEf
-epj
+cTU
aqa
aqa
aqa
@@ -106019,15 +106045,15 @@ bNc
dUr
pxk
dwv
-hpW
+lIc
bVm
bVe
xIO
bXN
frP
-ehv
-alV
-rBA
+kml
+tMi
+oJb
aAv
tiS
rrO
@@ -106051,7 +106077,7 @@ mYS
ydT
ctB
avd
-pNF
+fbm
ctB
lKn
ctB
@@ -106061,11 +106087,11 @@ oYA
gQQ
cLr
cMg
-wVv
-tTY
-tTY
-tTY
-xiJ
+cNu
+oMW
+oMW
+oMW
+cwb
fGz
cMf
kMl
@@ -106307,7 +106333,7 @@ ctB
nBf
ctB
ctB
-kYQ
+dkJ
erP
ctB
ctD
@@ -106318,11 +106344,11 @@ cPb
qrx
cLr
cLm
-iug
-daj
-daj
-daj
-hPX
+gaF
+peq
+peq
+peq
+ruP
cLm
cMf
kMl
@@ -106575,16 +106601,16 @@ keQ
kKl
cLr
cLm
-mmN
-daj
-daj
-daj
-hPX
+wBO
+peq
+peq
+peq
+ruP
cLm
cQp
pPd
clT
-jPp
+iNO
kzn
cYJ
aaa
@@ -106785,7 +106811,7 @@ vpq
nWm
ppx
ryD
-qBJ
+wDD
hrL
oxR
bQk
@@ -106832,11 +106858,11 @@ uWb
mjk
cLt
cMi
-iEw
-gAz
-bmo
-kDj
-blc
+bRW
+siM
+pCn
+xgB
+eBQ
cLm
cMf
kMl
@@ -107089,16 +107115,16 @@ hkS
bUQ
gdm
fSY
-jaY
+pzs
wOa
-tLY
+jGR
lMf
dvF
dWV
fNG
mCA
clT
-fjB
+kZz
kzn
aaa
aaa
@@ -107311,7 +107337,7 @@ xeU
raU
bZi
bZk
-gOE
+mdQ
kjw
bZj
cgd
@@ -107561,15 +107587,15 @@ bNi
rLS
bes
bqF
-hpW
+lIc
bVm
bVk
ljM
bXV
bZj
-gVf
-aHu
-tCo
+kDZ
+lDD
+goW
qpE
cgd
chi
@@ -107596,10 +107622,10 @@ cDa
kdt
cCq
cGa
-cEH
+cGV
cHP
-xDI
-iwc
+dNs
+gIE
cCq
jAk
cPb
@@ -107824,9 +107850,9 @@ aYX
ukx
bXW
bZk
-uBX
-aHu
-tCo
+cFX
+lDD
+goW
kaJ
cgd
chj
@@ -107849,9 +107875,9 @@ cwH
lKP
cBg
cCo
-vlM
+lfZ
wCo
-oWR
+cFd
cGb
cGb
cHQ
@@ -108081,9 +108107,9 @@ aYX
ukx
bXV
bZj
-njX
-aHu
-olZ
+kSn
+lDD
+qVh
dUd
cgd
chk
@@ -108285,10 +108311,10 @@ jKa
ulX
awq
vlO
-pPT
+jMB
uWw
hUy
-pmo
+svW
aDC
tSN
aDC
@@ -108338,9 +108364,9 @@ aYX
ukx
bXV
bZl
-dnx
-pNE
-ntI
+lmu
+dQl
+mEq
vMh
cge
chk
@@ -108369,8 +108395,8 @@ cFf
cFg
cFh
cHR
-uHh
-nQx
+pfq
+uyf
cCq
eXK
cPb
@@ -108595,9 +108621,9 @@ bVl
sGO
bXY
bZm
-vbL
-kZp
-gCH
+kyt
+tsq
+jpI
rGL
nuG
rzX
@@ -108799,10 +108825,10 @@ atT
jbZ
fVz
oQQ
-jji
+fwY
lbR
qye
-vVU
+chy
pqW
juP
fXK
@@ -108852,9 +108878,9 @@ wXy
tgr
bXV
bZj
-axN
-aHu
-eZH
+nPx
+lDD
+qKn
eAv
uPU
chm
@@ -108883,7 +108909,7 @@ cFh
cFg
cFf
cHR
-pyS
+xan
cJM
cCq
iTt
@@ -109109,9 +109135,9 @@ dCE
grR
bXV
bZk
-hNj
-aHu
-tqn
+uEd
+lDD
+rSd
rZv
cgg
cgd
@@ -109134,7 +109160,7 @@ czm
cAq
cBk
cDi
-uOp
+lvG
rqt
quh
qjd
@@ -109366,9 +109392,9 @@ aYX
seF
jOZ
bZj
-weI
-aHu
-tqn
+pzy
+lDD
+rSd
eAv
cgh
jrP
@@ -109395,7 +109421,7 @@ cQD
cEo
hFt
cGf
-fcG
+mMn
fOw
oKQ
cJN
@@ -109623,9 +109649,9 @@ goB
dcH
bSS
bZn
-rjw
-hPk
-tUQ
+dwB
+rhM
+lMw
qEV
wqe
hgy
@@ -110444,10 +110470,10 @@ fhJ
cUY
fZY
mXo
-uiS
-gfm
-gfL
-iVe
+tNz
+tEl
+gUu
+lAV
dvc
crR
aaa
@@ -112460,8 +112486,8 @@ psS
uoe
qPr
cmO
-jKR
-cpu
+sQi
+rcz
cqD
thn
cuW
@@ -112717,8 +112743,8 @@ pDo
kmH
foQ
bZn
-jKR
-cpv
+lsk
+fjD
obf
thn
faw
@@ -112970,12 +112996,12 @@ yhb
iYJ
cgo
diD
-pYy
+vuv
ckq
-clR
+hCu
bZn
-luh
-kcw
+rRN
+rsX
cqO
wGx
ctg
@@ -113179,7 +113205,7 @@ axC
axC
axC
ndB
-cSo
+nPS
vxG
sSg
vfA
@@ -113436,7 +113462,7 @@ aHK
rIr
axC
kwK
-cSo
+nPS
neO
aOu
wTB
@@ -113483,14 +113509,14 @@ tYS
bST
qfF
cgq
-eKy
-mwn
-mwn
-yiI
-fkR
-jIH
-txo
-cqQ
+mZQ
+mvP
+mZQ
+cgq
+myO
+oSU
+vxn
+xCg
thn
pkb
wqi
@@ -113693,7 +113719,7 @@ axC
axC
axC
nTT
-lRo
+mRy
hUx
suL
aQW
@@ -113740,13 +113766,13 @@ ccw
bST
xId
cgq
-mNG
-wZO
-wZO
-nMr
-cqV
-cqV
-kUc
+wto
+vkc
+mQV
+uEf
+tVX
+uMx
+boj
cqR
thn
hGH
@@ -113950,7 +113976,7 @@ aHL
aJd
axC
wUd
-lRo
+mRy
dgD
aOw
aQX
@@ -113997,14 +114023,14 @@ ccv
bST
vcc
cgq
-jLA
-jLA
-stD
-tZG
-tVX
-uMx
-bAw
-cqS
+vXi
+ppH
+gOu
+hDh
+gOz
+jAj
+dKY
+ncG
thn
hlc
skB
@@ -114254,14 +114280,14 @@ ccx
bST
hcQ
cgq
-fct
-hal
-jmI
-tZG
-gOz
-jAj
-nRO
-pUs
+pqA
+vkc
+dua
+uEf
+ore
+oDr
+lMX
+qkz
thn
thn
thn
@@ -114271,7 +114297,7 @@ thn
thn
cSd
oIM
-sxj
+wlR
oIM
cRi
cRi
@@ -114511,16 +114537,16 @@ tYS
bST
xId
cgq
-iNf
-ste
-qzI
-tZG
-ore
-xOA
-ncb
-mYV
-vho
-dwL
+mZQ
+rtI
+mZQ
+cgq
+lNH
+cqV
+nHL
+isb
+ezt
+cgq
knX
fBQ
sMw
@@ -114768,21 +114794,21 @@ ccy
bST
hMg
cgq
-oHz
-ulJ
-ulJ
-ith
-cqV
-klx
-pFo
-isb
-ezt
-dwL
+cgq
+cgq
+cgq
+cgq
+oJn
+fBw
+uan
+wAW
+oKt
+cgq
lal
jVZ
sxa
lCX
-wLK
+dKV
ulA
kNZ
fls
@@ -114792,7 +114818,7 @@ keR
akM
uIA
czD
-rIA
+vcY
kOP
mzB
mml
@@ -115024,17 +115050,17 @@ hFA
dbE
bST
sqD
+ovj
+brp
+nbv
+qPP
+cgq
+cgq
+cgq
+cJp
+cgq
+cgq
cgq
-kzk
-iuM
-mVU
-lER
-ija
-cSz
-lVq
-wZO
-rPJ
-dwL
sqH
qFY
nbv
@@ -115280,20 +115306,20 @@ bZv
lKE
ccz
bST
-hMg
-cgq
-cgq
-cgq
-cgq
-cgq
-cgq
-cgq
-cJp
-cgq
-cgq
-dwL
-bEY
-xId
+fUm
+jOm
+riy
+xFt
+riy
+wAX
+mzG
+jOm
+dec
+qyP
+vtU
+xkC
+ror
+jnJ
mjJ
mjJ
mjJ
@@ -115301,7 +115327,7 @@ mjJ
mjJ
mjJ
tVz
-jVy
+ciw
tVz
mjJ
eBh
@@ -115537,20 +115563,20 @@ bST
mWR
bST
bST
-fUm
-jOm
-riy
-xkC
-riy
-wAX
-mzG
-jOm
-dec
-qyP
-vtU
-xkC
-ror
-jnJ
+xId
+rAr
+nbv
+bEY
+uJg
+qZL
+bEY
+uJg
+nbv
+ogE
+vTs
+nbv
+nbv
+qVm
mjJ
ygk
ygk
@@ -116857,7 +116883,7 @@ aaa
aaa
aaa
ihd
-ucJ
+qDA
uHI
aaa
aaa
@@ -117266,10 +117292,10 @@ acP
acQ
acQ
acQ
-cHi
+vPH
acQ
acQ
-dVd
+dFS
acQ
acQ
acQ
@@ -117622,19 +117648,19 @@ aaa
aaa
aaa
lMJ
-fWL
-fWL
-fWL
-fWL
-fWL
+vrw
+vrw
+vrw
+vrw
+vrw
aaa
dbR
aaa
-fWL
-fWL
-fWL
-fWL
-fWL
+vrw
+vrw
+vrw
+vrw
+vrw
aaa
aqB
aaa
@@ -118136,19 +118162,19 @@ aaa
aaa
lMJ
lMJ
-mzq
-mzq
-mzq
-mzq
-mzq
+uFV
+uFV
+uFV
+uFV
+uFV
aav
tgz
aaf
-mzq
-mzq
-mzq
-mzq
-mzq
+uFV
+uFV
+uFV
+uFV
+uFV
aaa
anT
aaa
@@ -118362,11 +118388,11 @@ mwS
kbY
avs
bZE
-gVP
-mgm
-nUN
-ifO
-lwb
+xWi
+vxJ
+xnJ
+ewn
+nMk
bZE
ovj
ovj
@@ -118619,11 +118645,11 @@ slA
aad
bcs
bZE
-oaZ
-aYB
-gui
-gui
-uro
+hME
+xeD
+krO
+krO
+oeP
ciY
cmc
cmc
@@ -118650,19 +118676,19 @@ lMJ
aaa
lMJ
lMJ
-fWL
-fWL
-fWL
-fWL
-fWL
+vrw
+vrw
+vrw
+vrw
+vrw
aaf
vwy
aaa
-fWL
-fWL
-fWL
-fWL
-fWL
+vrw
+vrw
+vrw
+vrw
+vrw
aaf
anT
aaa
@@ -118876,11 +118902,11 @@ gWq
ise
bZE
bZE
-mQU
-btg
-kKf
-pOc
-gOZ
+aZP
+xtU
+iCQ
+yjl
+ghF
bZE
bZE
bZE
@@ -118898,7 +118924,7 @@ mjJ
kuN
gRW
mjJ
-lDx
+rWS
mjJ
sEf
aaa
@@ -119132,12 +119158,12 @@ alq
wMZ
xty
gUJ
-xZn
-hiY
-jCt
-vFC
-vFC
-bbX
+lZw
+kja
+vkN
+rWW
+rWW
+fxC
cjb
ckD
cjb
@@ -119164,19 +119190,19 @@ aaa
aaa
aaa
lMJ
-mzq
-mzq
-mzq
-mzq
-mzq
+uFV
+uFV
+uFV
+uFV
+uFV
aav
vwy
aav
-mzq
-mzq
-mzq
-mzq
-mzq
+uFV
+uFV
+uFV
+uFV
+uFV
aaa
anT
aaa
@@ -119334,7 +119360,7 @@ dnS
dnS
gks
wOK
-gqg
+kqX
tfC
hqK
axY
@@ -119365,7 +119391,7 @@ iBo
bjF
wnz
pmL
-geZ
+jXT
ktu
bep
xhN
@@ -119389,12 +119415,12 @@ htP
cTF
apc
bZE
-eQJ
-jMc
-sLI
-ueQ
-fyu
-fyu
+vGy
+huY
+kKq
+ebP
+xAE
+xAE
kRR
mFX
cmd
@@ -119646,12 +119672,12 @@ alq
bXd
apc
bZE
-gYl
-rDu
-gfD
-kfz
-nYC
-nmz
+qVH
+mLd
+ygn
+kGm
+qYh
+xSc
rDY
ckF
cjb
@@ -119678,19 +119704,19 @@ aaa
aaa
aaa
lMJ
-fWL
-fWL
-fWL
-fWL
-fWL
+vrw
+vrw
+vrw
+vrw
+vrw
aav
vwy
aaa
-fWL
-fWL
-fWL
-fWL
-fWL
+vrw
+vrw
+vrw
+vrw
+vrw
aaf
anT
aaa
@@ -119836,10 +119862,10 @@ acQ
acQ
acQ
acP
-cHi
+vPH
acQ
acQ
-dVd
+dFS
acP
acP
acP
@@ -119852,7 +119878,7 @@ ihN
dqT
aAo
aCO
-aBJ
+tdu
aEi
kEN
aEi
@@ -119887,7 +119913,7 @@ bxd
byT
bCi
lXH
-bvR
+fpx
duk
bBt
bBt
@@ -120107,7 +120133,7 @@ dnh
dnh
xiC
dqT
-dRx
+pLv
aCP
aHY
aHY
@@ -120135,16 +120161,16 @@ byK
iTF
vme
pRq
-bnc
-iTw
-iHl
-xsn
-bvg
+pXq
+wBJ
+dIZ
+iyt
+tiv
bxd
eFV
bAE
bCi
-rPx
+aLI
bFJ
bHs
cVD
@@ -120192,19 +120218,19 @@ aaa
aaa
lMJ
aaf
-mzq
-mzq
-mzq
-mzq
-mzq
+uFV
+uFV
+uFV
+uFV
+uFV
lMJ
pCg
aaf
-mzq
-mzq
-mzq
-mzq
-mzq
+uFV
+uFV
+uFV
+uFV
+uFV
aaa
aaa
aaa
@@ -120364,9 +120390,9 @@ foK
fka
tfC
dqT
-gcb
+hhY
aCP
-taV
+qNc
uhw
qiU
hLw
@@ -120389,19 +120415,19 @@ hdM
vfN
ihR
iDO
-tmR
+eSY
qVf
-dpn
+gyj
rxn
owR
sao
hkq
-qGr
+jay
bxd
byV
bAF
bCl
-xPL
+lKx
jLo
bAR
bAR
@@ -120621,14 +120647,14 @@ dnh
koE
axY
axY
-dbc
+oFW
aCP
mzt
aTO
aEq
aTO
aTO
-aHZ
+pIn
aJp
aTO
aSB
@@ -120645,20 +120671,20 @@ toh
hGd
dgz
aBI
-emu
+hAo
iTF
rUa
-gYg
+eOT
bjL
tNI
hkq
hkq
-lxO
+sux
bAR
bAR
bAR
bza
-iJy
+cPx
bza
bAR
bIN
@@ -120877,8 +120903,8 @@ fOX
dBu
weN
axT
-axU
-ayS
+lwg
+kWG
dCk
nDP
axY
@@ -120901,21 +120927,21 @@ aYu
aYu
aYu
aYu
-eas
-eas
-pLU
+iKI
+iKI
+ofV
fvZ
-ieW
+hVW
bne
owR
owR
lYb
vPy
bAR
-mFm
+pPa
bAG
bCn
-rPx
+aLI
bFL
bHt
bDS
@@ -121158,11 +121184,11 @@ egv
wOJ
kkq
bfX
-uEN
-iFE
-uaz
+wQo
+esQ
+rmo
fvZ
-lPW
+fxD
bjL
bpg
owR
@@ -121172,7 +121198,7 @@ bxd
byX
bAH
bCo
-wXM
+rKW
bFM
bHu
bHu
@@ -121415,23 +121441,23 @@ bbC
gCm
rqv
pST
-lzs
-ajK
-cwP
-gHP
-cIo
+dRM
+kWr
+vhn
+tyK
+jUv
rti
eSd
xLb
xIq
xbs
wuR
-tAk
-hQr
-gJB
-gIX
-iGg
-bwD
+vwj
+rHy
+hBr
+wdQ
+ufu
+qEw
bYx
bKx
bMd
@@ -121673,9 +121699,9 @@ ycb
bIn
bfX
iTF
-cwx
-fMp
-rjD
+kmW
+gIz
+gRe
bjL
bng
iRz
@@ -121687,8 +121713,8 @@ bAJ
bAJ
bCq
bDV
-xqQ
-dBb
+csF
+lSI
bIS
bKy
bMe
@@ -121921,8 +121947,8 @@ mvZ
dlI
dfp
dfp
-xuG
-bWX
+mFM
+nKi
cXA
cXA
cXA
@@ -121930,10 +121956,10 @@ cXA
cXA
cXA
bhT
-occ
-fMp
-rjD
-vLq
+jlw
+gIz
+gRe
+spX
bhT
uuF
bhT
@@ -121944,7 +121970,7 @@ bza
bza
bza
bza
-etM
+gvf
bza
bIS
bCi
@@ -122137,17 +122163,17 @@ aaa
aaa
aag
aaa
-brz
+oqw
abO
-hzZ
+pDG
aaa
-brz
+oqw
abO
-hzZ
+pDG
aaa
-brz
+oqw
abO
-hzZ
+pDG
aaa
aaf
ajb
@@ -122163,10 +122189,10 @@ ajb
tUi
axY
axZ
-pxK
-lDw
-vNb
-kxj
+lhF
+dXZ
+gGD
+sSn
opl
der
deD
@@ -122178,18 +122204,18 @@ dfb
dfj
dlI
deD
-bGJ
-gPw
-jYR
+rHx
+wJa
+guq
dgi
-apZ
-orF
-kFv
+mKs
+qLa
+qzm
apc
aWu
-cXE
-gDP
-wEE
+uQa
+koM
+hYA
bls
bhT
eCM
@@ -122200,8 +122226,8 @@ bhT
mba
eXa
axD
-mCP
-hlF
+jCR
+odI
bHw
bIT
bKA
@@ -122394,17 +122420,17 @@ aaa
aaa
aag
aaf
-brz
+oqw
abP
-hzZ
+pDG
aaa
-brz
+oqw
abP
-hzZ
+pDG
aaa
-brz
+oqw
abP
-hzZ
+pDG
aaa
aaf
ajb
@@ -122420,7 +122446,7 @@ ajb
cIH
axY
ddO
-vjZ
+bjn
ddT
sjC
aCZ
@@ -122445,7 +122471,7 @@ dgo
cYj
bhT
bie
-axH
+kPx
bie
bhT
oxc
@@ -122651,17 +122677,17 @@ aaa
aaa
aag
aaf
-brz
+oqw
abP
-hzZ
+pDG
aaf
-brz
+oqw
abP
-hzZ
+pDG
aaf
-brz
+oqw
abP
-hzZ
+pDG
aaf
aaf
ajb
@@ -122677,7 +122703,7 @@ ajb
cIH
axY
aya
-vjZ
+bjn
ddU
aBQ
aCZ
@@ -122701,9 +122727,9 @@ alr
dgp
atm
bhT
-vKM
-pRz
-lYn
+mmr
+rZU
+ube
bhT
bpv
raC
@@ -122908,17 +122934,17 @@ aaa
aaa
aag
aaf
-brz
+oqw
abP
-hzZ
+pDG
aaa
-brz
+oqw
abP
-hzZ
+pDG
aaa
-brz
+oqw
abP
-hzZ
+pDG
aaa
aaf
aaf
@@ -122934,7 +122960,7 @@ dnS
gpL
axY
ddO
-vjZ
+bjn
ddV
aBQ
aCZ
@@ -122951,12 +122977,12 @@ daY
djt
dbg
dfR
-pvJ
-bRm
+noP
+oXu
dgj
gXq
-xLz
-xls
+iqD
+wtF
bhT
wOY
adF
@@ -123165,17 +123191,17 @@ aai
aaj
aag
aaa
-brz
+oqw
abP
-hzZ
+pDG
aaa
-brz
+oqw
abP
-hzZ
+pDG
aaa
-brz
+oqw
abP
-hzZ
+pDG
aaa
aaa
aaf
@@ -123191,10 +123217,10 @@ dnR
gpL
axY
ayc
-enH
-vbz
-cTP
-kxj
+bnU
+uLK
+giH
+sSn
mFI
aFD
deD
@@ -123211,9 +123237,9 @@ dfS
aCZ
aaf
aYx
-dPg
+uBV
aaf
-pLT
+vsg
sJW
aaa
aaa
@@ -123463,15 +123489,15 @@ dfd
deN
dft
dBB
-mWM
-cZE
-pvJ
-bLm
+eUo
+mfH
+noP
+ffP
aYx
dgf
dgj
-qZH
-xJx
+wxD
+eUc
aaa
aaa
aaa
@@ -123720,15 +123746,15 @@ dfe
dBz
dfu
dfz
-dru
-uAy
+gXM
+jPQ
axY
aye
azd
azd
azd
dgB
-kmW
+iWX
aaa
aaa
aaa
@@ -123985,7 +124011,7 @@ dgk
dgt
dgk
dgv
-kmW
+iWX
aaa
cUL
aaa
@@ -124193,17 +124219,17 @@ aaj
aai
aaj
aaf
-brz
+oqw
abT
-hzZ
+pDG
aaa
-brz
+oqw
abT
-hzZ
+pDG
aaa
-brz
+oqw
abT
-hzZ
+pDG
aaa
aaa
aaf
@@ -124242,7 +124268,7 @@ dgk
dgt
dgk
dgB
-kmW
+iWX
anT
lMJ
lMJ
@@ -124253,7 +124279,7 @@ aaf
aaf
aaf
aaf
-jyt
+cmB
dgw
bCz
dgw
@@ -124273,7 +124299,7 @@ bFY
aaf
aaf
bAR
-gha
+iwT
bAR
aaf
aaf
@@ -124450,17 +124476,17 @@ aaa
aaa
aag
aaa
-brz
+oqw
abT
-hzZ
+pDG
aaa
-brz
+oqw
abT
-hzZ
+pDG
aaa
-brz
+oqw
abT
-hzZ
+pDG
aaf
aaa
aaf
@@ -124499,7 +124525,7 @@ azd
azd
azd
dgv
-kmW
+iWX
aaa
aaa
aaa
@@ -124530,7 +124556,7 @@ bFZ
bAR
aaf
bAR
-mPE
+ncc
bAR
aaf
aaa
@@ -124707,17 +124733,17 @@ aaa
aaa
aag
aaf
-brz
+oqw
abT
-hzZ
+pDG
aaf
-brz
+oqw
abT
-hzZ
+pDG
aaf
-brz
+oqw
abT
-hzZ
+pDG
aaa
aaa
aaf
@@ -124756,7 +124782,7 @@ dgk
dgt
dgk
dgB
-kmW
+iWX
aaf
lMJ
aaf
@@ -124964,17 +124990,17 @@ aaa
aaa
aag
aaf
-brz
+oqw
abT
-hzZ
+pDG
aaa
-brz
+oqw
abT
-hzZ
+pDG
aaa
-brz
+oqw
abT
-hzZ
+pDG
aaa
aaa
aaf
@@ -125013,7 +125039,7 @@ dgk
dgk
dgk
dgv
-kmW
+iWX
aaa
aaa
aaa
@@ -125221,17 +125247,17 @@ aaa
aaa
aaj
aaa
-brz
+oqw
abU
-hzZ
+pDG
aaa
-brz
+oqw
abU
-hzZ
+pDG
aaa
-brz
+oqw
abU
-hzZ
+pDG
aaf
aaf
aag
@@ -125270,13 +125296,13 @@ dgm
dgu
dgm
dgB
-cQh
+lyX
dgw
-iit
-iit
+utL
+utL
xjq
dgw
-lps
+sqY
dgw
dgw
dgw
@@ -133510,7 +133536,7 @@ rjC
bCD
bEg
vOd
-jZq
+dlc
bJm
bNX
bGd
@@ -133767,7 +133793,7 @@ sHt
bCD
bEh
bGd
-aer
+pJB
bKL
bNY
bGd
@@ -134024,12 +134050,12 @@ ndq
bCE
bCE
bCE
-rWv
-pbg
-pbg
-fxK
+xts
+rSp
+rSp
+rXi
slE
-sFF
+pst
bUL
aRy
bvt
@@ -134281,12 +134307,12 @@ iOf
mcw
bMQ
lWY
-jls
+fRn
npF
dsr
-eEl
-ntt
-kTZ
+tBl
+qpw
+vKV
bNZ
aRy
bvt
@@ -134538,12 +134564,12 @@ fqm
bCE
bCE
bCE
-kAi
-hTP
-hTP
-har
+sLA
+lCi
+lCi
+oRw
eId
-cGZ
+sHl
cgy
aRy
bvt
@@ -134795,7 +134821,7 @@ vAP
bCD
bEj
bGd
-aer
+pJB
bKP
bOb
bGd
@@ -135052,7 +135078,7 @@ wlg
bCD
bEg
vOd
-nXw
+qJQ
bKN
bOa
bGd
diff --git a/_maps/map_files/Mining/Lavaland.dmm b/_maps/map_files/Mining/Lavaland.dmm
index eede55df80e5a..5ee075b0949c5 100644
--- a/_maps/map_files/Mining/Lavaland.dmm
+++ b/_maps/map_files/Mining/Lavaland.dmm
@@ -2186,6 +2186,13 @@
},
/turf/open/floor/iron/techmaint,
/area/mine/living_quarters)
+"py" = (
+/obj/item/toy/plush/lizard_plushie{
+ pixel_x = 5;
+ name = "Walks-upon-Embers"
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
"pz" = (
/obj/structure/stone_tile/cracked{
dir = 8
@@ -3480,13 +3487,6 @@
},
/turf/open/floor/wood,
/area/mine/living_quarters)
-"zJ" = (
-/obj/item/toy/plush/lizard_plushie{
- pixel_x = 5;
- name = "Walks-upon-Embers"
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/lavaland/surface/outdoors)
"zK" = (
/obj/machinery/conveyor{
dir = 1;
@@ -5314,11 +5314,6 @@
/obj/machinery/light/small,
/turf/open/floor/carpet/blue,
/area/mine/living_quarters)
-"Nz" = (
-/obj/machinery/rnd/experimentor,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/engine,
-/area/mine/science)
"NB" = (
/obj/structure/camera_assembly{
dir = 6
@@ -36703,7 +36698,7 @@ Zd
RR
RR
RR
-zJ
+py
Zd
RR
RR
@@ -50317,7 +50312,7 @@ mp
qy
zA
cE
-Nz
+YW
mp
Zd
Zd
diff --git a/_maps/map_files/RadStation/RadStation.dmm b/_maps/map_files/RadStation/RadStation.dmm
index a6737d1a392ee..6cec4de1f0df6 100644
--- a/_maps/map_files/RadStation/RadStation.dmm
+++ b/_maps/map_files/RadStation/RadStation.dmm
@@ -78,6 +78,21 @@
},
/turf/open/floor/plating,
/area/maintenance/disposal)
+"aaF" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_y = 1
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/light/floor{
+ brightness = 15;
+ bulb_colour = "#FFE4CE";
+ bulb_vacuum_brightness = 15;
+ nightshift_brightness = 10;
+ nightshift_light_color = "#E6EBFF"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"aaI" = (
/obj/structure/table/wood,
/obj/item/flashlight/lamp/green{
@@ -119,6 +134,18 @@
},
/turf/open/floor/iron,
/area/quartermaster/sorting)
+"aaV" = (
+/obj/effect/turf_decal/guideline/guideline_edge/purple{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/science/research)
"abg" = (
/turf/closed/wall,
/area/gateway)
@@ -128,13 +155,6 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
-"abl" = (
-/obj/structure/showcase/machinery/tv,
-/obj/structure/table/wood,
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/maintenance/central)
"abm" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -275,17 +295,6 @@
},
/turf/open/floor/iron/white,
/area/medical/chemistry)
-"acK" = (
-/obj/structure/window/reinforced{
- dir = 4;
- layer = 2.9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"acL" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 8
@@ -381,14 +390,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/maintenance/port/aft)
-"afF" = (
-/obj/structure/window/reinforced,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"afH" = (
/obj/effect/turf_decal/tile/neutral/anticorner{
dir = 6
@@ -403,14 +404,6 @@
},
/turf/open/floor/iron,
/area/maintenance/department/science)
-"afN" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"afW" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -438,6 +431,29 @@
/obj/effect/turf_decal/box,
/turf/open/floor/iron/dark,
/area/medical/morgue)
+"agA" = (
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/camera/autoname{
+ view_range = 12
+ },
+/obj/effect/turf_decal/siding/wideplating/dark/corner{
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ pixel_y = 34
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
"agF" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -565,12 +581,6 @@
/obj/structure/chair,
/turf/open/floor/iron,
/area/science/shuttledock)
-"aix" = (
-/obj/effect/turf_decal/loading_area{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/science/robotics)
"aiC" = (
/obj/effect/landmark/start/assistant,
/obj/machinery/requests_console{
@@ -616,61 +626,26 @@
/obj/item/book/manual/wiki/sopsecurity,
/turf/open/floor/carpet/blue,
/area/crew_quarters/heads/hos)
-"aje" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer4{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
-"ajt" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "Engidesk";
- name = "engineering security door"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/northleft{
- dir = 2;
- name = "Engi Desk";
- req_one_access_txt = "32;19"
- },
-/obj/item/paper_bin{
- pixel_x = 7;
- pixel_y = 2
- },
-/obj/item/pen{
- pixel_x = 7;
- pixel_y = 4
+"ajg" = (
+/obj/effect/turf_decal/guideline/guideline_edge/purple{
+ dir = 8
},
-/obj/structure/desk_bell{
- pixel_x = -6
+/obj/structure/disposalpipe/segment{
+ dir = 2
},
-/turf/open/floor/iron/dark,
-/area/engine/engineering)
-"ajC" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+/turf/open/floor/iron/white/side{
+ dir = 4
},
-/turf/open/floor/catwalk_floor,
-/area/maintenance/starboard/aft)
-"ajF" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
+/area/science/research)
+"ajn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
},
-/obj/machinery/power/apc/auto_name/south{
- pixel_y = -24
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
},
-/obj/structure/cable/yellow,
-/obj/machinery/iv_drip,
-/turf/open/floor/iron,
-/area/security/brig/medbay)
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"ajK" = (
/obj/structure/sign/departments/minsky/research/dorms,
/turf/closed/wall,
@@ -876,13 +851,6 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"aot" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/medical/morgue)
"aoz" = (
/obj/effect/turf_decal/tile/purple/half/contrasted,
/obj/machinery/disposal/bin,
@@ -968,21 +936,6 @@
},
/turf/open/floor/iron,
/area/engine/atmospherics_engine)
-"apR" = (
-/obj/effect/landmark/start/assistant,
-/obj/effect/turf_decal/siding/white{
- dir = 6
- },
-/turf/open/floor/glass/reinforced,
-/area/hallway/primary/central{
- dynamic_lighting = 2;
- lighting_brightness_tube = 11;
- lighting_colour_bulb = "#DDE6FF";
- lighting_colour_night = "#DDE6FF";
- lighting_colour_tube = "#DDE6FF";
- lighting_overlay_colour = "#DDE6FF";
- power_light = 0
- })
"aqc" = (
/obj/machinery/door/firedoor,
/obj/machinery/button/door{
@@ -1014,6 +967,10 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
+"aqm" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/central)
"aqv" = (
/obj/structure/chair/fancy/comfy{
buildstackamount = 0;
@@ -1052,17 +1009,6 @@
},
/turf/open/floor/plating,
/area/ai_monitored/storage/satellite)
-"aqJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron/white,
-/area/science/xenobiology)
"aqK" = (
/obj/machinery/light/small{
dir = 8
@@ -1078,23 +1024,30 @@
},
/turf/open/floor/engine,
/area/engine/supermatter)
-"arH" = (
-/obj/effect/turf_decal/delivery,
-/obj/structure/curtain,
-/obj/machinery/shower{
- dir = 8;
- layer = 4;
- name = "emergency shower";
- pixel_x = -5;
- pixel_y = -5
+"ard" = (
+/obj/effect/turf_decal/guideline/guideline_out/brown{
+ dir = 8
},
-/obj/structure/sign/poster/official/no_erp{
- pixel_y = 32
+/obj/effect/spawner/lootdrop/glowstick/lit,
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
},
-/turf/open/floor/noslip/standard,
-/area/security/prison{
- name = "Prison Showers"
- })
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/iron/techmaint,
+/area/maintenance/central)
+"arz" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/mapping_helpers/tile_breaker,
+/turf/open/floor/wood,
+/area/vacant_room/office)
"arJ" = (
/obj/item/kirbyplants/random,
/obj/item/radio/intercom{
@@ -1233,21 +1186,35 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/office)
-"atF" = (
-/obj/machinery/camera/autoname{
- dir = 8;
- network = list("ss13","security")
+"aty" = (
+/obj/structure/railing/corner{
+ dir = 8
},
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/effect/turf_decal/siding/wideplating/dark/corner{
+ dir = 8
},
/obj/structure/cable/yellow{
- icon_state = "1-2"
+ icon_state = "1-4"
},
-/turf/open/floor/iron/dark,
-/area/security/brig{
- name = "Brig Evidence"
- })
+/turf/open/floor/iron/dark/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"atI" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/turf/open/floor/iron/dark/smooth_edge,
+/area/hallway/primary/central)
"aue" = (
/obj/structure/sign/departments/minsky/research/dorms,
/turf/closed/wall,
@@ -1279,6 +1246,18 @@
},
/turf/open/floor/iron/dark,
/area/security/courtroom)
+"auq" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"auu" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -1583,6 +1562,16 @@
},
/turf/open/space/basic,
/area/solar/port/fore)
+"azn" = (
+/obj/effect/spawner/lootdrop/glowstick,
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/bridge)
"azp" = (
/obj/item/cigbutt{
pixel_x = 9;
@@ -1622,6 +1611,18 @@
},
/turf/open/floor/iron,
/area/engine/engineering)
+"azJ" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_y = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"azX" = (
/obj/effect/turf_decal/tile/dark_green/fourcorners/contrasted,
/obj/effect/turf_decal/delivery,
@@ -1642,17 +1643,6 @@
},
/turf/open/space/basic,
/area/space/nearstation)
-"aAo" = (
-/obj/structure/railing/corner,
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"aAF" = (
/obj/machinery/requests_console{
department = "Security";
@@ -1683,13 +1673,21 @@
},
/turf/open/floor/iron/dark,
/area/teleporter)
-"aAP" = (
-/obj/effect/decal/cleanable/dirt/dust,
+"aAO" = (
+/obj/structure/chair/fancy/bench/right{
+ dir = 8
+ },
+/obj/machinery/power/apc/auto_name/south{
+ pixel_y = -24
+ },
/obj/structure/cable/yellow{
- icon_state = "4-8"
+ icon_state = "0-8"
},
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/medical/morgue)
+/obj/structure/sign/poster/contraband/random{
+ pixel_x = 32
+ },
+/turf/open/floor/iron/techmaint,
+/area/security/prison/shielded)
"aAT" = (
/obj/machinery/power/apc/auto_name/north{
pixel_y = 24
@@ -1828,18 +1826,6 @@
/obj/structure/lattice,
/turf/open/space,
/area/space/nearstation)
-"aDQ" = (
-/obj/structure/table,
-/obj/item/book/manual/wiki/sopsecurity{
- pixel_x = 4;
- pixel_y = 5
- },
-/obj/item/toy/plush/nukeplushie{
- pixel_x = -3;
- pixel_y = -9
- },
-/turf/open/floor/wood,
-/area/security/prison)
"aDR" = (
/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -1855,41 +1841,10 @@
/area/security/prison{
name = "Prison Visitation"
})
-"aDX" = (
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/mob/living/simple_animal/butterfly{
- name = "Lisa, PsyD"
- },
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/turf/open/floor/grass/no_border,
-/area/medical/sleeper)
"aEE" = (
/obj/machinery/smartfridge/chemistry,
/turf/closed/wall,
/area/medical/apothecary)
-"aEF" = (
-/obj/effect/turf_decal/tile/yellow/half/contrasted{
- alpha = 180
- },
-/obj/structure/closet/secure_closet/engineering_personal,
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/iron,
-/area/engine/storage)
"aEI" = (
/obj/machinery/door/airlock/maintenance_hatch{
id_tag = "commissarydoor2";
@@ -1945,19 +1900,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"aEU" = (
-/obj/structure/window/reinforced{
- dir = 4;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/machinery/vending/snack/orange,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"aEY" = (
/obj/effect/spawner/room/threexthree,
/turf/open/floor/plating,
@@ -1996,21 +1938,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"aGj" = (
-/obj/effect/turf_decal/guideline/guideline_in/green{
- color = "#439C1E"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/dark_green/half{
- dir = 8
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
"aGl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -2026,22 +1953,6 @@
/area/security/main{
name = "Security Break Room"
})
-"aGz" = (
-/obj/effect/turf_decal/guideline/guideline_out/brown{
- dir = 1
- },
-/obj/effect/landmark/xeno_spawn,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/iron/techmaint,
-/area/hallway/secondary/service)
"aGA" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/splatter,
@@ -2122,30 +2033,6 @@
dir = 1
},
/area/science/research)
-"aIv" = (
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/machinery/conveyor_switch/oneway{
- dir = 8;
- id = "garbage";
- name = "disposal conveyor"
- },
-/obj/machinery/door/window/southleft{
- dir = 1;
- icon_state = "right";
- id_tag = "Bountydoors";
- req_access_txt = null;
- req_one_access_txt = "31;48;26"
- },
-/obj/effect/mapping_helpers/airlock/unres{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal)
"aIw" = (
/turf/open/floor/iron/dark,
/area/bridge/meeting_room)
@@ -2232,6 +2119,26 @@
},
/turf/open/space/basic,
/area/space)
+"aJN" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/guideline/guideline_edge/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/science/research)
"aJO" = (
/obj/structure/closet/emcloset{
desc = "In case of emergency please stand inside the locker and close the door"
@@ -2279,6 +2186,23 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/techmaint,
/area/security/prison/shielded)
+"aKr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/button/door{
+ id = "xeno1";
+ name = "Containment Control";
+ pixel_x = -1;
+ pixel_y = 32;
+ req_access_txt = "55"
+ },
+/turf/open/floor/iron/white,
+/area/science/xenobiology)
"aKu" = (
/obj/structure/filingcabinet{
pixel_x = 8
@@ -2321,27 +2245,6 @@
},
/turf/open/floor/iron/dark,
/area/teleporter)
-"aKM" = (
-/obj/effect/landmark/start/randommaint/vip,
-/obj/effect/landmark/observer_start,
-/obj/machinery/holopad{
- pixel_x = 16;
- pixel_y = 16
- },
-/obj/item/beacon{
- pixel_x = 16;
- pixel_y = 19
- },
-/turf/open/floor/glass/reinforced,
-/area/hallway/primary/central{
- dynamic_lighting = 2;
- lighting_brightness_tube = 11;
- lighting_colour_bulb = "#DDE6FF";
- lighting_colour_night = "#DDE6FF";
- lighting_colour_tube = "#DDE6FF";
- lighting_overlay_colour = "#DDE6FF";
- power_light = 0
- })
"aKQ" = (
/obj/structure/closet/emcloset/anchored,
/obj/machinery/advanced_airlock_controller{
@@ -2349,12 +2252,17 @@
},
/turf/open/floor/plating,
/area/engine/engine_room)
-"aLa" = (
-/obj/structure/window/reinforced,
-/obj/structure/closet/firecloset/full,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
+"aLk" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/power/apc/auto_name/south{
+ pixel_y = -24
+ },
+/obj/structure/cable/yellow,
+/obj/machinery/iv_drip,
+/turf/open/floor/iron,
+/area/security/brig/medbay)
"aLm" = (
/obj/effect/turf_decal/siding/wood{
dir = 5
@@ -2570,6 +2478,44 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
+"aOK" = (
+/obj/effect/turf_decal/guideline/guideline_edge/purple{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -32
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/machinery/light_switch{
+ pixel_x = -20
+ },
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/science/research)
+"aON" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "testlab";
+ name = "test chamber blast door"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/science/explab)
+"aOP" = (
+/obj/structure/grille/broken,
+/obj/machinery/power/apc/auto_name/north{
+ pixel_y = 24
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
"aOU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -2585,18 +2531,6 @@
},
/turf/open/floor/iron/tech,
/area/engine/engine_room)
-"aPb" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/aft)
"aPp" = (
/obj/structure/bookcase/manuals/medical,
/turf/open/floor/plating,
@@ -2737,19 +2671,6 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/science/storage)
-"aRU" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_y = 1
- },
-/obj/structure/closet/firecloset/full,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"aSr" = (
/obj/machinery/door/airlock/maintenance_hatch{
id_tag = "commissarydoor";
@@ -2789,6 +2710,39 @@
/obj/structure/sign/warning/biohazard,
/turf/closed/wall,
/area/maintenance/starboard/aft)
+"aSS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -8;
+ pixel_y = -30
+ },
+/obj/machinery/camera/autoname{
+ dir = 1
+ },
+/obj/machinery/button/door{
+ id = "Capoffice";
+ id_tag = "cmoprivacy";
+ name = "Captain blast door";
+ pixel_x = 5;
+ pixel_y = -25
+ },
+/obj/structure/rack,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/item/aicard,
+/obj/item/storage/secure/briefcase,
+/turf/open/floor/iron,
+/area/bridge)
"aST" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
@@ -2815,9 +2769,6 @@
},
/turf/open/floor/prison,
/area/security/prison)
-"aTe" = (
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal)
"aTs" = (
/obj/machinery/door/airlock/security{
aiControlDisabled = 1;
@@ -2970,13 +2921,6 @@
/obj/effect/turf_decal/guideline/guideline_in/purple,
/turf/open/floor/iron,
/area/science/shuttledock)
-"aUk" = (
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/obj/structure/railing/corner,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"aUt" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -3103,17 +3047,6 @@
initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
},
/area/tcommsat/computer)
-"aWv" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/guideline/guideline_edge/blue{
- dir = 4
- },
-/turf/open/floor/iron/white/corner{
- dir = 8
- },
-/area/medical/surgery)
"aWC" = (
/obj/machinery/atmospherics/components/binary/pump{
name = "Mix to Ports"
@@ -3146,11 +3079,6 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat/foyer)
-"aWN" = (
-/obj/item/beacon,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/engine,
-/area/science/explab)
"aWV" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/item/trash/tray{
@@ -3185,6 +3113,19 @@
},
/turf/open/floor/iron/dark,
/area/engine/atmos)
+"aXE" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/machinery/vending/snack/orange,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"aXO" = (
/obj/machinery/atmospherics/pipe/simple/dark/visible{
dir = 4
@@ -3199,18 +3140,6 @@
/obj/structure/chair/wood/normal,
/turf/open/floor/wood,
/area/crew_quarters/theatre)
-"aYq" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"aYr" = (
/obj/structure/sign/poster/random,
/turf/closed/wall,
@@ -3243,49 +3172,27 @@
/turf/open/floor/iron,
/area/science/misc_lab)
"aYW" = (
-/obj/effect/turf_decal/guideline/guideline_in/blue{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
+/obj/structure/bed/double/maint,
+/obj/effect/landmark/start/randommaint/backalley_doc,
+/obj/item/paper/crumpled/bloody/docsdeathnote{
+ pixel_x = 5;
+ pixel_y = -1
},
-/obj/effect/turf_decal/tile/blue/half{
- dir = 1
+/obj/item/toy/plush/runtime{
+ pixel_x = -8;
+ pixel_y = 4
},
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
+/turf/open/floor/plating,
+/area/maintenance/starboard/aft)
"aZg" = (
/turf/closed/wall,
/area/science/research)
-"aZk" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/guideline/guideline_edge/purple{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/machinery/button/door/incinerator_vent_toxmix{
- id = "tox_ESD";
- name = "Emergency space door";
- pixel_x = 31;
- pixel_y = -6;
- req_one_access_txt = "8;63"
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/iron/white/side{
- dir = 4
+"aZq" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
},
-/area/science/research)
+/turf/open/floor/iron/grid/steel,
+/area/science/xenobiology)
"aZJ" = (
/obj/machinery/door/airlock/security/glass{
name = "Security Office";
@@ -3307,18 +3214,6 @@
/obj/item/storage/fancy/donut_box,
/turf/open/floor/iron,
/area/ai_monitored/security/armory)
-"aZY" = (
-/obj/structure/railing{
- layer = 3.1
- },
-/obj/structure/chair/fancy/comfy{
- buildstackamount = 0;
- color = "#742925";
- dir = 1
- },
-/obj/effect/turf_decal/siding/wideplating/dark,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"bad" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -3497,26 +3392,15 @@
},
/turf/open/floor/iron/white,
/area/science/xenobiology)
-"bdw" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/flora/ausbushes/lavendergrass,
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/structure/flora/ausbushes/fernybush,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "hopqueue";
- name = "HoP Queue Shutters"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+"bcH" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/turf/open/floor/grass/no_border,
-/area/crew_quarters/heads/hop)
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/aft)
"bdB" = (
/obj/effect/turf_decal/loading_area{
dir = 8
@@ -3588,6 +3472,19 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/bridge)
+"bfa" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/mob/living/basic/cockroach,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/central)
"bfm" = (
/obj/effect/turf_decal/delivery,
/obj/item/radio/intercom{
@@ -3595,19 +3492,6 @@
},
/turf/open/floor/iron/dark,
/area/engine/atmos)
-"bfC" = (
-/obj/structure/bed/double/maint,
-/obj/effect/landmark/start/randommaint/backalley_doc,
-/obj/item/paper/crumpled/bloody/docsdeathnote{
- pixel_x = 5;
- pixel_y = -1
- },
-/obj/item/toy/plush/runtime{
- pixel_x = -8;
- pixel_y = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
"bfF" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -3731,6 +3615,13 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/tech,
/area/engine/engine_room)
+"bha" = (
+/obj/structure/grille,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/medical/morgue)
"bhc" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 4
@@ -3758,14 +3649,6 @@
/obj/effect/turf_decal/stripes/closeup,
/turf/open/floor/iron/tech,
/area/engine/supermatter)
-"bhF" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "telelab";
- name = "test chamber blast door"
- },
-/turf/open/floor/plating,
-/area/science/explab)
"bhM" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating,
@@ -3777,20 +3660,6 @@
/obj/structure/lattice,
/turf/open/space/basic,
/area/space/nearstation)
-"bhS" = (
-/obj/structure/railing/corner{
- dir = 8
- },
-/obj/structure/disposalpipe/junction{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron/dark/corner{
- dir = 8
- },
-/area/hallway/primary/central)
"bia" = (
/obj/effect/turf_decal/bot,
/obj/structure/disposalpipe/trunk{
@@ -3877,6 +3746,14 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security)
+"blg" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/starboard/aft)
"blm" = (
/obj/effect/turf_decal/tile/brown/half/contrasted{
dir = 1
@@ -3924,6 +3801,36 @@
/area/security/main{
name = "Security Viewing Hall"
})
+"blC" = (
+/obj/item/radio/intercom{
+ pixel_x = -27
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/effect/turf_decal/guideline/guideline_edge/blue{
+ dir = 8
+ },
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/medical/sleeper)
+"blF" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/guideline/guideline_edge/purple{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/science/research)
"blK" = (
/obj/effect/turf_decal/guideline/guideline_in/darkblue{
dir = 8
@@ -3954,18 +3861,6 @@
/obj/effect/mapping_helpers/airlock/abandoned,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"blM" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/railing/corner{
- dir = 8
- },
-/turf/open/floor/iron/dark/smooth_edge{
- dir = 4
- },
-/area/hallway/primary/central)
"blP" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -4034,10 +3929,6 @@
/obj/effect/spawner/lootdrop/glowstick/lit,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"bnk" = (
-/obj/structure/closet/crate/coffin,
-/turf/open/floor/carpet/purple,
-/area/chapel/main)
"bnm" = (
/obj/structure/chair/fancy/shuttle{
dir = 4
@@ -4116,16 +4007,26 @@
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/iron,
/area/maintenance/department/medical)
+"boy" = (
+/obj/effect/turf_decal/guideline/guideline_out_arrow/brown{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/mob/living/basic/cockroach,
+/turf/open/floor/iron/techmaint,
+/area/hallway/secondary/service)
"boR" = (
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/engine,
/area/science/xenobiology)
-"boU" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/iron/white,
-/area/science/xenobiology)
"boZ" = (
/obj/structure/table/wood,
/obj/item/reagent_containers/syringe{
@@ -4146,22 +4047,6 @@
},
/turf/open/floor/iron,
/area/janitor)
-"bpr" = (
-/obj/effect/turf_decal/guideline/guideline_out_arrow/brown{
- dir = 1
- },
-/obj/effect/decal/cleanable/oil/streak,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/iron/techmaint,
-/area/hallway/secondary/service)
"bpQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 5
@@ -4173,19 +4058,6 @@
dir = 1
},
/area/hallway/primary/central)
-"bpZ" = (
-/obj/effect/landmark/start/assistant,
-/obj/effect/turf_decal/siding/white,
-/turf/open/floor/glass/reinforced,
-/area/hallway/primary/central{
- dynamic_lighting = 2;
- lighting_brightness_tube = 11;
- lighting_colour_bulb = "#DDE6FF";
- lighting_colour_night = "#DDE6FF";
- lighting_colour_tube = "#DDE6FF";
- lighting_overlay_colour = "#DDE6FF";
- power_light = 0
- })
"bqh" = (
/obj/machinery/button/door{
id = "meetingshutter";
@@ -4229,19 +4101,6 @@
},
/turf/open/space/basic,
/area/space/nearstation)
-"bqS" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/guideline/guideline_edge/purple{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/iron/white/side{
- dir = 8
- },
-/area/science/research)
"bqW" = (
/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
dir = 4
@@ -4269,6 +4128,23 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"bra" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/effect/turf_decal/guideline/guideline_in/green{
+ color = "#439C1E"
+ },
+/obj/effect/turf_decal/tile/dark_green/half{
+ dir = 8
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
"brc" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -4300,6 +4176,21 @@
},
/turf/open/floor/iron,
/area/vacant_room/commissary/commissary2)
+"brn" = (
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"brq" = (
/obj/machinery/processor,
/turf/open/floor/iron/cafeteria,
@@ -4352,20 +4243,14 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/storage)
-"bss" = (
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/effect/turf_decal/guideline/guideline_in/yellow{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
+"bsl" = (
+/obj/machinery/door/window/brigdoor/security/cell/eastleft{
+ id = "cell";
+ name = "Solitary Confinement";
+ req_one_access_txt = "2"
},
-/obj/effect/turf_decal/tile/yellow/half,
-/obj/effect/turf_decal/tile/yellow/half,
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
+/turf/open/floor/iron/dark,
+/area/security/prison/shielded)
"bsA" = (
/obj/effect/turf_decal/guideline/guideline_edge/red{
dir = 1
@@ -4513,31 +4398,6 @@
},
/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/ai_upload)
-"buN" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer2{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"buP" = (
/obj/machinery/computer/card/minor/hos{
dir = 4
@@ -4576,6 +4436,18 @@
/obj/effect/turf_decal/stripes/closeup,
/turf/open/floor/iron,
/area/security/warden)
+"bvz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/starboard/aft)
"bvB" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -4706,25 +4578,6 @@
"byb" = (
/turf/closed/wall,
/area/crew_quarters/heads/hor)
-"byj" = (
-/obj/effect/turf_decal/guideline/guideline_out/brown{
- dir = 8
- },
-/obj/effect/spawner/lootdrop/glowstick/lit,
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/iron/techmaint,
-/area/maintenance/central)
"byu" = (
/obj/machinery/light/small,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -4735,14 +4588,6 @@
},
/turf/open/floor/iron/dark,
/area/security/prison/shielded)
-"byG" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/starboard/aft)
"bzb" = (
/turf/open/floor/iron/dark,
/area/security/prison{
@@ -4798,6 +4643,10 @@
"bzO" = (
/turf/closed/wall,
/area/vacant_room/commissary/commissary2)
+"bAe" = (
+/obj/machinery/light,
+/turf/open/floor/iron/dark,
+/area/chapel/office)
"bAj" = (
/turf/closed/wall/r_wall,
/area/security/execution/education)
@@ -4950,6 +4799,16 @@
},
/turf/open/floor/iron/sepia,
/area/quartermaster/office)
+"bDq" = (
+/obj/machinery/firealarm/directional/south,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/turf/open/floor/iron/dark,
+/area/chapel/office)
"bDs" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/obj/structure/closet/secure_closet/warden{
@@ -4970,17 +4829,14 @@
/obj/effect/landmark/start/cyborg,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat/foyer)
-"bDJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/obj/effect/turf_decal/guideline/guideline_edge/purple{
- dir = 4
- },
-/turf/open/floor/iron/white/side{
- dir = 4
+"bDH" = (
+/obj/structure/window/reinforced,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/area/science/lobby)
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"bDL" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
@@ -5028,15 +4884,6 @@
/obj/effect/spawner/structure/window/plasma/reinforced,
/turf/open/floor/plating,
/area/engine/engine_room)
-"bEj" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_y = 1
- },
-/obj/machinery/vending/coffee,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"bEk" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -5103,19 +4950,6 @@
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
/area/hallway/primary/central)
-"bHa" = (
-/obj/machinery/stasis{
- dir = 1
- },
-/obj/machinery/camera/autoname{
- dir = 5;
- network = list("ss13","security")
- },
-/obj/machinery/defibrillator_mount{
- pixel_x = -32
- },
-/turf/open/floor/iron/white,
-/area/security/brig/medbay)
"bHb" = (
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -5223,6 +5057,15 @@
/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/quartermaster/storage)
+"bIz" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/security)
"bIG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -5333,6 +5176,20 @@
},
/turf/open/floor/iron/sepia,
/area/quartermaster/office)
+"bKR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/guideline/guideline_edge/purple{
+ dir = 8
+ },
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/science/lobby)
"bKW" = (
/obj/structure/table,
/obj/machinery/recharger{
@@ -5432,10 +5289,6 @@
},
/turf/open/floor/wood,
/area/maintenance/central)
-"bLD" = (
-/obj/machinery/vendor/exploration,
-/turf/open/floor/iron/dark,
-/area/quartermaster/exploration_prep)
"bLS" = (
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -5470,16 +5323,6 @@
/area/security/main{
name = "Security Viewing Hall"
})
-"bMq" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"bMv" = (
/obj/machinery/camera{
c_tag = "Medbay - Break Room";
@@ -5496,6 +5339,15 @@
/obj/machinery/firealarm/directional/east,
/turf/open/floor/iron,
/area/medical/break_room)
+"bMC" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/open/floor/grass/no_border,
+/area/hallway/secondary/exit/departure_lounge)
"bME" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -5521,16 +5373,6 @@
},
/turf/open/floor/iron/white,
/area/medical/office)
-"bNd" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Maintenance Hatch";
- req_one_access_txt = "12;31"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/port/central)
"bNo" = (
/obj/effect/turf_decal/tile/neutral,
/obj/effect/turf_decal/guideline/guideline_edge_alt/red{
@@ -5556,24 +5398,6 @@
/obj/structure/girder,
/turf/open/floor/iron,
/area/maintenance/department/security)
-"bNC" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=5-WHall";
- location = "4-CenterNW"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
-"bNL" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/iron/white,
-/area/science/xenobiology)
"bNY" = (
/obj/structure/table/wood,
/obj/machinery/chem_dispenser/drinks{
@@ -5581,15 +5405,6 @@
},
/turf/open/floor/iron/cafeteria,
/area/maintenance/port/aft)
-"bOb" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"bOe" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 8
@@ -5616,18 +5431,6 @@
},
/turf/open/floor/carpet/royalblue,
/area/crew_quarters/heads/captain)
-"bOn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/starboard/aft)
"bOq" = (
/obj/effect/turf_decal/tile/neutral{
dir = 8
@@ -5636,29 +5439,18 @@
dir = 5
},
/area/hallway/primary/fore)
-"bOC" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+"bOF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
},
-/obj/effect/decal/cleanable/blood/drip,
-/obj/effect/turf_decal/guideline/guideline_edge/blue{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
},
-/turf/open/floor/iron/white/side{
- dir = 8
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/area/medical/sleeper)
-"bOH" = (
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"bPn" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/aft)
"bPo" = (
/obj/structure/sign/departments/minsky/research/dorms,
/turf/closed/wall,
@@ -5702,10 +5494,6 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/lobby)
-"bPT" = (
-/obj/effect/decal/cleanable/oil/streak,
-/turf/open/floor/iron,
-/area/maintenance/department/engine)
"bPV" = (
/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{
alpha = 180
@@ -5716,21 +5504,6 @@
/obj/structure/sign/poster/random,
/turf/closed/wall,
/area/security/brig/medbay)
-"bQz" = (
-/obj/effect/landmark/start/assistant,
-/obj/effect/turf_decal/siding/white{
- dir = 5
- },
-/turf/open/floor/glass/reinforced,
-/area/hallway/primary/central{
- dynamic_lighting = 2;
- lighting_brightness_tube = 11;
- lighting_colour_bulb = "#DDE6FF";
- lighting_colour_night = "#DDE6FF";
- lighting_colour_tube = "#DDE6FF";
- lighting_overlay_colour = "#DDE6FF";
- power_light = 0
- })
"bQA" = (
/obj/structure/disposalpipe/segment{
dir = 8
@@ -5787,9 +5560,6 @@
/obj/item/pipe_dispenser,
/turf/open/floor/iron,
/area/engine/engine_room)
-"bQU" = (
-/turf/open/floor/glass/reinforced,
-/area/chapel/main)
"bRf" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
@@ -5880,6 +5650,17 @@
/obj/item/kirbyplants/random,
/turf/open/floor/iron/dark,
/area/science/shuttledock)
+"bSb" = (
+/obj/effect/turf_decal/guideline/guideline_edge/blue{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_x = -20
+ },
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/medical/sleeper)
"bSd" = (
/obj/effect/turf_decal/tile/dark_green/half/contrasted{
dir = 8
@@ -5943,21 +5724,24 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
-"bTD" = (
-/obj/structure/railing{
- dir = 8
+"bTL" = (
+/obj/structure/cable{
+ icon_state = "0-4"
},
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 8
+/obj/machinery/power/solar{
+ id = "portsolar";
+ name = "Port Solar Array"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/bot,
-/obj/structure/disposalpipe/trunk{
- dir = 4
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/port/fore)
+"bTR" = (
+/obj/item/kirbyplants/random,
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 3
},
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
+/turf/open/floor/circuit/green/telecomms/mainframe,
+/area/quartermaster/exploration_prep)
"bUn" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/light{
@@ -6010,13 +5794,6 @@
},
/turf/open/floor/engine/co2,
/area/engine/atmos)
-"bUN" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"bUQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -6189,14 +5966,16 @@
/turf/open/floor/iron,
/area/hallway/primary/starboard)
"bZr" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -32
+ },
+/obj/effect/turf_decal/guideline/guideline_edge/purple{
dir = 8
},
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron/dark/smooth_edge{
+/turf/open/floor/iron/white/side{
dir = 4
},
-/area/hallway/primary/central)
+/area/science/lobby)
"bZA" = (
/obj/effect/turf_decal/tile/dark_green/half/contrasted{
dir = 8
@@ -6268,6 +6047,19 @@
},
/turf/open/floor/iron/white,
/area/medical/apothecary)
+"bZJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/effect/turf_decal/guideline/guideline_in/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/tile/yellow/half,
+/obj/effect/turf_decal/tile/yellow/half,
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
"bZU" = (
/obj/effect/turf_decal/guideline/guideline_edge/neutral{
alpha = 255;
@@ -6278,6 +6070,13 @@
dir = 9
},
/area/medical/medbay/central)
+"cax" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"caA" = (
/obj/machinery/status_display/door_timer{
id = "cell";
@@ -6289,48 +6088,12 @@
},
/turf/open/floor/wood,
/area/security/prison)
-"caP" = (
-/obj/machinery/door/window/brigdoor{
- dir = 8;
- name = "Creature Pen";
- req_access_txt = "47"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xeno4";
- name = "Creature Cell"
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
"caY" = (
/turf/open/floor/iron/sepia,
/area/quartermaster/sorting)
"cbf" = (
/turf/open/floor/iron/dark,
/area/quartermaster/miningdock)
-"cbi" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/guideline/guideline_in/green{
- color = "#439C1E"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/effect/turf_decal/tile/dark_green/half{
- dir = 8
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
"cbk" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
@@ -6361,36 +6124,6 @@
"cbX" = (
/turf/closed/wall,
/area/crew_quarters/heads/hos)
-"ccp" = (
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_y = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
-"ccs" = (
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_y = 1
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/machinery/light/floor{
- brightness = 15;
- bulb_colour = "#FFE4CE";
- bulb_vacuum_brightness = 15;
- nightshift_brightness = 10;
- nightshift_light_color = "#E6EBFF"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"ccv" = (
/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
alpha = 180
@@ -6424,37 +6157,6 @@
/obj/structure/table/wood,
/turf/open/floor/carpet/green,
/area/hallway/secondary/exit/departure_lounge)
-"ccI" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xeno1";
- name = "Creature Cell"
- },
-/obj/machinery/door/window/brigdoor{
- dir = 1;
- name = "Creature Pen";
- req_access_txt = "47"
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
-"cdb" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"cdn" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 4
@@ -6467,22 +6169,6 @@
},
/turf/open/floor/iron/dark/side,
/area/hallway/secondary/exit/departure_lounge)
-"cdw" = (
-/obj/structure/railing,
-/obj/effect/turf_decal/siding/wideplating/dark,
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/turf/open/floor/iron/dark/smooth_edge{
- dir = 1
- },
-/area/hallway/primary/central)
-"cdH" = (
-/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted,
-/obj/effect/decal/cleanable/dirt,
-/mob/living/basic/cockroach,
-/turf/open/floor/iron,
-/area/maintenance/department/engine)
"cdQ" = (
/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
dir = 4
@@ -6517,14 +6203,6 @@
},
/turf/open/floor/plating,
/area/ai_monitored/storage/satellite)
-"ceE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"ceM" = (
/obj/structure/disposalpipe/segment{
dir = 2
@@ -6619,20 +6297,6 @@
},
/turf/open/floor/carpet/royalblack,
/area/lawoffice)
-"cfn" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 6
- },
-/turf/open/floor/iron/white,
-/area/science/xenobiology)
"cft" = (
/obj/structure/railing/corner{
dir = 4
@@ -6667,6 +6331,15 @@
},
/turf/open/floor/iron/dark,
/area/security/detectives_office)
+"cfT" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/quartermaster/exploration_prep)
"cgb" = (
/obj/structure/disposalpipe/segment{
dir = 2
@@ -6840,22 +6513,32 @@
/obj/machinery/firealarm/directional/north,
/turf/open/floor/wood,
/area/crew_quarters/theatre/backstage)
-"cir" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_y = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"ciA" = (
/obj/item/stack/medical/gauze,
/obj/structure/rack,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"ciQ" = (
+/obj/effect/turf_decal/guideline/guideline_in/yellow{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/yellow/half,
+/obj/effect/turf_decal/tile/yellow/half,
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
+"ciR" = (
+/obj/effect/turf_decal/guideline/guideline_edge/neutral{
+ alpha = 255;
+ dir = 8
+ },
+/obj/structure/sign/departments/minsky/security/evac{
+ pixel_x = -33
+ },
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/medical/medbay/central)
"ciT" = (
/obj/structure/sign/departments/minsky/security/security,
/turf/closed/wall/r_wall,
@@ -6902,6 +6585,19 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/engine,
/area/science/xenobiology)
+"ckg" = (
+/obj/effect/landmark/start/assistant,
+/obj/effect/turf_decal/siding/white,
+/turf/open/floor/glass/reinforced,
+/area/hallway/primary/central{
+ dynamic_lighting = 2;
+ lighting_brightness_tube = 11;
+ lighting_colour_bulb = "#DDE6FF";
+ lighting_colour_night = "#DDE6FF";
+ lighting_colour_tube = "#DDE6FF";
+ lighting_overlay_colour = "#DDE6FF";
+ power_light = 0
+ })
"ckl" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -6971,18 +6667,26 @@
},
/turf/open/floor/plating,
/area/construction/mining/aux_base)
-"ckQ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/landmark/xeno_spawn,
-/obj/item/paper/crumpled/bloody/docsdeathnote{
- default_raw_text = "They tried to take it from us... our precious...";
- pixel_x = -7;
- pixel_y = 5
+"ckP" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
},
-/turf/open/floor/plating{
- burnt = 1
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
},
-/area/maintenance/department/medical)
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/effect/turf_decal/box,
+/mob/living/simple_animal/sloth/citrus{
+ density = 0
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/quartermaster/storage)
"clj" = (
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -7046,24 +6750,6 @@
dir = 9
},
/area/science/research)
-"clH" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/door/window/brigdoor{
- dir = 8;
- name = "Creature Pen";
- req_access_txt = "47"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xeno3";
- name = "Creature Cell"
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
"cma" = (
/obj/machinery/computer/cargo,
/obj/effect/turf_decal/stripes/line,
@@ -7100,15 +6786,6 @@
/area/security/prison{
name = "Prison Processing"
})
-"cmP" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/open/floor/grass/no_border,
-/area/hallway/secondary/exit/departure_lounge)
"cnr" = (
/obj/machinery/airalarm/directional/west,
/obj/machinery/computer/slot_machine,
@@ -7117,6 +6794,18 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/cafeteria)
+"cnK" = (
+/obj/structure/chair/fancy/comfy{
+ buildstackamount = 0;
+ color = "#742925";
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_y = 1
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"cnM" = (
/obj/effect/turf_decal/tile/brown/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -7205,20 +6894,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron/white,
/area/medical/chemistry)
-"coE" = (
-/obj/structure/railing/corner{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron/dark/corner{
- dir = 1
- },
-/area/hallway/primary/central)
"coF" = (
/obj/machinery/reagentgrinder,
/obj/structure/table,
@@ -7399,6 +7074,25 @@
/area/security/brig{
name = "Brig Evidence"
})
+"crF" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
+ },
+/obj/structure/table/glass,
+/obj/item/circular_saw,
+/obj/item/blood_filter{
+ pixel_x = -1;
+ pixel_y = 5
+ },
+/obj/item/hemostat,
+/obj/item/scalpel{
+ pixel_y = 12
+ },
+/turf/open/floor/iron,
+/area/medical/surgery)
+"crM" = (
+/turf/open/floor/iron/white,
+/area/science/explab)
"crW" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -7419,24 +7113,6 @@
},
/turf/closed/wall/r_wall,
/area/engine/atmos)
-"csJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/quartermaster/storage)
"csW" = (
/obj/machinery/conveyor{
dir = 8;
@@ -7481,19 +7157,6 @@
},
/turf/closed/wall/r_wall,
/area/security/warden)
-"ctf" = (
-/obj/effect/turf_decal/guideline/guideline_in/brown,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown/half{
- dir = 8
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
"cti" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -7687,6 +7350,12 @@
},
/turf/open/floor/iron,
/area/security/brig)
+"cuU" = (
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"cve" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 6
@@ -7723,6 +7392,19 @@
},
/turf/open/floor/plating,
/area/hydroponics)
+"cvt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"cvC" = (
/turf/closed/wall,
/area/medical/sleeper)
@@ -7759,12 +7441,10 @@
},
/turf/open/floor/iron,
/area/engine/engine_room)
-"cwz" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/iron/dark,
-/area/chapel/main)
+"cwG" = (
+/obj/effect/mapping_helpers/tile_breaker,
+/turf/open/floor/wood,
+/area/vacant_room/office)
"cwJ" = (
/obj/machinery/door/airlock/grunge{
name = "Chapel Morgue";
@@ -7959,6 +7639,22 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/lobby)
+"cyb" = (
+/obj/effect/turf_decal/guideline/guideline_in/blue{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue/half{
+ dir = 1
+ },
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
"cyy" = (
/turf/closed/wall,
/area/security/main{
@@ -8127,6 +7823,16 @@
/obj/structure/marker_beacon,
/turf/open/space/basic,
/area/space/nearstation)
+"cAT" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"cBp" = (
/obj/effect/landmark/start/lawyer,
/obj/structure/chair/office,
@@ -8146,6 +7852,19 @@
},
/turf/open/floor/iron,
/area/crew_quarters/cafeteria)
+"cBO" = (
+/obj/effect/turf_decal/guideline/guideline_in/blue{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/tile/blue/half{
+ dir = 1
+ },
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
"cCl" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -8182,6 +7901,20 @@
"cCS" = (
/turf/open/floor/plating,
/area/maintenance/department/science)
+"cDk" = (
+/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{
+ alpha = 180
+ },
+/obj/structure/chair/fancy/corp{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/item/toy/plush/slimeplushie/red{
+ pixel_x = 2;
+ pixel_y = 1
+ },
+/turf/open/floor/iron/dark,
+/area/ai_monitored/turret_protected/aisat/foyer)
"cDx" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -8263,14 +7996,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/quartermaster/warehouse)
-"cFk" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plating{
- broken = 1
- },
-/area/maintenance/department/engine)
"cFn" = (
/obj/effect/turf_decal/bot,
/obj/machinery/meter,
@@ -8312,6 +8037,12 @@
},
/turf/open/floor/iron/dark,
/area/storage/tech)
+"cFx" = (
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"cFD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 5
@@ -8345,6 +8076,15 @@
/obj/structure/flora/tree/jungle,
/turf/open/floor/grass,
/area/hallway/primary/central)
+"cGs" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/engine/engine_room)
"cGw" = (
/obj/effect/turf_decal/tile/red/half/contrasted{
alpha = 180;
@@ -8401,6 +8141,16 @@
},
/turf/open/floor/iron,
/area/crew_quarters/kitchen/coldroom)
+"cHR" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/bridge)
"cHW" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -8473,32 +8223,6 @@
},
/turf/open/floor/iron/white,
/area/science/lobby)
-"cIv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/lattice/catwalk/over,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Maintenance Hatch";
- req_one_access_txt = "12;7;29"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
-"cIB" = (
-/obj/effect/turf_decal/siding/wideplating/dark/corner{
- dir = 1
- },
-/turf/open/floor/glass/reinforced,
-/area/chapel/main)
"cIF" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/northleft{
@@ -8545,61 +8269,11 @@
},
/turf/open/floor/iron,
/area/hallway/primary/starboard)
-"cIY" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/button/door{
- id = "evashutter";
- name = "EVA Shutter Control";
- pixel_x = 6;
- pixel_y = -25;
- req_access_txt = "18"
- },
-/obj/machinery/door/airlock/command{
- name = "EVA Storage";
- req_access_txt = "18"
- },
-/obj/effect/mapping_helpers/airlock/unres{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron/dark,
-/area/ai_monitored/storage/eva)
"cJi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/dark,
/area/quartermaster/miningdock)
-"cJt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/guideline/guideline_half_edge/purple{
- dir = 4
- },
-/obj/effect/turf_decal/guideline/guideline_tri/_offset/purple{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/turf/open/floor/iron/white/side{
- dir = 4
- },
-/area/science/research)
"cJy" = (
/obj/machinery/camera/autoname{
network = list("ss13","cargo")
@@ -8690,6 +8364,32 @@
"cKB" = (
/turf/closed/wall,
/area/medical/apothecary)
+"cKR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/starboard/aft)
+"cKY" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "Engidesk";
+ name = "engineering security door"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/northright{
+ dir = 2;
+ name = "Engi Desk";
+ req_one_access_txt = "32;19"
+ },
+/obj/machinery/modular_fabricator/autolathe,
+/turf/open/floor/iron/dark,
+/area/engine/engineering)
"cLj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -8716,6 +8416,14 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai_upload)
+"cLF" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/rack,
+/obj/item/xenoartifact,
+/turf/open/floor/iron/white,
+/area/science/explab)
"cLG" = (
/obj/machinery/atmospherics/pipe/simple/dark/visible{
dir = 4
@@ -8771,6 +8479,21 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"cMl" = (
+/obj/effect/landmark/start/assistant,
+/obj/effect/turf_decal/siding/white{
+ dir = 10
+ },
+/turf/open/floor/glass/reinforced,
+/area/hallway/primary/central{
+ dynamic_lighting = 2;
+ lighting_brightness_tube = 11;
+ lighting_colour_bulb = "#DDE6FF";
+ lighting_colour_night = "#DDE6FF";
+ lighting_colour_tube = "#DDE6FF";
+ lighting_overlay_colour = "#DDE6FF";
+ power_light = 0
+ })
"cME" = (
/obj/structure/table/reinforced,
/obj/effect/turf_decal/stripes{
@@ -8847,9 +8570,25 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/escape)
+"cMV" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/medical/morgue)
"cMW" = (
/turf/closed/wall,
/area/quartermaster/exploration_prep)
+"cMZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"cNj" = (
/obj/machinery/atmospherics/pipe/simple/orange/visible{
dir = 4
@@ -8913,36 +8652,6 @@
/obj/effect/landmark/start/assistant,
/turf/open/floor/iron/cafeteria_red,
/area/crew_quarters/cafeteria)
-"cOc" = (
-/obj/structure/railing/corner{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
-"cOp" = (
-/obj/structure/chair/fancy/sofa/old/left,
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/maintenance/central)
-"cOv" = (
-/obj/structure/railing{
- dir = 9
- },
-/obj/machinery/vending/custom,
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 9
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"cOA" = (
/turf/closed/wall/rust,
/area/maintenance/port/central)
@@ -8952,25 +8661,6 @@
},
/turf/closed/wall,
/area/hydroponics)
-"cOJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"cOL" = (
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -9026,9 +8716,39 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
+"cPy" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ alpha = 180
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/airalarm/directional/east,
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/open/floor/iron,
+/area/engine/storage)
"cPB" = (
/turf/closed/wall/r_wall/rust,
/area/science/misc_lab/range)
+"cPD" = (
+/obj/machinery/airalarm/directional/south,
+/obj/machinery/camera/autoname{
+ dir = 10;
+ network = list("ss13","rd")
+ },
+/obj/structure/rack,
+/obj/item/storage/firstaid/regular{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/healthanalyzer,
+/turf/open/floor/iron/white,
+/area/science/explab)
"cPU" = (
/obj/effect/turf_decal/siding/wood,
/turf/open/floor/wood,
@@ -9134,6 +8854,25 @@
dir = 4
},
/area/science/mixing)
+"cSe" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/trash/can{
+ pixel_x = -10;
+ pixel_y = 11
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"cSi" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
@@ -9188,6 +8927,26 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/tcommsat/computer)
+"cTa" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
+"cTh" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/kirbyplants/random,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/glass/reinforced,
+/area/crew_quarters/cafeteria)
"cTn" = (
/obj/structure/sign/barsign,
/turf/closed/wall,
@@ -9197,6 +8956,23 @@
/obj/machinery/modular_computer/console/preset/engineering,
/turf/open/floor/iron/dark,
/area/crew_quarters/heads/chief)
+"cTJ" = (
+/obj/effect/turf_decal/guideline/guideline_out_alt/brown{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/item/bikehorn,
+/obj/effect/mapping_helpers/tile_breaker,
+/turf/open/floor/wood,
+/area/maintenance/central)
"cTK" = (
/obj/structure/sink{
dir = 1;
@@ -9207,17 +8983,6 @@
"cUa" = (
/turf/closed/wall,
/area/security/brig)
-"cUk" = (
-/obj/machinery/camera/autoname{
- dir = 8;
- network = list("ss13","cargo")
- },
-/obj/machinery/firealarm/directional/east,
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal)
"cUq" = (
/obj/structure/table/wood,
/obj/item/kirbyplants/random{
@@ -9382,18 +9147,18 @@
/obj/machinery/airalarm/directional/north,
/turf/open/floor/iron/tech,
/area/engine/engine_room)
-"cXL" = (
-/obj/structure/window/reinforced{
- dir = 8
+"cXM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/obj/structure/window/reinforced{
- dir = 4
+/obj/structure/disposalpipe/segment{
+ dir = 2
},
-/obj/structure/window/reinforced,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/item/kirbyplants/random,
-/turf/open/floor/grass/no_border,
-/area/hallway/secondary/exit/departure_lounge)
+/turf/open/floor/iron/white,
+/area/science/research)
"cXU" = (
/obj/structure/disposalpipe/segment{
dir = 5
@@ -9445,6 +9210,16 @@
/obj/machinery/firealarm/directional/south,
/turf/open/floor/iron/cafeteria,
/area/crew_quarters/kitchen)
+"cYV" = (
+/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc/auto_name/north{
+ pixel_y = 24
+ },
+/turf/open/floor/iron,
+/area/maintenance/port/aft)
"cYW" = (
/obj/effect/turf_decal/tile/red/half/contrasted{
alpha = 180;
@@ -9494,6 +9269,13 @@
},
/turf/open/floor/iron,
/area/hallway/primary/starboard)
+"cZj" = (
+/obj/machinery/door/airlock/grunge{
+ name = "Morgue";
+ req_access_txt = "6"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/department/medical/morgue)
"cZo" = (
/obj/machinery/door/window/eastright{
base_state = "left";
@@ -9528,19 +9310,6 @@
/obj/structure/closet/emcloset,
/turf/open/floor/plating,
/area/maintenance/port/central)
-"day" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{
- alpha = 180
- },
-/obj/structure/chair/fancy/corp{
- dir = 8
- },
-/obj/item/toy/plush/slimeplushie/blue{
- pixel_x = -3
- },
-/turf/open/floor/iron/dark,
-/area/ai_monitored/turret_protected/aisat/foyer)
"dbc" = (
/obj/structure/disposalpipe/segment{
dir = 8
@@ -9574,25 +9343,21 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating,
/area/maintenance/port/aft)
-"dbq" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
+"dbo" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
+ dir = 1
},
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/radio/intercom{
- pixel_y = 22
+/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
+ alpha = 180;
+ color = "#DE3A3A"
},
-/turf/open/floor/iron,
-/area/engine/engine_room)
-"dbA" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+/obj/structure/disposalpipe/sorting/mail{
+ sortType = 30
},
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal)
+/turf/open/floor/iron,
+/area/security/main{
+ name = "Security Viewing Hall"
+ })
"dbB" = (
/obj/structure/dresser,
/obj/item/bikehorn{
@@ -9638,26 +9403,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/security/courtroom)
-"dbO" = (
-/obj/structure/table/reinforced,
-/obj/item/gun/energy/e_gun{
- pixel_x = 1;
- pixel_y = 5
- },
-/obj/item/gun/energy/e_gun{
- pixel_x = 4;
- pixel_y = 3
- },
-/obj/machinery/door/window/brigdoor/westleft{
- name = "energy guns";
- req_access_txt = "3"
- },
-/obj/structure/window/reinforced,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/ai_monitored/security/armory)
"dbP" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted{
alpha = 200;
@@ -9726,24 +9471,10 @@
},
/turf/open/floor/iron/dark,
/area/crew_quarters/bar)
-"dch" = (
-/obj/effect/turf_decal/tile/yellow/half/contrasted{
- alpha = 180
- },
-/obj/structure/closet/secure_closet/engineering_personal,
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 28
- },
-/obj/item/storage/fancy/candle_box{
- name = "Ignis' candle pack";
- pixel_x = -2;
- pixel_y = 8
- },
+"dcu" = (
+/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
-/area/engine/storage)
+/area/science/robotics)
"dcw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 6
@@ -9802,18 +9533,6 @@
},
/turf/open/floor/plating,
/area/quartermaster/qm)
-"dcX" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Maintenance Hatch";
- req_one_access_txt = "12;63"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/department/security)
"ddl" = (
/obj/effect/landmark/start/cook,
/turf/open/floor/iron/cafeteria,
@@ -9827,14 +9546,6 @@
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"ddt" = (
-/obj/item/kirbyplants/random,
-/obj/structure/window/reinforced{
- dir = 8;
- layer = 3
- },
-/turf/open/floor/circuit/green/telecomms/mainframe,
-/area/quartermaster/exploration_prep)
"ddL" = (
/obj/effect/turf_decal/tile/yellow/half/contrasted{
alpha = 180;
@@ -9963,6 +9674,11 @@
/obj/structure/sign/poster/random,
/turf/closed/wall,
/area/hallway/secondary/exit/departure_lounge)
+"dfy" = (
+/turf/open/floor/iron/stairs/medium{
+ dir = 1
+ },
+/area/hallway/primary/central)
"dfI" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -9975,22 +9691,22 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/engine,
/area/engine/atmos)
-"dfU" = (
+"dfX" = (
+/turf/open/space/basic,
+/area/space/nearstation)
+"dga" = (
+/obj/effect/turf_decal/guideline/guideline_in/brown,
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
- },
-/obj/structure/extinguisher_cabinet{
- pixel_y = 32
+/obj/effect/turf_decal/tile/brown/half{
+ dir = 8
},
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/iron,
-/area/engine/engine_room)
-"dfX" = (
-/turf/open/space/basic,
-/area/space/nearstation)
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
"dgg" = (
/obj/structure/sign/poster/random,
/turf/closed/wall/r_wall,
@@ -10015,19 +9731,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/engine/atmos)
-"dgD" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/iron/white,
-/area/science/xenobiology)
"dgT" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
@@ -10037,22 +9740,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"dhg" = (
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 1
- },
-/obj/effect/turf_decal/guideline/guideline_edge/red{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/obj/machinery/camera/autoname{
- dir = 4;
- network = list("ss13","security")
- },
-/turf/open/floor/iron,
-/area/security/brig)
"dhn" = (
/obj/structure/chair/fancy/bench/pew/right{
dir = 1
@@ -10091,21 +9778,6 @@
/obj/effect/turf_decal/bot_white,
/turf/open/floor/prison,
/area/security/prison)
-"dhX" = (
-/obj/effect/turf_decal/guideline/guideline_out/brown{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/iron/techmaint,
-/area/hallway/secondary/service)
"dhY" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/structure/frame/machine,
@@ -10363,17 +10035,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
-"dly" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Maintenance Hatch";
- req_access_txt = "47"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/lattice/catwalk/over,
-/turf/open/floor/plating,
-/area/science/xenobiology)
"dlF" = (
/obj/effect/spawner/lootdrop/maintenance/two,
/obj/structure/rack,
@@ -10490,13 +10151,31 @@
},
/turf/open/floor/iron/dark,
/area/storage/primary)
-"dob" = (
-/obj/effect/decal/cleanable/generic,
+"dnF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
/obj/structure/cable/yellow{
- icon_state = "1-4"
+ icon_state = "2-4"
},
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/starboard/aft)
+"dnH" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/effect/decal/cleanable/blood/old,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"doe" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/preopen{
@@ -10569,6 +10248,21 @@
/area/security/brig{
name = "Brig Interrogation"
})
+"dqc" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/aft)
"dqd" = (
/obj/machinery/button/door{
id = "cmoprivacy";
@@ -10608,6 +10302,25 @@
},
/turf/open/floor/iron,
/area/medical/sleeper)
+"dqt" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"dqx" = (
/obj/effect/turf_decal/guideline/guideline_edge/red{
dir = 1
@@ -10627,20 +10340,6 @@
},
/turf/open/floor/plating,
/area/security/checkpoint/auxiliary)
-"dqO" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 4
- },
-/obj/structure/railing{
- dir = 4
- },
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/bot,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"dqV" = (
/obj/item/storage/secure/safe{
pixel_x = 37;
@@ -10673,20 +10372,6 @@
"drp" = (
/turf/closed/wall,
/area/engine/atmos)
-"drx" = (
-/obj/structure/railing,
-/obj/machinery/light/floor{
- brightness = 15;
- bulb_colour = "#FFE4CE";
- bulb_vacuum_brightness = 15;
- nightshift_brightness = 10;
- nightshift_light_color = "#E6EBFF"
- },
-/obj/effect/turf_decal/siding/wideplating/dark,
-/turf/open/floor/iron/dark/smooth_edge{
- dir = 1
- },
-/area/hallway/primary/central)
"drI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -10718,21 +10403,6 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"dsd" = (
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_y = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/light/floor{
- brightness = 15;
- bulb_colour = "#FFE4CE";
- bulb_vacuum_brightness = 15;
- nightshift_brightness = 10;
- nightshift_light_color = "#E6EBFF"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"dst" = (
/obj/machinery/status_display/evac,
/turf/closed/wall,
@@ -10789,6 +10459,21 @@
},
/turf/open/floor/iron/dark,
/area/security/checkpoint/auxiliary)
+"dtp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"dtY" = (
/obj/machinery/light/floor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -10950,6 +10635,14 @@
/obj/machinery/airalarm/directional/north,
/turf/open/floor/iron,
/area/science/lab)
+"dvx" = (
+/obj/machinery/computer/apc_control{
+ dir = 1
+ },
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/engine/engine_room)
"dvH" = (
/turf/open/floor/iron/dark/side{
dir = 4
@@ -11005,16 +10698,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/medical/sleeper)
-"dwv" = (
-/obj/machinery/firealarm/directional/south,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/turf/open/floor/iron/dark,
-/area/chapel/office)
"dwF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/structure/cable/yellow{
@@ -11041,6 +10724,31 @@
},
/turf/open/floor/iron/dark,
/area/science/nanite)
+"dwI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/effect/turf_decal/guideline/guideline_edge/purple{
+ dir = 4
+ },
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/science/lobby)
+"dwP" = (
+/obj/effect/turf_decal/tile/neutral/half,
+/obj/machinery/camera/autoname{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_x = -20;
+ pixel_y = -21
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/chapel/office)
"dwT" = (
/obj/machinery/computer/security/hos{
dir = 8
@@ -11055,20 +10763,6 @@
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"dwW" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Disposal Access";
- req_one_access_txt = "31;48;26"
- },
-/obj/effect/mapping_helpers/airlock/unres{
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/quartermaster/office)
"dxa" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted{
@@ -11085,14 +10779,6 @@
},
/turf/open/floor/iron/dark,
/area/medical/virology)
-"dxs" = (
-/obj/item/chair/wood{
- pixel_x = -26;
- pixel_y = 9
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/library)
"dxu" = (
/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{
dir = 4
@@ -11173,6 +10859,18 @@
"dyM" = (
/turf/open/floor/wood,
/area/vacant_room/office)
+"dyS" = (
+/obj/structure/table,
+/obj/item/book/manual/wiki/sopsecurity{
+ pixel_x = 4;
+ pixel_y = 5
+ },
+/obj/item/toy/plush/nukeplushie{
+ pixel_x = -3;
+ pixel_y = -9
+ },
+/turf/open/floor/wood,
+/area/security/prison)
"dzf" = (
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -11200,19 +10898,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/cafeteria)
-"dzr" = (
-/obj/structure/railing{
- dir = 10
- },
-/obj/machinery/light/floor{
- brightness = 15;
- bulb_colour = "#FFE4CE";
- bulb_vacuum_brightness = 15;
- nightshift_brightness = 10;
- nightshift_light_color = "#E6EBFF"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"dzx" = (
/obj/item/radio/intercom{
pixel_x = -31;
@@ -11284,6 +10969,19 @@
},
/turf/open/floor/iron/sepia,
/area/maintenance/port/central)
+"dAb" = (
+/obj/machinery/stasis{
+ dir = 1
+ },
+/obj/machinery/camera/autoname{
+ dir = 5;
+ network = list("ss13","security")
+ },
+/obj/machinery/defibrillator_mount{
+ pixel_x = -32
+ },
+/turf/open/floor/iron/white,
+/area/security/brig/medbay)
"dAc" = (
/obj/machinery/atmospherics/components/binary/pump/on{
dir = 8
@@ -11300,13 +10998,20 @@
/turf/open/floor/plating,
/area/maintenance/central)
"dAm" = (
-/obj/machinery/door/window/brigdoor/security/cell/eastleft{
- id = "cell";
- name = "Solitary Confinement";
- req_one_access_txt = "2"
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/turf/open/floor/iron/dark,
-/area/security/prison/shielded)
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/guideline/guideline_in/green{
+ color = "#439C1E"
+ },
+/obj/effect/turf_decal/tile/dark_green/half{
+ dir = 8
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
"dAy" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 8
@@ -11320,6 +11025,19 @@
/area/security/brig{
name = "Brig Interrogation"
})
+"dAD" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -33;
+ pixel_y = 1
+ },
+/obj/effect/turf_decal/guideline/guideline_edge/blue{
+ dir = 8
+ },
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/medical/sleeper)
"dAE" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -11329,20 +11047,6 @@
/obj/machinery/holopad,
/turf/open/floor/iron/dark,
/area/security/brig/dock)
-"dAK" = (
-/obj/structure/railing{
- dir = 6;
- layer = 3.1
- },
-/obj/structure/chair/fancy/comfy{
- color = "#596479";
- dir = 1
- },
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 6
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"dAL" = (
/obj/structure/disposaloutlet{
dir = 8
@@ -11462,13 +11166,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"dCf" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Maintenance Hatch";
- req_access_txt = "50"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/central)
"dCs" = (
/obj/machinery/shieldwallgen,
/obj/effect/turf_decal/bot,
@@ -11518,25 +11215,6 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat/foyer)
-"dCW" = (
-/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/item/radio/intercom{
- desc = "Talk through this. It looks like it has been modified to not broadcast.";
- freerange = 1;
- name = "Prison intercom";
- pixel_y = 25;
- prison_radio = 1
- },
-/turf/open/floor/prison,
-/area/security/prison{
- name = "Prison Visitation"
- })
"dCY" = (
/obj/structure/sign/poster/random{
pixel_x = 2
@@ -11547,22 +11225,6 @@
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
/area/maintenance/department/science)
-"dDd" = (
-/obj/effect/turf_decal/guideline/guideline_out_arrow/brown{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/mob/living/basic/cockroach,
-/turf/open/floor/iron/techmaint,
-/area/hallway/secondary/service)
"dDl" = (
/obj/effect/turf_decal/tile/white/anticorner,
/turf/open/floor/iron,
@@ -11572,35 +11234,25 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/carpet/royalblack,
/area/library)
-"dDA" = (
-/obj/structure/table/reinforced,
-/obj/item/paper/guides/recycler,
-/obj/machinery/button/massdriver{
- id = "TrashDisp";
- pixel_x = -29;
- pixel_y = 8
- },
-/obj/machinery/button/door{
- id = "TrashDoor";
- name = "Disposal Vent Control";
- pixel_x = -39;
- pixel_y = 7;
- req_access_txt = "12"
+"dDD" = (
+/obj/machinery/light/floor{
+ brightness = 15;
+ bulb_colour = "#FFE4CE";
+ bulb_vacuum_brightness = 15;
+ nightshift_brightness = 10;
+ nightshift_light_color = "#E6EBFF"
},
-/obj/item/radio/intercom{
- dir = 1;
- pixel_x = -34;
- pixel_y = -7
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 4
},
-/obj/machinery/light_switch{
- pixel_x = -21;
- pixel_y = 8
+/obj/structure/railing/corner{
+ dir = 4
},
-/obj/item/toy/plush/lizard_plushie{
- name = "Eats-The-Rubbish"
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 8
},
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal)
+/area/hallway/primary/central)
"dDR" = (
/obj/machinery/status_display/evac{
pixel_x = 32
@@ -11671,10 +11323,22 @@
/obj/structure/closet/secure_closet/chemical,
/turf/open/floor/iron/white,
/area/medical/chemistry)
-"dEr" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood,
-/area/maintenance/port/aft)
+"dEM" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/button/door{
+ id = "xeno3";
+ name = "Containment Control";
+ pixel_x = -32;
+ pixel_y = 3;
+ req_access_txt = "55"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/iron/white,
+/area/science/xenobiology)
"dEP" = (
/turf/closed/wall/r_wall,
/area/science/server)
@@ -11685,6 +11349,19 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/tech,
/area/engine/engine_room)
+"dEV" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/atmospherics{
+ anchored = 1
+ },
+/turf/open/floor/iron/dark,
+/area/engine/atmos)
"dEY" = (
/obj/machinery/atmospherics/pipe/simple/orange/visible{
dir = 4
@@ -11789,6 +11466,15 @@
},
/turf/open/floor/plating,
/area/ai_monitored/storage/satellite)
+"dGC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"dGE" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -11925,18 +11611,16 @@
},
/turf/open/floor/prison,
/area/security/prison)
-"dHQ" = (
-/obj/structure/railing{
- dir = 10;
- layer = 3.1
+"dHP" = (
+/obj/structure/railing/corner{
+ dir = 8
},
-/obj/structure/chair/fancy/comfy{
- buildstackamount = 0;
- color = "#742925";
- dir = 1
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 10
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
/turf/open/floor/iron/dark/smooth_large,
/area/hallway/primary/central)
@@ -12089,18 +11773,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
-"dKE" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/beakers{
- pixel_x = 4;
- pixel_y = 15
- },
-/obj/item/storage/box/syringes{
- pixel_x = -3;
- pixel_y = 5
- },
-/turf/open/floor/iron/grid/steel,
-/area/science/xenobiology)
"dKH" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted{
alpha = 200;
@@ -12209,27 +11881,6 @@
},
/turf/open/floor/iron,
/area/science/lab)
-"dLA" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/generic,
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/bridge)
-"dLW" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/solar{
- id = "portsolar";
- name = "Port Solar Array"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/port/fore)
"dMi" = (
/obj/structure/window/reinforced{
dir = 4
@@ -12259,6 +11910,46 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron/dark,
/area/engine/atmos)
+"dMH" = (
+/obj/structure/rack,
+/obj/item/storage/box/rubbershot{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/storage/box/rubbershot{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/storage/box/rubbershot{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/storage/box/rubbershot{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/storage/box/rubbershot{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/storage/box/rubbershot{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/storage/box/breacherslug,
+/obj/item/storage/box/breacherslug,
+/obj/item/storage/box/breacherslug,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light{
+ bulb_colour = "#DE3A3A";
+ dir = 8;
+ nightshift_light_color = "#DE3A3A"
+ },
+/turf/open/floor/iron,
+/area/ai_monitored/security/armory)
"dMN" = (
/obj/structure/disposalpipe/segment{
dir = 1
@@ -12270,11 +11961,6 @@
dir = 10
},
/area/science/lobby)
-"dMS" = (
-/obj/machinery/space_heater,
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/plating,
-/area/maintenance/central)
"dMT" = (
/obj/structure/table/wood,
/obj/structure/extinguisher_cabinet{
@@ -12325,29 +12011,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
-"dNq" = (
-/obj/structure/railing/corner{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/machinery/camera/autoname{
- view_range = 12
- },
-/obj/effect/turf_decal/siding/wideplating/dark/corner{
- dir = 4
- },
-/obj/machinery/newscaster{
- pixel_y = 34
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/iron/dark/corner{
- dir = 4
- },
-/area/hallway/primary/central)
"dNu" = (
/obj/structure/table/reinforced,
/obj/item/storage/firstaid/regular{
@@ -12412,16 +12075,6 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat_interior)
-"dNO" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/obj/effect/turf_decal/bot,
-/obj/machinery/computer/rdconsole/experiment{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/science/explab)
"dNQ" = (
/obj/effect/turf_decal/guideline/guideline_in/darkblue{
dir = 8
@@ -12447,6 +12100,15 @@
"dOb" = (
/turf/open/floor/plating/airless,
/area/science/test_area)
+"dOi" = (
+/obj/effect/decal/cleanable/crayon,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/food/spaghetti/butternoodles,
+/turf/open/floor/plating{
+ burnt = 1
+ },
+/area/maintenance/department/medical)
"dOx" = (
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plating,
@@ -12545,22 +12207,6 @@
},
/turf/open/floor/iron,
/area/engine/engineering)
-"dPV" = (
-/obj/machinery/door/window/brigdoor{
- dir = 8;
- name = "Secure Creature Pen";
- req_access_txt = "47"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenosecure";
- name = "Secure Pen Shutters"
- },
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- dir = 5
- },
-/obj/effect/decal/cleanable/oil/slippery,
-/turf/open/floor/engine,
-/area/science/xenobiology)
"dQf" = (
/obj/machinery/power/apc/auto_name/east,
/obj/structure/cable/yellow{
@@ -12624,11 +12270,6 @@
},
/turf/open/floor/iron,
/area/security/brig/medbay)
-"dRK" = (
-/turf/open/floor/iron/stairs/medium{
- dir = 1
- },
-/area/hallway/primary/central)
"dRO" = (
/obj/structure/sign/poster/random,
/turf/closed/wall,
@@ -12803,14 +12444,6 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat_interior)
-"dUB" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "xenosecure";
- name = "Secure Pen Shutters"
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
"dUZ" = (
/obj/machinery/door/airlock/grunge{
name = "Cabin 2"
@@ -12842,6 +12475,21 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/engine/engine_room)
+"dVj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/aft)
"dVp" = (
/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{
alpha = 180
@@ -12871,6 +12519,24 @@
/obj/effect/decal/cleanable/glass,
/turf/open/floor/iron,
/area/maintenance/central)
+"dVW" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/light_switch{
+ pixel_y = -20
+ },
+/obj/structure/table/reinforced,
+/obj/item/storage/box/syringes{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/item/storage/box/beakers{
+ pixel_x = 4;
+ pixel_y = 15
+ },
+/turf/open/floor/iron/grid/steel,
+/area/science/xenobiology)
"dVX" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 8
@@ -12934,17 +12600,6 @@
/obj/structure/table/wood,
/turf/open/floor/carpet/green,
/area/crew_quarters/cafeteria)
-"dWL" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/chair/fancy/comfy{
- color = "#596479";
- dir = 8
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"dWN" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 4
@@ -13036,18 +12691,6 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/turf/open/floor/iron,
/area/security/brig)
-"dYe" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"dYk" = (
/obj/structure/table/reinforced,
/obj/item/toy/figure/chef,
@@ -13063,14 +12706,6 @@
/obj/machinery/firealarm/directional/east,
/turf/open/floor/carpet/purple,
/area/chapel/main)
-"dYo" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/starboard/aft)
"dYt" = (
/obj/structure/curtain,
/obj/item/soap/nanotrasen,
@@ -13149,13 +12784,6 @@
/obj/structure/railing,
/turf/open/floor/wood,
/area/crew_quarters/theatre)
-"dZx" = (
-/obj/machinery/smartfridge/sci{
- initial_contents = list(/obj/item/stock_parts/capacitor = 2, /obj/item/stock_parts/manipulator = 2, /obj/item/stock_parts/micro_laser = 2, /obj/item/stock_parts/matter_bin = 2, /obj/item/stock_parts/scanning_module = 2);
- name = "Science vender"
- },
-/turf/closed/wall,
-/area/science/lab)
"dZF" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -13170,6 +12798,21 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/engine/atmos)
+"eaw" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/autoname{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/bridge)
"eaz" = (
/obj/effect/turf_decal/tile/neutral{
dir = 8
@@ -13317,6 +12960,17 @@
},
/turf/open/floor/iron/white,
/area/medical/virology)
+"edm" = (
+/obj/effect/turf_decal/guideline/guideline_edge/purple{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/science/lobby)
"edG" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -13360,22 +13014,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/starboard)
-"eeA" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/turf_decal/guideline/guideline_edge/purple{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/corner,
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/machinery/firealarm/directional/east,
-/turf/open/floor/iron/white/side{
- dir = 4
- },
-/area/science/research)
"eeJ" = (
/turf/closed/wall,
/area/crew_quarters/kitchen)
@@ -13417,6 +13055,41 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/exploration_prep)
+"efl" = (
+/obj/machinery/button/door{
+ id = "brigentrance";
+ name = "Brig Lockdown Control";
+ pixel_x = -23;
+ pixel_y = 6;
+ req_access_txt = "3"
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_x = -37;
+ pixel_y = 4
+ },
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 8
+ },
+/obj/machinery/button/door{
+ id = "Prisongate";
+ name = "Prison Wing Lockdown";
+ pixel_x = -23;
+ pixel_y = -6;
+ req_access_txt = "3"
+ },
+/obj/machinery/photocopier,
+/obj/effect/turf_decal/bot,
+/obj/item/radio/intercom{
+ desc = "Talk through this. It looks like it has been modified to not broadcast.";
+ freerange = 1;
+ name = "Prison intercom";
+ pixel_x = -37;
+ pixel_y = -10;
+ prison_radio = 1
+ },
+/turf/open/floor/iron/dark,
+/area/security/warden)
"efp" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow{
@@ -13539,6 +13212,15 @@
},
/turf/open/floor/iron/dark,
/area/engine/engine_room)
+"ehk" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_y = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"ehV" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
@@ -13600,6 +13282,11 @@
"eiL" = (
/turf/open/floor/engine/plasma,
/area/engine/atmos)
+"eiW" = (
+/obj/item/clothing/suit/hooded/cultrobes/alt,
+/obj/item/toy/toy_dagger,
+/turf/open/floor/cult,
+/area/chapel/office)
"ejb" = (
/obj/effect/turf_decal/bot,
/obj/structure/sign/painting/library{
@@ -13625,6 +13312,21 @@
},
/turf/open/floor/plating,
/area/security/checkpoint/escape)
+"ejB" = (
+/obj/effect/turf_decal/guideline/guideline_out/brown{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/techmaint,
+/area/maintenance/central)
"ejQ" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -13714,6 +13416,13 @@
/obj/item/trash/cheesie,
/turf/open/floor/plating,
/area/maintenance/department/security)
+"ekZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/tile_breaker,
+/turf/open/floor/wood,
+/area/library)
"eln" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -13763,12 +13472,6 @@
},
/turf/open/floor/iron/cafeteria,
/area/crew_quarters/kitchen)
-"ems" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/turf/open/floor/iron/dark,
-/area/chapel/main)
"emB" = (
/obj/effect/turf_decal/tile/neutral/half{
dir = 4
@@ -13835,17 +13538,6 @@
},
/turf/open/floor/carpet,
/area/library)
-"enV" = (
-/obj/effect/turf_decal/guideline/guideline_edge/purple{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/turf/open/floor/iron/white/side{
- dir = 4
- },
-/area/science/research)
"eog" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -13893,18 +13585,6 @@
/obj/structure/closet/emcloset,
/turf/open/floor/plating,
/area/security/brig/medbay)
-"eoS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"eoT" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -13927,13 +13607,6 @@
},
/turf/open/floor/iron/dark,
/area/engine/engineering)
-"epu" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/iron/dark,
-/area/science/robotics)
"epw" = (
/obj/structure/table,
/obj/machinery/reagentgrinder{
@@ -13980,20 +13653,6 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/iron,
/area/engine/engine_room)
-"epQ" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/turf_decal/siding/thinplating/light{
- dir = 8
- },
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 8
- },
-/turf/open/floor/iron/dark/smooth_edge{
- dir = 4
- },
-/area/hallway/primary/central)
"epS" = (
/obj/machinery/door/airlock/public/glass{
name = "Primary Hallway"
@@ -14044,6 +13703,18 @@
"eqb" = (
/turf/closed/wall,
/area/library)
+"eqi" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"eqr" = (
/obj/effect/turf_decal/stripes/corner,
/obj/machinery/atmospherics/pipe/manifold/green/visible{
@@ -14051,18 +13722,6 @@
},
/turf/open/floor/iron/dark,
/area/engine/engine_room)
-"eqN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron/grid/steel,
-/area/science/xenobiology)
"eqS" = (
/obj/effect/turf_decal/siding/wood{
dir = 4
@@ -14148,6 +13807,13 @@
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/iron,
/area/maintenance/department/engine)
+"esM" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/closet/crate/trashcart,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal)
"esO" = (
/obj/machinery/rnd/production/protolathe/department/science,
/obj/effect/turf_decal/stripes/line{
@@ -14241,40 +13907,6 @@
},
/turf/open/floor/iron/dark,
/area/security/brig/dock)
-"euN" = (
-/obj/machinery/light{
- dir = 2
- },
-/obj/effect/turf_decal/guideline/guideline_edge/purple,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/iron/white/side{
- dir = 1
- },
-/area/science/research)
-"euO" = (
-/obj/effect/turf_decal/guideline/guideline_in/red{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/tile/dark_red/half{
- color = "#DE3A3A"
- },
-/obj/effect/turf_decal/tile/dark_red/half{
- color = "#DE3A3A"
- },
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
-"euQ" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/medical/morgue)
"euS" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -14285,6 +13917,16 @@
/obj/machinery/telecomms/bus/preset_one,
/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/server)
+"euT" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/bridge)
"euY" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -14348,11 +13990,39 @@
},
/turf/open/floor/carpet/blue,
/area/crew_quarters/heads/hop)
+"evJ" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "testlab";
+ name = "test chamber blast door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/science/explab)
+"evO" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/open/floor/grass/no_border,
+/area/hallway/secondary/exit/departure_lounge)
"ewf" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/structure/lattice/catwalk,
/turf/open/space/basic,
/area/space/nearstation)
+"ewh" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"ewi" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/turf/open/floor/iron/dark,
@@ -14514,6 +14184,21 @@
},
/turf/open/floor/iron,
/area/science/robotics)
+"eyM" = (
+/obj/machinery/power/smes/engineering{
+ charge = 2e+007
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"eyT" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 4
@@ -14587,15 +14272,6 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/turf/open/floor/iron/white,
/area/science/research)
-"eAz" = (
-/obj/machinery/light/small{
- brightness = 3
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/medical/morgue)
"eAC" = (
/turf/closed/wall,
/area/security/checkpoint/medical)
@@ -14624,20 +14300,6 @@
dir = 5
},
/area/medical/sleeper)
-"eAS" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/button/door{
- id = "xeno3";
- name = "Containment Control";
- pixel_x = -32;
- pixel_y = 3;
- req_access_txt = "55"
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/iron/white,
-/area/science/xenobiology)
"eAT" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -14650,6 +14312,17 @@
dir = 8
},
/area/science/mixing/chamber)
+"eAY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/white,
+/area/science/xenobiology)
"eBg" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -14691,6 +14364,14 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron/dark,
/area/security/nuke_storage)
+"eBL" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/item/stack/cable_coil/cut,
+/turf/open/floor/iron,
+/area/maintenance/port/aft)
"eBS" = (
/obj/machinery/airalarm{
dir = 1;
@@ -14851,6 +14532,21 @@
},
/turf/open/floor/plating,
/area/maintenance/disposal)
+"eEf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"eEg" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -14858,29 +14554,6 @@
},
/turf/open/space/basic,
/area/solar/port/fore)
-"eEp" = (
-/obj/structure/railing/corner{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/effect/turf_decal/siding/wideplating/dark/corner{
- dir = 1
- },
-/obj/machinery/camera/autoname{
- view_range = 12
- },
-/obj/machinery/status_display/evac{
- pixel_y = 32
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/iron/dark/corner{
- dir = 1
- },
-/area/hallway/primary/central)
"eED" = (
/obj/structure/bodycontainer/morgue,
/obj/machinery/camera/autoname{
@@ -14888,6 +14561,19 @@
},
/turf/open/floor/iron/dark,
/area/medical/morgue)
+"eEJ" = (
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/bridge)
"eEY" = (
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -14897,6 +14583,32 @@
},
/turf/open/floor/iron/white,
/area/science/research)
+"eFf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/guideline/guideline_edge_alt/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/guideline/guideline_half_edge/red,
+/obj/effect/turf_decal/guideline/guideline_half_edge/red{
+ dir = 5
+ },
+/obj/effect/turf_decal/guideline/guideline_tri/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/camera/autoname{
+ dir = 1
+ },
+/obj/machinery/light,
+/obj/item/radio/intercom{
+ frequency = 1423;
+ name = "Interrogation Intercom";
+ pixel_y = -35
+ },
+/turf/open/floor/iron,
+/area/security/brig)
"eFu" = (
/obj/effect/turf_decal/tile/blue/half/contrasted{
alpha = 200;
@@ -15150,6 +14862,13 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"eIE" = (
+/obj/effect/decal/cleanable/crayon,
+/obj/item/food/butteredtoast,
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/maintenance/department/medical)
"eIH" = (
/obj/machinery/door/airlock/science{
name = "Toxins Lab";
@@ -15245,30 +14964,17 @@
/area/security/main{
name = "Security Viewing Hall"
})
-"eJT" = (
-/obj/effect/turf_decal/guideline/guideline_in/red{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/effect/turf_decal/tile/dark_red/half{
- color = "#DE3A3A"
- },
-/obj/effect/turf_decal/tile/dark_red/half{
- color = "#DE3A3A"
- },
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
"eJV" = (
/turf/closed/wall/r_wall,
/area/security/brig{
name = "Brig Interrogation"
})
+"eKd" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/science/xenobiology)
"eKi" = (
/obj/effect/turf_decal/siding/wideplating/dark{
dir = 5
@@ -15434,6 +15140,52 @@
},
/turf/open/floor/engine,
/area/engine/atmos)
+"eMU" = (
+/obj/effect/landmark/start/randommaint/vip,
+/obj/effect/landmark/observer_start,
+/obj/machinery/holopad{
+ pixel_x = 16;
+ pixel_y = 16
+ },
+/obj/item/beacon{
+ pixel_x = 16;
+ pixel_y = 19
+ },
+/turf/open/floor/glass/reinforced,
+/area/hallway/primary/central{
+ dynamic_lighting = 2;
+ lighting_brightness_tube = 11;
+ lighting_colour_bulb = "#DDE6FF";
+ lighting_colour_night = "#DDE6FF";
+ lighting_colour_tube = "#DDE6FF";
+ lighting_overlay_colour = "#DDE6FF";
+ power_light = 0
+ })
+"eNe" = (
+/obj/structure/table/reinforced,
+/obj/item/gun/ballistic/shotgun/riot{
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/obj/item/gun/ballistic/shotgun/riot{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/machinery/door/window/brigdoor/westleft{
+ name = "shotguns";
+ req_access_txt = "3"
+ },
+/obj/structure/window/reinforced,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light{
+ bulb_colour = "#DE3A3A";
+ dir = 4;
+ nightshift_light_color = "#DE3A3A"
+ },
+/turf/open/floor/iron,
+/area/ai_monitored/security/armory)
"eNg" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -15457,33 +15209,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"eNC" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/guideline/guideline_edge_alt/red{
- dir = 1
- },
-/obj/effect/turf_decal/guideline/guideline_half_edge/red,
-/obj/effect/turf_decal/guideline/guideline_half_edge/red{
- dir = 5
- },
-/obj/effect/turf_decal/guideline/guideline_tri/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/machinery/camera/autoname{
- dir = 1;
- network = list("ss13","security")
- },
-/obj/machinery/light,
-/obj/item/radio/intercom{
- frequency = 1423;
- name = "Interrogation Intercom";
- pixel_y = -35
- },
-/turf/open/floor/iron,
-/area/security/brig)
"eNH" = (
/obj/item/kirbyplants/random,
/obj/effect/turf_decal/stripes/line{
@@ -15534,6 +15259,20 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/security/brig)
+"eOy" = (
+/obj/effect/turf_decal/guideline/guideline_edge/purple{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/science/research)
"eOD" = (
/obj/machinery/biogenerator,
/turf/open/floor/grass,
@@ -15588,6 +15327,19 @@
"ePI" = (
/turf/closed/wall/rust,
/area/quartermaster/sorting)
+"ePP" = (
+/obj/effect/turf_decal/guideline/guideline_in/brown,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown/half{
+ dir = 8
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
"ePS" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/carpet/royalblack,
@@ -15599,6 +15351,20 @@
},
/turf/open/floor/engine/airless,
/area/engine/atmos)
+"eQf" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"eQk" = (
/obj/effect/turf_decal/tile/dark_blue{
alpha = 180;
@@ -15645,30 +15411,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/sepia,
/area/quartermaster/storage)
-"eRw" = (
-/obj/machinery/power/terminal{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer2{
- dir = 8
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"eRx" = (
/obj/effect/turf_decal/bot{
dir = 1
@@ -15698,34 +15440,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/techmaint,
/area/storage/tech)
-"eSj" = (
-/obj/effect/turf_decal/guideline/guideline_in/neutral{
- alpha = 255;
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
- },
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
- },
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
- },
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
"eSn" = (
/obj/effect/turf_decal/tile/red/half/contrasted,
/obj/structure/closet/secure_closet/genpop,
@@ -15933,6 +15647,20 @@
/obj/effect/decal/cleanable/glass,
/turf/open/floor/plating,
/area/maintenance/port/aft)
+"eTH" = (
+/obj/structure/railing{
+ dir = 6;
+ layer = 3.1
+ },
+/obj/structure/chair/fancy/comfy{
+ color = "#596479";
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 6
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"eUb" = (
/obj/structure/lattice/catwalk,
/obj/machinery/camera/autoname{
@@ -16056,6 +15784,22 @@
},
/turf/open/floor/iron/tech,
/area/engine/atmos)
+"eUV" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/chair/fancy/sofa/old/right{
+ dir = 4
+ },
+/obj/machinery/vending/wallmed{
+ pixel_y = -32;
+ products = list(/obj/item/stack/medical/gauze = 4, /obj/item/reagent_containers/hypospray/medipen = 3, /obj/item/reagent_containers/hypospray/medipen/dexalin = 3, /obj/item/reagent_containers/glass/bottle/epinephrine = 2, /obj/item/reagent_containers/glass/bottle/charcoal = 2)
+ },
+/obj/machinery/newscaster{
+ pixel_x = -32;
+ pixel_y = 2
+ },
+/turf/open/floor/carpet/green,
+/area/crew_quarters/cafeteria)
"eVa" = (
/obj/machinery/atmospherics/pipe/simple/purple/visible{
dir = 4
@@ -16065,6 +15809,21 @@
},
/turf/open/floor/iron/tech,
/area/engine/atmos)
+"eVc" = (
+/obj/effect/turf_decal/guideline/guideline_out_arrow/brown{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/techmaint,
+/area/maintenance/central)
"eVj" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 8
@@ -16130,15 +15889,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/cafeteria)
-"eWt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/obj/structure/railing/corner,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"eWu" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -16183,21 +15933,6 @@
},
/turf/open/floor/iron/cafeteria_red,
/area/crew_quarters/bar)
-"eWO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"eWX" = (
/obj/effect/decal/cleanable/glass{
dir = 1
@@ -16261,12 +15996,41 @@
},
/turf/open/space/basic,
/area/space/nearstation)
+"eXQ" = (
+/obj/structure/railing{
+ dir = 10
+ },
+/obj/machinery/light/floor{
+ brightness = 15;
+ bulb_colour = "#FFE4CE";
+ bulb_vacuum_brightness = 15;
+ nightshift_brightness = 10;
+ nightshift_light_color = "#E6EBFF"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"eXZ" = (
/obj/structure/table/wood,
/obj/item/instrument/guitar,
/obj/machinery/firealarm/directional/west,
/turf/open/floor/wood,
/area/library)
+"eYc" = (
+/obj/effect/turf_decal/tile/neutral/half,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/chapel/office)
"eYe" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -16327,12 +16091,6 @@
/obj/effect/decal/cleanable/glass,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"eYS" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 9
- },
-/turf/open/floor/glass/reinforced,
-/area/chapel/main)
"eZm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -16357,20 +16115,6 @@
},
/turf/open/floor/engine,
/area/engine/supermatter)
-"eZz" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4,
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/components/binary/volume_pump,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"eZA" = (
/obj/effect/turf_decal/tile/red/anticorner/contrasted{
alpha = 180;
@@ -16402,6 +16146,19 @@
/obj/item/stock_parts/cell/high,
/turf/open/floor/iron/dark,
/area/engine/engineering)
+"eZQ" = (
+/obj/structure/musician/piano{
+ icon_state = "piano"
+ },
+/obj/machinery/light{
+ light_color = "#7AC3FF"
+ },
+/obj/machinery/camera/autoname{
+ c_tag = "Captain's Quarters";
+ dir = 1
+ },
+/turf/open/floor/glass/reinforced,
+/area/crew_quarters/cafeteria)
"fan" = (
/obj/effect/landmark/start/cargo_technician,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -16485,14 +16242,6 @@
},
/turf/open/floor/carpet/blue,
/area/medical/exam_room)
-"fbM" = (
-/obj/structure/chair/fancy/sofa/old{
- dir = 4
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/maintenance/central)
"fbP" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -16500,28 +16249,6 @@
},
/turf/open/floor/plating,
/area/maintenance/department/science)
-"fbT" = (
-/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
-/obj/machinery/camera/autoname{
- dir = 9;
- network = list("ss13","prison")
- },
-/obj/item/radio/intercom{
- desc = "Talk through this. It looks like it has been modified to not broadcast.";
- freerange = 1;
- name = "Prison intercom";
- pixel_x = 25;
- prison_radio = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/prison,
-/area/security/prison)
"fbY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -16565,6 +16292,25 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron,
/area/crew_quarters/dorms)
+"fcE" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/rock/jungle,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "hopqueue";
+ name = "HoP Queue Shutters"
+ },
+/turf/open/floor/grass/no_border,
+/area/crew_quarters/heads/hop)
"fcK" = (
/obj/structure/cable{
icon_state = "1-4"
@@ -16626,6 +16372,31 @@
},
/turf/open/floor/plating,
/area/maintenance/department/medical/morgue)
+"fdc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/effect/turf_decal/guideline/guideline_in/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple/half{
+ dir = 4
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
+"fdi" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/radio/intercom{
+ pixel_y = 22
+ },
+/turf/open/floor/iron,
+/area/engine/engine_room)
"fdq" = (
/obj/effect/turf_decal/siding/wood{
dir = 5
@@ -16681,6 +16452,21 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
+"feg" = (
+/obj/structure/railing{
+ dir = 10;
+ layer = 3.1
+ },
+/obj/structure/chair/fancy/comfy{
+ buildstackamount = 0;
+ color = "#742925";
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 10
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"fem" = (
/obj/machinery/door/airlock/maintenance_hatch{
id_tag = "commissarydoor";
@@ -16690,18 +16476,19 @@
/obj/effect/mapping_helpers/airlock/abandoned,
/turf/open/floor/plating,
/area/maintenance/port/central)
-"fes" = (
-/obj/structure/chair/fancy/comfy{
- buildstackamount = 0;
- color = "#742925";
- dir = 4
+"fen" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2
},
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_y = 1
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/guideline/guideline_edge/purple{
+ dir = 8
},
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/science/research)
"feL" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
@@ -16713,13 +16500,6 @@
},
/turf/open/floor/plating,
/area/science/research)
-"feO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"ffa" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -16778,15 +16558,6 @@
},
/turf/open/floor/iron/white,
/area/crew_quarters/heads/cmo)
-"fgH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"fhl" = (
/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
dir = 8
@@ -16803,6 +16574,26 @@
/area/security/main{
name = "Security Locker Room"
})
+"fhK" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 5
+ },
+/obj/machinery/button/door{
+ id = "detectivewindows";
+ name = "Detective Private Shutters";
+ pixel_x = 25;
+ pixel_y = -8;
+ req_access_txt = "4"
+ },
+/obj/machinery/vending/boozeomat/all_access{
+ req_access_txt = "4"
+ },
+/obj/structure/noticeboard{
+ name = "Evidence board";
+ pixel_y = 32
+ },
+/turf/open/floor/carpet/red,
+/area/security/detectives_office)
"fhV" = (
/obj/machinery/dna_scannernew,
/turf/open/floor/iron/white,
@@ -16853,15 +16644,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/quartermaster/sorting)
-"fix" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/tile/purple/half/contrasted,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/maintenance/port/aft)
"fiA" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/disposalpipe/segment{
@@ -16874,6 +16656,9 @@
},
/turf/open/floor/plating,
/area/science/xenobiology)
+"fiB" = (
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/central)
"fiM" = (
/obj/structure/disposalpipe/segment{
dir = 6
@@ -16904,18 +16689,16 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/engine/engine_room)
-"fiW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+"fiS" = (
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+/obj/structure/window/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 2
},
-/turf/open/floor/iron/grid/steel,
-/area/science/xenobiology)
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"fjc" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -16967,6 +16750,20 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/maintenance/central)
+"fjM" = (
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
"fjN" = (
/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -17131,19 +16928,6 @@
"flg" = (
/turf/closed/wall/rust,
/area/quartermaster/warehouse)
-"flk" = (
-/obj/effect/turf_decal/tile/yellow/anticorner,
-/obj/effect/landmark/xeno_spawn,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/maintenance/department/engine)
-"fln" = (
-/obj/item/stack/cable_coil/cut,
-/obj/effect/turf_decal/tile/purple/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/maintenance/port/aft)
"fls" = (
/obj/structure/table,
/obj/item/clothing/suit/jacket/straight_jacket,
@@ -17182,12 +16966,37 @@
/obj/structure/chair/office,
/turf/open/floor/carpet/blue,
/area/crew_quarters/heads/hop)
+"flY" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/tile/neutral/half,
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 1
+ },
+/obj/effect/turf_decal/caution{
+ pixel_y = -17
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/iron,
+/area/maintenance/port/aft)
"fme" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/aisat_interior)
+"fmg" = (
+/obj/effect/decal/cleanable/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/bridge)
"fmv" = (
/obj/machinery/atmospherics/pipe/manifold/purple/visible{
dir = 1
@@ -17268,21 +17077,34 @@
},
/turf/open/floor/carpet/red,
/area/crew_quarters/theatre/backstage)
-"fnx" = (
-/obj/structure/cable/yellow{
- icon_state = "0-4"
+"fna" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
},
-/obj/structure/cable/yellow{
- icon_state = "1-4"
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
},
-/obj/machinery/power/smes/engineering{
- charge = 2e+007
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=16-EHall";
+ location = "15-CenterSE"
},
-/obj/structure/cable/yellow{
- icon_state = "2-4"
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
+"fne" = (
+/obj/effect/landmark/start/assistant,
+/obj/effect/turf_decal/siding/white{
+ dir = 9
},
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
+/turf/open/floor/glass/reinforced,
+/area/hallway/primary/central{
+ dynamic_lighting = 2;
+ lighting_brightness_tube = 11;
+ lighting_colour_bulb = "#DDE6FF";
+ lighting_colour_night = "#DDE6FF";
+ lighting_colour_tube = "#DDE6FF";
+ lighting_overlay_colour = "#DDE6FF";
+ power_light = 0
+ })
"fnz" = (
/obj/structure/chair/stool{
dir = 4
@@ -17322,6 +17144,13 @@
/obj/structure/rack,
/turf/open/floor/plating,
/area/maintenance/department/medical/morgue)
+"fom" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/xeno_spawn,
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
"fon" = (
/obj/structure/bed,
/obj/item/bedsheet/hos,
@@ -17373,14 +17202,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/tech,
/area/engine/engine_room)
-"fpl" = (
-/obj/effect/spawner/structure/window/plasma/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "telelab";
- name = "test chamber blast door"
- },
-/turf/open/floor/engine,
-/area/science/explab)
"fpn" = (
/obj/effect/decal/cleanable/oil,
/turf/open/floor/iron,
@@ -17443,6 +17264,15 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
+"fpV" = (
+/obj/machinery/cryopod,
+/obj/machinery/computer/cryopod{
+ pixel_x = 33
+ },
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/medical/sleeper)
"fqb" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 8
@@ -17461,14 +17291,6 @@
/obj/item/clothing/mask/vape,
/turf/open/floor/iron/grid/steel,
/area/hydroponics)
-"fqu" = (
-/obj/structure/table/glass,
-/obj/item/storage/backpack/duffelbag/med/implant,
-/obj/item/storage/backpack/duffelbag/med/surgery{
- pixel_y = 7
- },
-/turf/open/floor/iron,
-/area/medical/surgery)
"fqE" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -17564,44 +17386,6 @@
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating,
/area/maintenance/department/medical/morgue)
-"fsl" = (
-/obj/structure/closet/secure_closet/detective,
-/obj/item/assembly/flash/handheld,
-/obj/item/restraints/handcuffs,
-/obj/item/clothing/head/fedora/det_hat{
- icon_state = "curator"
- },
-/obj/item/clothing/suit/jacket/det_suit{
- icon_state = "curator"
- },
-/obj/item/reagent_containers/food/drinks/flask/det,
-/obj/effect/turf_decal/siding/wood{
- dir = 9
- },
-/obj/machinery/light_switch{
- pixel_x = -25;
- pixel_y = -8
- },
-/obj/item/storage/secure/safe{
- pixel_x = -25;
- pixel_y = 8
- },
-/obj/machinery/requests_console{
- department = "Detective's office";
- pixel_y = 25
- },
-/obj/item/holosign_creator/security,
-/turf/open/floor/carpet/red,
-/area/security/detectives_office)
-"fsn" = (
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 8
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/iron/dark,
-/area/security/prison{
- name = "Prison Processing"
- })
"fsy" = (
/turf/closed/wall/rust,
/area/vacant_room/office)
@@ -17710,12 +17494,6 @@
},
/turf/open/floor/wood,
/area/security/prison)
-"fuP" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 5
- },
-/turf/open/floor/glass/reinforced,
-/area/chapel/main)
"fuX" = (
/obj/machinery/portable_atmospherics/canister/plasma,
/obj/effect/turf_decal/delivery,
@@ -17733,21 +17511,15 @@
},
/turf/open/floor/iron/white/corner,
/area/science/research)
-"fvV" = (
-/obj/effect/landmark/start/assistant,
-/obj/effect/turf_decal/siding/white{
- dir = 10
+"fvE" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
},
-/turf/open/floor/glass/reinforced,
-/area/hallway/primary/central{
- dynamic_lighting = 2;
- lighting_brightness_tube = 11;
- lighting_colour_bulb = "#DDE6FF";
- lighting_colour_night = "#DDE6FF";
- lighting_colour_tube = "#DDE6FF";
- lighting_overlay_colour = "#DDE6FF";
- power_light = 0
- })
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/quartermaster/exploration_prep)
"fvW" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/computer/upload/ai,
@@ -17771,21 +17543,22 @@
/obj/structure/table/wood/fancy/purple,
/turf/open/floor/iron/dark,
/area/chapel/main)
-"fwu" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Maintenance Hatch";
- req_one_access_txt = "12;31;63"
+"fwp" = (
+/obj/machinery/door/window/brigdoor{
+ dir = 8;
+ name = "Secure Creature Pen";
+ req_access_txt = "47"
},
-/obj/structure/disposalpipe/segment{
- dir = 2
+/obj/machinery/door/poddoor/preopen{
+ id = "xenosecure";
+ name = "Secure Pen Shutters"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+/obj/effect/decal/cleanable/oil/slippery,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
},
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/department/security)
+/turf/open/floor/engine,
+/area/science/xenobiology)
"fwx" = (
/obj/structure/altar_of_gods,
/obj/effect/turf_decal/siding/wideplating/dark{
@@ -17906,18 +17679,6 @@
},
/turf/open/floor/carpet/blue,
/area/crew_quarters/cafeteria)
-"fxL" = (
-/obj/item/radio/intercom{
- dir = 1;
- pixel_x = 1;
- pixel_y = -36
- },
-/obj/machinery/light,
-/obj/structure/chair/fancy/sofa/old/right{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/maintenance/central)
"fxR" = (
/turf/closed/wall,
/area/medical/office)
@@ -17985,33 +17746,6 @@
},
/turf/open/floor/iron,
/area/medical/apothecary)
-"fza" = (
-/obj/machinery/camera/autoname{
- dir = 9;
- network = list("ss13","prison")
- },
-/obj/item/radio/intercom{
- desc = "Talk through this. It looks like it has been modified to not broadcast.";
- freerange = 1;
- name = "Prison intercom";
- pixel_x = 25;
- prison_radio = 1
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/security/prison)
-"fzc" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/obj/structure/chair/fancy/plastic,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/wood,
-/area/library)
"fzf" = (
/obj/machinery/suit_storage_unit/engine,
/obj/effect/turf_decal/bot,
@@ -18027,6 +17761,20 @@
/obj/effect/turf_decal/box,
/turf/open/floor/wood,
/area/crew_quarters/heads/captain)
+"fzk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/effect/turf_decal/guideline/guideline_in/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/yellow/half,
+/obj/effect/turf_decal/tile/yellow/half,
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
"fzo" = (
/obj/structure/table/reinforced,
/obj/item/paper_bin{
@@ -18060,6 +17808,14 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/medical/genetics/cloning)
+"fzK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/aft)
"fzS" = (
/turf/closed/wall/r_wall/rust,
/area/teleporter)
@@ -18104,6 +17860,21 @@
},
/turf/open/floor/plating,
/area/library)
+"fAH" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/power/smes/engineering{
+ charge = 2e+007
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"fAX" = (
/obj/effect/turf_decal/tile/purple/half/contrasted{
dir = 4
@@ -18125,6 +17896,15 @@
},
/turf/open/floor/iron/sepia,
/area/quartermaster/office)
+"fBl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/grid/steel,
+/area/science/xenobiology)
"fBp" = (
/obj/structure/chair/stool/bar{
dir = 4
@@ -18186,6 +17966,19 @@
},
/turf/open/floor/plating,
/area/maintenance/department/bridge)
+"fCN" = (
+/obj/effect/turf_decal/guideline/guideline_in/red{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/dark_red/half{
+ color = "#DE3A3A"
+ },
+/obj/effect/turf_decal/tile/dark_red/half{
+ color = "#DE3A3A"
+ },
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
"fCR" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
@@ -18270,19 +18063,6 @@
},
/turf/open/floor/iron,
/area/maintenance/department/security)
-"fEe" = (
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/effect/turf_decal/guideline/guideline_in/yellow{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/yellow/half,
-/obj/effect/turf_decal/tile/yellow/half,
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
"fEl" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
/obj/effect/decal/cleanable/dirt/dust,
@@ -18307,6 +18087,21 @@
},
/turf/open/floor/iron,
/area/crew_quarters/cafeteria)
+"fEz" = (
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"fET" = (
/obj/effect/turf_decal/guideline/guideline_edge/purple{
dir = 1
@@ -18319,6 +18114,15 @@
},
/turf/open/floor/iron/white,
/area/science/lab)
+"fEY" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4,
+/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"fFf" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
@@ -18340,6 +18144,18 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/storage)
+"fFo" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/aft)
"fFC" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable/orange{
@@ -18350,12 +18166,6 @@
"fFP" = (
/turf/closed/wall/r_wall,
/area/science/mixing/chamber)
-"fGb" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/engine,
-/area/science/explab)
"fGg" = (
/obj/machinery/chem_master/condimaster,
/obj/machinery/camera/autoname,
@@ -18420,13 +18230,6 @@
},
/turf/open/floor/iron/sepia,
/area/quartermaster/office)
-"fGV" = (
-/obj/machinery/door/window/brigdoor/northleft{
- name = "Telecommunications";
- req_access_txt = "49"
- },
-/turf/open/floor/iron/dark,
-/area/quartermaster/exploration_prep)
"fHa" = (
/mob/living/simple_animal/slime{
name = "yucca"
@@ -18449,6 +18252,12 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
/turf/open/floor/iron/freezer,
/area/crew_quarters/kitchen/coldroom)
+"fHs" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 1
+ },
+/turf/open/floor/glass/reinforced,
+/area/chapel/main)
"fHx" = (
/turf/closed/wall,
/area/medical/chemistry)
@@ -18569,6 +18378,16 @@
/obj/structure/sign/departments/minsky/supply/hydroponics2,
/turf/closed/wall,
/area/crew_quarters/cafeteria)
+"fJh" = (
+/obj/effect/landmark/start/cargo_technician,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/quartermaster/storage)
"fJJ" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
@@ -18613,6 +18432,15 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
+"fKj" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4,
+/obj/machinery/camera/autoname{
+ dir = 4;
+ network = list("ss13","engine")
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"fKo" = (
/turf/open/floor/iron,
/area/science/mixing)
@@ -18731,6 +18559,17 @@
/obj/effect/decal/cleanable/oil,
/turf/open/floor/iron/sepia,
/area/quartermaster/office)
+"fLW" = (
+/obj/structure/railing{
+ layer = 3.1
+ },
+/obj/structure/chair/fancy/comfy{
+ color = "#596479";
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wideplating/dark,
+/turf/open/floor/iron/dark/side,
+/area/hallway/primary/central)
"fMa" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -18759,6 +18598,24 @@
},
/turf/open/floor/iron/tech,
/area/engine/engine_room)
+"fMD" = (
+/obj/effect/turf_decal/guideline/guideline_out/brown{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/techmaint,
+/area/maintenance/central)
"fME" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -18930,6 +18787,21 @@
},
/turf/open/floor/carpet/royalblack,
/area/library)
+"fPi" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/starboard/aft)
"fPs" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 1
@@ -19111,17 +18983,6 @@
},
/turf/open/floor/iron/tech,
/area/engine/engine_room)
-"fRE" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -32
- },
-/obj/effect/turf_decal/guideline/guideline_edge/purple{
- dir = 8
- },
-/turf/open/floor/iron/white/side{
- dir = 8
- },
-/area/science/lobby)
"fRH" = (
/obj/effect/decal/cleanable/plasma,
/obj/effect/turf_decal/tile/purple,
@@ -19171,22 +19032,6 @@
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plating,
/area/maintenance/port/aft)
-"fSw" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/effect/turf_decal/bot,
-/obj/structure/table/reinforced,
-/obj/item/mmi{
- pixel_x = 2;
- pixel_y = 3
- },
-/obj/item/mmi{
- pixel_y = 11
- },
-/obj/item/storage/box/bodybags,
-/turf/open/floor/iron/white,
-/area/science/robotics)
"fSH" = (
/turf/closed/wall/r_wall,
/area/science/shuttledock)
@@ -19198,6 +19043,16 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/quartermaster/storage)
+"fSM" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/bot,
+/obj/structure/window/reinforced,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"fSY" = (
/obj/item/radio/intercom{
pixel_y = 35
@@ -19274,6 +19129,11 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
+"fUz" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/mapping_helpers/tile_breaker,
+/turf/open/floor/wood,
+/area/maintenance/port/aft)
"fUJ" = (
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/wood,
@@ -19388,33 +19248,9 @@
/obj/structure/marker_beacon,
/turf/open/floor/engine/o2,
/area/ai_monitored/turret_protected/ai)
-"fXB" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/item/storage/pod{
- pixel_x = 32
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"fXJ" = (
/turf/closed/wall/r_wall/rust,
/area/engine/engine_room)
-"fYm" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/guideline/guideline_edge/purple{
- dir = 8
- },
-/obj/structure/disposalpipe/sorting/mail/flip{
- sortType = 12
- },
-/turf/open/floor/iron/white/side{
- dir = 8
- },
-/area/science/research)
"fYn" = (
/obj/structure/table,
/obj/item/storage/toolbox/emergency{
@@ -19434,6 +19270,9 @@
},
/turf/open/floor/noslip/standard,
/area/quartermaster/miningdock)
+"fYr" = (
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal)
"fYs" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -19470,6 +19309,14 @@
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"fYI" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/starboard/aft)
"fZb" = (
/obj/structure/table/wood,
/obj/effect/turf_decal/siding/wood{
@@ -19501,16 +19348,6 @@
/obj/machinery/smartfridge/sci,
/turf/closed/wall,
/area/science/robotics)
-"fZl" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/iron/dark,
-/area/chapel/office)
"fZt" = (
/obj/structure/table,
/obj/item/storage/box/papersack{
@@ -19602,30 +19439,6 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat/foyer)
-"gai" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/button/door{
- id = "xeno5";
- name = "Containment Control";
- pixel_x = -33;
- pixel_y = 2;
- req_access_txt = "55"
- },
-/turf/open/floor/iron/white,
-/area/science/xenobiology)
-"gao" = (
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/effect/turf_decal/guideline/guideline_in/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow/half,
-/obj/effect/turf_decal/tile/yellow/half,
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
"gau" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/curtain/directional{
@@ -19642,6 +19455,15 @@
},
/turf/open/floor/carpet,
/area/library)
+"gaL" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4,
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"gaV" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -19881,6 +19703,27 @@
},
/turf/open/floor/carpet/red,
/area/crew_quarters/heads/hos)
+"gdt" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/power/apc/auto_name/north{
+ pixel_y = 24
+ },
+/obj/machinery/camera/autoname{
+ network = list("ss13","rd","xeno")
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/iron/white,
+/area/science/xenobiology)
"gdB" = (
/obj/item/kirbyplants/random,
/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
@@ -19908,18 +19751,24 @@
/area/security/prison{
name = "Prison Visitation"
})
-"gep" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
+"gee" = (
+/obj/structure/closet/crate/freezer/blood,
+/obj/item/rollerbed,
+/obj/item/rollerbed{
+ pixel_x = 4;
+ pixel_y = 4
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = -27
+/obj/structure/closet/crate/medical,
+/obj/machinery/firealarm/directional/east,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/item/clothing/suit/jacket/straight_jacket,
+/obj/item/clothing/glasses/blindfold{
+ pixel_x = -4;
+ pixel_y = 8
},
-/turf/open/floor/iron/dark/side,
-/area/hallway/primary/central)
+/obj/item/clothing/mask/muzzle,
+/turf/open/floor/iron/white,
+/area/security/brig/medbay)
"geq" = (
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
@@ -20113,6 +19962,13 @@
/obj/machinery/airalarm/directional/north,
/turf/open/floor/iron,
/area/hallway/primary/starboard)
+"ggC" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/railing/corner,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"ggJ" = (
/turf/closed/wall,
/area/science/lab)
@@ -20207,16 +20063,16 @@
},
/turf/open/floor/iron/white,
/area/medical/sleeper)
-"ghy" = (
-/obj/machinery/button/door{
- id = "xeno2";
- name = "Containment Control";
- pixel_x = -32;
- pixel_y = 3;
- req_access_txt = "55"
+"ghx" = (
+/obj/effect/decal/cleanable/glass,
+/obj/machinery/light{
+ bulb_colour = "#22bfa2";
+ bulb_vacuum_colour = "#22bfa2";
+ dir = 4;
+ nightshift_light_color = "#22bfa2"
},
-/turf/open/floor/iron/white,
-/area/science/xenobiology)
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"ghB" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -20234,22 +20090,16 @@
"ghC" = (
/turf/closed/wall,
/area/medical/exam_room)
-"ghU" = (
-/obj/item/radio/intercom{
- dir = 1;
- pixel_x = -31;
- pixel_y = -3
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/turf_decal/guideline/guideline_edge/blue{
- dir = 8
+"ghK" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/disposalpipe/segment{
+ dir = 9
},
-/turf/open/floor/iron/white/side{
- dir = 8
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/area/medical/sleeper)
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"ghZ" = (
/obj/effect/turf_decal/tile/yellow{
dir = 8
@@ -20259,6 +20109,13 @@
"gig" = (
/turf/open/floor/iron,
/area/bridge)
+"gis" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/structure/railing/corner,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"giD" = (
/obj/effect/landmark/blobstart,
/turf/open/floor/wood,
@@ -20321,6 +20178,19 @@
},
/turf/open/floor/iron/dark,
/area/security/warden)
+"gjB" = (
+/obj/structure/table,
+/obj/item/stack/sheet/glass{
+ amount = 30
+ },
+/obj/item/stack/sheet/iron{
+ amount = 30
+ },
+/obj/item/rcl/pre_loaded,
+/obj/item/wrench,
+/obj/item/crowbar/red,
+/turf/open/floor/iron/tech,
+/area/engine/atmos)
"gjJ" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 1
@@ -20341,23 +20211,6 @@
},
/turf/open/floor/iron,
/area/security/brig)
-"gjQ" = (
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
- alpha = 180;
- color = "#DE3A3A"
- },
-/obj/item/radio/intercom{
- desc = "Talk through this. It looks like it has been modified to not broadcast.";
- freerange = 1;
- name = "Prison intercom";
- pixel_y = -25;
- prison_radio = 1
- },
-/turf/open/floor/iron,
-/area/security/prison{
- name = "Prison Visitation"
- })
"gjW" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -20377,16 +20230,6 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
-"gkv" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"gky" = (
/obj/structure/flora/ausbushes/fullgrass,
/obj/structure/flora/ausbushes/fullgrass,
@@ -20403,6 +20246,18 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/engine/atmos)
+"gli" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 8
+ },
+/obj/structure/chair/fancy/bench/pew/left{
+ dir = 4
+ },
+/obj/machinery/camera/autoname{
+ dir = 1
+ },
+/turf/open/floor/glass/reinforced,
+/area/chapel/main)
"glm" = (
/obj/structure/lattice/catwalk,
/obj/structure/chair/fancy/plastic{
@@ -20419,21 +20274,6 @@
},
/turf/open/floor/iron,
/area/maintenance/port/aft)
-"glv" = (
-/obj/structure/railing/corner{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"glw" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 8
@@ -20652,6 +20492,46 @@
},
/turf/open/floor/plating,
/area/maintenance/department/bridge)
+"gnE" = (
+/obj/structure/closet/secure_closet/detective,
+/obj/item/assembly/flash/handheld,
+/obj/item/restraints/handcuffs,
+/obj/item/clothing/head/fedora/det_hat{
+ icon_state = "curator"
+ },
+/obj/item/clothing/suit/jacket/det_suit{
+ icon_state = "curator"
+ },
+/obj/item/reagent_containers/food/drinks/flask/det,
+/obj/effect/turf_decal/siding/wood{
+ dir = 9
+ },
+/obj/machinery/light_switch{
+ pixel_x = -25;
+ pixel_y = -8
+ },
+/obj/item/storage/secure/safe{
+ pixel_x = -25;
+ pixel_y = 8
+ },
+/obj/machinery/requests_console{
+ department = "Detective's office";
+ pixel_y = 25
+ },
+/obj/item/holosign_creator/security,
+/turf/open/floor/carpet/red,
+/area/security/detectives_office)
+"gnU" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=25-NHall";
+ location = "24-CenterNE"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"goe" = (
/obj/effect/turf_decal/tile/dark_red{
dir = 1
@@ -20680,41 +20560,46 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/starboard/fore)
+"goF" = (
+/obj/machinery/light/small{
+ brightness = 3
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/medical/morgue)
"goU" = (
/turf/closed/wall/rust,
/area/storage/primary)
"goV" = (
/turf/open/floor/iron,
/area/vacant_room/commissary/commissary1)
-"goW" = (
-/obj/effect/turf_decal/guideline/guideline_in/darkblue{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/obj/structure/disposalpipe/sorting/mail{
- dir = 1;
- name = "Janie";
- sortType = 22
- },
-/obj/effect/turf_decal/tile/dark_blue/half{
- dir = 1
- },
-/obj/effect/turf_decal/tile/dark_blue/half{
- dir = 1
- },
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
"goY" = (
/obj/machinery/vending/wardrobe/sec_wardrobe,
/obj/effect/turf_decal/bot,
/obj/machinery/airalarm/directional/north,
/turf/open/floor/iron,
/area/security/checkpoint/science)
+"gpc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ name = "Science RC";
+ pixel_x = 32;
+ pixel_y = -2;
+ receive_ore_updates = 1
+ },
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/science/lab)
"gpe" = (
/turf/open/floor/engine/n2o,
/area/engine/atmos)
@@ -20729,35 +20614,6 @@
},
/turf/open/floor/iron/tech/grid,
/area/engine/engineering)
-"gpA" = (
-/obj/structure/railing/corner,
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron/dark/corner,
-/area/hallway/primary/central)
-"gpB" = (
-/obj/effect/turf_decal/guideline/guideline_in/darkblue{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/effect/turf_decal/tile/dark_blue/half{
- dir = 1
- },
-/obj/effect/turf_decal/tile/dark_blue/half{
- dir = 1
- },
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
"gpK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -20882,6 +20738,32 @@
},
/turf/open/floor/plating,
/area/bridge/meeting_room)
+"grI" = (
+/obj/effect/turf_decal/guideline/guideline_in/neutral{
+ alpha = 255;
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
+ },
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
+ },
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
+ },
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
"gsA" = (
/obj/structure/lattice,
/turf/open/space/basic,
@@ -21031,6 +20913,14 @@
},
/turf/open/floor/iron/dark,
/area/medical/morgue)
+"gut" = (
+/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted{
+ alpha = 180;
+ color = "#DE3A3A";
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/security/warden)
"guA" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -21093,12 +20983,6 @@
},
/turf/open/floor/iron,
/area/engine/engineering)
-"gvo" = (
-/obj/structure/railing/corner{
- dir = 8
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"gvz" = (
/obj/effect/turf_decal/tile/neutral{
dir = 4
@@ -21366,17 +21250,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/plating/rust,
/area/maintenance/port/aft)
-"gAI" = (
-/obj/effect/turf_decal/guideline/guideline_edge/purple{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/open/floor/iron/white/side{
- dir = 4
- },
-/area/science/research)
"gAR" = (
/obj/machinery/light/small{
dir = 1
@@ -21409,12 +21282,33 @@
/obj/machinery/smartfridge/food,
/turf/closed/wall,
/area/crew_quarters/kitchen)
+"gBo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ pixel_x = 32;
+ pixel_y = -3
+ },
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/science/lab)
"gBD" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
+"gCa" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 5
+ },
+/obj/structure/chair/fancy/bench/pew/left{
+ dir = 8
+ },
+/turf/open/floor/glass/reinforced,
+/area/chapel/main)
"gCh" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -21525,6 +21419,16 @@
/obj/effect/turf_decal/box,
/turf/open/floor/wood,
/area/security/detectives_office)
+"gDg" = (
+/obj/effect/landmark/start/chaplain,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/chapel/office)
"gDB" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
@@ -21576,6 +21480,24 @@
/area/security/prison{
name = "Prison Botany"
})
+"gEE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/guideline/guideline_in/green{
+ color = "#439C1E"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/dark_green/half{
+ dir = 8
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
"gEQ" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable/orange{
@@ -21583,6 +21505,12 @@
},
/turf/open/space/basic,
/area/solar/port/fore)
+"gEV" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/chapel/main)
"gFj" = (
/obj/effect/turf_decal/bot,
/obj/structure/closet/wardrobe/white,
@@ -21683,6 +21611,21 @@
burnt = 1
},
/area/maintenance/department/medical)
+"gGx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"gGz" = (
/obj/machinery/firealarm{
dir = 4;
@@ -21818,6 +21761,26 @@
},
/turf/open/floor/iron,
/area/quartermaster/storage)
+"gHS" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/fernybush,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "hopqueue";
+ name = "HoP Queue Shutters"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/grass/no_border,
+/area/crew_quarters/heads/hop)
"gHZ" = (
/turf/open/floor/plating{
broken = 1
@@ -21828,45 +21791,12 @@
/area/security/prison{
name = "Prison Toilet"
})
-"gIw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"gIQ" = (
/obj/structure/table,
/obj/item/circuitboard/machine/paystand,
/obj/machinery/airalarm/directional/north,
/turf/open/floor/iron/dark,
/area/vacant_room/commissary/commissary2)
-"gIR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/aft)
"gIU" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -21993,6 +21923,16 @@
"gKY" = (
/turf/open/floor/iron,
/area/teleporter)
+"gLa" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"gLb" = (
/turf/closed/wall/r_wall,
/area/engine/atmospherics_engine)
@@ -22039,18 +21979,6 @@
/obj/item/stack/sheet/wood/ten,
/turf/open/floor/wood,
/area/library)
-"gLU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/aft)
"gLV" = (
/obj/effect/turf_decal/bot,
/obj/machinery/computer/card/minor/ce{
@@ -22144,19 +22072,6 @@
},
/turf/open/floor/carpet,
/area/maintenance/port/aft)
-"gNq" = (
-/obj/effect/turf_decal/guideline/guideline_in/brown,
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/brown/half{
- dir = 8
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
"gNs" = (
/obj/structure/table,
/obj/effect/turf_decal/stripes/line{
@@ -22272,6 +22187,14 @@
/obj/structure/sign/departments/minsky/security/command,
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/hop)
+"gOl" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/sunnybush,
+/turf/open/floor/grass/no_border,
+/area/hallway/secondary/exit/departure_lounge)
"gOr" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
/obj/structure/disposalpipe/segment{
@@ -22341,6 +22264,12 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/dark,
/area/engine/atmos)
+"gPt" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/medical/morgue)
"gPy" = (
/obj/structure/table,
/obj/item/stack/cable_coil/white{
@@ -22428,13 +22357,6 @@
/obj/structure/sign/departments/minsky/research/research,
/turf/closed/wall,
/area/vacant_room/office)
-"gRI" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/light,
-/turf/open/floor/engine,
-/area/science/explab)
"gRN" = (
/obj/machinery/power/apc/auto_name/west{
pixel_x = -24
@@ -22555,20 +22477,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/dark,
/area/engine/atmos)
-"gTv" = (
-/obj/structure/bed,
-/obj/item/bedsheet/dorms,
-/obj/item/toy/plush/beeplushie{
- desc = "A cute toy that resembles an even cuter beetle.";
- name = "beetle plushie"
- },
-/obj/structure/sign/poster/contraband/random{
- pixel_x = 32
- },
-/turf/open/floor/prison,
-/area/security/prison{
- name = "Prison Dorms"
- })
"gTz" = (
/obj/machinery/camera/autoname{
dir = 4
@@ -22697,6 +22605,30 @@
},
/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/ai_upload)
+"gUF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/machinery/conveyor_switch/oneway{
+ dir = 8;
+ id = "garbage";
+ name = "disposal conveyor"
+ },
+/obj/machinery/door/window/southleft{
+ dir = 1;
+ icon_state = "right";
+ id_tag = "Bountydoors";
+ req_access_txt = null;
+ req_one_access_txt = "31;48;26"
+ },
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal)
"gUK" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow{
@@ -22708,15 +22640,6 @@
},
/turf/open/floor/plating,
/area/security/brig)
-"gUM" = (
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal)
"gUO" = (
/obj/effect/turf_decal/guideline/guideline_in/darkblue{
dir = 8
@@ -22750,19 +22673,6 @@
/obj/effect/spawner/lootdrop/maintenance/three,
/turf/open/floor/iron,
/area/maintenance/department/science)
-"gVy" = (
-/obj/effect/turf_decal/guideline/guideline_in/blue{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/tile/blue/half{
- dir = 1
- },
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
"gVH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -22804,6 +22714,13 @@
/obj/effect/turf_decal/tile/blue,
/turf/open/floor/iron,
/area/maintenance/department/medical/morgue)
+"gWq" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 3
+ },
+/turf/open/floor/iron/dark,
+/area/quartermaster/exploration_prep)
"gWz" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/tile/yellow/half/contrasted{
@@ -22816,22 +22733,10 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/hallway/primary/aft)
-"gWJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/aft)
-"gXs" = (
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/wood,
-/area/maintenance/central)
+"gWE" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"gXC" = (
/obj/structure/chair/office{
dir = 1
@@ -22882,19 +22787,6 @@
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
/area/medical/chemistry)
-"gYQ" = (
-/obj/structure/window/reinforced,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/leafybush,
-/obj/item/toy/gun{
- desc = "It has his name engraved in the barrel. On closer inspection it's just a toy";
- name = "Tony's gun";
- pixel_x = -12;
- pixel_y = 5
- },
-/turf/open/floor/grass/no_border,
-/area/hallway/secondary/exit/departure_lounge)
"gYR" = (
/obj/structure/closet/emcloset,
/obj/effect/turf_decal/stripes/line{
@@ -23080,23 +22972,6 @@
"haY" = (
/turf/closed/wall/r_wall,
/area/bridge)
-"hbn" = (
-/obj/structure/sign/warning/vacuum/external{
- pixel_y = 32
- },
-/obj/structure/table/wood/fancy,
-/obj/item/food/grown/flower/harebell{
- pixel_y = 3
- },
-/obj/item/candle/infinite{
- pixel_x = 9;
- pixel_y = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/turf/open/floor/iron/dark,
-/area/chapel/main)
"hbo" = (
/obj/structure/sink{
dir = 1;
@@ -23152,25 +23027,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/tech,
/area/engine/atmos)
-"hcc" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/central)
-"hcf" = (
-/mob/living/simple_animal/pet/dog/pug{
- density = 0;
- dir = 8
- },
-/turf/open/floor/engine,
-/area/science/explab)
"hcm" = (
/obj/machinery/light/small,
/obj/structure/cable{
@@ -23264,13 +23120,15 @@
},
/turf/open/floor/iron/dark,
/area/engine/storage)
-"hdh" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+"hcU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
},
-/obj/effect/decal/cleanable/generic,
-/obj/structure/disposalpipe/segment{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
/turf/open/floor/catwalk_floor,
/area/maintenance/department/engine)
@@ -23319,6 +23177,25 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/sepia,
/area/maintenance/port/central)
+"heS" = (
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/item/radio/intercom{
+ desc = "Talk through this. It looks like it has been modified to not broadcast.";
+ freerange = 1;
+ name = "Prison intercom";
+ pixel_y = 25;
+ prison_radio = 1
+ },
+/turf/open/floor/prison,
+/area/security/prison{
+ name = "Prison Visitation"
+ })
"hff" = (
/obj/item/kirbyplants/random,
/obj/structure/disposalpipe/segment{
@@ -23436,13 +23313,6 @@
},
/turf/open/floor/iron/white,
/area/medical/cryo)
-"hgC" = (
-/obj/item/radio/intercom{
- dir = 1;
- pixel_y = -34
- },
-/turf/open/floor/glass/reinforced,
-/area/chapel/main)
"hhn" = (
/obj/effect/spawner/room/tenxfive,
/turf/open/floor/plating,
@@ -23458,6 +23328,11 @@
},
/turf/open/floor/iron,
/area/maintenance/department/security)
+"hhG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/science/xenobiology)
"hhS" = (
/obj/effect/turf_decal/tile/yellow/half/contrasted{
alpha = 180
@@ -23528,6 +23403,31 @@
},
/turf/open/floor/iron/dark,
/area/medical/genetics)
+"hip" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/guideline/guideline_edge/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/machinery/button/door/incinerator_vent_toxmix{
+ id = "tox_ESD";
+ name = "Emergency space door";
+ pixel_x = 31;
+ pixel_y = -6;
+ req_one_access_txt = "8;63"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/science/research)
"hiU" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -23637,6 +23537,12 @@
dir = 10
},
/area/medical/medbay/central)
+"hky" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/medical/morgue)
"hkB" = (
/turf/closed/wall/rust,
/area/gateway)
@@ -23718,19 +23624,21 @@
/obj/effect/spawner/structure/window/plasma/reinforced,
/turf/open/floor/engine/n2,
/area/engine/atmos)
-"hmk" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 4
+"hmf" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -32
},
+/turf/open/floor/iron/white,
+/area/science/xenobiology)
+"hmg" = (
+/obj/structure/railing/corner,
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 1
},
-/turf/open/floor/iron/dark/smooth_edge{
- dir = 8
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
+/turf/open/floor/iron/dark/corner,
/area/hallway/primary/central)
"hmn" = (
/obj/effect/landmark/start/medical_doctor,
@@ -23839,6 +23747,26 @@
},
/turf/open/floor/plating,
/area/science/mixing)
+"hop" = (
+/obj/structure/table/glass,
+/obj/item/surgicaldrill{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/razor{
+ pixel_x = -6;
+ pixel_y = 1
+ },
+/obj/item/cautery{
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/item/retractor{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/turf/open/floor/iron,
+/area/medical/surgery)
"hoG" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable{
@@ -23945,25 +23873,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron/dark,
/area/engine/atmos)
-"hrN" = (
-/obj/effect/turf_decal/guideline/guideline_out/brown{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/landmark/blobstart,
-/turf/open/floor/iron/techmaint,
-/area/hallway/secondary/service)
"hrP" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
@@ -24203,20 +24112,6 @@
dir = 1
},
/area/hallway/secondary/exit/departure_lounge)
-"hwg" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Maintenance Hatch";
- req_one_access_txt = "12;7;29"
- },
-/obj/structure/lattice/catwalk/over,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
"hwh" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -24296,29 +24191,6 @@
},
/turf/open/floor/iron/dark,
/area/hallway/secondary/exit/departure_lounge)
-"hxx" = (
-/obj/machinery/computer/pod/old{
- density = 0;
- icon = 'icons/obj/airlock_machines.dmi';
- icon_state = "airlock_control_standby";
- id = "chapelgun";
- layer = 4;
- name = "Mass Driver Controller";
- pixel_y = 32
- },
-/obj/structure/table/wood/fancy,
-/obj/item/food/grown/flower/harebell{
- pixel_y = 3
- },
-/obj/item/candle/infinite{
- pixel_x = -8;
- pixel_y = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/turf/open/floor/iron/dark,
-/area/chapel/main)
"hxB" = (
/obj/machinery/flasher{
id = "aicore";
@@ -24355,16 +24227,6 @@
},
/turf/closed/wall/r_wall,
/area/maintenance/department/bridge)
-"hyp" = (
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_y = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/closet/emcloset,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"hyw" = (
/obj/machinery/light,
/obj/item/radio/intercom{
@@ -24374,6 +24236,68 @@
},
/turf/open/floor/iron/sepia,
/area/quartermaster/office)
+"hyD" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/turf/open/floor/iron/dark,
+/area/chapel/main)
+"hyK" = (
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/guideline/guideline_half_in/purple,
+/obj/effect/turf_decal/guideline/guideline_edge_alt/_offset/purple,
+/obj/effect/turf_decal/guideline/guideline_tri/_offset/purple{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/turf/open/floor/iron/white/side{
+ dir = 6
+ },
+/area/science/research)
+"hyQ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/iron/dark,
+/area/science/robotics)
+"hyX" = (
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2{
+ dir = 6
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 32
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"hzd" = (
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
@@ -24415,18 +24339,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"hAe" = (
-/obj/structure/railing{
- dir = 6;
- layer = 3.1
- },
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 6
- },
-/obj/effect/turf_decal/bot,
-/obj/machinery/vending/hydroseeds,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"hAk" = (
/obj/effect/turf_decal/tile/dark_green/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -24495,22 +24407,18 @@
/area/security/main{
name = "Security Locker Room"
})
-"hBB" = (
-/obj/effect/turf_decal/guideline/guideline_edge/neutral{
- alpha = 255;
- dir = 8
+"hBG" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
},
-/obj/machinery/button/door{
- id = "quarantineshutters";
- layer = 4;
- name = "Quarantine Lockdown";
- pixel_x = -25;
- req_access_txt = "39"
+/obj/structure/disposalpipe/segment{
+ dir = 10
},
-/turf/open/floor/iron/white/side{
- dir = 8
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/area/medical/medbay/central)
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"hBK" = (
/turf/closed/wall/r_wall,
/area/security/main{
@@ -24553,6 +24461,15 @@
},
/turf/open/floor/iron/sepia,
/area/quartermaster/warehouse)
+"hBW" = (
+/obj/machinery/airalarm/directional/west,
+/obj/effect/turf_decal/guideline/guideline_edge/purple{
+ dir = 8
+ },
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/science/lobby)
"hBZ" = (
/obj/structure/disposalpipe/segment{
dir = 1
@@ -24632,19 +24549,6 @@
},
/turf/open/floor/iron,
/area/construction/mining/aux_base)
-"hDl" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/guideline/guideline_edge/purple{
- dir = 4
- },
-/turf/open/floor/iron/white/side{
- dir = 4
- },
-/area/science/research)
"hDo" = (
/obj/structure/table/reinforced,
/obj/item/radio/off{
@@ -24683,6 +24587,15 @@
},
/turf/open/floor/iron/dark,
/area/engine/engine_room)
+"hEC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal)
"hEF" = (
/obj/structure/window/reinforced{
dir = 8
@@ -24715,10 +24628,6 @@
},
/turf/open/floor/iron,
/area/science/lobby)
-"hFw" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"hFC" = (
/obj/effect/landmark/start/station_engineer,
/obj/effect/turf_decal/tile/neutral/half/contrasted,
@@ -24785,6 +24694,35 @@
/obj/effect/spawner/room/fivexthree,
/turf/open/floor/plating,
/area/maintenance/port/central)
+"hGt" = (
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/obj/machinery/camera/autoname{
+ dir = 9;
+ network = list("ss13","prison")
+ },
+/obj/item/radio/intercom{
+ desc = "Talk through this. It looks like it has been modified to not broadcast.";
+ freerange = 1;
+ name = "Prison intercom";
+ pixel_x = 25;
+ prison_radio = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/prison,
+/area/security/prison)
+"hGy" = (
+/obj/structure/railing,
+/obj/effect/turf_decal/siding/wideplating/dark,
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 1
+ },
+/area/hallway/primary/central)
"hGI" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
@@ -24813,18 +24751,30 @@
/obj/item/folder/white,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat_interior)
-"hHs" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+"hHo" = (
+/obj/machinery/power/terminal{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
},
/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/turf/open/floor/catwalk_floor,
-/area/maintenance/starboard/aft)
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer2{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"hHD" = (
/obj/item/kirbyplants/random,
/obj/machinery/firealarm/directional/north,
@@ -24862,6 +24812,25 @@
},
/turf/open/floor/carpet/purple,
/area/chapel/main)
+"hIE" = (
+/obj/effect/turf_decal/guideline/guideline_in/darkblue{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/tile/dark_blue/half{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/dark_blue/half{
+ dir = 1
+ },
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
"hJe" = (
/obj/machinery/camera/autoname{
dir = 8
@@ -24878,6 +24847,12 @@
/obj/structure/closet/cardboard,
/turf/open/floor/iron/dark,
/area/quartermaster/storage)
+"hJh" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal)
"hJD" = (
/obj/effect/turf_decal/delivery,
/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{
@@ -24907,6 +24882,21 @@
},
/turf/open/floor/circuit/telecomms/server,
/area/science/xenobiology)
+"hJK" = (
+/obj/effect/landmark/start/assistant,
+/obj/effect/turf_decal/siding/white{
+ dir = 6
+ },
+/turf/open/floor/glass/reinforced,
+/area/hallway/primary/central{
+ dynamic_lighting = 2;
+ lighting_brightness_tube = 11;
+ lighting_colour_bulb = "#DDE6FF";
+ lighting_colour_night = "#DDE6FF";
+ lighting_colour_tube = "#DDE6FF";
+ lighting_overlay_colour = "#DDE6FF";
+ power_light = 0
+ })
"hJO" = (
/obj/effect/turf_decal/tile/brown/half/contrasted{
dir = 8
@@ -24962,6 +24952,20 @@
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/turf/open/floor/iron,
/area/maintenance/port/aft)
+"hKy" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/turf_decal/guideline/guideline_edge/purple{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_x = -24
+ },
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/science/lobby)
"hKB" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -25087,20 +25091,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/maintenance/port/aft)
-"hLx" = (
-/obj/machinery/atmospherics/pipe/layer_manifold,
-/obj/structure/table/reinforced,
-/obj/item/clothing/glasses/meson/engine{
- pixel_x = -2;
- pixel_y = 6
- },
-/obj/item/clothing/glasses/meson/engine{
- pixel_x = 2
- },
-/turf/open/floor/plating{
- broken = 1
- },
-/area/engine/engine_room)
"hLD" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 10
@@ -25129,18 +25119,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"hMb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"hMe" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -25155,6 +25133,41 @@
},
/turf/open/floor/iron,
/area/gateway)
+"hMn" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/guideline/guideline_edge/purple{
+ dir = 8
+ },
+/obj/structure/disposalpipe/sorting/mail/flip{
+ sortType = 12
+ },
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/science/research)
+"hMp" = (
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/effect/turf_decal/siding/wideplating/dark/corner{
+ dir = 1
+ },
+/obj/machinery/camera/autoname{
+ view_range = 12
+ },
+/obj/machinery/status_display/evac{
+ pixel_y = 32
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
"hMs" = (
/obj/structure/closet/secure_closet/security,
/obj/effect/turf_decal/tile/red/half/contrasted{
@@ -25211,15 +25224,6 @@
/obj/structure/lattice,
/turf/open/space/basic,
/area/space/nearstation)
-"hNj" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 4
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"hNq" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
@@ -25296,6 +25300,13 @@
/obj/structure/sign/warning/vacuum,
/turf/closed/wall/r_wall,
/area/security/checkpoint/escape)
+"hOH" = (
+/obj/machinery/door/window/brigdoor/northleft{
+ name = "Telecommunications";
+ req_access_txt = "49"
+ },
+/turf/open/floor/iron/dark,
+/area/quartermaster/exploration_prep)
"hOJ" = (
/obj/structure/window/reinforced{
dir = 4
@@ -25455,64 +25466,16 @@
/obj/effect/landmark/prisonspawn,
/turf/open/floor/prison,
/area/security/prison)
-"hQo" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/grille/broken,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/aft)
"hQy" = (
/obj/effect/turf_decal/bot,
/obj/machinery/vending/medical,
/turf/open/floor/iron/dark,
/area/medical/medbay/central)
-"hQH" = (
-/obj/effect/turf_decal/guideline/guideline_edge/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/half/contrasted,
-/obj/structure/sign/poster/random{
- pixel_x = 32
- },
-/obj/machinery/camera/autoname{
- dir = 8;
- network = list("ss13","security")
- },
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/landmark/start/security_officer,
-/turf/open/floor/iron/dark,
-/area/security/brig/dock)
"hQN" = (
/obj/structure/bookcase/random/fiction,
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/wood,
/area/library)
-"hRj" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/obj/machinery/camera/autoname{
- dir = 1;
- network = list("ss13","rd")
- },
-/obj/effect/turf_decal/guideline/guideline_edge/purple,
-/turf/open/floor/iron/white/side{
- dir = 1
- },
-/area/science/research)
"hRv" = (
/turf/closed/wall/r_wall,
/area/security/prison{
@@ -25564,26 +25527,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/sepia,
/area/quartermaster/storage)
-"hSy" = (
-/obj/structure/table/glass,
-/obj/item/surgicaldrill{
- pixel_x = 1;
- pixel_y = 7
- },
-/obj/item/razor{
- pixel_x = -6;
- pixel_y = 1
- },
-/obj/item/cautery{
- pixel_x = -1;
- pixel_y = 1
- },
-/obj/item/retractor{
- pixel_x = -2;
- pixel_y = 2
- },
-/turf/open/floor/iron,
-/area/medical/surgery)
"hSG" = (
/obj/structure/table/reinforced,
/obj/item/paper_bin{
@@ -25648,6 +25591,15 @@
/obj/machinery/camera/autoname,
/turf/open/floor/iron/dark,
/area/storage/primary)
+"hTM" = (
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/bot,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"hTN" = (
/obj/effect/turf_decal/stripes/corner{
dir = 1
@@ -25663,46 +25615,6 @@
dir = 1
},
/area/hallway/primary/central)
-"hUh" = (
-/obj/structure/rack,
-/obj/item/storage/box/rubbershot{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/storage/box/rubbershot{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/storage/box/rubbershot{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/storage/box/rubbershot{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/storage/box/rubbershot{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/storage/box/rubbershot{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/storage/box/breacherslug,
-/obj/item/storage/box/breacherslug,
-/obj/item/storage/box/breacherslug,
-/obj/effect/turf_decal/bot,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/light{
- bulb_colour = "#DE3A3A";
- dir = 8;
- nightshift_light_color = "#DE3A3A"
- },
-/turf/open/floor/iron,
-/area/ai_monitored/security/armory)
"hUK" = (
/obj/effect/turf_decal/tile/brown/half/contrasted{
dir = 8
@@ -25844,14 +25756,6 @@
/area/security/main{
name = "Security Locker Room"
})
-"hXK" = (
-/obj/effect/turf_decal/tile/yellow/anticorner,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/turf/open/floor/iron,
-/area/maintenance/department/engine)
"hYg" = (
/obj/machinery/smartfridge/extract/preloaded,
/turf/closed/wall/r_wall,
@@ -25931,15 +25835,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron/tech,
/area/engine/engine_room)
-"hZM" = (
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/engine/engine_room)
"hZQ" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -25967,6 +25862,18 @@
},
/turf/open/floor/iron,
/area/security/brig)
+"hZX" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/blood/drip,
+/obj/effect/turf_decal/guideline/guideline_edge/blue{
+ dir = 8
+ },
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/medical/sleeper)
"iap" = (
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
@@ -25979,21 +25886,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron/dark,
/area/engine/engine_room)
-"iaD" = (
-/obj/structure/table,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/spawner/lootdrop/maintenance{
- pixel_y = 5
- },
-/obj/machinery/light_switch{
- pixel_x = -19;
- pixel_y = 1
- },
-/obj/item/clothing/gloves/color/yellow,
-/turf/open/floor/iron/dark,
-/area/engine/storage)
"iaG" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
@@ -26024,6 +25916,18 @@
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
/area/crew_quarters/kitchen)
+"ibc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/starboard/aft)
"ibv" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
@@ -26200,6 +26104,13 @@
/obj/structure/cable/yellow,
/turf/open/floor/iron,
/area/quartermaster/sorting)
+"ieI" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/generic,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/central)
"ieQ" = (
/obj/effect/turf_decal/bot,
/obj/effect/landmark/start/cyborg,
@@ -26257,15 +26168,6 @@
/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/server)
-"ifP" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 4
- },
-/obj/structure/railing/corner,
-/turf/open/floor/iron/dark/smooth_edge{
- dir = 8
- },
-/area/hallway/primary/central)
"igf" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/preopen{
@@ -26285,16 +26187,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/maintenance/department/engine)
-"igH" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/solar{
- id = "portsolar";
- name = "Port Solar Array"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/starboard/aft)
"igJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -26331,22 +26223,21 @@
},
/turf/open/floor/iron,
/area/security/brig/medbay)
+"ihy" = (
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/solar{
+ id = "portsolar";
+ name = "Port Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/starboard/fore)
"ihz" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/white/half/contrasted,
/turf/open/floor/iron,
/area/maintenance/department/medical/morgue)
-"ihE" = (
-/obj/structure/railing{
- dir = 5
- },
-/obj/machinery/vending/cigarette,
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 5
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"iim" = (
/obj/structure/closet/l3closet/virology,
/obj/effect/turf_decal/bot,
@@ -26515,6 +26406,17 @@
},
/turf/open/floor/plating,
/area/science/xenobiology)
+"ikF" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_y = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"ikR" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
@@ -26602,6 +26504,12 @@
},
/turf/open/floor/iron,
/area/construction/mining/aux_base)
+"ilS" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"ilX" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -26627,6 +26535,24 @@
},
/turf/open/floor/iron/sepia,
/area/quartermaster/storage)
+"imo" = (
+/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
+ alpha = 180;
+ color = "#DE3A3A"
+ },
+/obj/machinery/light_switch{
+ pixel_x = -24;
+ pixel_y = 25
+ },
+/obj/machinery/button/door{
+ id = "armory";
+ name = "Armory Shutters";
+ pixel_x = -40;
+ pixel_y = 25;
+ req_access_txt = "3"
+ },
+/turf/open/floor/iron/dark,
+/area/security/warden)
"imA" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -26658,6 +26584,23 @@
dir = 1
},
/area/hallway/primary/central)
+"inp" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/turf_decal/guideline/guideline_edge/neutral{
+ alpha = 255;
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_x = -30;
+ pixel_y = -4
+ },
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/medical/medbay/central)
"inw" = (
/obj/effect/turf_decal/siding/wood,
/obj/structure/railing,
@@ -26667,22 +26610,6 @@
/obj/machinery/firealarm/directional/east,
/turf/open/floor/wood,
/area/crew_quarters/theatre)
-"inT" = (
-/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
- alpha = 180;
- color = "#DE3A3A"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/sorting/mail{
- dir = 8;
- name = "HOS"
- },
-/turf/open/floor/iron,
-/area/security/brig)
"inZ" = (
/obj/effect/turf_decal/guideline/guideline_tri/purple{
dir = 8
@@ -26708,24 +26635,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
-"ios" = (
-/obj/structure/closet/crate/freezer/blood,
-/obj/item/rollerbed,
-/obj/item/rollerbed{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/structure/closet/crate/medical,
-/obj/machinery/firealarm/directional/east,
-/obj/item/reagent_containers/blood/OMinus,
-/obj/item/clothing/suit/jacket/straight_jacket,
-/obj/item/clothing/glasses/blindfold{
- pixel_x = -4;
- pixel_y = 8
- },
-/obj/item/clothing/mask/muzzle,
-/turf/open/floor/iron/white,
-/area/security/brig/medbay)
"iov" = (
/obj/structure/railing/corner{
dir = 1
@@ -26733,6 +26642,55 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron/sepia,
/area/quartermaster/office)
+"ioD" = (
+/obj/machinery/camera/autoname{
+ dir = 8;
+ network = list("ss13","medbay")
+ },
+/obj/effect/decal/cleanable/blood/drip,
+/obj/effect/turf_decal/guideline/guideline_edge/blue{
+ dir = 4
+ },
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/medical/sleeper)
+"ioG" = (
+/obj/effect/turf_decal/guideline/guideline_out/brown{
+ dir = 1
+ },
+/obj/effect/landmark/xeno_spawn,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/techmaint,
+/area/hallway/secondary/service)
+"ips" = (
+/obj/structure/table/reinforced,
+/obj/item/gun/energy/e_gun{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/item/gun/energy/e_gun{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/machinery/door/window/brigdoor/westleft{
+ name = "energy guns";
+ req_access_txt = "3"
+ },
+/obj/structure/window/reinforced,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/ai_monitored/security/armory)
"ipw" = (
/obj/effect/turf_decal/tile/brown/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -26773,15 +26731,6 @@
},
/turf/open/floor/iron/techmaint,
/area/quartermaster/storage)
-"ipE" = (
-/obj/machinery/cryopod,
-/obj/machinery/computer/cryopod{
- pixel_x = 33
- },
-/turf/open/floor/iron/white/side{
- dir = 4
- },
-/area/medical/sleeper)
"ipJ" = (
/obj/effect/turf_decal/tile/yellow{
dir = 4
@@ -26830,22 +26779,6 @@
/obj/structure/sign/warning/pods,
/turf/closed/wall,
/area/science/research)
-"iqr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/button/door{
- id = "xeno1";
- name = "Containment Control";
- pixel_x = -1;
- pixel_y = 32;
- req_access_txt = "55"
- },
-/turf/open/floor/iron/white,
-/area/science/xenobiology)
"iqw" = (
/obj/structure/bed/roller,
/obj/effect/turf_decal/guideline/guideline_edge/blue,
@@ -26928,6 +26861,20 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/security/brig)
+"iqX" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/grille/broken,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/aft)
"iqZ" = (
/obj/machinery/door/poddoor/incinerator_atmos_aux,
/turf/open/floor/engine/vacuum,
@@ -26987,16 +26934,17 @@
},
/turf/open/floor/iron/sepia,
/area/quartermaster/office)
-"isG" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/grille/broken,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+"isJ" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/obj/effect/turf_decal/bot,
+/obj/machinery/computer/security{
+ dir = 8;
+ network = list("security")
},
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/central)
+/turf/open/floor/iron/dark,
+/area/security/main{
+ name = "Security Locker Room"
+ })
"isP" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
@@ -27035,6 +26983,10 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/storage/eva)
+"itB" = (
+/obj/structure/railing/corner,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"itL" = (
/obj/machinery/modular_fabricator/exosuit_fab{
output_direction = 8
@@ -27055,6 +27007,24 @@
/area/security/prison{
name = "Prison Showers"
})
+"itV" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"iuj" = (
/obj/effect/turf_decal/tile/yellow/half/contrasted{
alpha = 180;
@@ -27095,6 +27065,25 @@
/obj/item/storage/belt/utility,
/turf/open/floor/iron/sepia,
/area/maintenance/port/central)
+"ivY" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4{
+ dir = 10
+ },
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"iwl" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -27114,19 +27103,6 @@
/obj/machinery/gateway,
/turf/open/floor/iron/techmaint,
/area/gateway)
-"iww" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/iron/white,
-/area/science/xenobiology)
"iwO" = (
/obj/structure/cable{
icon_state = "0-4"
@@ -27217,26 +27193,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/science/xenobiology)
-"ixG" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/dark_red{
- alpha = 180;
- color = "#DE3A3A";
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/auto_name/north{
- pixel_y = 24
- },
-/turf/open/floor/iron/dark,
-/area/security/warden)
"ixI" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -27286,6 +27242,12 @@
},
/turf/open/floor/iron,
/area/crew_quarters/cryopods)
+"iyq" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/glass/reinforced,
+/area/crew_quarters/cafeteria)
"iyG" = (
/obj/machinery/disposal/bin,
/obj/effect/turf_decal/bot,
@@ -27309,15 +27271,6 @@
},
/turf/open/floor/plating,
/area/ai_monitored/storage/satellite)
-"iyP" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/central)
"iyR" = (
/obj/effect/turf_decal/tile/dark_green/fourcorners/contrasted,
/obj/machinery/camera/autoname{
@@ -27335,24 +27288,6 @@
/obj/machinery/firealarm/directional/west,
/turf/open/floor/iron/grid/steel,
/area/hydroponics)
-"iyV" = (
-/obj/effect/turf_decal/guideline/guideline_out/brown{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/iron/techmaint,
-/area/maintenance/central)
"izg" = (
/obj/machinery/door/airlock/research{
name = "Genetics Lab";
@@ -27408,6 +27343,12 @@
},
/turf/open/floor/iron/dark,
/area/science/mixing)
+"izA" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance/two,
+/turf/open/floor/iron,
+/area/maintenance/department/engine)
"izF" = (
/turf/open/floor/plating{
broken = 1
@@ -27423,44 +27364,12 @@
},
/turf/open/floor/iron,
/area/science/storage)
-"izQ" = (
-/obj/effect/landmark/start/assistant,
-/turf/open/floor/glass/reinforced,
-/area/hallway/primary/central{
- dynamic_lighting = 2;
- lighting_brightness_tube = 11;
- lighting_colour_bulb = "#DDE6FF";
- lighting_colour_night = "#DDE6FF";
- lighting_colour_tube = "#DDE6FF";
- lighting_overlay_colour = "#DDE6FF";
- power_light = 0
- })
-"iAo" = (
-/obj/structure/window/reinforced{
- dir = 4;
- layer = 2.9
- },
-/obj/structure/window/reinforced,
-/obj/machinery/light/floor{
- brightness = 15;
- bulb_colour = "#FFE4CE";
- bulb_vacuum_brightness = 15;
- nightshift_brightness = 10;
- nightshift_light_color = "#E6EBFF"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
-"iAv" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
+"iAu" = (
+/obj/effect/turf_decal/siding/wideplating/dark/corner{
+ dir = 4
},
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/security)
+/turf/open/floor/glass/reinforced,
+/area/chapel/main)
"iAx" = (
/obj/effect/turf_decal/stripes/corner,
/obj/structure/cable{
@@ -27480,21 +27389,6 @@
},
/turf/closed/wall/rust,
/area/chapel/main)
-"iBo" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/guideline/guideline_in/green{
- color = "#439C1E"
- },
-/obj/effect/turf_decal/tile/dark_green/half{
- dir = 8
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
"iBq" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/obj/structure/extinguisher_cabinet{
@@ -27570,40 +27464,6 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
-"iDj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/obj/structure/chair/office/light{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/science/explab)
-"iDp" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/sheet/mineral/plasma{
- amount = 5;
- pixel_x = -5;
- pixel_y = 16
- },
-/obj/item/reagent_containers/glass/beaker/large{
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/item/reagent_containers/dropper{
- pixel_x = -3;
- pixel_y = -2
- },
-/obj/item/toy/plush/slimeplushie/pink{
- pixel_x = -12;
- pixel_y = 7
- },
-/turf/open/floor/iron/grid/steel,
-/area/science/xenobiology)
"iDw" = (
/obj/effect/turf_decal/tile/neutral/anticorner{
dir = 5
@@ -27650,6 +27510,21 @@
"iEd" = (
/turf/closed/wall/r_wall,
/area/science/xenobiology)
+"iEz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
+"iEI" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Maintenance Hatch";
+ req_access_txt = "50"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/central)
"iEK" = (
/obj/machinery/light{
dir = 4
@@ -27657,21 +27532,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/engine/engine_room)
-"iEM" = (
-/obj/effect/turf_decal/guideline/guideline_in/brown,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
-/obj/structure/disposalpipe/junction/flip{
- dir = 8
- },
-/obj/effect/turf_decal/tile/brown/half{
- dir = 8
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
"iEO" = (
/turf/closed/wall,
/area/engine/storage)
@@ -27690,17 +27550,6 @@
},
/turf/open/floor/iron,
/area/science/storage)
-"iFf" = (
-/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
-/obj/item/radio/intercom{
- desc = "Talk through this. It looks like it has been modified to not broadcast.";
- freerange = 1;
- name = "Prison intercom";
- pixel_y = -25;
- prison_radio = 1
- },
-/turf/open/floor/prison,
-/area/security/prison)
"iFD" = (
/obj/structure/closet/l3closet/virology,
/obj/effect/turf_decal/bot,
@@ -27723,21 +27572,6 @@
/obj/effect/turf_decal/box,
/turf/open/floor/iron/dark,
/area/storage/tech)
-"iFL" = (
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 1
- },
-/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
- alpha = 180;
- color = "#DE3A3A"
- },
-/obj/structure/disposalpipe/sorting/mail{
- sortType = 30
- },
-/turf/open/floor/iron,
-/area/security/main{
- name = "Security Viewing Hall"
- })
"iFM" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -27911,6 +27745,18 @@
},
/turf/open/floor/plating,
/area/maintenance/department/engine)
+"iJd" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/starboard/aft)
"iJe" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 4
@@ -27930,27 +27776,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
-"iJr" = (
-/obj/structure/railing/corner,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
-"iJF" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 3
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron/dark,
-/area/quartermaster/exploration_prep)
"iJI" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -27978,22 +27803,24 @@
/obj/structure/sign/departments/minsky/medical/chemistry/chemical2,
/turf/closed/wall/rust,
/area/maintenance/starboard/aft)
-"iKp" = (
-/obj/effect/turf_decal/tile/neutral/half,
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+"iKw" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_y = 1
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
+/obj/machinery/light/floor{
+ brightness = 15;
+ bulb_colour = "#FFE4CE";
+ bulb_vacuum_brightness = 15;
+ nightshift_brightness = 10;
+ nightshift_light_color = "#E6EBFF"
},
-/turf/open/floor/iron/dark,
-/area/chapel/office)
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"iKy" = (
/obj/machinery/door/airlock{
name = "Service Hall";
@@ -28163,6 +27990,19 @@
},
/turf/open/floor/iron/dark,
/area/security/courtroom)
+"iNo" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_y = 1
+ },
+/obj/structure/chair/fancy/comfy{
+ buildstackamount = 0;
+ color = "#742925";
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"iNB" = (
/obj/machinery/gateway{
dir = 9
@@ -28297,12 +28137,18 @@
"iQe" = (
/turf/open/floor/wood,
/area/crew_quarters/dorms)
-"iQh" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
+"iQm" = (
+/obj/structure/railing/corner{
+ dir = 4
},
-/turf/open/floor/iron/dark,
-/area/science/robotics)
+/obj/structure/disposalpipe/junction,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
"iQp" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -28312,6 +28158,14 @@
},
/turf/open/floor/iron/tech,
/area/engine/atmos)
+"iQt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/railing/corner,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"iQH" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -28404,6 +28258,15 @@
},
/turf/open/floor/iron/tech,
/area/engine/engine_room)
+"iRN" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/medical/morgue)
"iRY" = (
/turf/closed/wall/r_wall,
/area/engine/atmos)
@@ -28413,6 +28276,16 @@
},
/turf/open/floor/wood,
/area/security/courtroom)
+"iSN" = (
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/solar{
+ id = "portsolar";
+ name = "Port Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/port/aft)
"iST" = (
/turf/closed/wall/r_wall,
/area/tcommsat/computer)
@@ -28467,22 +28340,6 @@
/obj/machinery/airalarm/directional/east,
/turf/open/floor/wood,
/area/security/prison)
-"iUC" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{
- dir = 4;
- initialize_directions = 4
- },
-/turf/open/floor/iron/dark,
-/area/quartermaster/exploration_prep)
-"iUK" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 1
- },
-/turf/open/floor/iron/dark/smooth_edge,
-/area/hallway/primary/central)
"iUW" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -28512,6 +28369,9 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat/foyer)
+"iVf" = (
+/turf/open/floor/iron/white,
+/area/science/robotics)
"iVh" = (
/obj/structure/disposalpipe/segment{
dir = 1
@@ -28671,17 +28531,6 @@
},
/turf/open/floor/iron,
/area/engine/break_room)
-"iXT" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "xenosecure";
- name = "Secure Pen Shutters"
- },
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- dir = 10
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
"iYu" = (
/obj/structure/lattice/catwalk,
/obj/item/stack/cable_coil,
@@ -28777,21 +28626,6 @@
},
/turf/open/floor/iron/dark,
/area/security/brig)
-"iZG" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/neutral/half,
-/obj/effect/turf_decal/tile/purple/half/contrasted{
- dir = 1
- },
-/obj/effect/turf_decal/caution{
- pixel_y = -17
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/iron,
-/area/maintenance/port/aft)
"iZK" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted{
alpha = 200;
@@ -28822,6 +28656,9 @@
},
/turf/open/floor/iron/white,
/area/science/xenobiology)
+"iZW" = (
+/turf/open/floor/iron/white,
+/area/science/xenobiology)
"jae" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
@@ -28857,15 +28694,6 @@
/mob/living/basic/cockroach,
/turf/open/floor/wood,
/area/vacant_room/office)
-"jat" = (
-/obj/structure/disposaloutlet{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal)
"jaC" = (
/obj/structure/chair/office/light{
dir = 1
@@ -28899,6 +28727,18 @@
},
/turf/open/floor/iron,
/area/engine/engineering)
+"jaG" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/techmaint,
+/area/maintenance/central)
"jaQ" = (
/obj/structure/chair/office/light{
dir = 8
@@ -28946,14 +28786,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
-"jbj" = (
-/obj/structure/window/reinforced,
-/obj/structure/table/reinforced,
-/obj/structure/extinguisher_cabinet{
- pixel_y = 31
- },
-/turf/open/floor/iron/techmaint,
-/area/science/xenobiology)
"jbn" = (
/obj/structure/chair,
/obj/effect/turf_decal/bot,
@@ -29086,15 +28918,25 @@
dir = 8
},
/area/hallway/secondary/exit/departure_lounge)
-"jds" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/guideline/guideline_in/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow/half,
-/obj/effect/turf_decal/tile/yellow/half,
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
+"jdh" = (
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/glass/reinforced,
+/area/hallway/primary/central{
+ dynamic_lighting = 2;
+ lighting_brightness_tube = 11;
+ lighting_colour_bulb = "#DDE6FF";
+ lighting_colour_night = "#DDE6FF";
+ lighting_colour_tube = "#DDE6FF";
+ lighting_overlay_colour = "#DDE6FF";
+ power_light = 0
+ })
+"jdn" = (
+/obj/item/shovel/spade,
+/obj/item/storage/belt/botanical,
+/obj/structure/table/wood,
+/obj/effect/mapping_helpers/tile_breaker,
+/turf/open/floor/wood,
+/area/maintenance/central)
"jdz" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/tile/yellow/half/contrasted{
@@ -29153,21 +28995,13 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating,
/area/maintenance/port/central)
-"jeb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
+"jdW" = (
/obj/structure/cable/yellow{
- icon_state = "2-8"
+ icon_state = "1-2"
},
-/turf/open/floor/catwalk_floor,
-/area/maintenance/starboard/aft)
+/obj/effect/landmark/blobstart,
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
"jeK" = (
/turf/closed/wall,
/area/security/prison{
@@ -29201,15 +29035,6 @@
/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior,
/turf/open/floor/engine,
/area/engine/atmospherics_engine)
-"jfg" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 9
- },
-/turf/open/floor/iron,
-/area/quartermaster/exploration_prep)
"jfn" = (
/obj/structure/table/reinforced,
/obj/effect/turf_decal/siding/wideplating/dark{
@@ -29217,25 +29042,13 @@
},
/turf/open/floor/iron/cafeteria,
/area/crew_quarters/kitchen)
-"jfo" = (
-/obj/effect/turf_decal/guideline/guideline_in/blue{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue/half{
- dir = 1
+"jfD" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Maintenance Hatch";
+ req_one_access_txt = "12;6"
},
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
-"jfF" = (
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/central)
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/department/medical/morgue)
"jfG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
@@ -29266,27 +29079,6 @@
/area/security/main{
name = "Security Locker Room"
})
-"jfV" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/sunnybush,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "hopqueue";
- name = "HoP Queue Shutters"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/grass/no_border,
-/area/crew_quarters/heads/hop)
"jgz" = (
/obj/structure/railing/corner{
dir = 8
@@ -29370,18 +29162,14 @@
},
/turf/open/floor/plating,
/area/security/brig/dock)
-"jho" = (
-/obj/effect/turf_decal/guideline/guideline_edge/neutral{
- alpha = 255;
- dir = 8
- },
-/obj/structure/sign/departments/minsky/security/evac{
- pixel_x = -33
- },
-/turf/open/floor/iron/white/side{
- dir = 8
+"jgU" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/generic,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/area/medical/medbay/central)
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/medical/morgue)
"jhr" = (
/obj/structure/plasticflaps/opaque,
/obj/machinery/navbeacon{
@@ -29409,19 +29197,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"jhy" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/mob/living/basic/cockroach,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/central)
"jhX" = (
/obj/machinery/computer/nanite_chamber_control{
dir = 4
@@ -29478,6 +29253,15 @@
/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior,
/turf/open/floor/engine,
/area/engine/atmospherics_engine)
+"jjB" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/landmark/blobstart,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/security)
"jkc" = (
/obj/structure/table/reinforced,
/obj/item/storage/fancy/donut_box{
@@ -29596,18 +29380,6 @@
},
/turf/open/floor/plating,
/area/quartermaster/warehouse)
-"jmt" = (
-/obj/structure/window/reinforced{
- dir = 4;
- layer = 2.9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"jmw" = (
/obj/item/reagent_containers/food/drinks/drinkingglass{
pixel_x = -7;
@@ -29672,6 +29444,15 @@
},
/turf/open/floor/carpet/purple,
/area/crew_quarters/heads/hor)
+"jof" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/structure/railing/corner,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"joH" = (
/obj/structure/table/reinforced,
/obj/item/reagent_containers/food/condiment/saltshaker{
@@ -29762,18 +29543,23 @@
},
/turf/open/floor/iron,
/area/quartermaster/storage)
-"jpw" = (
-/obj/structure/disposalpipe/segment{
- dir = 1
+"jpI" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
},
-/obj/item/radio/intercom{
- pixel_x = 32;
- pixel_y = -3
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
},
-/turf/open/floor/iron/white/side{
- dir = 4
+/obj/machinery/light/floor{
+ brightness = 15;
+ bulb_emergency_brightness_mul = 2;
+ bulb_vacuum_brightness = 15;
+ nightshift_brightness = 10
},
-/area/science/lab)
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"jpK" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -29846,21 +29632,6 @@
/obj/machinery/firealarm/directional/south,
/turf/open/floor/iron/dark,
/area/engine/atmos)
-"jrn" = (
-/obj/structure/railing/corner{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"jrE" = (
/obj/machinery/light{
dir = 8
@@ -29958,6 +29729,22 @@
/obj/effect/landmark/start/virologist,
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
+"jsh" = (
+/obj/effect/turf_decal/guideline/guideline_in/darkblue{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/tile/dark_blue/half{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/dark_blue/half{
+ dir = 1
+ },
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
"jsk" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/components/binary/pump/on{
@@ -30017,6 +29804,21 @@
},
/turf/open/floor/engine,
/area/science/mixing/chamber)
+"jsT" = (
+/obj/effect/turf_decal/guideline/guideline_in/brown,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
+/obj/structure/disposalpipe/junction/flip{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/brown/half{
+ dir = 8
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
"jth" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -30139,18 +29941,22 @@
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
/area/maintenance/department/medical/morgue)
-"jvi" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
+"juZ" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin{
+ pixel_x = -1;
+ pixel_y = 2
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
+/obj/item/pen{
+ pixel_x = 1;
+ pixel_y = 1
},
-/obj/structure/disposalpipe/segment{
- dir = 2
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
},
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
+/turf/open/floor/iron,
+/area/science/explab)
"jvl" = (
/obj/effect/turf_decal/delivery,
/obj/effect/turf_decal/stripes/line{
@@ -30263,13 +30069,22 @@
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/iron/dark,
/area/science/robotics)
-"jwX" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
+"jxc" = (
+/obj/machinery/computer/security{
+ pixel_y = -3
},
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/iron/white,
-/area/science/xenobiology)
+/obj/machinery/camera/autoname{
+ network = list("ss13","security")
+ },
+/obj/machinery/computer/security/telescreen{
+ network = list("ss13");
+ pixel_y = 25
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/carpet/red,
+/area/security/detectives_office)
"jxf" = (
/obj/structure/chair/office/light{
dir = 8
@@ -30298,11 +30113,6 @@
},
/turf/open/floor/iron,
/area/maintenance/central)
-"jxt" = (
-/turf/open/floor/iron/white/side{
- dir = 4
- },
-/area/medical/sleeper)
"jxz" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -30370,6 +30180,15 @@
},
/turf/open/space/basic,
/area/solar/port/fore)
+"jyo" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/chapel/office)
"jyu" = (
/turf/open/floor/iron/white,
/area/security/brig/medbay)
@@ -30420,13 +30239,6 @@
dir = 1
},
/area/medical/medbay/central)
-"jzf" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/structure/railing/corner{
- dir = 4
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"jzB" = (
/obj/structure/chair/office{
dir = 8;
@@ -30469,19 +30281,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/engine/atmos)
-"jAh" = (
-/obj/structure/sign/warning/radiation_shelter{
- pixel_x = 33;
- pixel_y = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/bridge)
"jAx" = (
/obj/item/ammo_casing/c46x30mm,
/obj/item/ammo_casing/c46x30mm,
@@ -30515,9 +30314,31 @@
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/iron/sepia,
/area/maintenance/port/central)
+"jBo" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Maintenance Hatch";
+ req_one_access_txt = "12;6"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/medical/morgue)
"jBw" = (
/turf/closed/wall,
/area/maintenance/department/security)
+"jBF" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/item/kirbyplants/random,
+/turf/open/floor/grass/no_border,
+/area/hallway/secondary/exit/departure_lounge)
"jBO" = (
/obj/structure/reagent_dispensers/peppertank{
pixel_y = -30
@@ -30675,6 +30496,26 @@
},
/turf/open/floor/plating,
/area/crew_quarters/kitchen)
+"jDD" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4,
+/obj/machinery/atmospherics/components/binary/valve/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"jDF" = (
/obj/machinery/door/poddoor/preopen{
id = "bridgewindows";
@@ -31024,6 +30865,18 @@
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plating,
/area/construction/mining/aux_base)
+"jIv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"jII" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
@@ -31049,13 +30902,6 @@
},
/turf/open/floor/carpet/blue,
/area/crew_quarters/heads/captain)
-"jJx" = (
-/obj/structure/grille,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/medical/morgue)
"jJz" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/structure/chair/fancy/comfy{
@@ -31135,6 +30981,18 @@
},
/turf/open/floor/plating,
/area/maintenance/department/bridge)
+"jKr" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/item/storage/pod{
+ pixel_x = 32
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"jKx" = (
/turf/open/floor/iron/cafeteria,
/area/crew_quarters/kitchen)
@@ -31171,12 +31029,31 @@
"jLF" = (
/turf/closed/wall,
/area/tcommsat/server)
+"jMh" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/medical/morgue)
"jMi" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/department/science)
+"jMm" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_y = 1
+ },
+/obj/structure/closet/firecloset/full,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"jMp" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -31227,6 +31104,16 @@
},
/turf/open/floor/iron/dark,
/area/engine/storage)
+"jMN" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/science/explab)
"jMT" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet,
@@ -31238,12 +31125,6 @@
/obj/structure/closet/crate/miningcar,
/turf/open/floor/iron/sepia,
/area/maintenance/port/central)
-"jNz" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/medical/morgue)
"jNG" = (
/obj/structure/table/reinforced,
/obj/machinery/computer/med_data/laptop{
@@ -31267,6 +31148,20 @@
},
/turf/open/floor/iron/white,
/area/medical/apothecary)
+"jOj" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/item/kirbyplants/random,
+/turf/open/floor/grass/no_border,
+/area/hallway/secondary/exit/departure_lounge)
"jOp" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -31284,32 +31179,6 @@
},
/turf/open/floor/iron/dark,
/area/security/brig/dock)
-"jOw" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/turf_decal/guideline/guideline_edge/neutral{
- alpha = 255;
- dir = 8
- },
-/obj/item/radio/intercom{
- dir = 1;
- pixel_x = -30;
- pixel_y = -4
- },
-/turf/open/floor/iron/white/side{
- dir = 8
- },
-/area/medical/medbay/central)
-"jOL" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/wood,
-/area/chapel/office)
"jOP" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 1
@@ -31372,6 +31241,17 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron/dark,
/area/bridge)
+"jPF" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"jPJ" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow{
@@ -31475,6 +31355,19 @@
},
/turf/open/floor/iron/dark,
/area/security/nuke_storage)
+"jRe" = (
+/obj/structure/railing{
+ dir = 5
+ },
+/obj/machinery/light/floor{
+ brightness = 15;
+ bulb_colour = "#FFE4CE";
+ bulb_vacuum_brightness = 15;
+ nightshift_brightness = 10;
+ nightshift_light_color = "#E6EBFF"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"jRg" = (
/turf/open/floor/plating,
/area/hallway/secondary/service)
@@ -31490,26 +31383,6 @@
},
/turf/open/floor/iron/sepia,
/area/quartermaster/office)
-"jRC" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/open/floor/iron/white,
-/area/science/xenobiology)
-"jRG" = (
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/turf/open/floor/plating{
- broken = 1
- },
-/area/maintenance/department/engine)
"jRK" = (
/obj/effect/turf_decal/guideline/guideline_half_edge/purple{
dir = 8
@@ -31591,6 +31464,15 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
+"jSt" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 9
+ },
+/obj/structure/chair/fancy/bench/pew/right{
+ dir = 4
+ },
+/turf/open/floor/glass/reinforced,
+/area/chapel/main)
"jSx" = (
/turf/open/floor/iron,
/area/vacant_room/commissary/commissary2)
@@ -31639,21 +31521,6 @@
},
/turf/open/floor/wood,
/area/security/prison)
-"jTC" = (
-/obj/effect/turf_decal/guideline/guideline_out_arrow/brown{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/iron/techmaint,
-/area/hallway/secondary/service)
"jTQ" = (
/obj/effect/turf_decal/loading_area{
dir = 1
@@ -31666,16 +31533,6 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
-"jTS" = (
-/mob/living/basic/cockroach,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"jTY" = (
/obj/machinery/camera/motion{
c_tag = "Armory - Internal";
@@ -31690,6 +31547,20 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"jUq" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/guideline/guideline_edge/purple{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/science/research)
"jUB" = (
/obj/structure/chair/fancy/bench/pew/right{
dir = 8
@@ -31708,23 +31579,6 @@
},
/turf/open/floor/circuit/green,
/area/science/robotics/mechbay)
-"jUF" = (
-/turf/open/floor/iron/white,
-/area/science/robotics)
-"jUP" = (
-/obj/machinery/door/airlock/grunge{
- name = "Chapel Office";
- req_access_txt = "27"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/chapel/office)
"jVj" = (
/obj/structure/grille/broken,
/turf/open/floor/plating,
@@ -31744,6 +31598,14 @@
/obj/effect/turf_decal/box,
/turf/open/floor/iron/grid/steel,
/area/medical/sleeper)
+"jVC" = (
+/obj/effect/turf_decal/guideline/guideline_edge/blue{
+ dir = 8
+ },
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/medical/sleeper)
"jVS" = (
/obj/structure/sign/poster/official/cleanliness,
/turf/closed/wall/r_wall,
@@ -31786,21 +31648,6 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/exploration_prep)
-"jWT" = (
-/obj/effect/landmark/start/assistant,
-/obj/effect/turf_decal/siding/white{
- dir = 9
- },
-/turf/open/floor/glass/reinforced,
-/area/hallway/primary/central{
- dynamic_lighting = 2;
- lighting_brightness_tube = 11;
- lighting_colour_bulb = "#DDE6FF";
- lighting_colour_night = "#DDE6FF";
- lighting_colour_tube = "#DDE6FF";
- lighting_overlay_colour = "#DDE6FF";
- power_light = 0
- })
"jWV" = (
/obj/structure/table/reinforced,
/obj/effect/turf_decal/stripes/line,
@@ -31821,18 +31668,6 @@
/obj/item/book/manual/wiki/sopengineering,
/turf/open/floor/iron/dark,
/area/engine/engineering)
-"jXb" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/guideline/guideline_in/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple/half{
- dir = 4
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
"jXu" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -31866,21 +31701,6 @@
},
/turf/open/floor/iron/dark,
/area/engine/engine_room)
-"jYc" = (
-/obj/effect/turf_decal/guideline/guideline_in/red{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/effect/turf_decal/tile/dark_red/half{
- color = "#DE3A3A"
- },
-/obj/effect/turf_decal/tile/dark_red/half{
- color = "#DE3A3A"
- },
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
"jYe" = (
/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{
dir = 1
@@ -31975,13 +31795,6 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/lobby)
-"jZz" = (
-/obj/machinery/door/airlock/grunge{
- name = "Morgue";
- req_access_txt = "6"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/department/medical/morgue)
"jZA" = (
/obj/structure/grille,
/turf/open/floor/plating/rust,
@@ -32017,6 +31830,13 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/quartermaster/miningdock)
+"jZM" = (
+/obj/effect/turf_decal/box/corners,
+/obj/machinery/camera/autoname{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/science/explab)
"jZV" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating,
@@ -32033,44 +31853,15 @@
/obj/effect/turf_decal/box,
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
-"kap" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4,
-/obj/machinery/atmospherics/components/binary/valve/layer4{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
-"kaq" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/machinery/firealarm/directional/west,
+"kav" = (
+/obj/item/kirbyplants/random,
/obj/effect/turf_decal/guideline/guideline_edge/purple{
- dir = 8
+ dir = 4
},
/turf/open/floor/iron/white/side{
dir = 8
},
-/area/science/research)
+/area/science/lobby)
"kaA" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 8
@@ -32202,16 +31993,6 @@
},
/turf/open/floor/iron,
/area/hydroponics)
-"kdl" = (
-/obj/structure/grille/broken,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/bridge)
"kdE" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -32226,21 +32007,6 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/iron,
/area/engine/engine_room)
-"keh" = (
-/obj/structure/railing/corner{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"keJ" = (
/obj/structure/disposalpipe/segment{
dir = 1
@@ -32262,22 +32028,6 @@
/obj/machinery/atmospherics/pipe/simple/dark/visible,
/turf/open/floor/iron/tech,
/area/engine/atmos)
-"keN" = (
-/obj/effect/turf_decal/siding/wideplating/dark,
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/turf/open/floor/carpet/purple,
-/area/chapel/main)
"keV" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
@@ -32305,14 +32055,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/cafeteria)
-"kfk" = (
-/obj/effect/turf_decal/tile/dark_red/anticorner/contrasted{
- alpha = 180;
- color = "#DE3A3A";
- dir = 4
- },
-/turf/open/floor/iron/dark,
-/area/security/warden)
"kfn" = (
/obj/structure/chair/fancy/sofa/old/right{
color = "#742925";
@@ -32390,6 +32132,21 @@
/obj/structure/cable/yellow,
/turf/open/floor/iron,
/area/science/robotics)
+"kgi" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"kgx" = (
/obj/structure/window/reinforced{
dir = 4
@@ -32428,14 +32185,6 @@
},
/turf/open/space/basic,
/area/solar/port/fore)
-"kgZ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/railing/corner{
- dir = 1
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"khc" = (
/obj/structure/weightmachine/weightlifter,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -32612,25 +32361,6 @@
},
/turf/open/floor/iron/dark,
/area/engine/atmos)
-"kjn" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4{
- dir = 10
- },
-/obj/machinery/firealarm/directional/north,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"kjs" = (
/obj/machinery/light,
/obj/effect/decal/cleanable/dirt/dust,
@@ -32690,24 +32420,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
-"kkK" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/machinery/light/floor{
- brightness = 15;
- bulb_colour = "#FFE4CE";
- bulb_vacuum_brightness = 15;
- nightshift_brightness = 10;
- nightshift_light_color = "#E6EBFF"
- },
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 4
- },
-/turf/open/floor/iron/dark/smooth_edge{
- dir = 8
- },
-/area/hallway/primary/central)
"kkV" = (
/obj/effect/turf_decal/tile/dark_red/half/contrasted{
alpha = 180;
@@ -32807,22 +32519,18 @@
/obj/machinery/airalarm/directional/north,
/turf/open/floor/iron/grid/steel,
/area/hydroponics)
-"klV" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 28
- },
-/obj/structure/table/glass,
-/obj/item/circular_saw,
-/obj/item/blood_filter{
- pixel_x = -1;
- pixel_y = 5
+"kma" = (
+/obj/structure/railing{
+ dir = 10;
+ layer = 3.1
},
-/obj/item/hemostat,
-/obj/item/scalpel{
- pixel_y = 12
+/obj/effect/spawner/randomvend/cola,
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 10
},
-/turf/open/floor/iron,
-/area/medical/surgery)
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"kml" = (
/obj/structure/table/reinforced,
/obj/item/clipboard{
@@ -32879,6 +32587,16 @@
},
/turf/open/floor/iron/dark,
/area/science/nanite)
+"knr" = (
+/mob/living/basic/cockroach,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"knx" = (
/obj/effect/turf_decal/tile/yellow{
dir = 4
@@ -32917,21 +32635,6 @@
/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/medical/virology)
-"kok" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/guideline/guideline_in/purple{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple/half{
- dir = 4
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
"kor" = (
/turf/closed/wall/r_wall/rust,
/area/science/storage)
@@ -32962,16 +32665,6 @@
},
/turf/open/floor/iron/dark,
/area/medical/virology)
-"koI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/guideline/guideline_edge/purple{
- dir = 4
- },
-/turf/open/floor/iron/white/side{
- dir = 4
- },
-/area/science/research)
"koJ" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating{
@@ -33153,22 +32846,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"krW" = (
-/obj/effect/turf_decal/guideline/guideline_out_alt/brown{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/item/bikehorn,
-/turf/open/floor/wood,
-/area/maintenance/central)
"ksd" = (
/turf/open/floor/plating,
/area/maintenance/department/security)
@@ -33209,6 +32886,34 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/wood,
/area/maintenance/port/aft)
+"ktQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/guideline/guideline_in/purple{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple/half{
+ dir = 4
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
+"kui" = (
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_x = 1;
+ pixel_y = -36
+ },
+/obj/machinery/light,
+/obj/structure/chair/fancy/sofa/old/right{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/tile_breaker,
+/turf/open/floor/wood,
+/area/maintenance/central)
"kuA" = (
/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
alpha = 180;
@@ -33340,16 +33045,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/dark,
/area/engine/engine_room)
-"kwd" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Maintenance Hatch";
- req_one_access_txt = "12;6"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/department/medical/morgue)
"kwh" = (
/turf/closed/wall,
/area/engine/engineering)
@@ -33410,6 +33105,13 @@
},
/turf/open/floor/plating,
/area/security/checkpoint/medical)
+"kxr" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"kxz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 9
@@ -33485,15 +33187,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/medical/surgery)
-"kyJ" = (
-/obj/machinery/airalarm/directional/west,
-/obj/effect/turf_decal/guideline/guideline_edge/purple{
- dir = 8
- },
-/turf/open/floor/iron/white/side{
- dir = 8
- },
-/area/science/lobby)
"kyM" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -33582,15 +33275,6 @@
},
/turf/open/floor/iron/sepia,
/area/maintenance/port/central)
-"kBh" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4,
-/obj/machinery/atmospherics/components/binary/pump/on{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"kBs" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -33614,23 +33298,6 @@
/obj/effect/landmark/start/ai,
/turf/open/floor/engine/air,
/area/ai_monitored/turret_protected/ai)
-"kBG" = (
-/obj/item/radio/intercom{
- pixel_x = -27
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/effect/turf_decal/guideline/guideline_edge/blue{
- dir = 8
- },
-/turf/open/floor/iron/white/side{
- dir = 8
- },
-/area/medical/sleeper)
"kBJ" = (
/obj/effect/landmark/xeno_spawn,
/obj/effect/decal/cleanable/dirt,
@@ -33712,18 +33379,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/engine/engine_room)
-"kCX" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/open/floor/iron/dark,
-/area/science/robotics)
"kDi" = (
/obj/structure/railing{
dir = 4
@@ -33814,6 +33469,16 @@
/obj/effect/spawner/structure/window/plasma/reinforced,
/turf/open/floor/plating,
/area/engine/engine_room)
+"kFb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"kFd" = (
/turf/closed/wall,
/area/crew_quarters/heads/chief)
@@ -33826,6 +33491,12 @@
"kFx" = (
/turf/closed/wall/r_wall,
/area/security/brig/medbay)
+"kFE" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/aft)
"kFI" = (
/obj/structure/cable{
icon_state = "0-8"
@@ -33933,25 +33604,33 @@
},
/turf/open/floor/iron/sepia,
/area/quartermaster/office)
-"kHx" = (
-/obj/effect/turf_decal/stripes/line{
+"kHy" = (
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
},
-/obj/structure/disposalpipe/segment{
- dir = 10
+/turf/open/floor/iron,
+/area/hallway/primary/port)
+"kHU" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
},
/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
-"kHy" = (
-/obj/effect/turf_decal/delivery,
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 1
},
+/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
+ alpha = 180;
+ color = "#DE3A3A"
+ },
/turf/open/floor/iron,
-/area/hallway/primary/port)
+/area/security/brig)
"kIg" = (
/obj/item/soap/nanotrasen,
/obj/effect/turf_decal/delivery,
@@ -33990,10 +33669,6 @@
},
/turf/open/floor/iron/dark,
/area/security/brig/dock)
-"kID" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/engine,
-/area/science/explab)
"kII" = (
/obj/effect/turf_decal/tile/blue,
/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
@@ -34047,20 +33722,6 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/starboard/fore)
-"kJc" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/machinery/button/door{
- id = "brigentrance";
- name = "Brig Lockdown Control";
- pixel_x = -25;
- req_access_txt = "1"
- },
-/turf/open/floor/iron/dark,
-/area/security/main{
- name = "Security Locker Room"
- })
"kJm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
@@ -34118,15 +33779,6 @@
},
/turf/open/floor/iron/tech/grid,
/area/engine/engine_room)
-"kJR" = (
-/obj/effect/turf_decal/bot,
-/obj/effect/turf_decal/guideline/guideline_edge/blue{
- dir = 8
- },
-/obj/structure/closet/crate/freezer/surplus_limbs,
-/obj/item/organ/ears/cat,
-/turf/open/floor/iron,
-/area/medical/surgery)
"kJT" = (
/obj/machinery/conveyor{
dir = 4;
@@ -34139,6 +33791,10 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/storage)
+"kJY" = (
+/obj/machinery/vendor/exploration,
+/turf/open/floor/iron/dark,
+/area/quartermaster/exploration_prep)
"kKf" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -34210,6 +33866,26 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
+"kKG" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/greenglow,
+/obj/machinery/light{
+ bulb_colour = "#22bfa2";
+ bulb_vacuum_colour = "#22bfa2";
+ dir = 8;
+ nightshift_light_color = "#22bfa2"
+ },
+/obj/machinery/power/smes/engineering{
+ charge = 2e+007
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"kKQ" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/tile/neutral/half/contrasted,
@@ -34443,16 +34119,6 @@
},
/turf/open/floor/iron,
/area/science/lab)
-"kPR" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/machinery/computer/security/telescreen/rd{
- pixel_y = 32
- },
-/obj/machinery/computer/card/minor/rd,
-/turf/open/floor/carpet/purple,
-/area/crew_quarters/heads/hor)
"kPT" = (
/obj/structure/flora/ausbushes/sparsegrass,
/turf/open/floor/grass,
@@ -34567,12 +34233,22 @@
},
/turf/open/floor/carpet/blue,
/area/bridge/meeting_room)
-"kSF" = (
-/obj/effect/landmark/start/chaplain,
-/obj/machinery/holopad,
-/obj/effect/turf_decal/box,
-/turf/open/floor/glass/reinforced,
-/area/chapel/main)
+"kSE" = (
+/obj/machinery/computer/security/mining{
+ dir = 1;
+ name = "Ion engine camera console";
+ network = list("Ion")
+ },
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/engine/engine_room)
+"kSG" = (
+/obj/effect/turf_decal/delivery,
+/obj/item/xenoartifact,
+/obj/machinery/xenoartifact_inbox,
+/turf/open/floor/engine,
+/area/science/explab)
"kSP" = (
/obj/effect/turf_decal/loading_area{
dir = 8
@@ -34702,19 +34378,6 @@
},
/turf/open/floor/iron/tech,
/area/engine/engine_room)
-"kUl" = (
-/obj/machinery/firealarm/directional/west,
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 1
- },
-/obj/structure/disposaloutlet{
- dir = 1
- },
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/iron/dark,
-/area/security/brig{
- name = "Brig Evidence"
- })
"kUm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 1
@@ -34766,20 +34429,6 @@
},
/turf/open/floor/iron,
/area/science/misc_lab)
-"kVc" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_y = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"kVe" = (
/obj/effect/decal/cleanable/blood/old,
/obj/effect/decal/cleanable/dirt,
@@ -34848,13 +34497,6 @@
},
/turf/open/floor/iron/dark,
/area/engine/engine_room)
-"kWF" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/obj/structure/railing/corner,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"kWN" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -34901,20 +34543,6 @@
/obj/machinery/airalarm/directional/south,
/turf/open/floor/carpet/royalblue,
/area/crew_quarters/heads/captain)
-"kXk" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/guideline/guideline_edge/purple{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/turf/open/floor/iron/white/side{
- dir = 8
- },
-/area/science/research)
"kXn" = (
/obj/structure/grille,
/turf/open/floor/plating,
@@ -35075,9 +34703,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/bridge)
-"kYW" = (
-/turf/open/floor/catwalk_floor,
-/area/maintenance/central)
"kZd" = (
/obj/machinery/door/poddoor/preopen{
id = "Engineering";
@@ -35086,6 +34711,21 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/noslip/standard,
/area/engine/engineering)
+"kZj" = (
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"kZq" = (
/obj/effect/turf_decal/tile/dark_blue{
alpha = 180;
@@ -35128,6 +34768,24 @@
/area/security/main{
name = "Security Viewing Hall"
})
+"kZA" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"kZE" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
/obj/structure/disposalpipe/segment{
@@ -35245,6 +34903,22 @@
/obj/machinery/airalarm/directional/south,
/turf/open/floor/noslip/white,
/area/science/xenobiology)
+"lbf" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/button/door{
+ id = "xeno2";
+ name = "Containment Control";
+ pixel_x = -32;
+ pixel_y = 3;
+ req_access_txt = "55"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/iron/white,
+/area/science/xenobiology)
"lbh" = (
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -35260,20 +34934,6 @@
},
/turf/open/floor/iron/tech,
/area/engine/engine_room)
-"lbr" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/central)
"lbs" = (
/turf/open/floor/iron,
/area/engine/engine_room)
@@ -35306,15 +34966,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"lbF" = (
-/obj/effect/decal/cleanable/crayon,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/food/spaghetti/butternoodles,
-/turf/open/floor/plating{
- burnt = 1
- },
-/area/maintenance/department/medical)
"lbK" = (
/obj/machinery/door/poddoor/shutters/radiation/preopen{
id = "engsm";
@@ -35459,18 +35110,6 @@
},
/turf/open/floor/wood,
/area/security/prison)
-"ldI" = (
-/obj/structure/grille/broken,
-/obj/effect/spawner/lootdrop/maintenance/two,
-/obj/structure/rack,
-/obj/machinery/power/apc/auto_name/north{
- pixel_y = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
"ldP" = (
/obj/structure/disposalpipe/segment{
dir = 5
@@ -35487,6 +35126,15 @@
},
/turf/open/floor/iron,
/area/engine/engineering)
+"lef" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"leq" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -35543,6 +35191,16 @@
},
/turf/open/floor/iron,
/area/medical/apothecary)
+"lff" = (
+/obj/machinery/light,
+/obj/effect/turf_decal/guideline/guideline_edge/purple,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white/side{
+ dir = 1
+ },
+/area/science/research)
"lfi" = (
/obj/machinery/requests_console{
announcementConsole = 1;
@@ -35583,6 +35241,21 @@
/obj/item/storage/bag/tray,
/turf/open/floor/plating,
/area/maintenance/port/aft)
+"lfW" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"lfX" = (
/mob/living/basic/mothroach,
/obj/structure/sign/poster/official/moth2{
@@ -35615,20 +35288,9 @@
},
/turf/open/floor/plating,
/area/maintenance/department/medical/morgue)
-"lgV" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/light,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 4
- },
-/obj/structure/closet/secure_closet/atmospherics{
- anchored = 1
- },
-/turf/open/floor/iron/dark,
-/area/engine/atmos)
+"lgK" = (
+/turf/open/floor/glass/reinforced,
+/area/chapel/main)
"lgY" = (
/obj/machinery/atmospherics/pipe/simple/orange/visible{
dir = 4
@@ -35640,16 +35302,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/engine/atmos)
-"lhk" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Maintenance Hatch";
- req_one_access_txt = "12;6"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/medical/morgue)
"lhn" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/landmark/xeno_spawn,
@@ -35675,46 +35327,35 @@
},
/turf/open/floor/engine/o2,
/area/ai_monitored/turret_protected/ai)
-"lhK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/light_switch{
- pixel_x = 21
+"lhV" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/window/reinforced{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/wood,
-/area/chapel/office)
-"lhM" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/purple{
+/obj/structure/window/reinforced{
dir = 4
},
-/turf/open/floor/iron,
-/area/maintenance/port/aft)
-"lih" = (
-/obj/effect/turf_decal/guideline/guideline_in/neutral{
- alpha = 255;
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
+/obj/structure/window/reinforced{
dir = 8
},
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
+/mob/living/simple_animal/butterfly{
+ name = "Lisa, PsyD"
},
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/disposalpipe/segment{
+ dir = 8
},
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
+/turf/open/floor/grass/no_border,
+/area/medical/sleeper)
+"lhX" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
},
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
+/obj/structure/railing/corner{
+ dir = 8
},
-/turf/open/floor/iron/half,
+/turf/open/floor/iron/dark/smooth_large,
/area/hallway/primary/central)
"lii" = (
/obj/structure/disposalpipe/segment{
@@ -35728,19 +35369,12 @@
dir = 1
},
/area/medical/medbay/central)
-"ljm" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/effect/landmark/xeno_spawn,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
+"liz" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
},
-/turf/open/floor/catwalk_floor,
-/area/maintenance/central)
+/turf/open/floor/iron/dark,
+/area/chapel/main)
"ljt" = (
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -35814,6 +35448,15 @@
"lkl" = (
/turf/closed/wall/rust,
/area/vacant_room/commissary/commissary2)
+"lkm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"lko" = (
/obj/structure/sign/poster/contraband/clown{
pixel_x = -30
@@ -35852,23 +35495,13 @@
},
/turf/open/floor/iron/dark,
/area/chapel/main)
-"lkC" = (
-/obj/effect/turf_decal/guideline/guideline_edge/purple{
- dir = 8
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -32
- },
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/obj/machinery/light_switch{
- pixel_x = -20
- },
-/turf/open/floor/iron/white/side{
- dir = 8
+"lkA" = (
+/obj/effect/landmark/start/cargo_technician,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/area/science/research)
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/quartermaster/storage)
"lkK" = (
/obj/item/trash/boritos,
/obj/structure/reagent_dispensers/watertank,
@@ -35972,6 +35605,27 @@
},
/turf/open/floor/iron/dark,
/area/engine/engine_room)
+"lnu" = (
+/obj/machinery/door/window/brigdoor{
+ dir = 8;
+ name = "Creature Pen";
+ req_access_txt = "47"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xeno4";
+ name = "Creature Cell"
+ },
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
"lnE" = (
/obj/machinery/door/poddoor{
id = "Capoffice";
@@ -35983,6 +35637,18 @@
},
/turf/open/floor/plating,
/area/crew_quarters/heads/captain)
+"lnQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Maintenance Hatch";
+ req_one_access_txt = "12;63"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/department/security)
"lnW" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -36081,15 +35747,6 @@
},
/turf/open/floor/iron/white,
/area/science/explab)
-"lpb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"lph" = (
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/cmo)
@@ -36228,6 +35885,25 @@
},
/turf/open/floor/plating,
/area/maintenance/disposal)
+"lrB" = (
+/obj/effect/turf_decal/guideline/guideline_in/red{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/obj/effect/turf_decal/tile/dark_red/half{
+ color = "#DE3A3A"
+ },
+/obj/effect/turf_decal/tile/dark_red/half{
+ color = "#DE3A3A"
+ },
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
"lrK" = (
/obj/effect/turf_decal/stripes/end{
dir = 4
@@ -36342,6 +36018,14 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/qm)
+"ltK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/starboard/aft)
"ltO" = (
/obj/effect/turf_decal/delivery,
/obj/effect/turf_decal/guideline/guideline_edge/blue{
@@ -36410,6 +36094,13 @@
},
/turf/open/floor/iron/dark,
/area/engine/engine_room)
+"luw" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/central)
"luB" = (
/obj/structure/disposalpipe/segment{
dir = 2
@@ -36442,21 +36133,6 @@
/obj/machinery/computer/teleporter,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat_interior)
-"luR" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"luY" = (
/obj/effect/turf_decal/tile/blue/opposingcorners{
dir = 1
@@ -36494,16 +36170,20 @@
},
/turf/open/floor/wood,
/area/crew_quarters/dorms)
-"lvH" = (
-/obj/structure/railing/corner,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"lvJ" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/iron,
/area/medical/medbay/lobby)
+"lvK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"lwh" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
@@ -36539,6 +36219,17 @@
},
/turf/open/floor/iron,
/area/medical/apothecary)
+"lxb" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/generic,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/bridge)
"lxi" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -36555,6 +36246,17 @@
},
/turf/open/floor/iron,
/area/science/mixing)
+"lxl" = (
+/obj/structure/railing{
+ dir = 9
+ },
+/obj/machinery/vending/custom,
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 9
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"lxm" = (
/obj/machinery/light/small{
brightness = 3;
@@ -36567,6 +36269,10 @@
/area/security/prison{
name = "Prison Dorms"
})
+"lxn" = (
+/obj/structure/closet/crate/coffin,
+/turf/open/floor/carpet/purple,
+/area/chapel/main)
"lxt" = (
/obj/effect/turf_decal/guideline/guideline_edge/purple,
/obj/structure/closet/emcloset,
@@ -36596,15 +36302,6 @@
initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
},
/area/engine/gravity_generator)
-"lxI" = (
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_y = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"lyc" = (
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
@@ -36732,14 +36429,6 @@
},
/turf/open/floor/carpet/blue,
/area/medical/exam_room)
-"lAz" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/backpack/duffelbag/sec/surgery{
- pixel_y = 4
- },
-/obj/item/clothing/gloves/color/latex,
-/turf/open/floor/iron/white,
-/area/science/robotics)
"lAP" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -36800,14 +36489,6 @@
},
/turf/open/floor/wood,
/area/crew_quarters/theatre/backstage)
-"lBF" = (
-/obj/effect/turf_decal/guideline/guideline_edge/purple{
- dir = 8
- },
-/turf/open/floor/iron/white/side{
- dir = 8
- },
-/area/science/lobby)
"lBH" = (
/obj/item/emptysandbag,
/turf/open/floor/plating,
@@ -36884,6 +36565,15 @@
dir = 8
},
/area/hallway/secondary/exit/departure_lounge)
+"lCr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"lCv" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -36897,24 +36587,6 @@
},
/turf/open/space/basic,
/area/solar/starboard/fore)
-"lCz" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/guideline/guideline_edge/purple{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron/white/side{
- dir = 4
- },
-/area/science/research)
"lCR" = (
/obj/structure/table/reinforced,
/obj/machinery/cell_charger,
@@ -36959,27 +36631,6 @@
},
/turf/open/floor/iron/dark,
/area/science/robotics)
-"lEb" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood{
- icon_state = "wood-broken2"
- },
-/area/vacant_room/office)
-"lEc" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"lEh" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 1
@@ -37031,6 +36682,35 @@
/obj/item/bikehorn/rubberducky,
/turf/open/floor/noslip/standard,
/area/crew_quarters/toilet)
+"lFf" = (
+/obj/effect/turf_decal/guideline/guideline_in/neutral{
+ alpha = 255;
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
+ },
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
+ },
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
+ },
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
"lFn" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -37056,16 +36736,6 @@
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
/turf/open/floor/iron/cafeteria,
/area/crew_quarters/kitchen)
-"lGc" = (
-/obj/effect/decal/cleanable/glass,
-/obj/machinery/light{
- bulb_colour = "#22bfa2";
- bulb_vacuum_colour = "#22bfa2";
- dir = 4;
- nightshift_light_color = "#22bfa2"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"lGL" = (
/obj/machinery/power/apc/auto_name/north{
pixel_y = 24
@@ -37098,15 +36768,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/cryopods)
-"lHd" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/iron/white,
-/area/science/xenobiology)
"lHp" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -37116,13 +36777,6 @@
},
/turf/open/floor/iron/white,
/area/medical/genetics)
-"lHr" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/medical/morgue)
"lHv" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -37148,19 +36802,6 @@
/obj/effect/spawner/lootdrop/maintenance/three,
/turf/open/floor/plating,
/area/maintenance/disposal)
-"lIb" = (
-/obj/effect/turf_decal/guideline/guideline_in/brown,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/brown/half{
- dir = 8
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
"lIf" = (
/obj/structure/cable/yellow{
icon_state = "2-4"
@@ -37465,6 +37106,21 @@
/obj/machinery/smartfridge/drinks,
/turf/closed/wall,
/area/maintenance/port/aft)
+"lOQ" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 4
+ },
+/obj/structure/railing/corner,
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"lOS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/turf/open/floor/iron/white,
+/area/science/xenobiology)
"lPf" = (
/turf/closed/wall/r_wall,
/area/engine/break_room)
@@ -37529,24 +37185,6 @@
},
/turf/open/floor/iron/dark,
/area/engine/atmos)
-"lPX" = (
-/obj/structure/railing/corner{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
-"lQl" = (
-/turf/open/floor/glass/reinforced,
-/area/engine/gravity_generator)
"lQp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -37562,21 +37200,6 @@
},
/turf/open/floor/iron/dark,
/area/chapel/main)
-"lQy" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/aft)
"lQB" = (
/turf/closed/wall,
/area/medical/genetics/cloning)
@@ -37590,6 +37213,15 @@
},
/turf/open/floor/iron,
/area/security/brig)
+"lQJ" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/xenoblood,
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/maintenance/department/engine)
"lQR" = (
/obj/effect/turf_decal/tile/purple/half/contrasted,
/obj/machinery/light{
@@ -37609,24 +37241,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/engine/atmos)
-"lRI" = (
-/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"lRK" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
@@ -37696,6 +37310,12 @@
/obj/effect/mapping_helpers/apc/discharged,
/turf/open/floor/wood,
/area/vacant_room/office)
+"lTc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/grid/steel,
+/area/science/xenobiology)
"lTi" = (
/obj/machinery/light{
dir = 1
@@ -37741,11 +37361,6 @@
},
/turf/open/floor/iron,
/area/engine/engine_room)
-"lTL" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/landmark/blobstart,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/central)
"lUa" = (
/obj/machinery/newscaster{
pixel_x = 32;
@@ -37937,22 +37552,6 @@
},
/turf/open/floor/prison,
/area/security/prison)
-"lWe" = (
-/obj/effect/turf_decal/guideline/guideline_in/darkblue{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/dark_blue/half{
- dir = 1
- },
-/obj/effect/turf_decal/tile/dark_blue/half{
- dir = 1
- },
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
"lWf" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/ruinloot/medical,
@@ -38026,40 +37625,6 @@
},
/turf/open/floor/iron/white,
/area/medical/cryo)
-"lWZ" = (
-/obj/machinery/camera/autoname{
- dir = 8;
- network = list("ss13","medbay")
- },
-/obj/effect/decal/cleanable/blood/drip,
-/obj/effect/turf_decal/guideline/guideline_edge/blue{
- dir = 4
- },
-/turf/open/floor/iron/white/side{
- dir = 4
- },
-/area/medical/sleeper)
-"lXo" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/camera/autoname{
- network = list("ss13","rd","xeno")
- },
-/obj/machinery/power/apc/auto_name/north{
- pixel_y = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/iron/white,
-/area/science/xenobiology)
"lXr" = (
/obj/machinery/vending/boozeomat/maint,
/turf/closed/wall,
@@ -38071,6 +37636,22 @@
dir = 1
},
/area/science/research)
+"lXM" = (
+/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
+ alpha = 180;
+ color = "#DE3A3A"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 8;
+ name = "HOS"
+ },
+/turf/open/floor/iron,
+/area/security/brig)
"lXO" = (
/obj/structure/table/reinforced,
/obj/machinery/cell_charger,
@@ -38232,17 +37813,6 @@
},
/turf/open/floor/iron/dark,
/area/security/checkpoint/auxiliary)
-"lZH" = (
-/obj/structure/window/reinforced{
- dir = 4;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"lZI" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
@@ -38278,6 +37848,17 @@
},
/turf/open/floor/iron/white,
/area/crew_quarters/heads/cmo)
+"lZY" = (
+/obj/effect/turf_decal/guideline/guideline_edge/purple{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/science/research)
"mac" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -38505,18 +38086,6 @@
},
/turf/open/floor/plating,
/area/maintenance/port/aft)
-"mea" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/starboard/aft)
"mec" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -38635,26 +38204,31 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/exploration_prep)
-"mgp" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+"mge" = (
+/obj/machinery/power/terminal{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/obj/effect/turf_decal/guideline/guideline_edge/purple{
- dir = 4
+/obj/structure/cable{
+ icon_state = "0-2"
},
-/obj/effect/turf_decal/stripes/line{
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer4{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 1
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
+ dir = 4
},
-/turf/open/floor/iron/white/side{
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer2{
dir = 4
},
-/area/science/research)
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"mgs" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/obj/effect/decal/cleanable/dirt/dust,
@@ -38705,15 +38279,6 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/office)
-"mhj" = (
-/obj/effect/turf_decal/guideline/guideline_edge/neutral{
- alpha = 255;
- dir = 4
- },
-/turf/open/floor/iron/white/side{
- dir = 4
- },
-/area/medical/medbay/central)
"mhn" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -38820,6 +38385,26 @@
},
/turf/open/space/basic,
/area/space/nearstation)
+"mkt" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/dark_red{
+ alpha = 180;
+ color = "#DE3A3A";
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/auto_name/north{
+ pixel_y = 24
+ },
+/turf/open/floor/iron/dark,
+/area/security/warden)
"mky" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -39014,12 +38599,16 @@
/area/security/prison{
name = "Prison Processing"
})
-"mns" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+"mnB" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
},
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/aft)
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/closet/secure_closet/medical2,
+/obj/item/clothing/suit/apron/surgical,
+/turf/open/floor/iron,
+/area/medical/surgery)
"mnD" = (
/obj/effect/decal/cleanable/dirt/dust,
/turf/closed/wall/rust,
@@ -39034,6 +38623,22 @@
luminosity = 2
},
/area/security/nuke_storage)
+"mnK" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/turf_decal/guideline/guideline_edge/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner,
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/science/research)
"mnS" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -39057,6 +38662,14 @@
},
/turf/open/floor/iron/sepia,
/area/quartermaster/office)
+"moa" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/robot_debris,
+/turf/open/floor/iron,
+/area/maintenance/port/aft)
"mod" = (
/obj/structure/closet/secure_closet/freezer/fridge,
/obj/effect/turf_decal/bot,
@@ -39126,6 +38739,21 @@
/obj/effect/decal/cleanable/oil,
/turf/open/floor/iron/cafeteria,
/area/maintenance/port/aft)
+"mpI" = (
+/obj/effect/turf_decal/guideline/guideline_out/brown{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/techmaint,
+/area/maintenance/central)
"mpK" = (
/obj/effect/turf_decal/tile/neutral{
dir = 4
@@ -39157,15 +38785,6 @@
/obj/structure/table/reinforced,
/turf/open/floor/iron/dark,
/area/vacant_room/commissary/commissary1)
-"mpQ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/landmark/blobstart,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/security)
"mpX" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted{
alpha = 200;
@@ -39179,6 +38798,17 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"mqc" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/obj/structure/chair/fancy/comfy{
+ color = "#596479";
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"mqd" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/segment{
@@ -39201,16 +38831,33 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/qm)
-"mqj" = (
-/obj/structure/cable{
- icon_state = "0-4"
+"mqg" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
},
-/obj/machinery/power/solar{
- id = "portsolar";
- name = "Port Solar Array"
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
},
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/starboard/fore)
+/obj/machinery/button/door{
+ id = "evashutter";
+ name = "EVA Shutter Control";
+ pixel_x = 6;
+ pixel_y = -25;
+ req_access_txt = "18"
+ },
+/obj/machinery/door/airlock/command{
+ name = "EVA Storage";
+ req_access_txt = "18"
+ },
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/dark,
+/area/ai_monitored/storage/eva)
"mqz" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/machinery/disposal/bin,
@@ -39220,6 +38867,15 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/hallway/primary/central)
+"mqE" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"mqJ" = (
/obj/effect/turf_decal/tile/blue/opposingcorners{
dir = 1
@@ -39232,25 +38888,6 @@
},
/turf/open/floor/iron/freezer,
/area/crew_quarters/toilet)
-"mqU" = (
-/obj/effect/turf_decal/guideline/guideline_in/brown,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/disposalpipe/junction{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/effect/turf_decal/tile/brown/half{
- dir = 8
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
"mqZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -39274,18 +38911,6 @@
/obj/item/reagent_containers/glass/bottle/iodine,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"mrz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"mrE" = (
/obj/structure/railing{
dir = 8
@@ -39310,18 +38935,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
-"mrI" = (
-/obj/structure/railing/corner{
- dir = 4
- },
-/obj/structure/disposalpipe/junction,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron/dark/corner{
- dir = 4
- },
-/area/hallway/primary/central)
"mrL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/structure/cable/yellow{
@@ -39368,6 +38981,23 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron,
/area/crew_quarters/dorms)
+"msj" = (
+/obj/effect/turf_decal/loading_area{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/science/robotics)
+"msq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/security)
"msM" = (
/obj/effect/turf_decal/tile/neutral/half{
dir = 4
@@ -39430,17 +39060,6 @@
dir = 6
},
/area/science/research)
-"mtu" = (
-/obj/structure/railing{
- layer = 3.1
- },
-/obj/structure/chair/fancy/comfy{
- color = "#596479";
- dir = 1
- },
-/obj/effect/turf_decal/siding/wideplating/dark,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"mtz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -39547,6 +39166,20 @@
/area/security/prison{
name = "Prison Botany"
})
+"muC" = (
+/obj/structure/railing,
+/obj/machinery/light/floor{
+ brightness = 15;
+ bulb_colour = "#FFE4CE";
+ bulb_vacuum_brightness = 15;
+ nightshift_brightness = 10;
+ nightshift_light_color = "#E6EBFF"
+ },
+/obj/effect/turf_decal/siding/wideplating/dark,
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 1
+ },
+/area/hallway/primary/central)
"muG" = (
/obj/machinery/camera/autoname{
dir = 1;
@@ -39558,6 +39191,9 @@
/obj/machinery/firealarm/directional/south,
/turf/open/floor/iron,
/area/hallway/primary/port)
+"muH" = (
+/turf/open/floor/iron/stairs/medium,
+/area/hallway/primary/central)
"muZ" = (
/obj/effect/spawner/lootdrop/glowstick/lit,
/mob/living/basic/cockroach,
@@ -39581,6 +39217,16 @@
},
/turf/open/floor/plating,
/area/ai_monitored/storage/satellite)
+"mvu" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"mvC" = (
/obj/structure/table/reinforced,
/obj/machinery/cell_charger,
@@ -39606,19 +39252,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
-"mwe" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=12-SSci";
- location = "11-CenterSW"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"mwi" = (
/turf/open/floor/engine/o2,
/area/engine/atmos)
@@ -39736,17 +39369,6 @@
dir = 1
},
/area/hallway/primary/central)
-"mxz" = (
-/obj/structure/railing/corner,
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/effect/turf_decal/siding/wideplating/dark/corner,
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/iron/dark/corner,
-/area/hallway/primary/central)
"mxA" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron/dark,
@@ -39794,24 +39416,6 @@
"mya" = (
/turf/open/floor/iron/white,
/area/medical/genetics)
-"myw" = (
-/obj/machinery/door/window/brigdoor{
- dir = 8;
- name = "Creature Pen";
- req_access_txt = "47"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xeno5";
- name = "Creature Cell"
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
"myC" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -39868,6 +39472,21 @@
},
/turf/open/floor/plating,
/area/crew_quarters/heads/cmo)
+"mzr" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/central)
"mzv" = (
/obj/effect/turf_decal/guideline/guideline_in/darkblue{
dir = 8
@@ -39902,21 +39521,6 @@
/obj/machinery/airalarm/directional/north,
/turf/open/floor/circuit,
/area/science/robotics/mechbay)
-"mAc" = (
-/obj/effect/turf_decal/guideline/guideline_edge/blue{
- dir = 8
- },
-/obj/machinery/requests_console{
- department = "Medbay";
- departmentType = 1;
- name = "Medbay RC";
- pixel_x = -32;
- pixel_y = -2
- },
-/turf/open/floor/iron/white/side{
- dir = 8
- },
-/area/medical/sleeper)
"mAk" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/turf_decal/guideline/guideline_edge/purple,
@@ -39954,16 +39558,6 @@
/obj/structure/sign/poster/random,
/turf/closed/wall,
/area/crew_quarters/dorms)
-"mAU" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/solar{
- id = "portsolar";
- name = "Port Solar Array"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/starboard/aft)
"mAZ" = (
/obj/structure/disposaloutlet{
dir = 1
@@ -40007,6 +39601,20 @@
/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/server)
+"mBn" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4,
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/binary/volume_pump,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"mBq" = (
/obj/effect/turf_decal/guideline/guideline_edge/purple{
dir = 1
@@ -40058,6 +39666,17 @@
},
/turf/open/floor/iron/dark,
/area/chapel/office)
+"mCL" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_y = 1
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"mCQ" = (
/turf/open/floor/iron/white,
/area/medical/chemistry)
@@ -40163,6 +39782,18 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"mDH" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/iron/white,
+/area/science/xenobiology)
"mDL" = (
/obj/effect/turf_decal/tile/yellow{
dir = 8
@@ -40211,6 +39842,17 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"mEi" = (
+/obj/machinery/telecomms/bus/preset_exploration,
+/obj/machinery/atmospherics/pipe/heat_exchanging/junction{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 3
+ },
+/turf/open/floor/circuit/green/telecomms/mainframe,
+/area/quartermaster/exploration_prep)
"mEt" = (
/obj/machinery/airalarm/directional/east,
/obj/effect/turf_decal/guideline/guideline_edge/red{
@@ -40256,6 +39898,13 @@
},
/turf/open/floor/iron,
/area/engine/engine_room)
+"mFb" = (
+/obj/effect/landmark/xeno_spawn,
+/obj/effect/turf_decal/caution{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/science/explab)
"mFm" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/turf_decal/bot,
@@ -40266,18 +39915,21 @@
/obj/item/slime_scanner,
/turf/open/floor/iron/grid/steel,
/area/science/xenobiology)
-"mFG" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_y = 1
+"mFK" = (
+/obj/effect/turf_decal/guideline/guideline_in/brown,
+/obj/structure/disposalpipe/segment{
+ dir = 8
},
-/obj/structure/chair/fancy/comfy{
- buildstackamount = 0;
- color = "#742925";
- dir = 4
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/turf/open/floor/iron/dark/smooth_large,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/effect/turf_decal/tile/brown/half{
+ dir = 8
+ },
+/turf/open/floor/iron/half,
/area/hallway/primary/central)
"mFR" = (
/obj/effect/turf_decal/guideline/guideline_in/darkblue{
@@ -40331,14 +39983,16 @@
},
/turf/open/floor/iron,
/area/science/lab)
-"mGe" = (
-/obj/structure/window/reinforced{
- dir = 8
+"mGd" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Maintenance Hatch";
+ req_one_access_txt = "12;6"
},
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/open/floor/grass/no_border,
-/area/hallway/secondary/exit/departure_lounge)
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/department/medical/morgue)
"mGp" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable,
@@ -40508,6 +40162,19 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
+"mHU" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
+"mIj" = (
+/obj/structure/chair/fancy/sofa/old/left,
+/turf/open/floor/wood,
+/area/maintenance/central)
"mIn" = (
/obj/effect/turf_decal/siding/wood{
dir = 6
@@ -40520,6 +40187,13 @@
},
/turf/open/floor/carpet/blue,
/area/crew_quarters/heads/hop)
+"mIH" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"mIM" = (
/obj/item/storage/box/beanbag,
/obj/structure/table/wood,
@@ -40549,6 +40223,24 @@
},
/turf/open/floor/iron/sepia,
/area/quartermaster/sorting)
+"mIZ" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/machinery/light/floor{
+ brightness = 15;
+ bulb_colour = "#FFE4CE";
+ bulb_vacuum_brightness = 15;
+ nightshift_brightness = 10;
+ nightshift_light_color = "#E6EBFF"
+ },
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 8
+ },
+/area/hallway/primary/central)
"mJb" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -40681,10 +40373,31 @@
},
/turf/open/floor/iron/white,
/area/medical/sleeper)
-"mKV" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron,
-/area/science/robotics)
+"mKX" = (
+/obj/effect/landmark/start/chaplain,
+/obj/machinery/holopad,
+/obj/effect/turf_decal/box,
+/turf/open/floor/glass/reinforced,
+/area/chapel/main)
+"mLh" = (
+/obj/effect/turf_decal/guideline/guideline_out/brown{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/effect/landmark/blobstart,
+/turf/open/floor/iron/techmaint,
+/area/hallway/secondary/service)
"mLj" = (
/obj/machinery/portable_atmospherics/scrubber,
/obj/effect/turf_decal/bot{
@@ -40825,13 +40538,6 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/turf/open/floor/iron/dark,
/area/chapel/main)
-"mNH" = (
-/obj/effect/landmark/start/cargo_technician,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/quartermaster/storage)
"mNL" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance/two,
@@ -40888,13 +40594,6 @@
/area/security/brig{
name = "Brig Interrogation"
})
-"mQn" = (
-/obj/structure/railing,
-/obj/effect/turf_decal/siding/wideplating/dark,
-/turf/open/floor/iron/dark/smooth_edge{
- dir = 1
- },
-/area/hallway/primary/central)
"mQz" = (
/obj/structure/disposalpipe/segment{
dir = 1
@@ -40919,6 +40618,21 @@
},
/turf/open/floor/iron,
/area/crew_quarters/cafeteria)
+"mQE" = (
+/obj/effect/turf_decal/guideline/guideline_in/green{
+ color = "#439C1E"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/dark_green/half{
+ dir = 8
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
"mQP" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance/eight,
@@ -40931,16 +40645,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/maintenance/department/science)
-"mQR" = (
-/obj/effect/decal/cleanable/crayon,
-/obj/machinery/light/small{
- brightness = 3;
- bulb_colour = "#1bcf15";
- dir = 1
- },
-/obj/item/food/butter/on_a_stick,
-/turf/open/floor/plating,
-/area/maintenance/department/medical)
"mRi" = (
/obj/structure/disposalpipe/segment{
dir = 10
@@ -40964,6 +40668,9 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
+"mRk" = (
+/turf/closed/wall,
+/area/science/server)
"mRw" = (
/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{
alpha = 180
@@ -40987,6 +40694,21 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat/foyer)
+"mRC" = (
+/obj/effect/turf_decal/tile/dark_red/half/contrasted{
+ alpha = 180;
+ color = "#DE3A3A"
+ },
+/obj/structure/bed,
+/obj/item/bedsheet/dorms,
+/obj/item/toy/plush/carpplushie,
+/obj/structure/sign/poster/contraband{
+ pixel_x = 32
+ },
+/turf/open/floor/prison,
+/area/security/prison{
+ name = "Prison Dorms"
+ })
"mRK" = (
/obj/structure/chair{
dir = 1
@@ -41012,13 +40734,12 @@
"mRV" = (
/turf/closed/wall/mineral/plastitanium,
/area/security/brig/medbay)
-"mSa" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 3
+"mSh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
},
-/turf/open/floor/iron/dark,
-/area/quartermaster/exploration_prep)
+/turf/open/floor/iron/white,
+/area/science/explab)
"mSo" = (
/obj/structure/disposalpipe/segment{
dir = 9
@@ -41074,34 +40795,20 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
-"mSX" = (
-/obj/effect/turf_decal/guideline/guideline_in/neutral{
- alpha = 255;
- dir = 1
+"mSV" = (
+/obj/structure/railing/corner{
+ dir = 4
},
-/obj/structure/disposalpipe/segment{
+/obj/effect/turf_decal/stripes/line{
dir = 4
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+/obj/structure/disposalpipe/segment{
dir = 1
},
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
- },
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
- },
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
- },
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/turf/open/floor/iron/half,
+/turf/open/floor/iron/dark/smooth_large,
/area/hallway/primary/central)
"mTe" = (
/obj/structure/disposalpipe/segment{
@@ -41135,6 +40842,20 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/maintenance/department/security)
+"mTH" = (
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
"mTL" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
@@ -41148,13 +40869,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"mTQ" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/flora/ausbushes/fullgrass,
-/turf/open/floor/grass/no_border,
-/area/hallway/secondary/exit/departure_lounge)
"mTR" = (
/turf/open/space/basic,
/area/ai_monitored/turret_protected/ai)
@@ -41369,6 +41083,13 @@
},
/turf/open/floor/carpet/royalblue,
/area/crew_quarters/heads/chief)
+"mWS" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/spawner/lootdrop/glowstick/lit,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/central)
"mXa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 6
@@ -41444,21 +41165,6 @@
},
/turf/open/floor/iron,
/area/science/misc_lab)
-"mXI" = (
-/obj/effect/landmark/start/assistant,
-/obj/effect/turf_decal/siding/white{
- dir = 4
- },
-/turf/open/floor/glass/reinforced,
-/area/hallway/primary/central{
- dynamic_lighting = 2;
- lighting_brightness_tube = 11;
- lighting_colour_bulb = "#DDE6FF";
- lighting_colour_night = "#DDE6FF";
- lighting_colour_tube = "#DDE6FF";
- lighting_overlay_colour = "#DDE6FF";
- power_light = 0
- })
"mXJ" = (
/obj/structure/sign/departments/minsky/security/evac{
pixel_x = 31;
@@ -41507,11 +41213,6 @@
name = "Holodeck Projector Floor"
},
/area/holodeck/rec_center)
-"mYj" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/glass,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
"mYL" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -41566,15 +41267,15 @@
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
/area/maintenance/port/central)
-"mZC" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+"mZZ" = (
+/obj/effect/turf_decal/guideline/guideline_edge/neutral{
+ alpha = 255;
+ dir = 4
},
-/obj/structure/closet/emcloset,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/medical/medbay/central)
"nac" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/machinery/disposal/bin,
@@ -41646,6 +41347,15 @@
},
/turf/open/floor/iron/techmaint,
/area/gateway)
+"nbv" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"nbQ" = (
/obj/effect/turf_decal/siding/wood{
dir = 6
@@ -41697,21 +41407,6 @@
},
/turf/open/floor/iron,
/area/medical/surgery)
-"ncj" = (
-/obj/structure/chair/fancy/bench/right{
- dir = 8
- },
-/obj/machinery/power/apc/auto_name/south{
- pixel_y = -24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/structure/sign/poster/contraband/random{
- pixel_x = 32
- },
-/turf/open/floor/iron/techmaint,
-/area/security/prison/shielded)
"ncI" = (
/obj/structure/bookcase/random/nonfiction,
/turf/open/floor/wood,
@@ -41809,18 +41504,6 @@
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/turf/open/floor/iron,
/area/maintenance/department/science)
-"ndX" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/central)
"nec" = (
/obj/structure/noticeboard{
dir = 8;
@@ -41952,10 +41635,17 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/engine/engine_room)
-"nfp" = (
-/obj/item/trash/semki,
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
+"nfH" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/guideline/guideline_edge/blue{
+ dir = 4
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 8
+ },
+/area/medical/surgery)
"nfS" = (
/turf/open/floor/iron/stairs/right{
dir = 4
@@ -42069,6 +41759,20 @@
},
/turf/open/floor/iron,
/area/engine/engine_room)
+"nhC" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 8
+ },
+/area/hallway/primary/central)
"nhH" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/preopen{
@@ -42081,15 +41785,16 @@
/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/bridge)
-"nhU" = (
-/obj/structure/disposalpipe/segment{
- dir = 2
+"nhQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/guideline/guideline_edge/purple{
+ dir = 4
},
-/obj/structure/railing/corner{
- dir = 1
+/turf/open/floor/iron/white/side{
+ dir = 8
},
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
+/area/science/research)
"nic" = (
/obj/structure/disposalpipe/trunk,
/obj/structure/window/reinforced{
@@ -42208,6 +41913,15 @@
/area/security/prison{
name = "Prison Processing"
})
+"nju" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"njz" = (
/obj/structure/sign/warning/nosmoking/circle,
/turf/closed/wall,
@@ -42235,6 +41949,19 @@
/obj/machinery/digital_clock/directional/west,
/turf/open/floor/iron/dark,
/area/engine/engineering)
+"njM" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=12-SSci";
+ location = "11-CenterSW"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"njS" = (
/obj/machinery/smartfridge/chemistry/virology/preloaded,
/obj/machinery/button/door{
@@ -42262,18 +41989,6 @@
/area/security/brig{
name = "Brig Interrogation"
})
-"nkj" = (
-/obj/machinery/camera/autoname{
- dir = 8;
- network = list("ss13","medbay")
- },
-/obj/effect/turf_decal/guideline/guideline_edge/blue{
- dir = 4
- },
-/turf/open/floor/iron/white/side{
- dir = 4
- },
-/area/medical/sleeper)
"nkm" = (
/turf/open/floor/iron/white/side{
dir = 1
@@ -42283,13 +41998,6 @@
/obj/machinery/door/poddoor/incinerator_toxmix,
/turf/open/floor/engine/vacuum,
/area/science/mixing/chamber)
-"nkG" = (
-/obj/item/radio/intercom{
- pixel_x = 1;
- pixel_y = -35
- },
-/turf/open/floor/engine,
-/area/science/explab)
"nkK" = (
/turf/open/floor/plating{
burnt = 1
@@ -42319,45 +42027,6 @@
/area/security/brig{
name = "Brig Evidence"
})
-"nli" = (
-/obj/structure/table/reinforced,
-/obj/item/gun/ballistic/shotgun/riot{
- pixel_x = -3;
- pixel_y = 2
- },
-/obj/item/gun/ballistic/shotgun/riot{
- pixel_x = -2;
- pixel_y = -2
- },
-/obj/machinery/door/window/brigdoor/westleft{
- name = "shotguns";
- req_access_txt = "3"
- },
-/obj/structure/window/reinforced,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/light{
- bulb_colour = "#DE3A3A";
- dir = 4;
- nightshift_light_color = "#DE3A3A"
- },
-/turf/open/floor/iron,
-/area/ai_monitored/security/armory)
-"nlj" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -32
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/turf_decal/guideline/guideline_edge/blue{
- dir = 8
- },
-/turf/open/floor/iron/white/side{
- dir = 8
- },
-/area/medical/sleeper)
"nlk" = (
/obj/item/storage/secure/safe/caps_spare{
pixel_x = 5;
@@ -42503,9 +42172,6 @@
},
/turf/open/floor/iron,
/area/bridge)
-"nmB" = (
-/turf/open/floor/glass/reinforced,
-/area/engine/atmos)
"nmM" = (
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -42584,6 +42250,16 @@
},
/turf/open/floor/iron,
/area/medical/medbay/lobby)
+"nnr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/tile_breaker,
+/turf/open/floor/carpet,
+/area/library)
"nnt" = (
/obj/effect/turf_decal/bot,
/obj/effect/mapping_helpers/dead_body_placer/medbay_morgue,
@@ -42692,20 +42368,6 @@
},
/turf/open/space/basic,
/area/space/nearstation)
-"npy" = (
-/obj/effect/turf_decal/guideline/guideline_edge/purple{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/turf/open/floor/iron/white/side{
- dir = 4
- },
-/area/science/research)
"npB" = (
/obj/machinery/door/airlock/maintenance_hatch{
id_tag = "commissarydoor";
@@ -42747,6 +42409,12 @@
/obj/structure/table,
/turf/open/floor/iron,
/area/engine/break_room)
+"nql" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 5
+ },
+/turf/open/floor/glass/reinforced,
+/area/chapel/main)
"nqJ" = (
/obj/machinery/camera/autoname{
network = list("ss13","rd")
@@ -42772,22 +42440,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/white,
/area/science/xenobiology)
-"nqV" = (
-/obj/effect/turf_decal/guideline/guideline_in/brown,
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/effect/turf_decal/tile/brown/half{
- dir = 8
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
"nqX" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
/obj/structure/disposalpipe/segment{
@@ -42795,6 +42447,19 @@
},
/turf/open/floor/iron/white,
/area/medical/sleeper)
+"nrb" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{
+ alpha = 180
+ },
+/obj/structure/chair/fancy/corp{
+ dir = 8
+ },
+/obj/item/toy/plush/slimeplushie/blue{
+ pixel_x = -3
+ },
+/turf/open/floor/iron/dark,
+/area/ai_monitored/turret_protected/aisat/foyer)
"nrc" = (
/obj/structure/table/wood,
/obj/item/paper_bin,
@@ -43092,21 +42757,6 @@
},
/turf/open/floor/iron,
/area/security/brig)
-"ntP" = (
-/obj/machinery/door/airlock/atmos{
- name = "atmospherics Storage";
- req_access = "24"
- },
-/obj/effect/turf_decal/loading_area{
- dir = 8
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/button{
- id = "atmosshutters";
- pixel_y = -25
- },
-/turf/open/floor/iron/dark,
-/area/engine/atmos)
"ntV" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted{
alpha = 200;
@@ -43147,22 +42797,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/crew_quarters/cafeteria)
-"nuu" = (
-/obj/machinery/airalarm/directional/south,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/bot,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/camera/autoname{
- dir = 10;
- network = list("ss13","rd")
- },
-/turf/open/floor/iron/white,
-/area/science/explab)
"nuw" = (
/obj/machinery/conveyor/inverted{
dir = 9;
@@ -43214,21 +42848,19 @@
/obj/structure/rack,
/turf/open/floor/plating,
/area/maintenance/department/medical)
-"nwH" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/guideline/guideline_in/purple{
- dir = 1
+"nwR" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
+/obj/effect/landmark/xeno_spawn,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
},
-/obj/effect/turf_decal/tile/purple/half{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
},
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
+/turf/open/floor/catwalk_floor,
+/area/maintenance/central)
"nwZ" = (
/obj/structure/disposalpipe/segment{
dir = 2
@@ -43302,6 +42934,17 @@
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/iron,
/area/maintenance/port/aft)
+"nxW" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/start/scientist,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/science/xenobiology)
"nyb" = (
/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted{
alpha = 230;
@@ -43314,13 +42957,22 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
/turf/open/floor/iron,
/area/engine/engine_room)
-"nyl" = (
-/obj/structure/chair/office,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
+"nyz" = (
+/obj/structure/railing{
+ dir = 1
},
-/turf/open/floor/wood,
-/area/chapel/office)
+/obj/machinery/light/floor{
+ brightness = 15;
+ bulb_colour = "#FFE4CE";
+ bulb_vacuum_brightness = 15;
+ nightshift_brightness = 10;
+ nightshift_light_color = "#E6EBFF"
+ },
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_edge,
+/area/hallway/primary/central)
"nyE" = (
/obj/effect/turf_decal/tile/dark_blue{
alpha = 180;
@@ -43484,6 +43136,17 @@
/obj/structure/lattice/catwalk,
/turf/open/space/basic,
/area/solar/starboard/aft)
+"nBn" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/security)
"nBC" = (
/obj/effect/turf_decal/tile/brown/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -43598,20 +43261,6 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/hallway/secondary/exit/departure_lounge)
-"nCA" = (
-/obj/machinery/computer/xenoartifact_console{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/light_switch{
- pixel_x = 1;
- pixel_y = 28
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron,
-/area/science/explab)
"nCC" = (
/obj/effect/turf_decal/tile/purple/half/contrasted{
dir = 1
@@ -43700,6 +43349,14 @@
"nEb" = (
/turf/closed/wall/r_wall,
/area/security/brig/dock)
+"nEq" = (
+/obj/structure/chair/wood,
+/obj/effect/landmark/start/randommaint/vip,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood{
+ broken = 1
+ },
+/area/maintenance/port/aft)
"nEt" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/obj/effect/turf_decal/stripes/line{
@@ -43716,6 +43373,14 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"nEF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"nFj" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{
dir = 4
@@ -43745,12 +43410,6 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/engine/vacuum,
/area/science/mixing/chamber)
-"nFw" = (
-/obj/machinery/xenoartifact_inbox,
-/obj/effect/turf_decal/delivery,
-/obj/item/xenoartifact,
-/turf/open/floor/engine,
-/area/science/explab)
"nFy" = (
/obj/effect/turf_decal/tile/green/half/contrasted{
dir = 8
@@ -43825,17 +43484,6 @@
/obj/structure/table/reinforced,
/turf/open/floor/iron/techmaint,
/area/science/xenobiology)
-"nGg" = (
-/obj/effect/turf_decal/guideline/guideline_edge/purple{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/turf/open/floor/iron/white/side{
- dir = 8
- },
-/area/science/research)
"nGh" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -43890,19 +43538,6 @@
},
/turf/open/floor/carpet/blue,
/area/bridge/meeting_room)
-"nGO" = (
-/obj/structure/railing{
- dir = 9
- },
-/obj/machinery/light/floor{
- brightness = 15;
- bulb_colour = "#FFE4CE";
- bulb_vacuum_brightness = 15;
- nightshift_brightness = 10;
- nightshift_light_color = "#E6EBFF"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"nHf" = (
/obj/machinery/power/apc/auto_name/north{
pixel_y = 24
@@ -44026,6 +43661,13 @@
},
/turf/open/floor/iron,
/area/crew_quarters/cafeteria)
+"nJc" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/obj/structure/railing/corner,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"nJn" = (
/obj/effect/turf_decal/tile/yellow{
dir = 8
@@ -44039,6 +43681,15 @@
/obj/effect/spawner/lootdrop/maintenance/two,
/turf/open/floor/plating,
/area/maintenance/port/central)
+"nJT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 1
+ },
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/iron/white,
+/area/science/xenobiology)
"nKb" = (
/obj/structure/closet/secure_closet/personal/cabinet,
/obj/item/clothing/under/color/random,
@@ -44069,16 +43720,6 @@
/area/security/brig{
name = "Brig Interrogation"
})
-"nKM" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"nKO" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
@@ -44088,39 +43729,12 @@
},
/turf/open/floor/noslip/standard,
/area/quartermaster/storage)
-"nKR" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/railing/corner{
- dir = 8
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"nLc" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 4
},
/turf/open/floor/iron/dark,
/area/security/execution/education)
-"nLi" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"nLo" = (
/obj/machinery/vending/wallmed{
pixel_x = -1;
@@ -44238,6 +43852,26 @@
},
/turf/open/floor/iron/dark,
/area/crew_quarters/dorms)
+"nNr" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenosecure";
+ name = "Secure Pen Shutters"
+ },
+/turf/open/floor/plating,
+/area/science/xenobiology)
+"nNv" = (
+/obj/machinery/light_switch{
+ pixel_x = -8;
+ pixel_y = -21
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/vehicle/ridden/secway,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/ai_monitored/security/armory)
"nNz" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -44335,6 +43969,16 @@
},
/turf/open/floor/iron/sepia,
/area/quartermaster/sorting)
+"nOL" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Maintenance Hatch";
+ req_one_access_txt = "12;31"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/port/central)
"nOM" = (
/obj/effect/turf_decal/bot,
/turf/open/floor/iron/dark,
@@ -44345,30 +43989,41 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"nOT" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/holopad,
-/obj/effect/turf_decal/box,
-/turf/open/floor/iron/tech,
-/area/engine/atmos)
-"nPH" = (
-/obj/machinery/door/airlock/research/glass{
- name = "Robotics Lab";
- req_access_txt = "29"
+"nOR" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/sheet/mineral/plasma{
+ amount = 5;
+ pixel_x = -5;
+ pixel_y = 16
},
-/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+/obj/item/reagent_containers/dropper{
+ pixel_x = -3;
+ pixel_y = -2
+ },
+/turf/open/floor/iron/grid/steel,
+/area/science/xenobiology)
+"nPn" = (
+/obj/effect/turf_decal/siding/wideplating/dark/corner{
+ dir = 1
+ },
+/turf/open/floor/glass/reinforced,
+/area/chapel/main)
+"nPy" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/obj/effect/turf_decal/guideline/guideline_edge/red{
+ dir = 8
},
/obj/structure/disposalpipe/segment{
dir = 2
},
-/turf/open/floor/iron/white,
-/area/science/robotics)
+/obj/machinery/camera/autoname{
+ dir = 4;
+ network = list("ss13","security")
+ },
+/turf/open/floor/iron,
+/area/security/brig)
"nPJ" = (
/obj/effect/turf_decal/tile/blue/half{
dir = 4
@@ -44600,18 +44255,6 @@
/obj/machinery/status_display/evac,
/turf/closed/wall/r_wall,
/area/tcommsat/server)
-"nSB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/starboard/aft)
"nSH" = (
/obj/effect/turf_decal/tile/bar/opposingcorners,
/obj/structure/cable/yellow{
@@ -44651,16 +44294,6 @@
/obj/structure/chair/wood/wings,
/turf/open/floor/carpet/green,
/area/security/courtroom)
-"nTO" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/effect/decal/cleanable/blood/old,
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"nTZ" = (
/obj/structure/chair{
dir = 4
@@ -44722,6 +44355,13 @@
},
/turf/open/floor/iron/white,
/area/crew_quarters/kitchen)
+"nVB" = (
+/obj/machinery/atmospherics/pipe/layer_manifold,
+/obj/structure/table/reinforced,
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/engine/engine_room)
"nVO" = (
/obj/structure/flora/ausbushes/ywflowers,
/obj/structure/disposalpipe/segment{
@@ -44739,6 +44379,27 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/iron/grid/steel,
/area/hydroponics)
+"nWc" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/door/window/brigdoor{
+ dir = 8;
+ name = "Creature Pen";
+ req_access_txt = "47"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xeno2";
+ name = "Creature Cell"
+ },
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
"nWv" = (
/obj/structure/closet/secure_closet/personal,
/turf/open/floor/plating,
@@ -44804,12 +44465,6 @@
},
/turf/open/floor/iron/grid/steel,
/area/hydroponics)
-"nXs" = (
-/obj/structure/window/reinforced,
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/turf/open/floor/iron/techmaint,
-/area/science/xenobiology)
"nXu" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -44870,21 +44525,6 @@
/obj/structure/tank_dispenser/oxygen,
/turf/open/floor/iron/tech,
/area/ai_monitored/storage/eva)
-"nXT" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"nXU" = (
/turf/closed/wall,
/area/hallway/secondary/exit/departure_lounge)
@@ -44963,24 +44603,6 @@
/obj/machinery/firealarm/directional/east,
/turf/open/floor/plating,
/area/ai_monitored/storage/satellite)
-"nZS" = (
-/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
- alpha = 180;
- color = "#DE3A3A"
- },
-/obj/machinery/light_switch{
- pixel_x = -24;
- pixel_y = 25
- },
-/obj/machinery/button/door{
- id = "armory";
- name = "Armory Shutters";
- pixel_x = -40;
- pixel_y = 25;
- req_access_txt = "3"
- },
-/turf/open/floor/iron/dark,
-/area/security/warden)
"oan" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -45042,32 +44664,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"oaP" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/chair/fancy/sofa/old/right{
- dir = 4
- },
-/obj/machinery/vending/wallmed{
- pixel_y = -32;
- products = list(/obj/item/stack/medical/gauze = 4, /obj/item/reagent_containers/hypospray/medipen = 3, /obj/item/reagent_containers/hypospray/medipen/dexalin = 3, /obj/item/reagent_containers/glass/bottle/epinephrine = 2, /obj/item/reagent_containers/glass/bottle/charcoal = 2)
- },
-/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 2
- },
-/turf/open/floor/carpet/green,
-/area/crew_quarters/cafeteria)
-"oaQ" = (
-/obj/effect/spawner/lootdrop/glowstick,
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/bridge)
"oaZ" = (
/obj/machinery/computer/telecomms/monitor,
/obj/effect/turf_decal/stripes/line,
@@ -45100,6 +44696,13 @@
},
/turf/open/floor/plating,
/area/ai_monitored/storage/satellite)
+"obH" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/medical/morgue)
"obZ" = (
/obj/structure/table/wood,
/obj/effect/turf_decal/siding/wood{
@@ -45133,24 +44736,25 @@
/obj/effect/turf_decal/box,
/turf/open/floor/iron,
/area/engine/engine_room)
-"ocM" = (
-/obj/machinery/atmospherics/miner/station/n2o,
-/turf/open/floor/engine/n2o,
-/area/engine/atmos)
-"ocO" = (
-/obj/structure/railing/corner{
+"ocD" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 8
+/obj/effect/turf_decal/guideline/guideline_in/purple{
+ dir = 1
},
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
},
-/turf/open/floor/iron/dark/corner{
+/obj/effect/turf_decal/tile/purple/half{
dir = 4
},
+/turf/open/floor/iron/half,
/area/hallway/primary/central)
+"ocM" = (
+/obj/machinery/atmospherics/miner/station/n2o,
+/turf/open/floor/engine/n2o,
+/area/engine/atmos)
"odc" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 8
@@ -45168,6 +44772,21 @@
/obj/structure/railing,
/turf/open/space/basic,
/area/space)
+"odp" = (
+/obj/effect/landmark/start/assistant,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/glass/reinforced,
+/area/hallway/primary/central{
+ dynamic_lighting = 2;
+ lighting_brightness_tube = 11;
+ lighting_colour_bulb = "#DDE6FF";
+ lighting_colour_night = "#DDE6FF";
+ lighting_colour_tube = "#DDE6FF";
+ lighting_overlay_colour = "#DDE6FF";
+ power_light = 0
+ })
"odu" = (
/obj/structure/disposalpipe/segment{
dir = 1
@@ -45183,14 +44802,6 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/central)
-"ody" = (
-/obj/effect/turf_decal/guideline/guideline_edge/blue{
- dir = 8
- },
-/turf/open/floor/iron/white/side{
- dir = 8
- },
-/area/medical/sleeper)
"odP" = (
/obj/structure/table,
/turf/open/floor/iron/dark,
@@ -45265,6 +44876,42 @@
/obj/effect/landmark/start/research_director,
/turf/open/floor/carpet/purple,
/area/crew_quarters/heads/hor)
+"oeB" = (
+/obj/machinery/computer/pod/old{
+ density = 0;
+ icon = 'icons/obj/airlock_machines.dmi';
+ icon_state = "airlock_control_standby";
+ id = "chapelgun";
+ layer = 4;
+ name = "Mass Driver Controller";
+ pixel_y = 32
+ },
+/obj/structure/table/wood/fancy,
+/obj/item/food/grown/flower/harebell{
+ pixel_y = 3
+ },
+/obj/item/candle/infinite{
+ pixel_x = -8;
+ pixel_y = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/turf/open/floor/iron/dark,
+/area/chapel/main)
+"oeJ" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/guideline/guideline_edge/purple{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/science/research)
"oeL" = (
/obj/effect/turf_decal/bot,
/obj/machinery/atmospherics/pipe/simple/general/visible{
@@ -45273,6 +44920,21 @@
/obj/machinery/meter,
/turf/open/floor/iron/tech,
/area/engine/engine_room)
+"oeM" = (
+/obj/effect/landmark/start/assistant,
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/turf/open/floor/glass/reinforced,
+/area/hallway/primary/central{
+ dynamic_lighting = 2;
+ lighting_brightness_tube = 11;
+ lighting_colour_bulb = "#DDE6FF";
+ lighting_colour_night = "#DDE6FF";
+ lighting_colour_tube = "#DDE6FF";
+ lighting_overlay_colour = "#DDE6FF";
+ power_light = 0
+ })
"oeZ" = (
/obj/effect/turf_decal/tile/yellow/half/contrasted{
alpha = 180
@@ -45297,6 +44959,20 @@
},
/turf/open/floor/iron/dark,
/area/engine/engine_room)
+"ofJ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/guideline/guideline_edge/purple{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/science/research)
"ofM" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -45304,6 +44980,32 @@
/obj/machinery/atmospherics/pipe/simple/green/visible,
/turf/open/floor/iron/dark,
/area/engine/engine_room)
+"ogm" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Maintenance Hatch";
+ req_access_txt = "47"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/lattice/catwalk/over,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"ogn" = (
/obj/effect/turf_decal{
dir = 1
@@ -45312,6 +45014,19 @@
/obj/effect/turf_decal/caution/stand_clear,
/turf/open/floor/prison,
/area/security/prison)
+"ogs" = (
+/obj/effect/turf_decal/guideline/guideline_in/blue{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/blue/half{
+ dir = 1
+ },
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
"ogv" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -45324,18 +45039,6 @@
},
/turf/open/floor/iron/tech,
/area/engine/atmos)
-"ogP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/starboard/aft)
"ogV" = (
/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{
alpha = 180
@@ -45351,6 +45054,27 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai_upload)
+"ohk" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/door/window/brigdoor{
+ dir = 8;
+ name = "Creature Pen";
+ req_access_txt = "47"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xeno3";
+ name = "Creature Cell"
+ },
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
"ohn" = (
/obj/machinery/button/door{
id = "commissaryshutters3";
@@ -45412,15 +45136,6 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/wood,
/area/security/prison)
-"oix" = (
-/obj/effect/spawner/lootdrop/ruinloot/medical,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/starboard/aft)
"oiI" = (
/turf/closed/wall,
/area/vacant_room/office)
@@ -45485,24 +45200,6 @@
/obj/structure/sign/poster/random,
/turf/closed/wall/r_wall,
/area/security/checkpoint/escape)
-"ojp" = (
-/obj/item/reagent_containers/food/drinks/beer/light{
- pixel_x = 9;
- pixel_y = 6
- },
-/obj/item/reagent_containers/food/drinks/beer/light{
- pixel_y = 3
- },
-/obj/item/reagent_containers/food/drinks/beer/light{
- pixel_x = -8;
- pixel_y = 11
- },
-/obj/effect/spawner/lootdrop/glowstick/lit,
-/obj/structure/table/wood,
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/maintenance/central)
"ojt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 1
@@ -45561,21 +45258,14 @@
/obj/machinery/portable_atmospherics/pump,
/turf/open/floor/iron,
/area/science/storage)
-"okC" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/guideline/guideline_edge/purple,
-/obj/item/radio/intercom{
- canhear_range = 6;
- dir = 1;
- pixel_x = 1;
- pixel_y = -29
- },
-/turf/open/floor/iron/white/side{
+"okc" = (
+/obj/structure/window/reinforced{
dir = 1
},
-/area/science/research)
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/open/floor/grass/no_border,
+/area/hallway/secondary/exit/departure_lounge)
"okF" = (
/obj/machinery/chem_master,
/obj/item/reagent_containers/glass/beaker/large,
@@ -45701,6 +45391,17 @@
initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
},
/area/tcommsat/computer)
+"omJ" = (
+/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted{
+ alpha = 230;
+ color = "#edaa0c"
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/item/storage/toolbox/electrical,
+/obj/item/clothing/gloves/color/yellow,
+/turf/open/floor/iron/dark,
+/area/engine/atmos)
"omR" = (
/obj/structure/table/reinforced,
/obj/effect/turf_decal/siding/wideplating/dark{
@@ -45729,28 +45430,6 @@
},
/turf/open/space/basic,
/area/solar/starboard/aft)
-"ono" = (
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc/auto_name/west{
- pixel_x = -24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/light{
- bulb_colour = "#22bfa2";
- bulb_vacuum_colour = "#22bfa2";
- dir = 8;
- nightshift_light_color = "#22bfa2"
- },
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 8
- },
-/obj/effect/turf_decal/guideline/guideline_edge/red,
-/turf/open/floor/iron/dark,
-/area/security/brig/dock)
"onv" = (
/obj/structure/window/reinforced{
dir = 8;
@@ -45881,6 +45560,24 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron/tech,
/area/engine/engine_room)
+"oqg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/quartermaster/storage)
"oqp" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow,
@@ -45987,6 +45684,26 @@
},
/turf/open/floor/iron/tech,
/area/engine/atmos)
+"osa" = (
+/obj/structure/table/reinforced,
+/obj/item/gun/energy/ionrifle{
+ pixel_x = -1;
+ pixel_y = 10
+ },
+/obj/item/gun/energy/temperature/security{
+ pixel_y = 5
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/window/brigdoor/westleft{
+ name = "specialized weapons";
+ req_access_txt = "3"
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/item/gun/grenadelauncher/security,
+/turf/open/floor/iron,
+/area/ai_monitored/security/armory)
"osm" = (
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/obj/effect/decal/cleanable/dirt,
@@ -46014,14 +45731,6 @@
},
/turf/closed/wall,
/area/maintenance/disposal)
-"osX" = (
-/obj/machinery/computer/apc_control{
- dir = 1
- },
-/turf/open/floor/plating{
- broken = 1
- },
-/area/engine/engine_room)
"otm" = (
/obj/structure/table,
/obj/item/stock_parts/subspace/ansible,
@@ -46091,9 +45800,35 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron/dark,
/area/engine/atmos)
+"otx" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/button/door{
+ id = "xeno5";
+ name = "Containment Control";
+ pixel_x = -33;
+ pixel_y = 2;
+ req_access_txt = "55"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/iron/white,
+/area/science/xenobiology)
"otE" = (
/turf/closed/wall,
/area/hydroponics)
+"otM" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ alpha = 180
+ },
+/obj/structure/closet/secure_closet/engineering_personal,
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/iron,
+/area/engine/storage)
"otP" = (
/obj/structure/table,
/obj/structure/reagent_dispensers/virusfood{
@@ -46137,34 +45872,6 @@
/obj/item/clothing/head/hats/hos/beret,
/turf/open/floor/carpet/red,
/area/crew_quarters/heads/hos)
-"otY" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer4{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
-"otZ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"ouq" = (
/obj/effect/decal/cleanable/robot_debris,
/obj/effect/decal/cleanable/dirt,
@@ -46185,6 +45892,15 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat/foyer)
+"ouv" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_y = 1
+ },
+/obj/machinery/vending/coffee,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"ouD" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance/three,
@@ -46271,18 +45987,6 @@
},
/turf/open/floor/plating,
/area/crew_quarters/cafeteria)
-"ovC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/starboard/aft)
"ovK" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -46397,36 +46101,22 @@
/area/security/main{
name = "Security Locker Room"
})
-"oxQ" = (
-/turf/closed/wall,
-/area/storage/primary)
-"oxR" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/obj/structure/railing/corner{
- dir = 8
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
-"oxU" = (
-/obj/machinery/light/floor{
- brightness = 15;
- bulb_colour = "#FFE4CE";
- bulb_vacuum_brightness = 15;
- nightshift_brightness = 10;
- nightshift_light_color = "#E6EBFF"
- },
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 8
- },
-/obj/structure/railing/corner{
- dir = 1
+"oxF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
},
-/turf/open/floor/iron/dark/smooth_edge{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
-/area/hallway/primary/central)
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/aft)
+"oxQ" = (
+/turf/closed/wall,
+/area/storage/primary)
"oym" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -46444,24 +46134,24 @@
dir = 1
},
/area/medical/surgery)
-"oyQ" = (
-/obj/machinery/light/small{
+"oyD" = (
+/obj/machinery/camera/autoname{
+ dir = 4;
+ network = list("ss13","rd")
+ },
+/obj/machinery/light{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
+/obj/effect/turf_decal/guideline/guideline_edge/purple{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
+/obj/structure/disposalpipe/segment{
+ dir = 2
},
-/turf/open/floor/iron/dark,
-/area/chapel/main)
-"oza" = (
-/obj/structure/railing/corner{
+/turf/open/floor/iron/white/side{
dir = 4
},
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
+/area/science/research)
"ozf" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/effect/turf_decal/numbers/two_nine,
@@ -46512,24 +46202,6 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat/foyer)
-"oAD" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/effect/decal/cleanable/dirt,
-/mob/living/basic/cockroach,
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/aft)
"oAF" = (
/obj/structure/table,
/obj/item/electronics/airlock,
@@ -46583,6 +46255,14 @@
/obj/structure/cable/yellow,
/turf/open/floor/iron/tech,
/area/engine/engine_room)
+"oBr" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "xenosecure";
+ name = "Secure Pen Shutters"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/science/xenobiology)
"oBw" = (
/obj/machinery/power/apc/auto_name/north{
pixel_y = 24
@@ -46613,6 +46293,13 @@
/obj/machinery/disposal/bin,
/turf/open/floor/iron/dark,
/area/quartermaster/storage)
+"oBD" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{
+ dir = 4;
+ initialize_directions = 4
+ },
+/turf/open/floor/iron/dark,
+/area/quartermaster/exploration_prep)
"oBL" = (
/obj/machinery/vending/wardrobe/bar_wardrobe,
/obj/effect/turf_decal/bot,
@@ -46640,26 +46327,6 @@
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"oCU" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4{
- dir = 6
- },
-/obj/effect/decal/cleanable/greenglow,
-/obj/machinery/light{
- bulb_colour = "#22bfa2";
- bulb_vacuum_colour = "#22bfa2";
- dir = 8;
- nightshift_light_color = "#22bfa2"
- },
-/obj/machinery/power/smes/engineering{
- charge = 2e+007
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"oCW" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -46668,14 +46335,6 @@
},
/turf/open/floor/iron/tech,
/area/engine/atmos)
-"oDf" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/sunnybush,
-/turf/open/floor/grass/no_border,
-/area/hallway/secondary/exit/departure_lounge)
"oDk" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/modular_computer/console/preset/engineering,
@@ -46686,18 +46345,6 @@
},
/turf/open/floor/iron/tech,
/area/engine/engine_room)
-"oDE" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/effect/landmark/blobstart,
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/starboard/aft)
"oDF" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/techstorage/medical,
@@ -46752,6 +46399,35 @@
},
/turf/open/floor/plating,
/area/quartermaster/storage)
+"oEA" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
+ alpha = 180;
+ color = "#DE3A3A"
+ },
+/obj/item/radio/intercom{
+ desc = "Talk through this. It looks like it has been modified to not broadcast.";
+ freerange = 1;
+ name = "Prison intercom";
+ pixel_y = -25;
+ prison_radio = 1
+ },
+/turf/open/floor/iron,
+/area/security/prison{
+ name = "Prison Visitation"
+ })
+"oEG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"oEN" = (
/obj/machinery/gateway{
dir = 4
@@ -46812,25 +46488,10 @@
/area/security/brig{
name = "Brig Evidence"
})
-"oFP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/iron/white,
-/area/science/xenobiology)
"oFY" = (
/obj/machinery/air_sensor/atmos/plasma_tank,
/turf/open/floor/engine/plasma,
/area/engine/atmos)
-"oGj" = (
-/obj/effect/turf_decal/siding/wideplating/dark/corner{
- dir = 4
- },
-/turf/open/floor/glass/reinforced,
-/area/chapel/main)
"oGm" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
@@ -46844,6 +46505,14 @@
},
/turf/open/floor/engine,
/area/engine/atmos)
+"oGE" = (
+/obj/item/cigbutt,
+/obj/item/trash/can/food{
+ pixel_x = -7;
+ pixel_y = 9
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
"oGJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -46853,6 +46522,27 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/storage/eva)
+"oGN" = (
+/obj/machinery/door/window/brigdoor{
+ dir = 8;
+ name = "Creature Pen";
+ req_access_txt = "47"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xeno6";
+ name = "Creature Cell"
+ },
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/science/xenobiology)
"oGP" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/purple/anticorner{
@@ -46970,6 +46660,20 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/aft)
+"oIl" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/central)
"oIs" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -46982,17 +46686,6 @@
},
/turf/open/floor/iron/white,
/area/science/xenobiology)
-"oIJ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/bridge)
"oIY" = (
/obj/structure/disposalpipe/segment{
dir = 2
@@ -47022,6 +46715,34 @@
/obj/effect/turf_decal/box,
/turf/open/floor/iron,
/area/engine/storage)
+"oJi" = (
+/obj/effect/turf_decal/guideline/guideline_out/brown{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/iron/techmaint,
+/area/maintenance/central)
+"oJn" = (
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/solar{
+ id = "portsolar";
+ name = "Port Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/starboard/fore)
"oJq" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -47031,14 +46752,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/white,
/area/medical/sleeper)
-"oJy" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/railing/corner{
- dir = 8
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"oJI" = (
/obj/machinery/light{
dir = 1
@@ -47052,6 +46765,20 @@
},
/turf/open/floor/carpet/purple,
/area/crew_quarters/heads/hor)
+"oJT" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Disposal Access";
+ req_one_access_txt = "31;48;26"
+ },
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/quartermaster/office)
"oKe" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/disposalpipe/segment{
@@ -47159,6 +46886,13 @@
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/iron/sepia,
/area/maintenance/port/central)
+"oLP" = (
+/obj/structure/chair/office,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/chapel/office)
"oLS" = (
/obj/machinery/light{
dir = 4
@@ -47218,20 +46952,6 @@
},
/turf/open/floor/iron,
/area/security/brig)
-"oMx" = (
-/obj/effect/turf_decal/guideline/guideline_edge/purple{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/turf/open/floor/iron/white/side{
- dir = 8
- },
-/area/science/research)
"oMN" = (
/obj/effect/turf_decal/siding/wood{
dir = 10
@@ -47427,6 +47147,21 @@
/area/security/main{
name = "Security Viewing Hall"
})
+"oON" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/aft)
"oPi" = (
/obj/machinery/door/airlock/security/glass{
name = "Holding Area";
@@ -47468,49 +47203,6 @@
/obj/item/reagent_containers/food/drinks/soda_cans/space_up,
/turf/open/floor/iron,
/area/maintenance/port/aft)
-"oPm" = (
-/obj/effect/turf_decal/guideline/guideline_in/red{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/dark_red/half{
- color = "#DE3A3A"
- },
-/obj/effect/turf_decal/tile/dark_red/half{
- color = "#DE3A3A"
- },
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
-"oPs" = (
-/obj/effect/turf_decal/guideline/guideline_in/neutral{
- alpha = 255;
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
- },
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
- },
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
- },
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
"oPD" = (
/obj/effect/turf_decal/siding/wood{
dir = 1
@@ -47540,10 +47232,6 @@
/obj/structure/lattice,
/turf/open/space/basic,
/area/space/nearstation)
-"oQd" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/central)
"oQi" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -47576,6 +47264,25 @@
},
/turf/open/floor/iron/dark,
/area/storage/primary)
+"oQw" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xeno1";
+ name = "Creature Cell"
+ },
+/obj/machinery/door/window/brigdoor{
+ dir = 1;
+ name = "Creature Pen";
+ req_access_txt = "47"
+ },
+/obj/effect/turf_decal/stripes/closeup,
+/turf/open/floor/engine,
+/area/science/xenobiology)
"oQE" = (
/obj/structure/sign/poster/official/moth1,
/turf/closed/wall,
@@ -47666,6 +47373,15 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
+"oRP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"oRY" = (
/obj/machinery/atmospherics/miner/station/nitrogen,
/turf/open/floor/engine/n2,
@@ -47746,6 +47462,18 @@
/obj/structure/table/reinforced,
/turf/open/floor/iron/dark,
/area/science/robotics)
+"oTs" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/open/floor/grass/no_border,
+/area/hallway/secondary/exit/departure_lounge)
+"oTv" = (
+/obj/effect/mapping_helpers/tile_breaker,
+/turf/open/floor/wood,
+/area/maintenance/port/aft)
"oTx" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/techmaint,
@@ -47765,9 +47493,44 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/service)
+"oTO" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/thinplating/light{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 4
+ },
+/area/hallway/primary/central)
"oTR" = (
/turf/closed/wall/rust,
/area/maintenance/solars/port/aft)
+"oTS" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/grille/broken,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/central)
+"oTU" = (
+/obj/machinery/telecomms/hub/preset/exploration,
+/obj/machinery/atmospherics/pipe/heat_exchanging/junction{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 3
+ },
+/turf/open/floor/circuit/green/telecomms/mainframe,
+/area/quartermaster/exploration_prep)
"oTY" = (
/obj/machinery/door/window/eastright{
dir = 8;
@@ -47924,6 +47687,13 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/quartermaster/warehouse)
+"oVO" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/medical/morgue)
"oVP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -47960,6 +47730,18 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
+"oWr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/guideline/guideline_in/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple/half{
+ dir = 4
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
"oWD" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -47975,6 +47757,21 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
+"oWT" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/iron/white,
+/area/science/xenobiology)
"oXb" = (
/obj/structure/table_frame/wood,
/obj/item/trash/tray{
@@ -47984,6 +47781,21 @@
/obj/item/storage/belt/utility,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"oXn" = (
+/obj/effect/landmark/start/assistant,
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/turf/open/floor/glass/reinforced,
+/area/hallway/primary/central{
+ dynamic_lighting = 2;
+ lighting_brightness_tube = 11;
+ lighting_colour_bulb = "#DDE6FF";
+ lighting_colour_night = "#DDE6FF";
+ lighting_colour_tube = "#DDE6FF";
+ lighting_overlay_colour = "#DDE6FF";
+ power_light = 0
+ })
"oXo" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -48041,6 +47853,29 @@
},
/turf/open/floor/iron/dark,
/area/security/checkpoint/engineering)
+"oYh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/guideline/guideline_in/green{
+ color = "#439C1E"
+ },
+/obj/effect/turf_decal/tile/dark_green/half{
+ dir = 8
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
+"oYk" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/light_switch{
+ pixel_x = 21
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/wood,
+/area/chapel/office)
"oYr" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 8
@@ -48055,6 +47890,15 @@
dir = 4
},
/area/science/mixing/chamber)
+"oYy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"oYZ" = (
/obj/effect/turf_decal/caution{
dir = 8;
@@ -48084,15 +47928,23 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/storage)
-"oZh" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 5
+"oZn" = (
+/obj/machinery/door/airlock/research/glass{
+ name = "Robotics Lab";
+ req_access_txt = "29"
},
-/obj/structure/chair/fancy/bench/pew/left{
- dir = 8
+/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/turf/open/floor/glass/reinforced,
-/area/chapel/main)
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/turf/open/floor/iron/white,
+/area/science/robotics)
"oZw" = (
/obj/effect/turf_decal/guideline/guideline_edge/neutral{
alpha = 255;
@@ -48122,19 +47974,6 @@
},
/turf/open/floor/iron/white,
/area/medical/apothecary)
-"oZQ" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"oZS" = (
/obj/structure/table/glass,
/obj/item/stack/ducts/fifty,
@@ -48149,6 +47988,10 @@
},
/turf/open/floor/iron,
/area/medical/chemistry)
+"paa" = (
+/obj/machinery/atmospherics/pipe/simple/general/hidden,
+/turf/open/floor/iron/grid/steel,
+/area/science/xenobiology)
"pab" = (
/obj/structure/noticeboard{
pixel_y = 4
@@ -48293,6 +48136,31 @@
},
/turf/open/floor/iron/dark,
/area/security/brig/dock)
+"pbd" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 6
+ },
+/turf/open/floor/iron/white,
+/area/science/xenobiology)
+"pbg" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"pbr" = (
/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
/obj/machinery/status_display/door_timer{
@@ -48325,43 +48193,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/engine/atmospherics_engine)
-"pbC" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/machinery/light/floor{
- brightness = 15;
- bulb_colour = "#FFE4CE";
- bulb_vacuum_brightness = 15;
- nightshift_brightness = 10;
- nightshift_light_color = "#E6EBFF"
- },
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 1
- },
-/turf/open/floor/iron/dark/smooth_edge,
-/area/hallway/primary/central)
-"pcd" = (
-/obj/machinery/power/terminal{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2{
- dir = 6
- },
-/obj/structure/extinguisher_cabinet{
- pixel_y = 32
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"pco" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -48589,6 +48420,18 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron/tech,
/area/ai_monitored/storage/eva)
+"pgR" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/xeno_spawn,
+/obj/item/paper/crumpled/bloody/docsdeathnote{
+ default_raw_text = "They tried to take it from us... our precious...";
+ pixel_x = -7;
+ pixel_y = 5
+ },
+/turf/open/floor/plating{
+ burnt = 1
+ },
+/area/maintenance/department/medical)
"pgT" = (
/obj/structure/table/wood,
/obj/effect/turf_decal/siding/wood,
@@ -48647,11 +48490,6 @@
},
/turf/open/floor/iron/tech/grid,
/area/engine/engine_room)
-"pis" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/vacant_room/office)
"pix" = (
/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -48729,6 +48567,11 @@
},
/turf/open/floor/plating,
/area/janitor)
+"pjI" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron,
+/area/hallway/primary/aft)
"pjL" = (
/obj/structure/disposalpipe/segment{
dir = 2
@@ -48769,6 +48612,32 @@
},
/turf/open/floor/plating,
/area/bridge)
+"pjQ" = (
+/obj/effect/turf_decal/guideline/guideline_in/neutral{
+ alpha = 255;
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
+ },
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
+ },
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
+ },
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
"pjX" = (
/obj/machinery/firealarm{
dir = 8;
@@ -48822,24 +48691,6 @@
},
/turf/open/floor/plating,
/area/quartermaster/miningdock)
-"pkD" = (
-/obj/machinery/door/window/brigdoor{
- dir = 8;
- name = "Creature Pen";
- req_access_txt = "47"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xeno6";
- name = "Creature Cell"
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
"pkE" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -48849,16 +48700,6 @@
dir = 10
},
/area/science/mixing)
-"pkH" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/solar{
- id = "portsolar";
- name = "Port Solar Array"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/port/aft)
"pkP" = (
/obj/effect/turf_decal/siding/wideplating/dark{
dir = 9
@@ -48908,6 +48749,19 @@
},
/turf/open/floor/iron/sepia,
/area/quartermaster/office)
+"pkY" = (
+/obj/structure/window/reinforced,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/leafybush,
+/obj/item/toy/gun{
+ desc = "It has his name engraved in the barrel. On closer inspection it's just a toy";
+ name = "Tony's gun";
+ pixel_x = -12;
+ pixel_y = 5
+ },
+/turf/open/floor/grass/no_border,
+/area/hallway/secondary/exit/departure_lounge)
"plx" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -48928,19 +48782,6 @@
/obj/machinery/advanced_airlock_controller/directional/north,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"plG" = (
-/obj/structure/window/reinforced{
- dir = 4;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/effect/turf_decal/bot,
-/obj/structure/closet/firecloset/full,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"plT" = (
/obj/machinery/airalarm/directional/west,
/obj/effect/turf_decal/tile/blue/half/contrasted{
@@ -48956,6 +48797,21 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/iron/dark,
/area/science/misc_lab/range)
+"pmn" = (
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"pmu" = (
/obj/machinery/button/door{
id = "commissarydoor1";
@@ -49001,6 +48857,12 @@
},
/turf/open/floor/iron/white,
/area/science/xenobiology)
+"pmV" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/mechanical,
+/obj/machinery/light/very_dim/directional/west,
+/turf/open/floor/iron/dark,
+/area/security/execution/education)
"pnv" = (
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/obj/effect/turf_decal/bot,
@@ -49085,19 +48947,20 @@
/obj/effect/turf_decal/box,
/turf/open/floor/iron/white,
/area/science/research)
-"poH" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/guideline/guideline_edge/purple{
- dir = 8
+"poD" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_y = 1
},
/obj/structure/disposalpipe/segment{
dir = 2
},
-/obj/machinery/firealarm/directional/west,
-/turf/open/floor/iron/white/side{
- dir = 8
- },
-/area/science/research)
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"poJ" = (
/obj/structure/disposalpipe/segment{
dir = 8
@@ -49185,10 +49048,17 @@
},
/turf/open/floor/iron/sepia,
/area/quartermaster/storage)
-"pqk" = (
-/obj/effect/decal/cleanable/robot_debris,
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
+"ppT" = (
+/obj/structure/railing{
+ dir = 5
+ },
+/obj/machinery/vending/cigarette,
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 5
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"pql" = (
/obj/effect/turf_decal/siding/wood{
dir = 8
@@ -49237,40 +49107,16 @@
},
/turf/open/space/basic,
/area/space/nearstation)
-"pqI" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/light,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -8;
- pixel_y = -30
- },
-/obj/machinery/camera/autoname{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/button/door{
- id = "Capoffice";
- id_tag = "cmoprivacy";
- name = "Captain blast door";
- pixel_x = 5;
- pixel_y = -25;
- req_access_txt = "20"
- },
-/obj/structure/rack,
-/obj/item/aicard,
-/obj/item/storage/secure/briefcase,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/bridge)
+"pqL" = (
+/obj/effect/decal/cleanable/crayon,
+/obj/item/food/butterdog,
+/turf/open/floor/plating,
+/area/maintenance/department/medical)
+"pqP" = (
+/obj/machinery/space_heater,
+/obj/effect/decal/cleanable/generic,
+/turf/open/floor/plating,
+/area/maintenance/central)
"prd" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -49379,19 +49225,6 @@
},
/turf/open/floor/plating/airless,
/area/science/test_area)
-"pum" = (
-/obj/structure/table,
-/obj/item/stack/sheet/glass{
- amount = 30
- },
-/obj/item/stack/sheet/iron{
- amount = 30
- },
-/obj/item/rcl/pre_loaded,
-/obj/item/wrench,
-/obj/item/crowbar/red,
-/turf/open/floor/iron/tech,
-/area/engine/atmos)
"puq" = (
/obj/structure/chair{
dir = 4
@@ -49470,6 +49303,19 @@
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating,
/area/maintenance/department/science)
+"pvw" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/effect/turf_decal/bot,
+/obj/structure/closet/firecloset/full,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"pvz" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
@@ -49633,10 +49479,6 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/exploration_prep)
-"pyL" = (
-/obj/machinery/rnd/experimentor,
-/turf/open/floor/engine,
-/area/science/explab)
"pyP" = (
/obj/structure/sign/poster/random,
/turf/closed/wall,
@@ -49653,21 +49495,6 @@
},
/turf/open/floor/plating,
/area/security/courtroom)
-"pzG" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/central)
"pzH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -49711,18 +49538,14 @@
/obj/effect/decal/cleanable/dirt,
/turf/closed/wall,
/area/maintenance/port/central)
-"pAn" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/decal/cleanable/dirt,
+"pAt" = (
+/obj/effect/turf_decal/tile/yellow/anticorner,
/obj/structure/disposalpipe/segment{
dir = 2
},
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/security)
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/maintenance/department/engine)
"pAu" = (
/obj/machinery/light/small{
dir = 4
@@ -49755,6 +49578,23 @@
/obj/effect/decal/cleanable/vomit/old,
/turf/open/floor/iron/white,
/area/maintenance/port/aft)
+"pAP" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ alpha = 180
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/engine/storage)
"pAR" = (
/obj/machinery/processor,
/turf/open/floor/iron/dark,
@@ -49881,6 +49721,17 @@
},
/turf/open/floor/engine/o2,
/area/engine/atmos)
+"pCI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"pCQ" = (
/obj/item/kirbyplants{
pixel_x = 19;
@@ -49915,23 +49766,6 @@
/obj/item/kirbyplants/random,
/turf/open/floor/circuit/green/telecomms/mainframe,
/area/quartermaster/exploration_prep)
-"pCU" = (
-/obj/effect/turf_decal/guideline/guideline_in/purple{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/obj/effect/turf_decal/tile/purple/half{
- dir = 4
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
"pCW" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron/tech,
@@ -49955,6 +49789,20 @@
},
/turf/open/floor/iron/dark,
/area/science/nanite)
+"pEb" = (
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
"pEe" = (
/obj/effect/turf_decal/tile/yellow/half/contrasted{
alpha = 180;
@@ -49991,6 +49839,24 @@
},
/turf/open/floor/iron,
/area/crew_quarters/cafeteria)
+"pEr" = (
+/obj/machinery/light/floor{
+ brightness = 15;
+ bulb_colour = "#FFE4CE";
+ bulb_vacuum_brightness = 15;
+ nightshift_brightness = 10;
+ nightshift_light_color = "#E6EBFF"
+ },
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 8
+ },
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 4
+ },
+/area/hallway/primary/central)
"pEs" = (
/obj/structure/disposalpipe/sorting/mail/flip{
dir = 4;
@@ -50005,6 +49871,16 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
+"pEw" = (
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/solar{
+ id = "portsolar";
+ name = "Port Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/starboard/aft)
"pEA" = (
/turf/open/floor/iron/stairs/left{
dir = 4
@@ -50067,6 +49943,13 @@
/obj/structure/curtain/directional,
/turf/open/floor/plating,
/area/crew_quarters/heads/chief)
+"pEW" = (
+/obj/effect/landmark/start/scientist,
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/science/explab)
"pEZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/chair/stool{
@@ -50122,23 +50005,6 @@
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
/area/maintenance/department/medical/morgue)
-"pFx" = (
-/obj/effect/turf_decal/tile/yellow/half/contrasted{
- alpha = 180
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/bot,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/engine/storage)
"pFE" = (
/obj/machinery/vending/dinnerware,
/obj/effect/turf_decal/bot,
@@ -50308,21 +50174,22 @@
},
/turf/open/floor/carpet/blue,
/area/crew_quarters/heads/hos)
-"pIB" = (
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/power/smes/engineering{
- charge = 2e+007
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"pIC" = (
/obj/machinery/suit_storage_unit/security,
/turf/open/floor/iron/dark,
/area/security/brig/dock{
name = "Security E.V.A. Storage"
})
+"pII" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_y = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"pIL" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 4
@@ -50402,55 +50269,11 @@
},
/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/ai_upload)
-"pJP" = (
-/obj/effect/turf_decal/guideline/guideline_tri/blue{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/iron/white/side{
- dir = 4
- },
-/area/medical/sleeper)
"pJV" = (
/obj/structure/table/wood,
/obj/item/storage/fancy/donut_box,
/turf/open/floor/carpet/royalblue,
/area/crew_quarters/heads/captain)
-"pJX" = (
-/obj/structure/railing{
- dir = 6
- },
-/obj/machinery/light/floor{
- brightness = 15;
- bulb_colour = "#FFE4CE";
- bulb_vacuum_brightness = 15;
- nightshift_brightness = 10;
- nightshift_light_color = "#E6EBFF"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
-"pKp" = (
-/obj/structure/table/reinforced,
-/obj/item/gun/energy/ionrifle{
- pixel_x = -1;
- pixel_y = 10
- },
-/obj/item/gun/energy/temperature/security{
- pixel_y = 5
- },
-/obj/structure/window/reinforced,
-/obj/machinery/door/window/brigdoor/westleft{
- name = "specialized weapons";
- req_access_txt = "3"
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/obj/item/gun/grenadelauncher/security,
-/turf/open/floor/iron,
-/area/ai_monitored/security/armory)
"pKz" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -50515,6 +50338,15 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/miningdock)
+"pLm" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/guideline/guideline_edge/blue{
+ dir = 8
+ },
+/obj/structure/closet/crate/freezer/surplus_limbs,
+/obj/item/organ/ears/cat,
+/turf/open/floor/iron,
+/area/medical/surgery)
"pLp" = (
/obj/machinery/firealarm/directional/east,
/obj/effect/turf_decal/tile/neutral{
@@ -50551,13 +50383,6 @@
},
/turf/open/floor/wood,
/area/library)
-"pLJ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
-/turf/open/floor/iron,
-/area/quartermaster/exploration_prep)
"pLM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 5
@@ -50602,18 +50427,6 @@
burnt = 1
},
/area/maintenance/department/medical/morgue)
-"pMw" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/central)
"pMy" = (
/obj/effect/turf_decal/stripes/corner{
dir = 8
@@ -50713,10 +50526,31 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"pOp" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron/dark,
+/area/science/robotics)
"pOB" = (
/obj/effect/turf_decal/tile/dark_green/half/contrasted,
/turf/open/floor/iron/dark,
/area/bridge)
+"pOD" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"pOL" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
@@ -50767,44 +50601,58 @@
dir = 4
},
/area/medical/surgery)
-"pPm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
+"pPj" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/chapel/office)
+"pPo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/obj/structure/cable/yellow{
- icon_state = "1-2"
+ icon_state = "4-8"
},
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/iron/white,
-/area/science/xenobiology)
+/obj/machinery/camera/autoname{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/bridge)
"pPs" = (
/obj/effect/decal/cleanable/blood/splatter,
/turf/open/floor/iron/white/side,
/area/medical/surgery)
-"pPy" = (
-/turf/open/floor/plating{
- burnt = 1
- },
-/area/maintenance/port/aft)
"pPA" = (
/turf/closed/wall/r_wall,
/area/science/storage)
-"pPX" = (
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/structure/disposalpipe/segment{
+"pPY" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
},
/obj/structure/cable/yellow{
- icon_state = "1-4"
+ icon_state = "4-8"
},
/turf/open/floor/catwalk_floor,
-/area/maintenance/department/bridge)
+/area/maintenance/port/aft)
+"pQd" = (
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/solar{
+ id = "portsolar";
+ name = "Port Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/starboard/aft)
"pQm" = (
/obj/machinery/light{
dir = 4
@@ -50827,6 +50675,25 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat_interior)
+"pQV" = (
+/obj/machinery/computer/xenoartifact_console{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_x = 1;
+ pixel_y = 28
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/button/door{
+ id = "testlab";
+ name = "Test Chamber Blast Doors";
+ pixel_x = 24
+ },
+/turf/open/floor/iron,
+/area/science/explab)
"pQZ" = (
/obj/machinery/atmospherics/components/unary/cryo_cell{
dir = 4;
@@ -51101,6 +50968,15 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/security/armory)
+"pUj" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/closet/emcloset,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"pUl" = (
/obj/effect/turf_decal/guideline/guideline_out_arrow/brown{
dir = 9
@@ -51132,24 +51008,18 @@
},
/turf/open/floor/iron,
/area/security/brig)
-"pVo" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/firealarm/directional/east,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 1
+"pUv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
},
-/obj/machinery/door/firedoor,
-/turf/open/floor/iron/white,
-/area/science/xenobiology)
-"pVq" = (
/obj/structure/cable/yellow{
- icon_state = "1-2"
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
+/area/maintenance/starboard/aft)
"pVy" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -51222,20 +51092,6 @@
/area/security/prison{
name = "Prison Processing"
})
-"pVT" = (
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 8
- },
-/obj/effect/turf_decal/guideline/guideline_edge/red,
-/obj/machinery/camera/autoname{
- dir = 1;
- network = list("ss13","security")
- },
-/obj/machinery/light_switch{
- pixel_y = -25
- },
-/turf/open/floor/iron,
-/area/security/brig)
"pVX" = (
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating,
@@ -51511,17 +51367,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/qm)
-"pZT" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/disposal/bin,
-/obj/machinery/door/firedoor,
-/turf/open/floor/iron/techmaint,
-/area/science/xenobiology)
"pZU" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -51638,23 +51483,6 @@
/obj/structure/lattice/catwalk,
/turf/open/space/basic,
/area/solar/port/fore)
-"qbm" = (
-/obj/structure/railing/corner{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/effect/turf_decal/siding/wideplating/dark/corner{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/iron/dark/corner{
- dir = 8
- },
-/area/hallway/primary/central)
"qbq" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 4
@@ -51667,6 +51495,13 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
+"qbO" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/tile_breaker,
+/turf/open/floor/wood,
+/area/maintenance/central)
"qbS" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 4
@@ -51727,6 +51562,14 @@
/obj/item/ammo_casing/spent,
/turf/open/floor/plating,
/area/maintenance/department/security)
+"qcG" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/sunnybush,
+/turf/open/floor/grass/no_border,
+/area/hallway/secondary/exit/departure_lounge)
"qcI" = (
/obj/structure/railing/corner,
/obj/effect/turf_decal/siding/wideplating/dark/corner,
@@ -51750,6 +51593,23 @@
/obj/effect/turf_decal/box,
/turf/open/floor/iron/white,
/area/medical/surgery)
+"qdU" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/guideline/guideline_in/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow/half,
+/obj/effect/turf_decal/tile/yellow/half,
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
+"qdW" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/security)
"qea" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -51797,19 +51657,6 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/auxiliary)
-"qeK" = (
-/obj/effect/turf_decal/tile/purple/half/contrasted{
- dir = 4
- },
-/obj/item/xenoartifact/maint,
-/obj/machinery/power/apc/auto_name/north{
- pixel_y = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/iron,
-/area/maintenance/port/aft)
"qeL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 1
@@ -51825,12 +51672,6 @@
dir = 8
},
/area/hallway/primary/central)
-"qeQ" = (
-/obj/structure/railing/corner{
- dir = 1
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"qeU" = (
/obj/structure/table/reinforced,
/obj/item/wrench,
@@ -51868,27 +51709,14 @@
},
/turf/open/floor/plating,
/area/science/xenobiology)
-"qga" = (
-/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/iron,
-/area/maintenance/port/aft)
-"qgd" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 5
- },
-/obj/effect/decal/cleanable/blood/old,
-/obj/machinery/light{
- bulb_colour = "#22bfa2";
- bulb_vacuum_colour = "#22bfa2";
- dir = 8;
- nightshift_light_color = "#22bfa2"
+"qfC" = (
+/obj/structure/window/reinforced{
+ dir = 4
},
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/open/floor/grass/no_border,
+/area/hallway/secondary/exit/departure_lounge)
"qgr" = (
/obj/effect/turf_decal/siding/wideplating/dark,
/turf/open/floor/carpet/red,
@@ -51941,6 +51769,15 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
+"qhj" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"qhm" = (
/obj/machinery/status_display/evac{
pixel_y = 32
@@ -51976,6 +51813,14 @@
broken = 1
},
/area/maintenance/starboard/aft)
+"qin" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 3
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark,
+/area/quartermaster/exploration_prep)
"qio" = (
/obj/machinery/atmospherics/components/trinary/mixer/flipped{
dir = 1
@@ -52088,29 +51933,6 @@
},
/turf/open/floor/iron/white,
/area/medical/genetics)
-"qkz" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Gas to Chamber"
- },
-/turf/open/floor/iron/white,
-/area/science/xenobiology)
-"qkA" = (
-/obj/effect/turf_decal/guideline/guideline_out/brown{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/iron/techmaint,
-/area/maintenance/central)
"qkS" = (
/obj/effect/turf_decal/guideline/guideline_in/darkblue{
dir = 8
@@ -52137,6 +51959,16 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
+"qlC" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/generic,
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"qmu" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -52196,6 +52028,22 @@
"qmZ" = (
/turf/open/floor/iron/white,
/area/maintenance/port/aft)
+"qnm" = (
+/obj/effect/turf_decal/guideline/guideline_out_arrow/brown{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/oil/streak,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/techmaint,
+/area/hallway/secondary/service)
"qnr" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/atmospherics/components/binary/pump{
@@ -52231,6 +52079,18 @@
dir = 8
},
/area/science/mixing)
+"qnY" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/science/xenobiology)
"qoc" = (
/obj/machinery/space_heater,
/obj/effect/turf_decal/tile/yellow/anticorner,
@@ -52280,6 +52140,16 @@
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
/area/medical/cryo)
+"qot" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Gas to Chamber"
+ },
+/turf/open/floor/iron/white,
+/area/science/xenobiology)
"qoy" = (
/obj/machinery/holopad{
pixel_y = 16
@@ -52302,6 +52172,21 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
+"qoH" = (
+/obj/structure/table,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/spawner/lootdrop/maintenance{
+ pixel_y = 5
+ },
+/obj/machinery/light_switch{
+ pixel_x = -19;
+ pixel_y = 1
+ },
+/obj/item/clothing/gloves/color/yellow,
+/turf/open/floor/iron/dark,
+/area/engine/storage)
"qoI" = (
/obj/structure/table/wood,
/obj/machinery/computer/med_data/laptop{
@@ -52344,6 +52229,10 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/iron/techmaint,
/area/security/prison/shielded)
+"qpu" = (
+/obj/structure/window/reinforced,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"qpz" = (
/obj/structure/extinguisher_cabinet{
pixel_y = 32
@@ -52419,35 +52308,6 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/port/aft)
-"qrx" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/aft)
-"qrF" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 5
- },
-/obj/machinery/button/door{
- id = "detectivewindows";
- name = "Detective Private Shutters";
- pixel_x = 25;
- pixel_y = -8;
- req_access_txt = "4"
- },
-/obj/machinery/vending/boozeomat/all_access{
- req_access_txt = "4"
- },
-/obj/structure/noticeboard{
- name = "Evidence board";
- pixel_y = 32
- },
-/turf/open/floor/carpet/red,
-/area/security/detectives_office)
"qrR" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted{
alpha = 200;
@@ -52512,6 +52372,12 @@
},
/turf/open/floor/iron/dark,
/area/crew_quarters/bar)
+"qtb" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/aft)
"qth" = (
/obj/structure/table,
/obj/effect/turf_decal/stripes/line,
@@ -52748,18 +52614,15 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/starboard/fore)
-"qwf" = (
-/obj/effect/decal/cleanable/shreds,
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
"qwL" = (
/obj/structure/sign/poster/random,
/turf/closed/wall,
/area/gateway)
-"qwU" = (
+"qwZ" = (
/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/landmark/blobstart,
/turf/open/floor/catwalk_floor,
-/area/maintenance/department/medical/morgue)
+/area/maintenance/central)
"qxi" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -52833,14 +52696,18 @@
},
/turf/open/floor/iron/dark,
/area/engine/engine_room)
-"qyl" = (
-/obj/structure/chair/wood,
-/obj/effect/landmark/start/randommaint/vip,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
+"qyo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
},
-/area/maintenance/port/aft)
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"qyp" = (
/obj/structure/grille/broken,
/turf/open/floor/plating,
@@ -52865,6 +52732,15 @@
/obj/effect/decal/cleanable/glass,
/turf/open/floor/wood,
/area/vacant_room/office)
+"qzz" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/medical/morgue)
"qAe" = (
/obj/structure/table/reinforced,
/obj/item/stack/sheet/glass/fifty{
@@ -52955,6 +52831,25 @@
},
/turf/open/floor/carpet/royalblack,
/area/lawoffice)
+"qBk" = (
+/obj/effect/turf_decal/guideline/guideline_in/brown,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/effect/turf_decal/tile/brown/half{
+ dir = 8
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
"qBp" = (
/obj/structure/table/reinforced,
/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted{
@@ -52988,38 +52883,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
-"qBN" = (
-/obj/effect/turf_decal/guideline/guideline_in/neutral{
- alpha = 255;
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
- },
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
- },
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
- },
-/obj/effect/turf_decal/tile/neutral/half{
- dir = 4;
- color = "#FFFFFF"
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
"qBR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -53055,6 +52918,21 @@
},
/turf/open/space/basic,
/area/space)
+"qBZ" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/light/floor{
+ brightness = 15;
+ bulb_colour = "#FFE4CE";
+ bulb_vacuum_brightness = 15;
+ nightshift_brightness = 10;
+ nightshift_light_color = "#E6EBFF"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"qCn" = (
/obj/machinery/door/airlock/public/glass{
name = "Primary Hallway"
@@ -53080,6 +52958,21 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"qCu" = (
+/obj/machinery/door/airlock/atmos{
+ name = "atmospherics Storage";
+ req_access = "24"
+ },
+/obj/effect/turf_decal/loading_area{
+ dir = 8
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/button{
+ id = "atmosshutters";
+ pixel_y = -25
+ },
+/turf/open/floor/iron/dark,
+/area/engine/atmos)
"qCD" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/power/apc{
@@ -53106,6 +52999,23 @@
dir = 10
},
/area/science/mixing)
+"qCN" = (
+/obj/machinery/camera/autoname{
+ dir = 9;
+ network = list("ss13","prison")
+ },
+/obj/item/radio/intercom{
+ desc = "Talk through this. It looks like it has been modified to not broadcast.";
+ freerange = 1;
+ name = "Prison intercom";
+ pixel_x = 25;
+ prison_radio = 1
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/security/prison)
"qCQ" = (
/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
alpha = 180
@@ -53134,6 +53044,13 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/freezer,
/area/crew_quarters/kitchen/coldroom)
+"qDc" = (
+/obj/effect/decal/cleanable/oil,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/medical/morgue)
"qDN" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -53145,20 +53062,6 @@
/obj/item/storage/belt/utility,
/turf/open/floor/iron,
/area/maintenance/department/security)
-"qDQ" = (
-/obj/machinery/door/poddoor/preopen{
- id = "Engidesk";
- name = "engineering security door"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/northright{
- dir = 2;
- name = "Engi Desk";
- req_one_access_txt = "32;19"
- },
-/obj/machinery/modular_fabricator/autolathe,
-/turf/open/floor/iron/dark,
-/area/engine/engineering)
"qDZ" = (
/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
alpha = 140;
@@ -53181,21 +53084,18 @@
},
/turf/open/floor/iron,
/area/hallway/primary/starboard)
-"qEk" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer4{
- dir = 8
+"qEf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
},
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/item/radio/intercom{
- pixel_x = -32;
- pixel_y = -3
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
},
-/obj/machinery/power/smes/engineering{
- charge = 2e+007
+/obj/structure/disposalpipe/segment{
+ dir = 2
},
-/obj/structure/cable/yellow,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"qEl" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/obj/effect/decal/cleanable/dirt,
@@ -53225,6 +53125,17 @@
},
/turf/open/floor/iron,
/area/hallway/primary/starboard)
+"qEC" = (
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/obj/item/radio/intercom{
+ desc = "Talk through this. It looks like it has been modified to not broadcast.";
+ freerange = 1;
+ name = "Prison intercom";
+ pixel_y = -25;
+ prison_radio = 1
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"qEG" = (
/obj/machinery/door/airlock/command{
name = "Research Director's Quarters";
@@ -53294,6 +53205,13 @@
},
/turf/open/floor/carpet/red,
/area/crew_quarters/theatre/backstage)
+"qFJ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"qFY" = (
/obj/machinery/door/airlock{
name = "Freezer";
@@ -53478,14 +53396,6 @@
/area/security/brig{
name = "Brig Interrogation"
})
-"qJB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/railing/corner,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"qJC" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -53563,6 +53473,21 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/storage/eva)
+"qKS" = (
+/obj/machinery/camera/autoname{
+ dir = 8;
+ network = list("ss13","security")
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/dark,
+/area/security/brig{
+ name = "Brig Evidence"
+ })
"qKX" = (
/obj/structure/bed{
dir = 4
@@ -53707,12 +53632,6 @@
},
/turf/open/space/basic,
/area/space/nearstation)
-"qNu" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/medical/morgue)
"qNP" = (
/obj/effect/turf_decal/box,
/obj/structure/cable/yellow{
@@ -53869,6 +53788,15 @@
/obj/effect/decal/cleanable/greenglow,
/turf/open/floor/iron/techmaint,
/area/science/misc_lab/range)
+"qQj" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/obj/machinery/vending/cola,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"qQC" = (
/obj/machinery/door/airlock/external{
name = "Arrival Shuttle Airlock"
@@ -53930,6 +53858,15 @@
/obj/item/ammo_casing/spent,
/turf/open/floor/iron,
/area/maintenance/department/security)
+"qRu" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/grid/steel,
+/area/science/xenobiology)
"qRH" = (
/obj/structure/table/reinforced,
/obj/structure/extinguisher_cabinet{
@@ -53982,6 +53919,13 @@
/obj/structure/lattice,
/turf/open/space/basic,
/area/space/nearstation)
+"qSv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/holopad,
+/obj/effect/turf_decal/box,
+/turf/open/floor/iron/tech,
+/area/engine/atmos)
"qSE" = (
/obj/structure/table/reinforced,
/obj/item/clothing/head/utility/welding{
@@ -54102,6 +54046,17 @@
},
/turf/open/floor/iron,
/area/gateway)
+"qUt" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=5-WHall";
+ location = "4-CenterNW"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"qUv" = (
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -54216,13 +54171,6 @@
name = "mainframe floor"
},
/area/tcommsat/computer)
-"qVJ" = (
-/obj/machinery/atmospherics/pipe/layer_manifold,
-/obj/structure/table/reinforced,
-/turf/open/floor/plating{
- broken = 1
- },
-/area/engine/engine_room)
"qWc" = (
/obj/machinery/light/small{
dir = 8
@@ -54268,12 +54216,6 @@
/obj/item/ammo_casing/spent,
/turf/open/floor/iron,
/area/maintenance/department/security)
-"qWw" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/central)
"qWB" = (
/obj/effect/turf_decal/bot,
/obj/machinery/light{
@@ -54302,6 +54244,27 @@
},
/turf/open/floor/wood,
/area/vacant_room/office)
+"qWY" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction/flip{
+ dir = 8
+ },
+/obj/effect/turf_decal/guideline/guideline_in/green{
+ color = "#439C1E"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/dark_green/half{
+ dir = 8
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
"qXb" = (
/obj/machinery/disposal/bin,
/obj/effect/turf_decal/delivery,
@@ -54388,6 +54351,33 @@
},
/turf/open/floor/carpet,
/area/library)
+"qXU" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2,
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
+"qYf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"qYz" = (
/obj/machinery/camera/autoname{
network = list("ss13","rd")
@@ -54400,27 +54390,18 @@
},
/turf/open/floor/iron,
/area/science/lobby)
-"qYH" = (
+"qYC" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
-/obj/structure/disposalpipe/junction/flip{
- dir = 8
- },
-/obj/effect/turf_decal/guideline/guideline_in/green{
- color = "#439C1E"
- },
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/effect/turf_decal/tile/dark_green/half{
- dir = 8
+ dir = 4
},
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
+/turf/open/floor/catwalk_floor,
+/area/maintenance/central)
"qYR" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -54454,19 +54435,6 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/qm)
-"qZs" = (
-/obj/effect/landmark/xeno_spawn,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/iron/dark,
-/area/chapel/office)
"qZB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -54676,6 +54644,11 @@
},
/turf/open/floor/carpet/blue,
/area/crew_quarters/heads/hos)
+"rcz" = (
+/obj/effect/decal/cleanable/oil,
+/obj/effect/mapping_helpers/tile_breaker,
+/turf/open/floor/wood,
+/area/maintenance/central)
"rcG" = (
/obj/structure/closet/crate/secure/weapon{
desc = "A secure clothing crate.";
@@ -54720,15 +54693,6 @@
},
/turf/open/floor/iron,
/area/engine/engine_room)
-"rdd" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4,
-/obj/machinery/camera/autoname{
- dir = 4;
- network = list("ss13","engine")
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"rdn" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 1
@@ -54753,19 +54717,6 @@
},
/turf/open/floor/iron/white,
/area/science/research)
-"rdr" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/aft)
"rdu" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
@@ -54793,6 +54744,31 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"rdM" = (
+/obj/machinery/smartfridge/sci{
+ initial_contents = list(/obj/item/stock_parts/capacitor = 2, /obj/item/stock_parts/manipulator = 2, /obj/item/stock_parts/micro_laser = 2, /obj/item/stock_parts/matter_bin = 2, /obj/item/stock_parts/scanning_module = 2);
+ name = "Science vender"
+ },
+/turf/closed/wall,
+/area/engine/storage)
+"rdS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/machinery/firealarm/directional/west,
+/obj/effect/turf_decal/guideline/guideline_edge/purple{
+ dir = 8
+ },
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/science/research)
"rdT" = (
/obj/structure/disposalpipe/segment{
dir = 6
@@ -54829,6 +54805,13 @@
burnt = 1
},
/area/hallway/secondary/service)
+"reA" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/obj/machinery/camera/autoname{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/aft)
"reC" = (
/obj/item/kirbyplants/random,
/obj/machinery/power/apc/auto_name/north{
@@ -54876,19 +54859,6 @@
/obj/machinery/firealarm/directional/east,
/turf/open/floor/iron,
/area/engine/engineering)
-"rfV" = (
-/obj/structure/musician/piano{
- icon_state = "piano"
- },
-/obj/machinery/light{
- light_color = "#7AC3FF"
- },
-/obj/machinery/camera/autoname{
- c_tag = "Captain's Quarters";
- dir = 1
- },
-/turf/open/floor/glass/reinforced,
-/area/crew_quarters/cafeteria)
"rfW" = (
/obj/machinery/portable_atmospherics/canister/plasma,
/obj/effect/turf_decal/delivery,
@@ -55002,16 +54972,6 @@
/obj/item/kirbyplants/random,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"rha" = (
-/obj/machinery/newscaster{
- pixel_y = 34
- },
-/obj/machinery/camera/autoname{
- dir = 6;
- network = list("ss13","security","court")
- },
-/turf/open/floor/wood,
-/area/security/courtroom)
"rhh" = (
/obj/effect/turf_decal/siding/wood{
dir = 8
@@ -55045,6 +55005,19 @@
"rhw" = (
/turf/open/floor/iron/white,
/area/crew_quarters/kitchen)
+"rhz" = (
+/obj/structure/railing/corner,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"rhG" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -55128,6 +55101,24 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/bridge)
+"rjH" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/aft)
+"rjX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/turf/open/floor/iron/dark,
+/area/chapel/main)
"rjY" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -55218,6 +55209,29 @@
},
/turf/open/floor/iron/dark,
/area/storage/tech)
+"rlB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/guideline/guideline_half_edge/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/guideline/guideline_tri/_offset/purple{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/science/research)
"rlQ" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/northright{
@@ -55249,13 +55263,6 @@
"rlV" = (
/turf/open/floor/iron/dark,
/area/science/robotics/mechbay)
-"rmj" = (
-/obj/machinery/smartfridge/sci{
- initial_contents = list(/obj/item/stock_parts/capacitor = 2, /obj/item/stock_parts/manipulator = 2, /obj/item/stock_parts/micro_laser = 2, /obj/item/stock_parts/matter_bin = 2, /obj/item/stock_parts/scanning_module = 2);
- name = "Science vender"
- },
-/turf/closed/wall,
-/area/engine/storage)
"rmy" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -55380,41 +55387,6 @@
/obj/structure/girder/displaced,
/turf/open/space/basic,
/area/space/nearstation)
-"roe" = (
-/obj/machinery/button/door{
- id = "brigentrance";
- name = "Brig Lockdown Control";
- pixel_x = -23;
- pixel_y = 6;
- req_access_txt = "3"
- },
-/obj/item/radio/intercom{
- dir = 1;
- pixel_x = -37;
- pixel_y = 4
- },
-/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
- dir = 8
- },
-/obj/machinery/button/door{
- id = "Prisongate";
- name = "Prison Wing Lockdown";
- pixel_x = -23;
- pixel_y = -6;
- req_access_txt = "3"
- },
-/obj/machinery/photocopier,
-/obj/effect/turf_decal/bot,
-/obj/item/radio/intercom{
- desc = "Talk through this. It looks like it has been modified to not broadcast.";
- freerange = 1;
- name = "Prison intercom";
- pixel_x = -37;
- pixel_y = -10;
- prison_radio = 1
- },
-/turf/open/floor/iron/dark,
-/area/security/warden)
"rog" = (
/obj/effect/turf_decal/tile/red/anticorner/contrasted,
/obj/effect/landmark/start/depsec/medical,
@@ -55437,10 +55409,6 @@
/obj/item/stack/sheet/plasteel,
/turf/open/space/basic,
/area/space/nearstation)
-"ron" = (
-/obj/effect/spawner/structure/window,
-/turf/open/floor/iron,
-/area/hallway/primary/central)
"roB" = (
/obj/effect/turf_decal/tile/neutral/anticorner/contrasted,
/obj/machinery/iv_drip,
@@ -55466,6 +55434,21 @@
/obj/structure/flora/tree/jungle/small,
/turf/open/floor/grass,
/area/hallway/primary/central)
+"rpu" = (
+/obj/effect/turf_decal/guideline/guideline_out_arrow/brown{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/techmaint,
+/area/hallway/secondary/service)
"rpF" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow{
@@ -55480,20 +55463,6 @@
},
/turf/open/floor/carpet/royalblack,
/area/library)
-"rqc" = (
-/obj/structure/railing/corner{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron/dark/corner{
- dir = 8
- },
-/area/hallway/primary/central)
"rqd" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -55575,6 +55544,12 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/quartermaster/exploration_prep)
+"rrb" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/science/explab)
"rrj" = (
/obj/structure/cable{
icon_state = "2-8"
@@ -55711,6 +55686,15 @@
},
/turf/open/floor/plating,
/area/maintenance/department/medical/morgue)
+"rtZ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/quartermaster/exploration_prep)
"ruc" = (
/obj/structure/chair/fancy/bench/pew/right{
dir = 1
@@ -55732,6 +55716,25 @@
/obj/effect/turf_decal/box,
/turf/open/floor/iron/dark,
/area/quartermaster/miningdock)
+"ruu" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 8;
+ name = "Security"
+ },
+/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
+ alpha = 180;
+ color = "#DE3A3A"
+ },
+/turf/open/floor/iron,
+/area/security/brig)
"ruG" = (
/obj/effect/turf_decal/tile/purple/half/contrasted{
dir = 4
@@ -55877,6 +55880,19 @@
/obj/structure/railing,
/turf/open/space/basic,
/area/ai_monitored/turret_protected/ai)
+"rwO" = (
+/obj/effect/turf_decal/guideline/guideline_out/brown{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/techmaint,
+/area/maintenance/central)
"rwP" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8
@@ -55887,25 +55903,18 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/engine/atmospherics_engine)
-"rxl" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/closet/crate/trashcart,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal)
-"rxt" = (
+"rwU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
- dir = 2
+ dir = 1
},
-/turf/open/floor/iron/white,
-/area/science/research)
+/obj/effect/landmark/xeno_spawn,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/starboard/aft)
"rxw" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/structure/table/reinforced,
@@ -55999,6 +56008,16 @@
dir = 8
},
/area/science/research)
+"ryv" = (
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/solar{
+ id = "portsolar";
+ name = "Port Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/port/fore)
"ryP" = (
/obj/item/cardboard_cutout/adaptive/chess/black/bishop,
/obj/effect/turf_decal/stripes/line{
@@ -56019,37 +56038,16 @@
},
/turf/open/floor/iron/dark,
/area/security/courtroom)
-"rzm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
+"rzo" = (
/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/aft)
-"rzr" = (
-/obj/effect/turf_decal/tile/yellow/half/contrasted{
- alpha = 180
+ icon_state = "2-8"
},
-/obj/effect/turf_decal/bot,
-/obj/machinery/light{
+/obj/machinery/portable_atmospherics/canister/plasma,
+/obj/machinery/atmospherics/components/unary/portables_connector{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/machinery/airalarm/directional/east,
-/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor/iron,
-/area/engine/storage)
+/turf/open/floor/iron/dark,
+/area/quartermaster/exploration_prep)
"rzL" = (
/obj/structure/table/glass,
/obj/effect/turf_decal/stripes/line{
@@ -56079,6 +56077,19 @@
},
/turf/open/floor/plating,
/area/maintenance/department/bridge)
+"rzS" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"rAf" = (
/obj/effect/turf_decal/bot,
/obj/structure/cable/yellow{
@@ -56117,6 +56128,29 @@
},
/turf/open/floor/wood,
/area/security/detectives_office)
+"rAx" = (
+/obj/effect/landmark/start/assistant,
+/obj/effect/turf_decal/siding/white{
+ dir = 5
+ },
+/turf/open/floor/glass/reinforced,
+/area/hallway/primary/central{
+ dynamic_lighting = 2;
+ lighting_brightness_tube = 11;
+ lighting_colour_bulb = "#DDE6FF";
+ lighting_colour_night = "#DDE6FF";
+ lighting_colour_tube = "#DDE6FF";
+ lighting_overlay_colour = "#DDE6FF";
+ power_light = 0
+ })
+"rAD" = (
+/obj/machinery/mineral/stacking_machine{
+ dir = 4;
+ input_dir = 1;
+ output_dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal)
"rAL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -56164,19 +56198,6 @@
},
/turf/open/floor/wood,
/area/security/detectives_office)
-"rBe" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/aft)
"rBm" = (
/obj/structure/table/wood,
/obj/item/folder/blue{
@@ -56249,6 +56270,15 @@
/obj/structure/table/wood/fancy,
/turf/open/floor/carpet/grimy,
/area/chapel/office)
+"rBU" = (
+/obj/item/chair/wood{
+ pixel_x = -26;
+ pixel_y = 9
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/mapping_helpers/tile_breaker,
+/turf/open/floor/wood,
+/area/library)
"rCn" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -56456,14 +56486,6 @@
name = "mainframe floor"
},
/area/tcommsat/server)
-"rEx" = (
-/obj/item/shovel/spade,
-/obj/item/storage/belt/botanical,
-/obj/structure/table/wood,
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/maintenance/central)
"rEC" = (
/obj/structure/chair/stool{
dir = 8
@@ -56482,6 +56504,20 @@
},
/turf/open/floor/iron,
/area/hallway/primary/starboard)
+"rES" = (
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
"rFa" = (
/obj/structure/disposalpipe/segment{
dir = 1
@@ -56500,43 +56536,6 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/crew_quarters/cafeteria)
-"rFf" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/turf/open/floor/iron/dark,
-/area/chapel/main)
-"rFi" = (
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/sorting/mail{
- dir = 8;
- name = "Security"
- },
-/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
- alpha = 180;
- color = "#DE3A3A"
- },
-/turf/open/floor/iron,
-/area/security/brig)
-"rFj" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4,
-/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"rFw" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
@@ -56551,6 +56550,14 @@
/obj/effect/spawner/structure/window/plasma/reinforced,
/turf/open/floor/plating,
/area/engine/storage)
+"rFR" = (
+/obj/structure/window/reinforced,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/palebush,
+/mob/living/simple_animal/butterfly,
+/turf/open/floor/grass/no_border,
+/area/hallway/secondary/exit/departure_lounge)
"rGd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
@@ -56574,31 +56581,15 @@
},
/turf/open/floor/iron/dark,
/area/security/brig/dock)
-"rGU" = (
+"rHa" = (
/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
-/obj/structure/disposalpipe/junction{
- dir = 8
- },
-/obj/effect/turf_decal/guideline/guideline_in/green{
- color = "#439C1E"
- },
-/obj/effect/turf_decal/tile/dark_green/half{
- dir = 8
+ icon_state = "1-2"
},
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
-"rHk" = (
-/obj/structure/window/reinforced{
+/obj/structure/disposalpipe/segment{
dir = 1
},
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/open/floor/grass/no_border,
-/area/hallway/secondary/exit/departure_lounge)
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"rHt" = (
/obj/item/chair/wood{
dir = 8
@@ -56755,12 +56746,6 @@
/obj/structure/closet/firecloset/full,
/turf/open/floor/plating,
/area/maintenance/department/security)
-"rKl" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/turf/open/floor/glass/reinforced,
-/area/crew_quarters/cafeteria)
"rKn" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/telecomms/receiver/preset_right{
@@ -56774,6 +56759,17 @@
},
/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
+"rKp" = (
+/obj/effect/turf_decal/guideline/guideline_edge/purple{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/science/research)
"rKv" = (
/obj/structure/bookcase/manuals/medical,
/turf/open/floor/carpet/blue,
@@ -56809,16 +56805,6 @@
},
/turf/open/floor/iron,
/area/engine/engine_room)
-"rLx" = (
-/obj/effect/decal/cleanable/glass,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/bridge)
"rLB" = (
/obj/machinery/disposal/bin,
/obj/effect/turf_decal/bot,
@@ -56861,17 +56847,6 @@
},
/turf/open/floor/carpet/blue,
/area/medical/exam_room)
-"rNe" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/machinery/camera/autoname{
- dir = 8;
- network = list("ss13","rd")
- },
-/turf/open/floor/engine,
-/area/science/explab)
"rNg" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -56973,6 +56948,15 @@
},
/turf/open/floor/iron/tech,
/area/engine/engine_room)
+"rPE" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/central)
"rPU" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -57246,15 +57230,6 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/lobby)
-"rUY" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/obj/structure/railing/corner{
- dir = 1
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"rVb" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 8
@@ -57274,6 +57249,19 @@
/obj/structure/sign/poster/official/cleanliness,
/turf/closed/wall,
/area/medical/storage)
+"rVg" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/blood/old,
+/obj/machinery/light{
+ bulb_colour = "#22bfa2";
+ bulb_vacuum_colour = "#22bfa2";
+ dir = 8;
+ nightshift_light_color = "#22bfa2"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"rVH" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 28
@@ -57300,6 +57288,21 @@
/obj/machinery/vending/wardrobe/det_wardrobe,
/turf/open/floor/wood,
/area/security/detectives_office)
+"rWI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/effect/turf_decal/guideline/guideline_in/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/tile/yellow/half,
+/obj/effect/turf_decal/tile/yellow/half,
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
"rWM" = (
/obj/effect/turf_decal/tile/red/anticorner/contrasted{
dir = 8
@@ -57330,6 +57333,12 @@
/obj/effect/turf_decal/stripes/closeup,
/turf/open/floor/iron,
/area/security/brig)
+"rXp" = (
+/obj/structure/window/reinforced,
+/obj/structure/closet/firecloset/full,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"rXr" = (
/obj/machinery/door/airlock/command/glass{
name = "Research Director";
@@ -57489,6 +57498,19 @@
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"rZa" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/grass/no_border,
+/area/medical/sleeper)
"rZt" = (
/obj/effect/spawner/lootdrop/maintenance/eight,
/obj/structure/rack,
@@ -57499,20 +57521,13 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/maintenance/port/aft)
-"rZQ" = (
-/obj/machinery/camera/autoname{
- dir = 4;
- network = list("ss13","medbay");
- view_range = 8
- },
-/obj/effect/turf_decal/guideline/guideline_edge/neutral{
- alpha = 255;
- dir = 8
- },
-/turf/open/floor/iron/white/side{
- dir = 8
+"rZG" = (
+/obj/machinery/smartfridge/sci{
+ initial_contents = list(/obj/item/stock_parts/capacitor = 2, /obj/item/stock_parts/manipulator = 2, /obj/item/stock_parts/micro_laser = 2, /obj/item/stock_parts/matter_bin = 2, /obj/item/stock_parts/scanning_module = 2);
+ name = "Science vender"
},
-/area/medical/medbay/central)
+/turf/closed/wall,
+/area/science/lab)
"saf" = (
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
@@ -57549,6 +57564,12 @@
},
/turf/open/floor/plating,
/area/maintenance/central)
+"saA" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/science/explab)
"saH" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -57557,6 +57578,26 @@
dir = 1
},
/area/science/mixing)
+"saP" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/bed/dogbed/walter,
+/obj/item/stack/sheet/bone{
+ pixel_x = 6;
+ pixel_y = -6
+ },
+/mob/living/simple_animal/pet/dog/bullterrier/walter{
+ density = 0
+ },
+/obj/machinery/status_display/evac{
+ pixel_y = 32
+ },
+/turf/open/floor/iron/dark,
+/area/security/warden)
"saT" = (
/obj/effect/turf_decal/tile/blue/half/contrasted{
dir = 1
@@ -57599,17 +57640,6 @@
},
/turf/open/floor/iron/dark,
/area/science/nanite)
-"sbI" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 6
- },
-/obj/machinery/door/window/brigdoor{
- dir = 4;
- name = "Pet Solitary Confinement";
- req_access_txt = "58"
- },
-/turf/open/floor/carpet/red,
-/area/crew_quarters/heads/hos)
"scb" = (
/turf/closed/wall/r_wall,
/area/storage/tech)
@@ -57786,6 +57816,31 @@
},
/turf/open/floor/plating,
/area/bridge)
+"sez" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/obj/effect/turf_decal/guideline/guideline_edge/red,
+/obj/machinery/camera/autoname{
+ dir = 1;
+ network = list("ss13","security")
+ },
+/obj/machinery/light_switch{
+ pixel_y = -25
+ },
+/turf/open/floor/iron,
+/area/security/brig)
+"seE" = (
+/obj/machinery/power/apc/auto_name/south{
+ pixel_y = -24
+ },
+/obj/structure/cable/yellow,
+/obj/item/reagent_containers/glass/bucket{
+ pixel_x = -2;
+ pixel_y = 10
+ },
+/turf/open/floor/iron/dark,
+/area/security/execution/education)
"seK" = (
/obj/structure/disposalpipe/segment{
dir = 9
@@ -57804,15 +57859,6 @@
dir = 9
},
/area/science/research)
-"seS" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron/dark/smooth_edge{
- dir = 8
- },
-/area/hallway/primary/central)
"seT" = (
/turf/closed/wall,
/area/lawoffice)
@@ -57882,11 +57928,6 @@
},
/turf/open/floor/engine/vacuum,
/area/engine/atmospherics_engine)
-"sfm" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/iron/dark,
-/area/science/robotics)
"sfq" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/external{
@@ -57928,25 +57969,6 @@
/obj/machinery/airalarm/directional/east,
/turf/open/floor/carpet/grimy,
/area/chapel/office)
-"sgd" = (
-/obj/effect/turf_decal/guideline/guideline_in/darkblue{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/tile/dark_blue/half{
- dir = 1
- },
-/obj/effect/turf_decal/tile/dark_blue/half{
- dir = 1
- },
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
"sgg" = (
/obj/structure/plasticflaps/opaque,
/obj/machinery/navbeacon{
@@ -58039,12 +58061,6 @@
},
/turf/open/floor/carpet/blue,
/area/bridge/meeting_room)
-"shJ" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/mechanical,
-/obj/machinery/light/very_dim/directional/west,
-/turf/open/floor/iron/dark,
-/area/security/execution/education)
"shO" = (
/obj/effect/turf_decal/tile/blue/half/contrasted{
dir = 1
@@ -58071,6 +58087,17 @@
"shZ" = (
/turf/closed/wall,
/area/maintenance/starboard/aft)
+"sij" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 8
+ },
+/area/hallway/primary/central)
"sip" = (
/obj/structure/table/glass,
/obj/effect/turf_decal/tile/blue/opposingcorners{
@@ -58130,6 +58157,18 @@
},
/turf/open/floor/iron/techmaint,
/area/science/xenobiology)
+"sjy" = (
+/obj/effect/turf_decal/guideline/guideline_in/purple{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple/half{
+ dir = 4
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
"sjI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -58145,18 +58184,12 @@
},
/turf/open/floor/plating,
/area/quartermaster/sorting)
-"sjT" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
+"sjV" = (
+/obj/machinery/power/apc/auto_name/north{
+ pixel_y = 24
},
-/turf/open/floor/catwalk_floor,
-/area/maintenance/central)
+/turf/closed/wall/r_wall,
+/area/security/prison/shielded)
"skr" = (
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/obj/effect/turf_decal/bot,
@@ -58205,15 +58238,6 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron/tech,
/area/engine/engine_room)
-"skT" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 9
- },
-/obj/structure/chair/fancy/bench/pew/right{
- dir = 4
- },
-/turf/open/floor/glass/reinforced,
-/area/chapel/main)
"skV" = (
/obj/effect/turf_decal/guideline/guideline_in/darkblue{
dir = 8
@@ -58307,6 +58331,19 @@
},
/turf/open/floor/iron/dark,
/area/storage/primary)
+"slA" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/guideline/guideline_edge/purple{
+ dir = 4
+ },
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/science/research)
"slG" = (
/obj/item/storage/toolbox/mechanical,
/obj/item/stack/cable_coil/cut,
@@ -58374,6 +58411,24 @@
"smT" = (
/turf/open/floor/grass,
/area/hallway/primary/central)
+"smX" = (
+/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"sng" = (
/obj/structure/disposalpipe/sorting/mail/flip{
dir = 4;
@@ -58470,34 +58525,18 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/storage)
+"spx" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/security/prison{
+ name = "Prison Processing"
+ })
"spz" = (
/obj/structure/flora/rock,
/turf/open/floor/grass,
/area/hallway/primary/central)
-"sqi" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_y = 1
- },
-/obj/effect/turf_decal/bot,
-/obj/machinery/vending/snack/blue,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
-"sqr" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/starboard/aft)
"sqI" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow{
@@ -58523,13 +58562,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"sri" = (
-/obj/effect/decal/cleanable/oil,
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/medical/morgue)
"srn" = (
/obj/machinery/firealarm/directional/west,
/obj/effect/turf_decal/tile/blue/half/contrasted{
@@ -58583,19 +58615,6 @@
/obj/machinery/power/port_gen,
/turf/open/floor/iron,
/area/maintenance/department/security)
-"ssm" = (
-/obj/effect/turf_decal/guideline/guideline_in/blue{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/blue/half{
- dir = 1
- },
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
"ssr" = (
/obj/effect/turf_decal/bot,
/obj/effect/turf_decal/tile/red/anticorner/contrasted{
@@ -58625,21 +58644,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"ssA" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"ssN" = (
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/wood{
@@ -58678,6 +58682,22 @@
/obj/structure/table/wood,
/turf/open/floor/carpet/red,
/area/crew_quarters/cafeteria)
+"sue" = (
+/obj/effect/turf_decal/guideline/guideline_edge/neutral{
+ alpha = 255;
+ dir = 8
+ },
+/obj/machinery/button/door{
+ id = "quarantineshutters";
+ layer = 4;
+ name = "Quarantine Lockdown";
+ pixel_x = -25;
+ req_access_txt = "39"
+ },
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/medical/medbay/central)
"sun" = (
/obj/machinery/disposal/bin,
/obj/effect/turf_decal/bot,
@@ -58708,6 +58728,14 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/dark,
/area/quartermaster/storage)
+"suU" = (
+/obj/structure/table/glass,
+/obj/item/storage/backpack/duffelbag/med/implant,
+/obj/item/storage/backpack/duffelbag/med/surgery{
+ pixel_y = 7
+ },
+/turf/open/floor/iron,
+/area/medical/surgery)
"svm" = (
/obj/effect/turf_decal/bot,
/obj/machinery/hydroponics/constructable,
@@ -58873,6 +58901,14 @@
},
/turf/open/floor/iron/white,
/area/medical/sleeper)
+"sxE" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"sxG" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -58896,18 +58932,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
-"sxK" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/obj/machinery/light_switch{
- pixel_y = -20
- },
-/turf/open/floor/iron/grid/steel,
-/area/science/xenobiology)
"sxO" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -58986,6 +59010,11 @@
},
/turf/open/floor/iron/dark,
/area/science/misc_lab/range)
+"szJ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
"szX" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 4
@@ -58999,26 +59028,6 @@
/obj/structure/tank_dispenser/oxygen,
/turf/open/floor/plating,
/area/ai_monitored/storage/satellite)
-"sAp" = (
-/obj/machinery/door/poddoor/preopen{
- id = "telelab";
- name = "test chamber blast door"
- },
-/obj/machinery/button/door{
- id = "telelab";
- name = "Test Chamber Blast Doors";
- pixel_x = -1;
- pixel_y = -32
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/iron,
-/area/science/explab)
"sAw" = (
/obj/item/food/grown/flower/harebell{
pixel_y = 3
@@ -59114,27 +59123,45 @@
},
/turf/open/floor/plating,
/area/library)
-"sCB" = (
-/obj/effect/turf_decal/guideline/guideline_out/brown{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/iron/techmaint,
-/area/maintenance/central)
"sCJ" = (
/mob/living/simple_animal/slime{
name = "sycamore"
},
/turf/open/floor/engine,
/area/science/xenobiology)
+"sCP" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/iron/grid/steel,
+/area/science/xenobiology)
+"sCY" = (
+/obj/structure/table/reinforced,
+/obj/item/paper/guides/recycler,
+/obj/machinery/button/massdriver{
+ id = "TrashDisp";
+ pixel_x = -29;
+ pixel_y = 8
+ },
+/obj/machinery/button/door{
+ id = "TrashDoor";
+ name = "Disposal Vent Control";
+ pixel_x = -39;
+ pixel_y = 7;
+ req_access_txt = "12"
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_x = -34;
+ pixel_y = -7
+ },
+/obj/machinery/light_switch{
+ pixel_x = -21;
+ pixel_y = 8
+ },
+/obj/item/toy/plush/lizard_plushie{
+ name = "Eats-The-Rubbish"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal)
"sDa" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 8
@@ -59142,19 +59169,6 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/construction/mining/aux_base)
-"sDk" = (
-/obj/structure/railing{
- dir = 5
- },
-/obj/machinery/light/floor{
- brightness = 15;
- bulb_colour = "#FFE4CE";
- bulb_vacuum_brightness = 15;
- nightshift_brightness = 10;
- nightshift_light_color = "#E6EBFF"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"sDs" = (
/obj/structure/chair/stool/bar{
dir = 8
@@ -59174,17 +59188,6 @@
},
/turf/open/floor/circuit,
/area/ai_monitored/storage/satellite)
-"sDu" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/security)
"sDE" = (
/obj/structure/chair/fancy/plastic,
/obj/structure/lattice/catwalk,
@@ -59312,6 +59315,15 @@
},
/turf/open/floor/plating/airless,
/area/science/test_area)
+"sFq" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/glass/reinforced,
+/area/crew_quarters/cafeteria)
"sFt" = (
/obj/item/toy/plush/flushed,
/obj/structure/closet/firecloset,
@@ -59337,36 +59349,6 @@
},
/turf/open/floor/iron/dark,
/area/storage/primary)
-"sGb" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/structure/table,
-/obj/item/storage/box/evidence{
- pixel_x = -4;
- pixel_y = 8
- },
-/obj/item/storage/box/bodybags{
- pixel_x = 4;
- pixel_y = 2
- },
-/obj/effect/turf_decal/guideline/guideline_edge_alt/red{
- dir = 4
- },
-/obj/effect/turf_decal/guideline/guideline_half_edge/red{
- dir = 8
- },
-/obj/effect/turf_decal/guideline/guideline_half_edge/red{
- dir = 6
- },
-/obj/effect/turf_decal/guideline/guideline_tri/red{
- dir = 1
- },
-/obj/structure/sign/poster/random{
- pixel_y = -32
- },
-/turf/open/floor/iron,
-/area/security/brig)
"sGj" = (
/obj/effect/turf_decal/tile/neutral/half{
dir = 4
@@ -59407,18 +59389,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"sGI" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/firealarm/directional/west,
-/obj/effect/turf_decal/guideline/guideline_edge/purple{
- dir = 8
- },
-/turf/open/floor/iron/white/side{
- dir = 8
- },
-/area/science/lobby)
"sGJ" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 4
@@ -59489,19 +59459,6 @@
/obj/machinery/atmospherics/pipe/layer_manifold/visible,
/turf/open/floor/plating,
/area/engine/atmos)
-"sIo" = (
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/guideline/guideline_edge/purple{
- dir = 8
- },
-/turf/open/floor/iron/white/side{
- dir = 8
- },
-/area/science/research)
"sIt" = (
/obj/structure/safe,
/obj/item/folder/documents,
@@ -59577,6 +59534,17 @@
},
/turf/open/floor/carpet/grimy,
/area/maintenance/port/aft)
+"sJf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/starboard/aft)
"sJq" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 1
@@ -59666,6 +59634,20 @@
},
/turf/open/floor/plating,
/area/space/nearstation)
+"sKy" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/chair/stool{
+ dir = 8
+ },
+/obj/effect/landmark/start/assistant,
+/obj/machinery/light_switch{
+ pixel_x = 23;
+ pixel_y = -25
+ },
+/turf/open/floor/glass/reinforced,
+/area/crew_quarters/cafeteria)
"sKG" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
@@ -59784,6 +59766,29 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/science/misc_lab)
+"sMa" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 4
+ },
+/obj/structure/chair/fancy/bench/pew/right{
+ dir = 8
+ },
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/glass/reinforced,
+/area/chapel/main)
+"sMe" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_y = 1
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/vending/snack/blue,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"sMw" = (
/obj/structure/table/wood,
/obj/item/kirbyplants/random{
@@ -59882,6 +59887,10 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"sNx" = (
+/obj/machinery/light,
+/turf/open/floor/engine,
+/area/science/explab)
"sNB" = (
/obj/item/kirbyplants/random{
pixel_x = -3;
@@ -60035,6 +60044,16 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/engine/atmos)
+"sQn" = (
+/obj/structure/railing/corner,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/dark/corner,
+/area/hallway/primary/central)
"sQy" = (
/obj/docking_port/stationary/random{
dir = 8;
@@ -60089,6 +60108,22 @@
/obj/machinery/firealarm/directional/west,
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"sRj" = (
+/obj/structure/table/glass,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ pixel_y = -25
+ },
+/obj/item/reagent_containers/syringe{
+ name = "steel point";
+ pixel_x = 5;
+ pixel_y = 12
+ },
+/obj/item/stack/medical/gauze,
+/turf/open/floor/iron,
+/area/security/brig/medbay)
"sRq" = (
/obj/machinery/vending/snack/blue,
/obj/effect/turf_decal/bot,
@@ -60111,32 +60146,6 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/escape)
-"sRu" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/turf/open/floor/glass/reinforced,
-/area/crew_quarters/cafeteria)
-"sRy" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light_switch{
- pixel_x = -8;
- pixel_y = -21
- },
-/obj/item/storage/lockbox/loyalty,
-/obj/machinery/door/window/brigdoor/westleft{
- name = "mind shields";
- req_access_txt = "3"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/item/clothing/suit/armor/laserproof,
-/turf/open/floor/iron,
-/area/ai_monitored/security/armory)
"sSb" = (
/obj/effect/turf_decal/siding/wideplating/dark{
dir = 1
@@ -60214,22 +60223,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"sSN" = (
-/obj/structure/table/glass,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/item/radio/intercom{
- pixel_y = -25
- },
-/obj/item/reagent_containers/syringe{
- name = "steel point";
- pixel_x = 5;
- pixel_y = 12
- },
-/obj/item/stack/medical/gauze,
-/turf/open/floor/iron,
-/area/security/brig/medbay)
"sSU" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance/two,
@@ -60274,20 +60267,15 @@
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
/area/engine/storage)
-"sTT" = (
-/obj/structure/window/reinforced{
- dir = 4;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+"sUd" = (
+/obj/effect/turf_decal/guideline/guideline_edge/neutral{
+ alpha = 255;
+ dir = 8
},
-/obj/structure/disposalpipe/segment{
- dir = 10
+/turf/open/floor/iron/white/side{
+ dir = 4
},
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
+/area/medical/medbay/central)
"sUi" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -60342,26 +60330,6 @@
dir = 4
},
/area/hallway/secondary/exit/departure_lounge)
-"sVm" = (
-/obj/effect/turf_decal/tile/purple/half/contrasted{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/guideline/guideline_half_in/purple,
-/obj/effect/turf_decal/guideline/guideline_edge_alt/_offset/purple,
-/obj/effect/turf_decal/guideline/guideline_tri/_offset/purple{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"sVu" = (
/obj/machinery/airalarm/directional/north,
/turf/open/floor/plating,
@@ -60439,6 +60407,22 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
+"sXf" = (
+/obj/effect/turf_decal/guideline/guideline_in/blue{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue/half{
+ dir = 1
+ },
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
"sXl" = (
/obj/effect/turf_decal/tile/purple{
dir = 4
@@ -60494,6 +60478,16 @@
/obj/structure/table/wood/fancy/purple,
/turf/open/floor/iron/dark,
/area/chapel/main)
+"sXT" = (
+/obj/structure/grille/broken,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/bridge)
"sXU" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/door/window/eastleft{
@@ -60572,15 +60566,6 @@
/obj/effect/landmark/carpspawn,
/turf/open/space/basic,
/area/solar/port/fore)
-"sZe" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2,
-/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"sZq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/effect/spawner/structure/window,
@@ -60706,17 +60691,6 @@
},
/turf/open/floor/iron,
/area/science/robotics)
-"taM" = (
-/obj/effect/turf_decal/guideline/guideline_edge/blue{
- dir = 8
- },
-/obj/machinery/light_switch{
- pixel_x = -20
- },
-/turf/open/floor/iron/white/side{
- dir = 8
- },
-/area/medical/sleeper)
"taQ" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow{
@@ -60731,18 +60705,6 @@
},
/turf/open/floor/plating,
/area/crew_quarters/heads/captain)
-"taR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"taY" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -60758,18 +60720,6 @@
/obj/structure/sign/departments/minsky/research/research,
/turf/closed/wall,
/area/science/robotics)
-"tbn" = (
-/obj/effect/turf_decal/guideline/guideline_in/purple{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple/half{
- dir = 4
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
"tbo" = (
/obj/effect/turf_decal/box/white,
/turf/open/floor/iron/white,
@@ -60824,16 +60774,6 @@
/obj/effect/landmark/carpspawn,
/turf/open/space/basic,
/area/space)
-"tcg" = (
-/obj/effect/landmark/start/chaplain,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/chapel/office)
"tcn" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/obj/structure/sign/warning/electricshock{
@@ -60846,32 +60786,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/atmospherics_engine)
-"tcy" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 4
- },
-/obj/machinery/newscaster{
- pixel_x = 25
- },
-/obj/machinery/light_switch{
- pixel_x = 25;
- pixel_y = 40
- },
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp/green{
- pixel_x = -6;
- pixel_y = 14
- },
-/obj/item/camera/detective{
- pixel_x = 3;
- pixel_y = 7
- },
-/obj/item/taperecorder{
- pixel_x = 6;
- pixel_y = 5
- },
-/turf/open/floor/carpet/red,
-/area/security/detectives_office)
"tda" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/disposalpipe/segment{
@@ -60911,17 +60825,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/cafeteria)
-"tdl" = (
-/obj/structure/disposalpipe/junction{
- dir = 1
- },
-/obj/effect/turf_decal/guideline/guideline_edge/purple{
- dir = 4
- },
-/turf/open/floor/iron/white/side{
- dir = 4
- },
-/area/science/lobby)
"tdm" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/tile/neutral/half/contrasted,
@@ -60939,19 +60842,6 @@
/area/security/brig{
name = "Brig Interrogation"
})
-"tdt" = (
-/obj/effect/turf_decal/bot,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/orange/hidden{
- dir = 4
- },
-/obj/structure/closet/secure_closet/atmospherics{
- anchored = 1
- },
-/turf/open/floor/iron/dark,
-/area/engine/atmos)
"tdF" = (
/obj/machinery/atmospherics/pipe/simple/dark/visible{
dir = 4
@@ -60995,6 +60885,18 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/hallway/primary/aft)
+"teu" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/firealarm/directional/west,
+/obj/effect/turf_decal/guideline/guideline_edge/purple{
+ dir = 8
+ },
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/science/lobby)
"teB" = (
/obj/effect/turf_decal/tile/blue{
dir = 1
@@ -61080,6 +60982,17 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
+"tfT" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/structure/chair/fancy/plastic,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/mapping_helpers/tile_breaker,
+/turf/open/floor/wood,
+/area/library)
"tfV" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
@@ -61094,6 +61007,18 @@
"tfZ" = (
/turf/open/floor/plating,
/area/maintenance/solars/starboard/fore)
+"tgx" = (
+/obj/structure/table/reinforced,
+/obj/machinery/reagentgrinder{
+ pixel_y = 5
+ },
+/obj/machinery/firealarm/directional/north,
+/obj/item/toy/plush/slimeplushie/pink{
+ pixel_x = -12;
+ pixel_y = 7
+ },
+/turf/open/floor/iron/grid/steel,
+/area/science/xenobiology)
"tgE" = (
/obj/machinery/firealarm/directional/west,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -61143,6 +61068,23 @@
},
/turf/open/floor/iron/dark,
/area/engine/engine_room)
+"thr" = (
+/obj/effect/turf_decal/guideline/guideline_in/purple{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/effect/turf_decal/tile/purple/half{
+ dir = 4
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
"thE" = (
/obj/effect/turf_decal/tile/dark_blue{
alpha = 180
@@ -61244,19 +61186,13 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/plating,
/area/hallway/secondary/entry)
-"tjl" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -33;
- pixel_y = 1
- },
-/obj/effect/turf_decal/guideline/guideline_edge/blue{
- dir = 8
- },
-/turf/open/floor/iron/white/side{
- dir = 8
+"tjh" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
},
-/area/medical/sleeper)
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/turf/open/floor/iron,
+/area/quartermaster/exploration_prep)
"tjz" = (
/obj/effect/turf_decal/tile/yellow/half/contrasted{
alpha = 180;
@@ -61321,17 +61257,6 @@
},
/turf/open/floor/iron,
/area/engine/engine_room)
-"tkl" = (
-/obj/machinery/telecomms/bus/preset_exploration,
-/obj/machinery/atmospherics/pipe/heat_exchanging/junction{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8;
- layer = 3
- },
-/turf/open/floor/circuit/green/telecomms/mainframe,
-/area/quartermaster/exploration_prep)
"tkM" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted{
alpha = 200;
@@ -61511,19 +61436,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/storage)
-"tmx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/railing/corner{
- dir = 4
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"tmA" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -61598,6 +61510,17 @@
},
/turf/open/floor/iron,
/area/crew_quarters/cafeteria)
+"tni" = (
+/obj/structure/railing/corner,
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"tnj" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted{
alpha = 200;
@@ -61622,17 +61545,6 @@
},
/turf/open/floor/carpet/purple,
/area/crew_quarters/heads/hor)
-"tnA" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/item/radio/intercom{
- pixel_x = -30;
- pixel_y = -4
- },
-/obj/structure/table/glass,
-/turf/open/floor/iron/dark,
-/area/security/brig/medbay)
"tnB" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
@@ -61680,17 +61592,6 @@
},
/turf/open/floor/iron/dark,
/area/medical/chemistry)
-"tnQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/obj/structure/railing/corner{
- dir = 1
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"tom" = (
/obj/effect/turf_decal/tile/black/fourcorners,
/obj/effect/turf_decal/stripes/line{
@@ -61713,6 +61614,19 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating,
/area/maintenance/department/medical/morgue)
+"toN" = (
+/obj/effect/landmark/xeno_spawn,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/chapel/office)
"toW" = (
/obj/structure/noticeboard{
name = "Public bulletin board"
@@ -61882,6 +61796,24 @@
},
/turf/open/floor/iron,
/area/ai_monitored/security/armory)
+"tqL" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ alpha = 180
+ },
+/obj/structure/closet/secure_closet/engineering_personal,
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
+ },
+/obj/item/storage/fancy/candle_box{
+ name = "Ignis' candle pack";
+ pixel_x = -2;
+ pixel_y = 8
+ },
+/turf/open/floor/iron,
+/area/engine/storage)
"tqM" = (
/obj/machinery/light{
dir = 4
@@ -61946,6 +61878,16 @@
/obj/effect/turf_decal/guideline/guideline_edge/blue,
/turf/open/floor/iron/white,
/area/medical/medbay/lobby)
+"trn" = (
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/solar{
+ id = "portsolar";
+ name = "Port Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/solar/port/aft)
"trr" = (
/obj/structure/curtain/bounty,
/obj/structure/cable/yellow{
@@ -61960,14 +61902,6 @@
/obj/effect/turf_decal/stripes/closeup,
/turf/open/floor/iron/dark,
/area/security/execution/education)
-"trt" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 8
- },
-/turf/open/floor/iron/dark/smooth_edge{
- dir = 4
- },
-/area/hallway/primary/central)
"trw" = (
/obj/machinery/space_heater,
/turf/open/floor/plating,
@@ -62001,6 +61935,13 @@
},
/turf/open/floor/iron/white,
/area/science/xenobiology)
+"trX" = (
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_y = -34
+ },
+/turf/open/floor/glass/reinforced,
+/area/chapel/main)
"tsf" = (
/obj/structure/dresser,
/obj/item/camera{
@@ -62067,29 +62008,9 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/sorting)
-"tto" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/security)
"ttt" = (
/turf/closed/wall,
/area/quartermaster/qm)
-"ttC" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/medical/morgue)
"ttK" = (
/obj/effect/turf_decal/guideline/guideline_in/darkblue{
dir = 8
@@ -62113,6 +62034,12 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"tuq" = (
+/obj/machinery/firealarm/directional/east,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/science/xenobiology)
"tuD" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -62273,12 +62200,39 @@
},
/turf/open/floor/plating,
/area/bridge/meeting_room)
+"twN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/aft)
"twS" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/reagent_dispensers/watertank,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron/dark,
/area/engine/atmospherics_engine)
+"twT" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"txg" = (
/obj/machinery/door/airlock/maintenance_hatch{
id_tag = "commissarydoor";
@@ -62291,24 +62245,22 @@
/obj/structure/lattice/catwalk/over,
/turf/open/floor/plating,
/area/quartermaster/qm)
+"txn" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/turf/open/floor/iron/dark,
+/area/security/brig/dock{
+ name = "Security E.V.A. Storage"
+ })
"txq" = (
/obj/structure/sign/departments/medbay/alt2,
/turf/closed/wall,
/area/medical/break_room)
-"txF" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/turf_decal/guideline/guideline_edge/purple{
- dir = 8
- },
-/obj/machinery/light_switch{
- pixel_x = -24
- },
-/turf/open/floor/iron/white/side{
- dir = 8
- },
-/area/science/lobby)
"txG" = (
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
@@ -62465,6 +62417,20 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/office)
+"tzk" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -32
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/turf_decal/guideline/guideline_edge/blue{
+ dir = 8
+ },
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/medical/sleeper)
"tzp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -62478,16 +62444,6 @@
/obj/effect/landmark/start/atmospheric_technician,
/turf/open/floor/iron,
/area/engine/atmos)
-"tzv" = (
-/obj/item/trash/can{
- pixel_x = -10;
- pixel_y = 11
- },
-/obj/effect/landmark/blobstart,
-/turf/open/floor/plating{
- broken = 1
- },
-/area/maintenance/department/engine)
"tzD" = (
/obj/machinery/atmospherics/components/unary/cryo_cell{
dir = 4;
@@ -62514,16 +62470,6 @@
},
/turf/open/floor/plating,
/area/library)
-"tAd" = (
-/obj/machinery/atmospherics/components/binary/pump/on{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"tAg" = (
/obj/effect/turf_decal/tile/yellow/half/contrasted{
alpha = 180;
@@ -62582,23 +62528,6 @@
/obj/structure/sign/warning/fire,
/turf/closed/wall/r_wall/rust,
/area/science/mixing)
-"tAF" = (
-/obj/effect/turf_decal/tile/neutral/half/contrasted,
-/obj/effect/turf_decal/bot,
-/obj/machinery/computer/security{
- dir = 8;
- network = list("security")
- },
-/turf/open/floor/iron/dark,
-/area/security/main{
- name = "Security Locker Room"
- })
-"tAG" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/aft)
"tBa" = (
/obj/structure/sign/warning/nosmoking/circle,
/turf/closed/wall/r_wall,
@@ -62631,6 +62560,27 @@
},
/turf/open/floor/iron/white,
/area/science/lobby)
+"tBo" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/thinplating/light{
+ dir = 8
+ },
+/obj/machinery/light/floor{
+ brightness = 15;
+ bulb_colour = "#FFE4CE";
+ bulb_vacuum_brightness = 15;
+ nightshift_brightness = 10;
+ nightshift_light_color = "#E6EBFF"
+ },
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 4
+ },
+/area/hallway/primary/central)
"tBu" = (
/obj/effect/landmark/start/botanist,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
@@ -62638,6 +62588,10 @@
},
/turf/open/floor/iron/grid/steel,
/area/hydroponics)
+"tBw" = (
+/obj/effect/mapping_helpers/tile_breaker,
+/turf/open/floor/carpet,
+/area/library)
"tBy" = (
/obj/effect/turf_decal/tile/dark_green/half/contrasted,
/turf/open/floor/iron,
@@ -62662,6 +62616,23 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
+"tBL" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light_switch{
+ pixel_x = -8;
+ pixel_y = -21
+ },
+/obj/item/storage/lockbox/loyalty,
+/obj/machinery/door/window/brigdoor/westleft{
+ name = "mind shields";
+ req_access_txt = "3"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/item/clothing/suit/armor/laserproof,
+/turf/open/floor/iron,
+/area/ai_monitored/security/armory)
"tBN" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -62844,6 +62815,29 @@
},
/turf/open/floor/iron,
/area/engine/engine_room)
+"tEm" = (
+/obj/effect/turf_decal/guideline/guideline_in/darkblue{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 1;
+ name = "Janie";
+ sortType = 22
+ },
+/obj/effect/turf_decal/tile/dark_blue/half{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/dark_blue/half{
+ dir = 1
+ },
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
"tEo" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 8
@@ -62917,15 +62911,6 @@
dir = 1
},
/area/science/shuttledock)
-"tFp" = (
-/obj/item/kirbyplants/random,
-/obj/effect/turf_decal/guideline/guideline_edge/purple{
- dir = 4
- },
-/turf/open/floor/iron/white/side{
- dir = 4
- },
-/area/science/lobby)
"tFr" = (
/obj/structure/table/reinforced,
/obj/effect/spawner/lootdrop/aimodule_harmless,
@@ -62936,14 +62921,6 @@
},
/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/ai_upload)
-"tFu" = (
-/obj/effect/turf_decal/guideline/guideline_edge/blue{
- dir = 4
- },
-/turf/open/floor/iron/white/side{
- dir = 4
- },
-/area/medical/sleeper)
"tFD" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -62971,18 +62948,6 @@
/obj/machinery/vending/wardrobe/viro_wardrobe,
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
-"tFW" = (
-/obj/structure/railing{
- dir = 10;
- layer = 3.1
- },
-/obj/effect/spawner/randomvend/cola,
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 10
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"tGe" = (
/obj/structure/table/glass,
/obj/item/stack/ducts/fifty,
@@ -63085,19 +63050,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/engine/atmos)
-"tIj" = (
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/brflowers,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/grass/no_border,
-/area/medical/sleeper)
"tIG" = (
/obj/machinery/chem_heater{
pixel_y = 1
@@ -63120,25 +63072,6 @@
},
/turf/open/floor/wood,
/area/library)
-"tIK" = (
-/obj/machinery/light/floor{
- brightness = 15;
- bulb_colour = "#FFE4CE";
- bulb_vacuum_brightness = 15;
- nightshift_brightness = 10;
- nightshift_light_color = "#E6EBFF"
- },
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 4
- },
-/obj/structure/railing/corner{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron/dark/smooth_edge{
- dir = 8
- },
-/area/hallway/primary/central)
"tIQ" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
@@ -63169,6 +63102,9 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"tJf" = (
+/turf/open/floor/catwalk_floor,
+/area/maintenance/central)
"tJh" = (
/obj/machinery/photocopier,
/obj/effect/turf_decal/bot,
@@ -63180,16 +63116,6 @@
},
/turf/open/floor/wood,
/area/chapel/office)
-"tJq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/railing/corner{
- dir = 4
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"tJr" = (
/obj/effect/turf_decal/guideline/guideline_edge/blue{
dir = 8
@@ -63254,6 +63180,15 @@
"tKm" = (
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/captain/private)
+"tKq" = (
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal)
"tKB" = (
/obj/machinery/door/airlock/highsecurity{
name = "Emergency Access";
@@ -63277,12 +63212,6 @@
/obj/item/kirbyplants/random,
/turf/open/floor/iron/dark,
/area/security/brig/dock)
-"tLa" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/medical/morgue)
"tLg" = (
/obj/effect/turf_decal/delivery,
/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
@@ -63293,10 +63222,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
-"tLt" = (
-/obj/effect/decal/cleanable/xenoblood,
-/turf/open/floor/plating,
-/area/maintenance/department/engine)
"tLv" = (
/obj/machinery/hydroponics/soil,
/turf/open/floor/grass,
@@ -63313,15 +63238,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"tLG" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"tMf" = (
/obj/structure/disposalpipe/segment{
dir = 10
@@ -63432,28 +63348,6 @@
},
/turf/open/floor/iron/white,
/area/medical/apothecary)
-"tNA" = (
-/obj/effect/landmark/start/assistant,
-/obj/effect/turf_decal/siding/white{
- dir = 8
- },
-/turf/open/floor/glass/reinforced,
-/area/hallway/primary/central{
- dynamic_lighting = 2;
- lighting_brightness_tube = 11;
- lighting_colour_bulb = "#DDE6FF";
- lighting_colour_night = "#DDE6FF";
- lighting_colour_tube = "#DDE6FF";
- lighting_overlay_colour = "#DDE6FF";
- power_light = 0
- })
-"tNR" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/landmark/blobstart,
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
"tNU" = (
/obj/machinery/ai_slipper{
uses = 10
@@ -63572,13 +63466,6 @@
},
/turf/open/floor/engine,
/area/science/xenobiology)
-"tQm" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/landmark/xeno_spawn,
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
"tQo" = (
/obj/effect/turf_decal/caution/stand_clear,
/obj/effect/turf_decal/bot,
@@ -63712,6 +63599,15 @@
/obj/structure/rack,
/turf/open/floor/plating,
/area/maintenance/department/bridge)
+"tRS" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"tRX" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light_switch{
@@ -63771,6 +63667,18 @@
},
/turf/open/space/basic,
/area/solar/port/fore)
+"tSH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/effect/landmark/blobstart,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/starboard/aft)
"tSP" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow{
@@ -63778,12 +63686,6 @@
},
/turf/open/floor/plating,
/area/security/checkpoint/medical)
-"tSS" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 1
- },
-/turf/open/floor/glass/reinforced,
-/area/chapel/main)
"tSV" = (
/obj/effect/turf_decal/tile/yellow{
dir = 4
@@ -63885,6 +63787,22 @@
},
/turf/open/floor/iron/white,
/area/science/robotics)
+"tVp" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/turf_decal/bot,
+/obj/structure/table/reinforced,
+/obj/item/mmi{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/item/mmi{
+ pixel_y = 11
+ },
+/obj/item/storage/box/bodybags,
+/turf/open/floor/iron/white,
+/area/science/robotics)
"tVL" = (
/obj/effect/turf_decal/tile/dark_red/half/contrasted{
alpha = 180;
@@ -63908,6 +63826,20 @@
},
/turf/open/floor/iron/white,
/area/crew_quarters/heads/cmo)
+"tWC" = (
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
"tWD" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -63928,6 +63860,17 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
+"tWQ" = (
+/obj/effect/turf_decal/guideline/guideline_tri/blue{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/medical/sleeper)
"tWS" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
dir = 1
@@ -63966,13 +63909,6 @@
},
/turf/open/floor/wood,
/area/library)
-"tXK" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Maintenance Hatch";
- req_one_access_txt = "12;6"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/department/medical/morgue)
"tYb" = (
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
@@ -63982,22 +63918,17 @@
/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/quartermaster/office)
-"tYh" = (
-/obj/effect/turf_decal/delivery,
-/obj/item/radio/intercom{
- dir = 1;
- pixel_x = 25
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
+"tYk" = (
+/obj/structure/railing/corner,
+/obj/structure/disposalpipe/segment{
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
+/obj/effect/turf_decal/siding/wideplating/dark/corner,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
},
-/turf/open/floor/iron/dark,
-/area/security/brig/dock{
- name = "Security E.V.A. Storage"
- })
+/turf/open/floor/iron/dark/corner,
+/area/hallway/primary/central)
"tYn" = (
/obj/structure/disposalpipe/segment{
dir = 8
@@ -64033,22 +63964,6 @@
},
/turf/open/floor/iron/white,
/area/medical/cryo)
-"tYv" = (
-/obj/structure/window/reinforced,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/ppflowers,
-/mob/living/simple_animal/mouse/brown{
- desc = "This one doesn't squeal";
- name = "Tony";
- pixel_x = 7;
- pixel_y = 12
- },
-/obj/machinery/holopad{
- pixel_x = 16;
- pixel_y = 17
- },
-/turf/open/floor/grass/no_border,
-/area/hallway/secondary/exit/departure_lounge)
"tYL" = (
/obj/structure/closet,
/obj/item/clothing/under/color/random,
@@ -64103,12 +64018,6 @@
dir = 1
},
/area/science/research)
-"tZc" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"tZf" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 8
@@ -64301,20 +64210,21 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/dark,
/area/engine/atmos)
+"ucC" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal/bin,
+/turf/open/floor/iron/techmaint,
+/area/science/xenobiology)
"ucR" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/machinery/meter,
/turf/closed/wall/r_wall,
/area/engine/supermatter)
-"ucY" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/science/explab)
"udb" = (
/obj/machinery/telecomms/server/presets/supply,
/obj/effect/turf_decal/stripes/line{
@@ -64368,6 +64278,17 @@
/obj/item/stack/cable_coil/cyan,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat_interior)
+"udI" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ pixel_y = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"udW" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
@@ -64441,22 +64362,6 @@
},
/turf/open/floor/iron/dark,
/area/medical/morgue)
-"ufk" = (
-/obj/machinery/computer/security{
- pixel_y = -3
- },
-/obj/machinery/camera/autoname{
- network = list("ss13","security")
- },
-/obj/machinery/computer/security/telescreen{
- network = list("ss13");
- pixel_y = 25
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/turf/open/floor/carpet/red,
-/area/security/detectives_office)
"ufl" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -64579,6 +64484,21 @@
/obj/effect/landmark/start/chaplain,
/turf/open/floor/iron/dark,
/area/chapel/main)
+"ugp" = (
+/obj/effect/turf_decal/guideline/guideline_edge/blue{
+ dir = 8
+ },
+/obj/machinery/requests_console{
+ department = "Medbay";
+ departmentType = 1;
+ name = "Medbay RC";
+ pixel_x = -32;
+ pixel_y = -2
+ },
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/medical/sleeper)
"ugA" = (
/obj/effect/landmark/start/security_officer,
/obj/structure/toilet{
@@ -64656,22 +64576,6 @@
/obj/effect/turf_decal/tile/blue/anticorner/contrasted,
/turf/open/floor/iron,
/area/maintenance/department/medical)
-"uif" = (
-/obj/effect/turf_decal/guideline/guideline_in/red{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/effect/turf_decal/tile/dark_red/half{
- color = "#DE3A3A"
- },
-/obj/effect/turf_decal/tile/dark_red/half{
- color = "#DE3A3A"
- },
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
"uig" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
@@ -64761,6 +64665,14 @@
dir = 4
},
/area/hallway/primary/fore)
+"ujr" = (
+/obj/effect/turf_decal/guideline/guideline_edge/blue{
+ dir = 4
+ },
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/medical/sleeper)
"ujy" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -64872,16 +64784,6 @@
},
/turf/open/floor/iron/tech,
/area/engine/engine_room)
-"ukY" = (
-/obj/structure/window/reinforced{
- dir = 4;
- layer = 2.9
- },
-/obj/structure/closet/emcloset,
-/obj/effect/turf_decal/bot,
-/obj/structure/window/reinforced,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"ulg" = (
/obj/structure/lattice/catwalk,
/obj/structure/marker_beacon,
@@ -64934,20 +64836,6 @@
},
/turf/open/floor/iron,
/area/engine/engineering)
-"ulC" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/chair/stool{
- dir = 8
- },
-/obj/effect/landmark/start/assistant,
-/obj/machinery/light_switch{
- pixel_x = 23;
- pixel_y = -25
- },
-/turf/open/floor/glass/reinforced,
-/area/crew_quarters/cafeteria)
"ulH" = (
/obj/structure/sign/warning/vacuum,
/turf/closed/wall,
@@ -64984,16 +64872,6 @@
/obj/structure/curtain/directional,
/turf/open/floor/plating,
/area/crew_quarters/dorms)
-"umD" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"umL" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
@@ -65213,6 +65091,20 @@
},
/turf/open/floor/iron/dark,
/area/science/nanite)
+"upS" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/button/door{
+ id = "brigentrance";
+ name = "Brig Lockdown Control";
+ pixel_x = -25;
+ req_access_txt = "1"
+ },
+/turf/open/floor/iron/dark,
+/area/security/main{
+ name = "Security Locker Room"
+ })
"uql" = (
/obj/effect/decal/cleanable/oil,
/turf/open/floor/iron/sepia,
@@ -65317,6 +65209,12 @@
},
/turf/open/floor/iron,
/area/crew_quarters/cafeteria)
+"utF" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/central)
"utM" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
@@ -65335,18 +65233,6 @@
/area/security/main{
name = "Security Viewing Hall"
})
-"utQ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"utS" = (
/obj/machinery/door/airlock/external{
name = "Mining Dock Airlock";
@@ -65413,20 +65299,20 @@
/obj/effect/landmark/start/cyborg,
/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/aisat/foyer)
-"uux" = (
-/turf/open/floor/iron/stairs/medium,
-/area/hallway/primary/central)
-"uuK" = (
-/obj/structure/bed,
-/obj/item/bedsheet/dorms,
-/obj/item/toy/plush/carpplushie,
-/obj/structure/sign/poster/contraband{
- pixel_x = 32
+"uuG" = (
+/obj/machinery/atmospherics/pipe/layer_manifold,
+/obj/structure/table/reinforced,
+/obj/item/clothing/glasses/meson/engine{
+ pixel_x = -2;
+ pixel_y = 6
},
-/turf/open/floor/prison,
-/area/security/prison{
- name = "Prison Dorms"
- })
+/obj/item/clothing/glasses/meson/engine{
+ pixel_x = 2
+ },
+/turf/open/floor/plating{
+ broken = 1
+ },
+/area/engine/engine_room)
"uuQ" = (
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/aisat/foyer)
@@ -65437,6 +65323,12 @@
},
/turf/closed/wall/r_wall,
/area/science/test_area)
+"uve" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/iron/white,
+/area/science/explab)
"uvk" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -65476,24 +65368,6 @@
},
/turf/open/floor/iron/dark,
/area/crew_quarters/bar)
-"uvB" = (
-/obj/effect/turf_decal/guideline/guideline_out/brown{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/iron/techmaint,
-/area/maintenance/central)
"uvC" = (
/obj/effect/turf_decal/bot,
/obj/structure/window/reinforced{
@@ -65502,6 +65376,17 @@
/obj/structure/table/reinforced,
/turf/open/floor/iron/techmaint,
/area/science/xenobiology)
+"uwf" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/bridge)
"uwo" = (
/obj/effect/turf_decal/tile/neutral{
dir = 8
@@ -65539,15 +65424,6 @@
},
/turf/open/floor/wood,
/area/vacant_room/office)
-"uwK" = (
-/obj/effect/turf_decal/guideline/guideline_edge/neutral{
- alpha = 255;
- dir = 8
- },
-/turf/open/floor/iron/white/side{
- dir = 8
- },
-/area/medical/medbay/central)
"uwZ" = (
/obj/effect/turf_decal/tile/red/anticorner/contrasted{
alpha = 180;
@@ -65667,6 +65543,20 @@
},
/turf/open/floor/iron/dark,
/area/crew_quarters/bar)
+"uyb" = (
+/obj/machinery/door/airlock/grunge{
+ name = "Chapel Office";
+ req_access_txt = "27"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/chapel/office)
"uyr" = (
/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{
alpha = 180
@@ -65734,18 +65624,6 @@
},
/turf/open/floor/plating/airless,
/area/science/test_area)
-"uzj" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/camera/autoname{
- dir = 1
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/bridge)
"uzx" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -65815,11 +65693,21 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/hallway/primary/aft)
-"uBh" = (
-/obj/effect/decal/cleanable/crayon,
-/obj/item/food/butterdog,
-/turf/open/floor/plating,
-/area/maintenance/department/medical)
+"uAH" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/item/storage/box{
+ pixel_x = -4;
+ pixel_y = 6
+ },
+/obj/item/storage/box{
+ pixel_x = 3
+ },
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal)
"uBu" = (
/obj/structure/chair/office/light{
dir = 8
@@ -65923,6 +65811,21 @@
"uCC" = (
/turf/closed/wall,
/area/maintenance/solars/starboard/fore)
+"uCH" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"uCM" = (
/obj/effect/turf_decal/tile/yellow/half/contrasted{
alpha = 180;
@@ -65975,15 +65878,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
-"uDw" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/obj/structure/railing/corner{
- dir = 8
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"uDJ" = (
/obj/effect/turf_decal/caution/stand_clear{
dir = 8
@@ -66187,10 +66081,6 @@
},
/turf/open/floor/plating,
/area/engine/supermatter)
-"uFN" = (
-/obj/machinery/light,
-/turf/open/floor/iron/dark,
-/area/chapel/office)
"uFQ" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -66219,23 +66109,6 @@
},
/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/aisat/foyer)
-"uGi" = (
-/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
- alpha = 180;
- color = "#DE3A3A"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/security/brig)
"uGm" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
@@ -66243,24 +66116,6 @@
},
/turf/open/floor/plating,
/area/engine/atmos)
-"uGP" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/door/window/brigdoor{
- dir = 8;
- name = "Creature Pen";
- req_access_txt = "47"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xeno2";
- name = "Creature Cell"
- },
-/turf/open/floor/engine,
-/area/science/xenobiology)
"uGX" = (
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating{
@@ -66336,18 +66191,6 @@
},
/turf/open/floor/iron,
/area/medical/medbay/central)
-"uIm" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/iron/techmaint,
-/area/maintenance/central)
"uIs" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -66367,21 +66210,6 @@
},
/turf/open/space/basic,
/area/solar/port/aft)
-"uIx" = (
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/effect/turf_decal/guideline/guideline_in/yellow{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/yellow/half,
-/obj/effect/turf_decal/tile/yellow/half,
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
"uIy" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/machinery/light{
@@ -66404,35 +66232,6 @@
},
/turf/open/floor/plating,
/area/quartermaster/storage)
-"uIK" = (
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/status_display/evac{
- pixel_y = 32
- },
-/obj/structure/bed/dogbed/walter,
-/obj/item/stack/sheet/bone{
- pixel_x = 6;
- pixel_y = -6
- },
-/mob/living/simple_animal/pet/dog/bullterrier/walter{
- density = 0
- },
-/turf/open/floor/iron/dark,
-/area/security/warden)
-"uIS" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"uIX" = (
/obj/item/radio/intercom{
dir = 1;
@@ -66460,6 +66259,17 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
+"uJB" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ pixel_x = -30;
+ pixel_y = -4
+ },
+/obj/structure/table/glass,
+/turf/open/floor/iron/dark,
+/area/security/brig/medbay)
"uJI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -66480,6 +66290,24 @@
},
/turf/open/floor/iron/white,
/area/science/xenobiology)
+"uKh" = (
+/obj/effect/turf_decal/tile/dark_red/half/contrasted{
+ alpha = 180;
+ color = "#DE3A3A"
+ },
+/obj/structure/bed,
+/obj/item/bedsheet/dorms,
+/obj/item/toy/plush/beeplushie{
+ name = "beetle plushie";
+ desc = "A cute toy that resembles an even cuter beetle."
+ },
+/obj/structure/sign/poster/contraband/random{
+ pixel_x = 32
+ },
+/turf/open/floor/prison,
+/area/security/prison{
+ name = "Prison Dorms"
+ })
"uKi" = (
/turf/closed/wall,
/area/science/robotics/mechbay)
@@ -66489,6 +66317,22 @@
},
/turf/open/floor/iron/freezer,
/area/crew_quarters/toilet)
+"uKo" = (
+/obj/effect/turf_decal/guideline/guideline_in/red{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/effect/turf_decal/tile/dark_red/half{
+ color = "#DE3A3A"
+ },
+/obj/effect/turf_decal/tile/dark_red/half{
+ color = "#DE3A3A"
+ },
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
"uKv" = (
/obj/machinery/atmospherics/pipe/simple/dark/visible{
dir = 4
@@ -66525,6 +66369,28 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/crew_quarters/dorms)
+"uLd" = (
+/obj/effect/turf_decal/guideline/guideline_in/brown,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/brown/half{
+ dir = 8
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
+"uLe" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 4
+ },
+/area/hallway/primary/central)
"uLf" = (
/obj/machinery/status_display/evac{
pixel_x = -32
@@ -66577,6 +66443,22 @@
},
/turf/open/floor/iron/dark,
/area/security/nuke_storage)
+"uLH" = (
+/obj/item/reagent_containers/food/drinks/beer/light{
+ pixel_x = 9;
+ pixel_y = 6
+ },
+/obj/item/reagent_containers/food/drinks/beer/light{
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/food/drinks/beer/light{
+ pixel_x = -8;
+ pixel_y = 11
+ },
+/obj/effect/spawner/lootdrop/glowstick/lit,
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/maintenance/central)
"uLR" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -66664,24 +66546,6 @@
},
/turf/open/floor/engine/plasma,
/area/engine/atmos)
-"uNP" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/solar{
- id = "portsolar";
- name = "Port Solar Array"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/port/fore)
-"uOa" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Experimentation Chamber";
- req_access_txt = "8";
- security_level = 6
- },
-/turf/open/floor/plating,
-/area/science/explab)
"uOd" = (
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating,
@@ -66710,21 +66574,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/closed/wall,
/area/maintenance/department/science)
-"uOC" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"uOK" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/firealarm/directional/east,
@@ -66788,21 +66637,6 @@
},
/turf/open/space/basic,
/area/solar/port/fore)
-"uPT" = (
-/obj/effect/turf_decal/guideline/guideline_out/brown{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/iron/techmaint,
-/area/maintenance/central)
"uPV" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
@@ -66921,6 +66755,11 @@
},
/turf/open/floor/iron/white/side,
/area/science/lobby)
+"uSw" = (
+/obj/effect/decal/cleanable/oil,
+/mob/living/basic/cockroach,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
"uSx" = (
/obj/machinery/telecomms/processor/preset_three,
/obj/effect/turf_decal/stripes/line{
@@ -66928,6 +66767,18 @@
},
/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/server)
+"uSz" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"uSD" = (
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating,
@@ -66990,22 +66841,6 @@
dir = 4
},
/area/hallway/primary/central)
-"uUa" = (
-/obj/structure/sign/warning/radiation_shelter{
- pixel_x = 1;
- pixel_y = 32
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/engine/engine_room)
"uUg" = (
/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
dir = 8
@@ -67045,16 +66880,6 @@
},
/turf/open/floor/iron/tech,
/area/engine/atmos)
-"uVq" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/bridge)
"uVt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -67142,23 +66967,6 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat/foyer)
-"uWA" = (
-/obj/structure/window/reinforced{
- dir = 4;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/machinery/light/floor{
- brightness = 15;
- bulb_emergency_brightness_mul = 2;
- bulb_vacuum_brightness = 15;
- nightshift_brightness = 10
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"uWD" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
alpha = 140;
@@ -67425,20 +67233,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/sepia,
/area/maintenance/port/central)
-"vaf" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/item/kirbyplants/random,
-/turf/open/floor/grass/no_border,
-/area/hallway/secondary/exit/departure_lounge)
"vat" = (
/obj/structure/bookcase/random/fiction,
/obj/machinery/airalarm{
@@ -67522,24 +67316,6 @@
},
/turf/open/floor/carpet/green,
/area/crew_quarters/cafeteria)
-"vbL" = (
-/obj/machinery/camera/autoname{
- dir = 4;
- network = list("ss13","rd")
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/turf_decal/guideline/guideline_edge/purple{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/turf/open/floor/iron/white/side{
- dir = 8
- },
-/area/science/research)
"vbV" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow{
@@ -67567,18 +67343,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"vcl" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 8
- },
-/obj/structure/chair/fancy/bench/pew/left{
- dir = 4
- },
-/obj/machinery/camera/autoname{
- dir = 1
- },
-/turf/open/floor/glass/reinforced,
-/area/chapel/main)
"vcw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -67755,16 +67519,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/floor/plating,
/area/engine/atmos)
-"vgc" = (
-/obj/effect/landmark/start/cargo_technician,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/quartermaster/storage)
"vge" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
@@ -67793,20 +67547,6 @@
/area/security/prison{
name = "Prison Dorms"
})
-"vgH" = (
-/obj/effect/turf_decal/tile/neutral/half,
-/obj/machinery/camera/autoname{
- dir = 8
- },
-/obj/machinery/light_switch{
- pixel_x = -20;
- pixel_y = -21
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/turf/open/floor/iron/dark,
-/area/chapel/office)
"vgM" = (
/obj/machinery/vending/medical,
/turf/open/floor/iron/dark,
@@ -67876,6 +67616,17 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"vic" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/effect/turf_decal/guideline/guideline_edge/purple{
+ dir = 4
+ },
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/science/lobby)
"vin" = (
/obj/machinery/door/airlock/public/glass{
name = "Holodeck Access"
@@ -67886,6 +67637,17 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"viN" = (
+/obj/machinery/camera/autoname{
+ dir = 8;
+ network = list("ss13","cargo")
+ },
+/obj/machinery/firealarm/directional/east,
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/disposal)
"viR" = (
/obj/machinery/light,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -67942,6 +67704,13 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/central)
+"vjz" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/obj/structure/railing/corner,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"vjD" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -67972,6 +67741,14 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
+"vjS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/iron/white,
+/area/science/xenobiology)
"vke" = (
/obj/machinery/disposal/deliveryChute{
dir = 1;
@@ -68035,6 +67812,22 @@
},
/turf/open/floor/wood,
/area/crew_quarters/dorms)
+"vkD" = (
+/obj/structure/sign/warning/radiation_shelter{
+ pixel_x = 1;
+ pixel_y = 32
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/engine/engine_room)
"vkS" = (
/obj/effect/turf_decal/tile/dark_blue{
alpha = 180;
@@ -68055,16 +67848,6 @@
},
/turf/open/floor/wood,
/area/chapel/office)
-"vla" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/bridge)
"vlb" = (
/obj/machinery/door/poddoor/preopen{
id = "bridgewindows";
@@ -68089,6 +67872,16 @@
/obj/item/kirbyplants/random,
/turf/open/floor/iron,
/area/engine/break_room)
+"vlq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/computer/security/telescreen/rd{
+ pixel_y = 32
+ },
+/obj/machinery/computer/card/minor/rd,
+/turf/open/floor/carpet/purple,
+/area/crew_quarters/heads/hor)
"vlr" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/effect/turf_decal/stripes/line{
@@ -68106,22 +67899,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/science/mixing/chamber)
-"vlO" = (
-/obj/effect/turf_decal/guideline/guideline_in/darkblue{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/tile/dark_blue/half{
- dir = 1
- },
-/obj/effect/turf_decal/tile/dark_blue/half{
- dir = 1
- },
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
"vlR" = (
/obj/structure/table,
/obj/structure/disposalpipe/segment{
@@ -68171,15 +67948,11 @@
},
/turf/open/space/basic,
/area/space/nearstation)
-"vmw" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/obj/structure/railing/corner{
- dir = 4
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
+"vmu" = (
+/obj/structure/showcase/machinery/tv,
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/maintenance/central)
"vmM" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -68263,6 +68036,19 @@
/obj/effect/turf_decal/box,
/turf/open/floor/iron/dark,
/area/gateway)
+"vox" = (
+/obj/structure/railing{
+ dir = 6
+ },
+/obj/machinery/light/floor{
+ brightness = 15;
+ bulb_colour = "#FFE4CE";
+ bulb_vacuum_brightness = 15;
+ nightshift_brightness = 10;
+ nightshift_light_color = "#E6EBFF"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"voz" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -68374,30 +68160,6 @@
/obj/structure/window/reinforced,
/turf/open/floor/engine,
/area/science/xenobiology)
-"vpH" = (
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/item/radio/intercom{
- desc = "Talk through this. It looks like it has been modified to not broadcast.";
- freerange = 1;
- name = "Prison intercom";
- pixel_y = 25;
- prison_radio = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/iron/dark,
-/area/security/prison{
- name = "Prison Processing"
- })
"vpR" = (
/obj/effect/turf_decal/tile/blue/half/contrasted{
dir = 8
@@ -68405,6 +68167,14 @@
/obj/effect/turf_decal/guideline/guideline_in/blue,
/turf/open/floor/iron/white,
/area/medical/medbay/lobby)
+"vpU" = (
+/obj/effect/turf_decal/guideline/guideline_edge/purple{
+ dir = 8
+ },
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/science/lobby)
"vqq" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -68416,13 +68186,6 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/wood,
/area/vacant_room/office)
-"vqB" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/generic,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/central)
"vqC" = (
/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{
alpha = 180
@@ -68469,16 +68232,6 @@
},
/turf/open/floor/engine,
/area/engine/supermatter)
-"vrg" = (
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 4
- },
-/obj/structure/chair/fancy/bench/pew/right{
- dir = 8
- },
-/obj/machinery/firealarm/directional/south,
-/turf/open/floor/glass/reinforced,
-/area/chapel/main)
"vrh" = (
/obj/effect/turf_decal/tile/yellow/opposingcorners,
/obj/effect/decal/cleanable/dirt,
@@ -68577,17 +68330,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/white,
/area/science/research)
-"vsN" = (
-/obj/item/clothing/suit/hooded/cultrobes/alt,
-/obj/item/toy/toy_dagger,
-/turf/open/floor/cult,
-/area/chapel/office)
-"vtf" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/library)
"vtv" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -68610,6 +68352,19 @@
/obj/structure/sign/poster/official/help_others,
/turf/closed/wall,
/area/maintenance/central)
+"vur" = (
+/obj/structure/sign/warning/radiation_shelter{
+ pixel_x = 33;
+ pixel_y = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/bridge)
"vuz" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
@@ -68679,17 +68434,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/sepia,
/area/maintenance/port/central)
-"vvV" = (
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_y = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"vwi" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 4
@@ -68737,15 +68481,6 @@
/obj/machinery/firealarm/directional/north,
/turf/open/floor/iron/dark,
/area/science/mixing)
-"vxA" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/sunnybush,
-/turf/open/floor/grass/no_border,
-/area/hallway/secondary/exit/departure_lounge)
"vxY" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/obj/structure/disposalpipe/segment{
@@ -68803,17 +68538,34 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/engine/atmos)
-"vzb" = (
-/obj/effect/turf_decal/guideline/guideline_edge/purple{
- dir = 8
+"vyY" = (
+/obj/effect/turf_decal/guideline/guideline_in/neutral{
+ alpha = 255;
+ dir = 1
},
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/iron/white/side{
- dir = 8
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
},
-/area/science/lobby)
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
+ },
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
+ },
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
"vzd" = (
/obj/structure/table,
/obj/item/gun/energy/laser/practice{
@@ -68830,6 +68582,18 @@
},
/turf/open/floor/iron/dark,
/area/science/misc_lab/range)
+"vzg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/starboard/aft)
"vzi" = (
/obj/structure/table,
/obj/item/knife/kitchen,
@@ -68860,16 +68624,6 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/miningdock)
-"vzW" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/solar{
- id = "portsolar";
- name = "Port Solar Array"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/starboard/fore)
"vAa" = (
/obj/structure/chair/fancy/bench/pew/left{
dir = 8
@@ -68924,14 +68678,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/carpet/purple,
/area/chapel/main)
-"vAS" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2,
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
- dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"vAU" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 8
@@ -68966,15 +68712,6 @@
},
/turf/open/floor/carpet,
/area/library)
-"vBC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/turf/open/floor/iron/dark,
-/area/chapel/main)
"vBI" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 8
@@ -69061,6 +68798,19 @@
},
/turf/open/floor/iron/dark,
/area/engine/engineering)
+"vDd" = (
+/obj/structure/railing{
+ dir = 9
+ },
+/obj/machinery/light/floor{
+ brightness = 15;
+ bulb_colour = "#FFE4CE";
+ bulb_vacuum_brightness = 15;
+ nightshift_brightness = 10;
+ nightshift_light_color = "#E6EBFF"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"vDj" = (
/obj/structure/cable{
icon_state = "2-4"
@@ -69075,26 +68825,6 @@
name = "mainframe floor"
},
/area/tcommsat/server)
-"vDk" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/effect/turf_decal/box,
-/mob/living/simple_animal/sloth/citrus{
- density = 0
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/quartermaster/storage)
"vDo" = (
/obj/machinery/conveyor/inverted{
dir = 5;
@@ -69143,17 +68873,6 @@
/area/security/main{
name = "Security Viewing Hall"
})
-"vDO" = (
-/obj/effect/turf_decal/guideline/guideline_edge/purple{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/turf/open/floor/iron/white/side{
- dir = 4
- },
-/area/science/research)
"vDS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
@@ -69231,17 +68950,6 @@
/obj/effect/turf_decal/box,
/turf/open/floor/iron,
/area/engine/atmospherics_engine)
-"vFj" = (
-/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted{
- alpha = 230;
- color = "#edaa0c"
- },
-/obj/structure/table/reinforced,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/item/storage/toolbox/electrical,
-/obj/item/clothing/gloves/color/yellow,
-/turf/open/floor/iron/dark,
-/area/engine/atmos)
"vFo" = (
/turf/closed/wall,
/area/security/checkpoint/science)
@@ -69333,6 +69041,25 @@
/obj/effect/turf_decal/guideline/guideline_edge/red,
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"vGo" = (
+/obj/effect/turf_decal/guideline/guideline_in/darkblue{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/dark_blue/half{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/dark_blue/half{
+ dir = 1
+ },
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
"vGq" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/obj/machinery/portable_atmospherics/pump,
@@ -69427,17 +69154,6 @@
},
/turf/open/floor/iron/dark,
/area/science/shuttledock)
-"vIn" = (
-/obj/machinery/camera/autoname{
- dir = 1;
- network = list("ss13","security")
- },
-/obj/machinery/power/apc/auto_name/south{
- pixel_y = -24
- },
-/obj/structure/cable/yellow,
-/turf/open/floor/wood,
-/area/security/detectives_office)
"vIB" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -69456,6 +69172,35 @@
},
/turf/open/floor/plating,
/area/maintenance/disposal)
+"vIY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
+"vIZ" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc/auto_name/west{
+ pixel_x = -24
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/light{
+ bulb_colour = "#22bfa2";
+ bulb_vacuum_colour = "#22bfa2";
+ dir = 8;
+ nightshift_light_color = "#22bfa2"
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/obj/effect/turf_decal/guideline/guideline_edge/red,
+/turf/open/floor/iron/dark,
+/area/security/brig/dock)
"vJf" = (
/obj/structure/disposalpipe/segment{
dir = 5
@@ -69530,6 +69275,9 @@
/obj/effect/landmark/start/geneticist,
/turf/open/floor/iron/dark,
/area/medical/genetics)
+"vKw" = (
+/turf/open/floor/glass/reinforced,
+/area/engine/gravity_generator)
"vKB" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -69565,21 +69313,6 @@
/obj/machinery/digital_clock/directional/north,
/turf/open/floor/iron/cafeteria,
/area/crew_quarters/kitchen)
-"vKM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"vLA" = (
/obj/structure/disposalpipe/segment{
dir = 2
@@ -69596,6 +69329,18 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"vLB" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/central)
"vLI" = (
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -69624,15 +69369,6 @@
/area/security/main{
name = "Security Locker Room"
})
-"vLP" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/security)
"vMa" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -69655,6 +69391,21 @@
/area/security/main{
name = "Security Viewing Hall"
})
+"vMj" = (
+/obj/structure/bed/roller,
+/obj/machinery/light,
+/obj/machinery/door/window/eastleft{
+ dir = 1;
+ name = "Quarantine Pen B";
+ req_access_txt = "39"
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 3
+ },
+/obj/item/toy/plush/slimeplushie/green,
+/turf/open/floor/iron/grid/steel,
+/area/medical/virology)
"vMx" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted{
alpha = 200;
@@ -69707,6 +69458,18 @@
/obj/machinery/airalarm/directional/south,
/turf/open/floor/iron,
/area/medical/apothecary)
+"vMG" = (
+/obj/structure/railing{
+ layer = 3.1
+ },
+/obj/structure/chair/fancy/comfy{
+ buildstackamount = 0;
+ color = "#742925";
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wideplating/dark,
+/turf/open/floor/iron/dark/side,
+/area/hallway/primary/central)
"vMK" = (
/obj/machinery/power/apc/auto_name/west{
pixel_x = -24
@@ -69740,6 +69503,18 @@
},
/turf/open/floor/iron,
/area/quartermaster/qm)
+"vMR" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/central)
"vMT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
@@ -69802,6 +69577,12 @@
/obj/effect/turf_decal/caution,
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"vNH" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/science/robotics)
"vNX" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 4
@@ -69821,14 +69602,6 @@
dir = 8
},
/area/engine/engineering)
-"vOg" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/sunnybush,
-/turf/open/floor/grass/no_border,
-/area/hallway/secondary/exit/departure_lounge)
"vOm" = (
/obj/structure/disposaloutlet{
dir = 4
@@ -69839,6 +69612,23 @@
/obj/structure/lattice/catwalk,
/turf/open/space/basic,
/area/space/nearstation)
+"vOn" = (
+/obj/effect/turf_decal/guideline/guideline_in/red{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/tile/dark_red/half{
+ color = "#DE3A3A"
+ },
+/obj/effect/turf_decal/tile/dark_red/half{
+ color = "#DE3A3A"
+ },
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
"vOy" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
@@ -69946,17 +69736,21 @@
},
/turf/open/floor/iron/dark,
/area/science/shuttledock)
-"vQi" = (
-/obj/machinery/door/morgue{
- name = "Mass driver room";
- req_access_txt = "27"
+"vQc" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Maintenance Hatch";
+ req_one_access_txt = "12;31;63"
},
-/obj/machinery/light_switch{
- pixel_x = -21;
- pixel_y = 1
+/obj/structure/disposalpipe/segment{
+ dir = 2
},
-/turf/open/floor/carpet/purple,
-/area/chapel/main)
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/department/security)
"vQn" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/tile/yellow/half/contrasted{
@@ -69970,27 +69764,19 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/hallway/primary/aft)
-"vQp" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/starboard/aft)
"vQr" = (
/obj/machinery/modular_computer/console/preset/civilian{
dir = 4
},
/turf/open/floor/carpet,
/area/maintenance/port/aft)
+"vQL" = (
+/obj/effect/decal/cleanable/generic,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"vQX" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -70025,14 +69811,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/science/explab)
-"vRg" = (
-/obj/structure/window/reinforced{
- dir = 4;
- layer = 2.9
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"vRh" = (
/obj/machinery/atmospherics/pipe/simple/dark/visible,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
@@ -70119,16 +69897,6 @@
},
/turf/open/floor/iron/dark,
/area/chapel/main)
-"vSH" = (
-/obj/structure/railing/corner,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron/dark/corner,
-/area/hallway/primary/central)
"vST" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
/obj/structure/disposalpipe/segment{
@@ -70239,17 +70007,6 @@
},
/turf/open/floor/engine/air,
/area/engine/atmos)
-"vUY" = (
-/obj/structure/railing{
- dir = 4
- },
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 4
- },
-/turf/open/floor/iron/dark/smooth_edge{
- dir = 8
- },
-/area/hallway/primary/central)
"vVc" = (
/obj/machinery/portable_atmospherics/scrubber,
/obj/effect/turf_decal/bot,
@@ -70276,6 +70033,38 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/engine/atmos)
+"vVB" = (
+/obj/effect/turf_decal/guideline/guideline_in/neutral{
+ alpha = 255;
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
+ },
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
+ },
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
+ },
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 4;
+ color = "#FFFFFF"
+ },
+/turf/open/floor/iron/half,
+/area/hallway/primary/central)
"vVE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -70403,6 +70192,17 @@
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
/area/construction/mining/aux_base)
+"vYu" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/obj/effect/turf_decal/guideline/guideline_edge/purple{
+ dir = 4
+ },
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/science/lobby)
"vYA" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 4
@@ -70458,17 +70258,6 @@
},
/turf/open/floor/iron/dark,
/area/science/shuttledock)
-"vYZ" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=25-NHall";
- location = "24-CenterNE"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"vZb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 5
@@ -70488,6 +70277,16 @@
/obj/machinery/light,
/turf/open/floor/iron/dark,
/area/quartermaster/storage)
+"vZp" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/power/apc/auto_name/north{
+ pixel_y = 24
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/bridge)
"vZx" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -70511,15 +70310,6 @@
/obj/effect/turf_decal/loading_area,
/turf/open/floor/iron/dark,
/area/engine/atmos)
-"wab" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"wae" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
@@ -70606,15 +70396,6 @@
},
/turf/open/floor/iron,
/area/engine/engine_room)
-"wbM" = (
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/obj/structure/railing/corner{
- dir = 4
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"wbT" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -70622,22 +70403,6 @@
},
/turf/open/space/basic,
/area/solar/port/aft)
-"wcd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/central)
-"wch" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/obj/structure/railing/corner,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"wcq" = (
/obj/structure/closet/crate,
/obj/item/storage/box,
@@ -70679,6 +70444,11 @@
/obj/structure/fans/tiny/invisible,
/turf/open/floor/iron/techmaint,
/area/quartermaster/storage)
+"wcD" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/iron/dark,
+/area/science/robotics)
"wcP" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 8
@@ -70705,13 +70475,47 @@
/obj/structure/plasticflaps,
/turf/open/floor/plating,
/area/maintenance/disposal)
-"wcY" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/obj/structure/railing/corner{
+"wdc" = (
+/obj/machinery/door/window/brigdoor{
+ dir = 8;
+ name = "Creature Pen";
+ req_access_txt = "47"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xeno5";
+ name = "Creature Cell"
+ },
+/obj/effect/turf_decal/stripes/closeup{
dir = 1
},
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
+/turf/open/floor/engine,
+/area/science/xenobiology)
+"wdh" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer4{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
+"wdi" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/central)
"wdk" = (
/turf/open/floor/iron/dark,
/area/engine/engine_room)
@@ -70847,6 +70651,15 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat_interior)
+"wfv" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 8
+ },
+/area/hallway/primary/central)
"wfF" = (
/obj/structure/table/wood,
/obj/item/hand_labeler,
@@ -70939,16 +70752,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"wgt" = (
-/obj/structure/window/reinforced,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/fernybush,
-/obj/machinery/camera/autoname{
- dir = 4
- },
-/turf/open/floor/grass/no_border,
-/area/hallway/secondary/exit/departure_lounge)
"wgH" = (
/obj/machinery/atmospherics/pipe/simple/orange/visible{
dir = 6
@@ -71005,18 +70808,27 @@
dir = 1
},
/area/hallway/secondary/exit/departure_lounge)
-"whl" = (
-/obj/effect/turf_decal/guideline/guideline_edge/purple{
- dir = 4
- },
+"whx" = (
+/obj/structure/railing,
+/obj/effect/turf_decal/siding/wideplating/dark,
/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/turf/open/floor/iron/dark/smooth_edge{
dir = 1
},
-/obj/machinery/door/firedoor,
-/turf/open/floor/iron/white/side{
- dir = 4
+/area/hallway/primary/central)
+"whS" = (
+/obj/effect/turf_decal/caution{
+ dir = 8
},
-/area/science/research)
+/mob/living/simple_animal/pet/dog/pug{
+ density = 0;
+ dir = 8
+ },
+/obj/item/beacon,
+/turf/open/floor/engine,
+/area/science/explab)
"whX" = (
/obj/machinery/atmospherics/pipe/simple/orange/visible{
dir = 10
@@ -71046,16 +70858,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
-"wiG" = (
-/obj/machinery/computer/security/mining{
- dir = 1;
- name = "Ion engine camera console";
- network = list("Ion")
- },
-/turf/open/floor/plating{
- broken = 1
- },
-/area/engine/engine_room)
"wjm" = (
/obj/machinery/light,
/obj/machinery/computer/bounty{
@@ -71259,29 +71061,26 @@
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
/area/maintenance/port/central)
-"wlR" = (
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/requests_console{
- department = "Science";
- departmentType = 2;
- name = "Science RC";
- pixel_x = 32;
- pixel_y = -2;
- receive_ore_updates = 1
- },
-/turf/open/floor/iron/white/side{
- dir = 4
- },
-/area/science/lab)
"wlS" = (
/obj/structure/flora/ausbushes/fullgrass,
/turf/open/floor/grass,
/area/hallway/primary/central)
+"wmb" = (
+/obj/structure/window/reinforced,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/ppflowers,
+/mob/living/simple_animal/mouse/brown{
+ desc = "This one doesn't squeal";
+ name = "Tony";
+ pixel_x = 7;
+ pixel_y = 12
+ },
+/obj/machinery/holopad{
+ pixel_x = 16;
+ pixel_y = 17
+ },
+/turf/open/floor/grass/no_border,
+/area/hallway/secondary/exit/departure_lounge)
"wme" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -71378,6 +71177,15 @@
/obj/machinery/digital_clock/directional/north,
/turf/open/floor/iron/white,
/area/medical/sleeper)
+"wor" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2,
+/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"wot" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -71417,20 +71225,6 @@
/obj/item/emptysandbag,
/turf/open/floor/iron/sepia,
/area/maintenance/port/central)
-"woL" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/guideline/guideline_edge/purple{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/turf/open/floor/iron/white/side{
- dir = 8
- },
-/area/science/research)
"woR" = (
/turf/closed/wall/r_wall,
/area/bridge/meeting_room)
@@ -71513,34 +71307,39 @@
},
/turf/open/floor/wood,
/area/crew_quarters/dorms)
-"wrn" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/portable_atmospherics/canister/plasma,
-/obj/machinery/atmospherics/components/unary/portables_connector{
+"wrh" = (
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
dir = 4
},
+/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
+ alpha = 180;
+ color = "#DE3A3A"
+ },
/turf/open/floor/iron/dark,
-/area/quartermaster/exploration_prep)
-"wsd" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
+/area/security/warden)
+"wrB" = (
+/obj/machinery/light{
+ dir = 1
},
-/turf/open/floor/iron/white,
-/area/science/xenobiology)
-"wsF" = (
-/obj/machinery/telecomms/hub/preset/exploration,
-/obj/machinery/atmospherics/pipe/heat_exchanging/junction{
- dir = 4
+/turf/open/floor/engine,
+/area/science/explab)
+"wrO" = (
+/obj/structure/sign/warning/vacuum/external{
+ pixel_y = 32
},
-/obj/structure/window/reinforced{
- dir = 8;
- layer = 3
+/obj/structure/table/wood/fancy,
+/obj/item/food/grown/flower/harebell{
+ pixel_y = 3
},
-/turf/open/floor/circuit/green/telecomms/mainframe,
-/area/quartermaster/exploration_prep)
+/obj/item/candle/infinite{
+ pixel_x = 9;
+ pixel_y = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/turf/open/floor/iron/dark,
+/area/chapel/main)
"wsJ" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/structure/extinguisher_cabinet{
@@ -71585,17 +71384,6 @@
},
/turf/open/floor/iron,
/area/bridge)
-"wuj" = (
-/obj/machinery/power/apc/auto_name/south{
- pixel_y = -24
- },
-/obj/structure/cable/yellow,
-/obj/item/reagent_containers/glass/bucket{
- pixel_x = -2;
- pixel_y = 10
- },
-/turf/open/floor/iron/dark,
-/area/security/execution/education)
"wuz" = (
/obj/effect/turf_decal/tile/yellow{
dir = 8
@@ -71606,6 +71394,24 @@
},
/turf/open/floor/iron/dark,
/area/storage/primary)
+"wuQ" = (
+/obj/effect/turf_decal/guideline/guideline_edge/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/obj/structure/sign/poster/random{
+ pixel_x = 32
+ },
+/obj/machinery/camera/autoname{
+ dir = 8;
+ network = list("ss13","security")
+ },
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/landmark/start/security_officer,
+/turf/open/floor/iron/dark,
+/area/security/brig/dock)
"wvm" = (
/obj/machinery/door/airlock/research{
name = "Toxins Storage";
@@ -71657,6 +71463,18 @@
/obj/structure/closet,
/turf/open/floor/plating,
/area/maintenance/department/medical/morgue)
+"wwd" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 4
+ },
+/area/hallway/primary/central)
"wwg" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/window{
@@ -71664,6 +71482,22 @@
},
/turf/open/floor/iron/dark,
/area/vacant_room/commissary/commissary2)
+"wwP" = (
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_x = -31;
+ pixel_y = -3
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/turf_decal/guideline/guideline_edge/blue{
+ dir = 8
+ },
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/medical/sleeper)
"wxk" = (
/obj/structure/lattice/catwalk,
/obj/structure/marker_beacon,
@@ -71672,31 +71506,6 @@
},
/turf/open/floor/engine/o2,
/area/ai_monitored/turret_protected/ai)
-"wxs" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/closet/secure_closet/medical2,
-/obj/item/clothing/suit/apron/surgical,
-/turf/open/floor/iron,
-/area/medical/surgery)
-"wxC" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/guideline/guideline_in/green{
- color = "#439C1E"
- },
-/obj/effect/turf_decal/tile/dark_green/half{
- dir = 8
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
"wxK" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -71741,6 +71550,34 @@
/obj/item/stack/tile/carpet/royalblack/fifty,
/turf/open/floor/wood,
/area/maintenance/port/aft)
+"wyw" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/security)
+"wyC" = (
+/turf/open/floor/glass/reinforced,
+/area/engine/atmos)
+"wyJ" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/curtain,
+/obj/machinery/shower{
+ dir = 8;
+ layer = 4;
+ name = "emergency shower";
+ pixel_x = -5;
+ pixel_y = -5
+ },
+/turf/open/floor/noslip/standard,
+/area/security/prison{
+ name = "Prison Showers"
+ })
"wyV" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -71963,6 +71800,18 @@
},
/turf/open/floor/iron/dark,
/area/engine/engine_room)
+"wBr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27
+ },
+/turf/open/floor/iron/dark/corner,
+/area/hallway/primary/central)
"wBy" = (
/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{
dir = 4
@@ -72029,19 +71878,14 @@
/obj/effect/spawner/lootdrop/glowstick/lit,
/turf/open/floor/iron,
/area/maintenance/department/medical)
-"wDb" = (
-/obj/structure/railing/corner{
+"wCY" = (
+/obj/structure/railing{
dir = 1
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron/dark/corner{
+/obj/effect/turf_decal/siding/wideplating/dark{
dir = 1
},
+/turf/open/floor/iron/dark/smooth_edge,
/area/hallway/primary/central)
"wDe" = (
/obj/effect/turf_decal/guideline/guideline_edge/red{
@@ -72053,15 +71897,6 @@
/obj/effect/landmark/start/security_officer,
/turf/open/floor/iron/dark,
/area/security/brig/dock)
-"wDl" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/window/reinforced{
- dir = 4;
- layer = 2.9
- },
-/obj/machinery/vending/cola,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"wDw" = (
/obj/structure/table/reinforced,
/obj/effect/turf_decal/stripes{
@@ -72095,22 +71930,6 @@
},
/turf/open/floor/iron/dark,
/area/medical/morgue)
-"wEi" = (
-/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"wEm" = (
/obj/effect/turf_decal/tile/blue/anticorner{
dir = 4
@@ -72119,6 +71938,20 @@
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/iron,
/area/maintenance/starboard/aft)
+"wEq" = (
+/obj/machinery/camera/autoname{
+ dir = 4;
+ network = list("ss13","medbay");
+ view_range = 8
+ },
+/obj/effect/turf_decal/guideline/guideline_edge/neutral{
+ alpha = 255;
+ dir = 8
+ },
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/medical/medbay/central)
"wEy" = (
/obj/structure/disposalpipe/segment{
dir = 1
@@ -72128,15 +71961,6 @@
},
/turf/open/floor/iron/white,
/area/science/lobby)
-"wEE" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 9
- },
-/turf/open/floor/iron,
-/area/quartermaster/exploration_prep)
"wEH" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -72183,6 +72007,17 @@
/obj/structure/sign/departments/minsky/security/evac,
/turf/closed/wall,
/area/ai_monitored/storage/eva)
+"wFq" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/science/explab)
"wFC" = (
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -72200,20 +72035,14 @@
},
/turf/open/floor/iron,
/area/crew_quarters/cafeteria)
-"wFO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/guideline/guideline_edge/purple{
- dir = 8
- },
-/turf/open/floor/iron/white/side{
- dir = 8
+"wFD" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
},
-/area/science/lobby)
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"wFR" = (
/obj/machinery/smartfridge/organ,
/turf/closed/wall,
@@ -72241,13 +72070,6 @@
"wGM" = (
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/hop)
-"wGP" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Maintenance Hatch";
- req_one_access_txt = "12;31"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/port/central)
"wHb" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -72272,6 +72094,11 @@
},
/turf/open/floor/plating,
/area/bridge)
+"wHg" = (
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/medical/sleeper)
"wHI" = (
/obj/effect/turf_decal/tile/yellow/half/contrasted{
alpha = 180;
@@ -72292,15 +72119,6 @@
},
/turf/open/floor/iron,
/area/engine/break_room)
-"wHL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/aft)
"wHP" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -72314,6 +72132,17 @@
},
/turf/open/floor/wood,
/area/chapel/office)
+"wHQ" = (
+/obj/effect/turf_decal/guideline/guideline_edge/purple{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/science/research)
"wHT" = (
/turf/closed/wall,
/area/security/detectives_office)
@@ -72540,18 +72369,6 @@
},
/turf/open/floor/iron/white,
/area/security/brig/medbay)
-"wLI" = (
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/obj/effect/turf_decal/guideline/guideline_in/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple/half{
- dir = 4
- },
-/turf/open/floor/iron/half,
-/area/hallway/primary/central)
"wLN" = (
/obj/structure/disposalpipe/segment{
dir = 1
@@ -72601,21 +72418,6 @@
/obj/item/ammo_casing/spent,
/turf/open/floor/plating,
/area/maintenance/department/security)
-"wMe" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/iron/white,
-/area/science/xenobiology)
"wMi" = (
/obj/structure/disposalpipe/segment{
dir = 8
@@ -72635,29 +72437,6 @@
},
/turf/open/floor/plating,
/area/engine/supermatter)
-"wMw" = (
-/obj/structure/window/reinforced{
- dir = 4;
- layer = 2.9
- },
-/obj/structure/chair/fancy/comfy{
- color = "#596479";
- dir = 8
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
-"wMH" = (
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 2
- },
-/turf/open/floor/iron/dark/smooth_edge,
-/area/hallway/primary/central)
"wMI" = (
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -72785,21 +72564,6 @@
},
/turf/open/floor/iron/white,
/area/medical/sleeper)
-"wON" = (
-/obj/structure/bed/roller,
-/obj/machinery/light,
-/obj/machinery/door/window/eastleft{
- dir = 1;
- name = "Quarantine Pen B";
- req_access_txt = "39"
- },
-/obj/structure/window/reinforced{
- dir = 8;
- layer = 3
- },
-/obj/item/toy/plush/slimeplushie/green,
-/turf/open/floor/iron/grid/steel,
-/area/medical/virology)
"wPd" = (
/obj/effect/turf_decal/tile/dark_green/half/contrasted{
dir = 8
@@ -72901,17 +72665,6 @@
/obj/structure/girder,
/turf/open/floor/plating,
/area/maintenance/department/medical/morgue)
-"wQP" = (
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/obj/structure/window/reinforced{
- dir = 8;
- pixel_y = 1
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"wQT" = (
/obj/effect/turf_decal/tile/black/fourcorners,
/obj/effect/turf_decal/stripes/line{
@@ -72964,15 +72717,10 @@
"wRO" = (
/turf/open/floor/iron,
/area/quartermaster/sorting)
-"wSh" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/science/xenobiology)
+"wSi" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/medical/morgue)
"wSs" = (
/obj/machinery/suit_storage_unit/cmo,
/obj/machinery/computer/security/telescreen{
@@ -73032,6 +72780,17 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
+"wSB" = (
+/obj/machinery/door/morgue{
+ name = "Mass driver room";
+ req_access_txt = "27"
+ },
+/obj/machinery/light_switch{
+ pixel_x = -21;
+ pixel_y = 1
+ },
+/turf/open/floor/carpet/purple,
+/area/chapel/main)
"wTo" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -73071,6 +72830,14 @@
burnt = 1
},
/area/library)
+"wTx" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/backpack/duffelbag/sec/surgery{
+ pixel_y = 4
+ },
+/obj/item/clothing/gloves/color/latex,
+/turf/open/floor/iron/white,
+/area/science/robotics)
"wTI" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -73156,21 +72923,33 @@
/obj/effect/turf_decal/guideline/guideline_in/yellow,
/turf/open/floor/iron,
/area/engine/engineering)
-"wUY" = (
-/obj/effect/turf_decal/stripes/line{
+"wVy" = (
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/structure/disposalpipe/segment{
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/glass/reinforced,
+/area/crew_quarters/cafeteria)
+"wVK" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
dir = 9
},
-/obj/structure/cable/yellow{
- icon_state = "2-8"
+/turf/open/floor/glass/reinforced,
+/area/chapel/main)
+"wVR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
},
-/obj/structure/cable/yellow{
- icon_state = "1-8"
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
},
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
+/obj/machinery/power/apc/auto_name/north{
+ pixel_y = 24
+ },
+/turf/open/floor/iron/white,
+/area/science/xenobiology)
"wVX" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -73213,18 +72992,6 @@
/area/security/brig/dock{
name = "Security E.V.A. Storage"
})
-"wWF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/starboard/aft)
"wXb" = (
/obj/item/kirbyplants/random,
/obj/machinery/camera/autoname{
@@ -73256,6 +73023,20 @@
},
/turf/open/floor/iron,
/area/engine/engineering)
+"wXc" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/light,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/hidden{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/atmospherics{
+ anchored = 1
+ },
+/turf/open/floor/iron/dark,
+/area/engine/atmos)
"wXg" = (
/obj/structure/closet/crate,
/obj/machinery/conveyor/inverted{
@@ -73283,6 +73064,17 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/engine/engine_room)
+"wXE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/effect/turf_decal/guideline/guideline_in/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow/half,
+/obj/effect/turf_decal/tile/yellow/half,
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
"wXG" = (
/obj/machinery/light/small{
dir = 1
@@ -73396,6 +73188,23 @@
},
/turf/open/floor/iron,
/area/quartermaster/miningdock)
+"wZl" = (
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
+"wZs" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/security)
"wZy" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -73548,6 +73357,41 @@
},
/turf/open/floor/iron,
/area/security/brig)
+"xdj" = (
+/obj/structure/railing{
+ dir = 6;
+ layer = 3.1
+ },
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 6
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/vending/hydroseeds,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
+"xdo" = (
+/obj/effect/turf_decal/guideline/guideline_in/red{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/dark_red/half{
+ color = "#DE3A3A"
+ },
+/obj/effect/turf_decal/tile/dark_red/half{
+ color = "#DE3A3A"
+ },
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
+"xds" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Experimentation Chamber";
+ req_access_txt = "8";
+ security_level = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
"xdv" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -73562,17 +73406,18 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/starboard)
-"xdV" = (
-/obj/structure/disposalpipe/segment{
+"xdU" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
},
-/obj/effect/turf_decal/guideline/guideline_edge/purple{
- dir = 4
- },
-/turf/open/floor/iron/white/side{
- dir = 4
+/obj/structure/disposaloutlet{
+ dir = 1
},
-/area/science/lobby)
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/iron/dark,
+/area/security/brig{
+ name = "Brig Evidence"
+ })
"xeg" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -73616,17 +73461,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"xeL" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/security)
"xeN" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 4
@@ -73727,15 +73561,6 @@
},
/turf/open/floor/iron/dark/side,
/area/hallway/primary/central)
-"xgI" = (
-/obj/structure/closet/emcloset,
-/obj/effect/turf_decal/bot,
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"xgQ" = (
/obj/machinery/teleport/station,
/obj/machinery/light{
@@ -73783,13 +73608,21 @@
/obj/item/paicard,
/turf/open/floor/iron,
/area/crew_quarters/dorms)
-"xii" = (
+"xhM" = (
+/obj/effect/turf_decal/guideline/guideline_out/brown{
+ dir = 1
+ },
/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/railing/corner,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/techmaint,
+/area/hallway/secondary/service)
"xip" = (
/obj/machinery/rnd/production/techfab/department/cargo,
/obj/effect/turf_decal/stripes/box,
@@ -73825,6 +73658,22 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
+"xjh" = (
+/obj/effect/turf_decal/guideline/guideline_in/darkblue{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/dark_blue/half{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/dark_blue/half{
+ dir = 1
+ },
+/turf/open/floor/iron/large,
+/area/hallway/primary/central)
"xjm" = (
/obj/effect/turf_decal/tile/dark_red/fourcorners/contrasted{
alpha = 180;
@@ -73853,6 +73702,18 @@
/obj/machinery/airalarm/directional/west,
/turf/open/floor/iron/dark,
/area/bridge/meeting_room)
+"xjC" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/security)
"xjE" = (
/obj/structure/table/wood,
/obj/item/kirbyplants/random{
@@ -73868,6 +73729,24 @@
},
/turf/open/floor/carpet/purple,
/area/chapel/main)
+"xjG" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/dirt,
+/mob/living/basic/cockroach,
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/aft)
"xjK" = (
/obj/effect/turf_decal/siding/wood{
dir = 4
@@ -73928,6 +73807,15 @@
/obj/structure/ore_box,
/turf/open/floor/plating,
/area/maintenance/port/central)
+"xkC" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/department/engine)
"xkS" = (
/obj/effect/turf_decal/loading_area,
/obj/machinery/firealarm/directional/west,
@@ -74180,6 +74068,32 @@
},
/turf/open/floor/iron/sepia,
/area/maintenance/port/central)
+"xos" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ pixel_x = 25
+ },
+/obj/machinery/light_switch{
+ pixel_x = 25;
+ pixel_y = 40
+ },
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green{
+ pixel_x = -6;
+ pixel_y = 14
+ },
+/obj/item/camera/detective{
+ pixel_x = 3;
+ pixel_y = 7
+ },
+/obj/item/taperecorder{
+ pixel_x = 6;
+ pixel_y = 5
+ },
+/turf/open/floor/carpet/red,
+/area/security/detectives_office)
"xow" = (
/obj/machinery/door/airlock/public/glass{
name = "Primary Hallway"
@@ -74219,6 +74133,16 @@
},
/turf/open/floor/plating/airless,
/area/science/test_area)
+"xoV" = (
+/obj/machinery/newscaster{
+ pixel_y = 34
+ },
+/obj/machinery/camera/autoname{
+ dir = 6;
+ network = list("ss13","security","court")
+ },
+/turf/open/floor/wood,
+/area/security/courtroom)
"xoY" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
@@ -74257,15 +74181,18 @@
},
/turf/open/floor/iron,
/area/security/brig)
-"xqm" = (
-/obj/effect/turf_decal/guideline/guideline_in/yellow{
- dir = 4
+"xqq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
},
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/tile/yellow/half,
-/obj/effect/turf_decal/tile/yellow/half,
-/turf/open/floor/iron/large,
-/area/hallway/primary/central)
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/starboard/aft)
"xqx" = (
/obj/effect/decal/cleanable/cobweb{
layer = 5
@@ -74273,13 +74200,6 @@
/obj/structure/closet/secure_closet/personal,
/turf/open/floor/iron/dark,
/area/vacant_room/commissary/commissary2)
-"xqQ" = (
-/obj/effect/landmark/start/scientist,
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/turf/open/floor/iron/white,
-/area/science/explab)
"xqY" = (
/obj/machinery/status_display/evac{
pixel_y = 32
@@ -74299,21 +74219,6 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/ai_upload)
-"xrL" = (
-/obj/effect/turf_decal/guideline/guideline_out_arrow/brown{
- dir = 9
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/iron/techmaint,
-/area/maintenance/central)
"xrM" = (
/obj/effect/spawner/room/fivexfour,
/obj/effect/decal/cleanable/dirt,
@@ -74422,14 +74327,6 @@
/obj/structure/sign/departments/minsky/research/dorms,
/turf/closed/wall,
/area/hallway/secondary/entry)
-"xtb" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/open/floor/grass/no_border,
-/area/hallway/secondary/exit/departure_lounge)
"xte" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -74492,15 +74389,6 @@
},
/turf/open/floor/iron,
/area/hydroponics)
-"xtI" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/engine)
"xtK" = (
/obj/effect/turf_decal/caution,
/obj/machinery/door/poddoor/shutters/radiation/preopen{
@@ -74629,18 +74517,13 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/miningdock)
-"xvp" = (
-/obj/machinery/light_switch{
- pixel_x = -8;
- pixel_y = -21
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
+"xvg" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Maintenance Hatch";
+ req_one_access_txt = "12;31"
},
-/obj/vehicle/ridden/secway,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron,
-/area/ai_monitored/security/armory)
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/maintenance/port/central)
"xvs" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -74665,6 +74548,27 @@
},
/turf/open/floor/iron/dark,
/area/crew_quarters/heads/captain)
+"xvA" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/sunnybush,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "hopqueue";
+ name = "HoP Queue Shutters"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/grass/no_border,
+/area/crew_quarters/heads/hop)
"xvS" = (
/obj/machinery/computer/cargo/request{
dir = 8
@@ -74694,21 +74598,16 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/storage)
-"xwi" = (
+"xwf" = (
+/obj/effect/decal/cleanable/crayon,
/obj/machinery/light/small{
+ brightness = 3;
+ bulb_colour = "#1bcf15";
dir = 1
},
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera/autoname{
- dir = 1
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/bridge)
+/obj/item/food/butter/on_a_stick,
+/turf/open/floor/plating,
+/area/maintenance/department/medical)
"xwj" = (
/obj/structure/table/wood,
/obj/item/paper_bin,
@@ -74722,29 +74621,6 @@
},
/turf/open/floor/carpet/blue,
/area/bridge/meeting_room)
-"xwn" = (
-/obj/machinery/power/smes/engineering{
- charge = 2e+007
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
-"xwz" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/generic,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/medical/morgue)
"xwE" = (
/obj/machinery/light{
dir = 1
@@ -74799,6 +74675,16 @@
},
/turf/open/floor/iron/dark,
/area/quartermaster/office)
+"xwX" = (
+/obj/structure/window/reinforced,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/fernybush,
+/obj/machinery/camera/autoname{
+ dir = 4
+ },
+/turf/open/floor/grass/no_border,
+/area/hallway/secondary/exit/departure_lounge)
"xwY" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -74867,6 +74753,36 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron/white,
/area/crew_quarters/kitchen)
+"xxh" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/table,
+/obj/item/storage/box/evidence{
+ pixel_x = -4;
+ pixel_y = 8
+ },
+/obj/item/storage/box/bodybags{
+ pixel_x = 4;
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/guideline/guideline_edge_alt/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/guideline/guideline_half_edge/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/guideline/guideline_half_edge/red{
+ dir = 6
+ },
+/obj/effect/turf_decal/guideline/guideline_tri/red{
+ dir = 1
+ },
+/obj/structure/sign/poster/random{
+ pixel_y = -32
+ },
+/turf/open/floor/iron,
+/area/security/brig)
"xxl" = (
/obj/effect/turf_decal/tile/black/fourcorners,
/obj/effect/turf_decal/bot_white,
@@ -74886,6 +74802,21 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/tech,
/area/engine/atmos)
+"xxw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/shreds,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/port/aft)
"xxA" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -74893,6 +74824,22 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/tech,
/area/engine/atmos)
+"xxE" = (
+/obj/effect/turf_decal/siding/wideplating/dark,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/turf/open/floor/carpet/purple,
+/area/chapel/main)
"xxF" = (
/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted,
/obj/effect/decal/cleanable/dirt,
@@ -74917,19 +74864,6 @@
/obj/effect/turf_decal/tile/dark_green/corner_ramp/offset,
/turf/open/floor/iron,
/area/crew_quarters/cafeteria)
-"xyh" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=16-EHall";
- location = "15-CenterSE"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"xyi" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow{
@@ -75046,14 +74980,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/maintenance/department/science)
-"xzs" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/maintenance/central)
"xzx" = (
/obj/effect/turf_decal/guideline/guideline_in/red{
dir = 4
@@ -75163,32 +75089,16 @@
/obj/item/reagent_containers/spray/cleaner,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"xAq" = (
-/obj/structure/table/reinforced,
-/obj/machinery/reagentgrinder{
- pixel_y = 5
- },
-/obj/machinery/firealarm/directional/north,
-/turf/open/floor/iron/grid/steel,
-/area/science/xenobiology)
"xAQ" = (
/turf/open/floor/iron/dark/corner,
/area/hallway/primary/central)
-"xAV" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
+"xAZ" = (
+/obj/structure/chair/fancy/sofa/old{
dir = 4
},
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/iron/white,
-/area/science/xenobiology)
+/obj/effect/mapping_helpers/tile_breaker,
+/turf/open/floor/wood,
+/area/maintenance/central)
"xBa" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/orange/visible{
@@ -75212,6 +75122,31 @@
},
/turf/open/floor/iron/white,
/area/medical/sleeper)
+"xBV" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "Engidesk";
+ name = "engineering security door"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/northleft{
+ dir = 2;
+ name = "Engi Desk";
+ req_one_access_txt = "32;19"
+ },
+/obj/item/paper_bin{
+ pixel_x = 7;
+ pixel_y = 2
+ },
+/obj/item/pen{
+ pixel_x = 7;
+ pixel_y = 4
+ },
+/obj/structure/desk_bell{
+ pixel_x = -6
+ },
+/turf/open/floor/iron/dark,
+/area/engine/engineering)
"xBW" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -75228,16 +75163,18 @@
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/iron,
/area/maintenance/department/security)
-"xCc" = (
-/obj/effect/decal/cleanable/crayon,
-/obj/item/food/butteredtoast,
-/turf/open/floor/plating{
- broken = 1
- },
-/area/maintenance/department/medical)
"xCe" = (
/turf/closed/wall,
/area/maintenance/department/medical)
+"xCv" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/sunnybush,
+/turf/open/floor/grass/no_border,
+/area/hallway/secondary/exit/departure_lounge)
"xCx" = (
/obj/structure/reagent_dispensers/watertank,
/obj/effect/turf_decal/bot,
@@ -75256,6 +75193,17 @@
name = "mainframe floor"
},
/area/tcommsat/server)
+"xCW" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 6
+ },
+/obj/machinery/door/window/brigdoor{
+ dir = 4;
+ name = "Pet Solitary Confinement";
+ req_access_txt = "58"
+ },
+/turf/open/floor/carpet/red,
+/area/crew_quarters/heads/hos)
"xDh" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/turf_decal/tile/blue/anticorner,
@@ -75548,6 +75496,18 @@
},
/turf/open/floor/iron/dark,
/area/medical/chemistry)
+"xIf" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/turf/open/floor/catwalk_floor,
+/area/maintenance/central)
"xII" = (
/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
alpha = 180
@@ -75591,14 +75551,6 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/ai_upload)
-"xIT" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/obj/machinery/meter,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/engine/engine_room)
"xIU" = (
/obj/structure/table/reinforced,
/obj/item/toy/figure/bartender{
@@ -75659,15 +75611,6 @@
/obj/structure/sign/departments/medbay/alt2,
/turf/closed/wall,
/area/medical/medbay/lobby)
-"xKg" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/quartermaster/exploration_prep)
"xKh" = (
/obj/effect/turf_decal/tile/dark_blue{
alpha = 180;
@@ -75805,14 +75748,6 @@
},
/turf/open/floor/iron/tech,
/area/engine/engine_room)
-"xMG" = (
-/obj/effect/turf_decal/tile/neutral/half/contrasted,
-/obj/machinery/door/firedoor,
-/obj/machinery/camera/autoname{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/hallway/primary/aft)
"xMJ" = (
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -75848,10 +75783,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron/dark,
/area/security/warden)
-"xNe" = (
-/obj/structure/window/reinforced,
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"xNt" = (
/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{
alpha = 180
@@ -75870,16 +75801,18 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat/foyer)
-"xNB" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/power/apc/auto_name/north{
- pixel_y = 24
+"xNu" = (
+/obj/machinery/camera/autoname{
+ dir = 8;
+ network = list("ss13","medbay")
},
-/obj/structure/cable/yellow{
- icon_state = "0-2"
+/obj/effect/turf_decal/guideline/guideline_edge/blue{
+ dir = 4
},
-/turf/open/floor/plating,
-/area/maintenance/department/bridge)
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/medical/sleeper)
"xNC" = (
/obj/machinery/airalarm{
dir = 1;
@@ -75892,6 +75825,17 @@
/obj/structure/closet/crate/mail,
/turf/open/floor/iron,
/area/quartermaster/sorting)
+"xNG" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"xNU" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/landmark/start/shaft_miner,
@@ -75936,6 +75880,14 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/hallway/primary/aft)
+"xOE" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer4,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer2,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/machinery/meter,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"xOP" = (
/obj/structure/railing/corner{
dir = 8
@@ -75944,14 +75896,6 @@
dir = 8
},
/area/hallway/primary/central)
-"xPj" = (
-/obj/machinery/mineral/stacking_machine{
- dir = 4;
- input_dir = 1;
- output_dir = 4
- },
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal)
"xPu" = (
/obj/effect/landmark/blobstart,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
@@ -76011,13 +75955,31 @@
},
/turf/open/floor/iron/tech,
/area/engine/engine_room)
-"xQM" = (
-/obj/machinery/firealarm/directional/east,
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/iron/white,
-/area/science/xenobiology)
+"xPT" = (
+/obj/machinery/camera/autoname{
+ dir = 1;
+ network = list("ss13","security")
+ },
+/obj/machinery/power/apc/auto_name/south{
+ pixel_y = -24
+ },
+/obj/structure/cable/yellow,
+/turf/open/floor/wood,
+/area/security/detectives_office)
+"xQy" = (
+/obj/effect/turf_decal/guideline/guideline_edge/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/science/research)
"xRe" = (
/obj/effect/turf_decal/tile/dark_green/fourcorners/contrasted,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -76049,14 +76011,6 @@
},
/turf/open/floor/iron,
/area/science/mixing)
-"xRn" = (
-/obj/structure/window/reinforced,
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/grass/jungle/b,
-/obj/structure/flora/ausbushes/palebush,
-/mob/living/simple_animal/butterfly,
-/turf/open/floor/grass/no_border,
-/area/hallway/secondary/exit/departure_lounge)
"xRL" = (
/obj/structure/table/wood,
/obj/structure/mirror{
@@ -76088,21 +76042,38 @@
"xST" = (
/turf/open/floor/carpet/green,
/area/crew_quarters/dorms)
-"xTa" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+"xSZ" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+/turf/open/floor/iron/dark/smooth_edge{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
+/area/hallway/primary/central)
+"xTh" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible/layer4{
+ dir = 8
+ },
/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/cleanable/shreds,
+/obj/item/radio/intercom{
+ pixel_x = -32;
+ pixel_y = -3
+ },
+/obj/machinery/power/smes/engineering{
+ charge = 2e+007
+ },
+/obj/structure/cable/yellow,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
+"xTD" = (
+/obj/effect/spawner/lootdrop/ruinloot/medical,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/structure/cable/yellow{
- icon_state = "4-8"
+ icon_state = "1-2"
},
/turf/open/floor/catwalk_floor,
-/area/maintenance/port/aft)
+/area/maintenance/starboard/aft)
"xTU" = (
/obj/effect/turf_decal/tile/yellow{
dir = 4
@@ -76112,21 +76083,16 @@
},
/turf/open/floor/iron/white,
/area/medical/chemistry)
-"xUd" = (
-/obj/effect/landmark/start/assistant,
-/obj/effect/turf_decal/siding/white{
+"xTV" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
dir = 1
},
-/turf/open/floor/glass/reinforced,
-/area/hallway/primary/central{
- dynamic_lighting = 2;
- lighting_brightness_tube = 11;
- lighting_colour_bulb = "#DDE6FF";
- lighting_colour_night = "#DDE6FF";
- lighting_colour_tube = "#DDE6FF";
- lighting_overlay_colour = "#DDE6FF";
- power_light = 0
- })
+/obj/structure/lattice/catwalk/over,
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
"xUe" = (
/obj/effect/turf_decal/tile/neutral,
/obj/machinery/power/smes,
@@ -76141,6 +76107,16 @@
/obj/item/stack/cable_coil,
/turf/open/space/basic,
/area/solar/port/fore)
+"xUA" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/iron/white,
+/area/science/xenobiology)
"xUD" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
@@ -76221,6 +76197,15 @@
},
/turf/open/floor/iron/tech,
/area/engine/atmos)
+"xVD" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/turf/open/floor/iron/dark,
+/area/chapel/main)
"xVF" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
@@ -76247,6 +76232,15 @@
},
/turf/open/floor/iron/tech,
/area/engine/engine_room)
+"xWu" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/smes/engineering{
+ charge = 2e+007
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/engine/engine_room)
"xWy" = (
/obj/effect/turf_decal/tile/purple{
dir = 8
@@ -76254,6 +76248,24 @@
/mob/living/simple_animal/kalo,
/turf/open/floor/iron,
/area/janitor)
+"xWA" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/guideline/guideline_edge/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/science/research)
"xWL" = (
/obj/effect/turf_decal/tile/yellow{
dir = 8
@@ -76310,14 +76322,6 @@
},
/turf/open/floor/iron,
/area/science/lobby)
-"xXu" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/department/security)
"xXE" = (
/obj/machinery/power/apc/auto_name/east,
/obj/machinery/camera/autoname{
@@ -76393,20 +76397,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
-"xYV" = (
-/obj/effect/turf_decal/tile/dark_blue/fourcorners/contrasted{
- alpha = 180
- },
-/obj/structure/chair/fancy/corp{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/item/toy/plush/slimeplushie/red{
- pixel_x = 2;
- pixel_y = 1
- },
-/turf/open/floor/iron/dark,
-/area/ai_monitored/turret_protected/aisat/foyer)
"xYW" = (
/obj/structure/table/wood,
/obj/item/folder/blue{
@@ -76513,21 +76503,6 @@
},
/turf/open/floor/plating,
/area/engine/atmos)
-"yag" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/item/storage/box{
- pixel_x = -4;
- pixel_y = 6
- },
-/obj/item/storage/box{
- pixel_x = 3
- },
-/obj/machinery/airalarm/directional/west,
-/turf/open/floor/catwalk_floor/iron_dark,
-/area/maintenance/disposal)
"yak" = (
/obj/effect/turf_decal/bot,
/obj/machinery/disposal/bin,
@@ -76542,18 +76517,12 @@
},
/turf/open/floor/iron,
/area/medical/apothecary)
-"yar" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+"yaq" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 8
},
-/turf/open/floor/catwalk_floor,
-/area/maintenance/starboard/aft)
+/turf/open/floor/engine,
+/area/science/explab)
"yaw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/white,
@@ -76621,13 +76590,6 @@
},
/turf/open/floor/plating,
/area/vacant_room/commissary/commissary1)
-"ybk" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/spawner/lootdrop/glowstick/lit,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/central)
"ybl" = (
/obj/machinery/door/airlock/maintenance_hatch{
id_tag = "commissarydoor1";
@@ -76641,29 +76603,6 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/vacant_room/commissary/commissary1)
-"ybp" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/central)
-"ybw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/light_switch{
- pixel_x = 21;
- pixel_y = 22
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"ybx" = (
/obj/structure/disposalpipe/segment{
dir = 8
@@ -76677,14 +76616,14 @@
dir = 1
},
/area/medical/medbay/central)
-"ybC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+"ybD" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
},
-/turf/open/floor/catwalk_floor,
-/area/maintenance/port/aft)
+/obj/structure/window/reinforced,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"ybW" = (
/obj/structure/sign/departments/medbay/alt2{
pixel_x = 33;
@@ -76774,6 +76713,10 @@
},
/turf/open/floor/iron/dark,
/area/vacant_room/commissary/commissary1)
+"ydC" = (
+/obj/effect/decal/cleanable/shreds,
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
"ydM" = (
/obj/effect/turf_decal/tile/red/half/contrasted{
dir = 4
@@ -76829,21 +76772,6 @@
},
/turf/open/floor/carpet/orange,
/area/quartermaster/qm)
-"yej" = (
-/obj/structure/railing/corner{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
"yel" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/eastright{
@@ -76876,16 +76804,6 @@
},
/turf/open/floor/iron,
/area/science/lab)
-"yew" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/solar{
- id = "portsolar";
- name = "Port Solar Array"
- },
-/turf/open/floor/iron/solarpanel/airless,
-/area/solar/port/aft)
"yex" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow,
@@ -76897,27 +76815,6 @@
"yeA" = (
/turf/open/space/basic,
/area/space)
-"yeC" = (
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/turf_decal/siding/thinplating/light{
- dir = 8
- },
-/obj/machinery/light/floor{
- brightness = 15;
- bulb_colour = "#FFE4CE";
- bulb_vacuum_brightness = 15;
- nightshift_brightness = 10;
- nightshift_light_color = "#E6EBFF"
- },
-/obj/effect/turf_decal/siding/wideplating/dark{
- dir = 8
- },
-/turf/open/floor/iron/dark/smooth_edge{
- dir = 4
- },
-/area/hallway/primary/central)
"yfb" = (
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plating,
@@ -76932,6 +76829,19 @@
dir = 10
},
/area/hallway/secondary/exit/departure_lounge)
+"yfq" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 32
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/iron,
+/area/engine/engine_room)
"yfH" = (
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron/dark,
@@ -77026,12 +76936,15 @@
/area/engine/atmos)
"yhv" = (
/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/chair/fancy/comfy{
+ color = "#596479";
dir = 8
},
-/obj/item/kirbyplants/random,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/glass/reinforced,
-/area/crew_quarters/cafeteria)
+/obj/structure/window/reinforced,
+/turf/open/floor/iron/dark/smooth_large,
+/area/hallway/primary/central)
"yhx" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 1;
@@ -77148,15 +77061,6 @@
},
/turf/open/floor/iron/dark,
/area/engine/engine_room)
-"yke" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 1
- },
-/turf/open/floor/glass/reinforced,
-/area/crew_quarters/cafeteria)
"yki" = (
/obj/effect/turf_decal/tile/dark_red{
dir = 4
@@ -77241,25 +77145,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/cafeteria)
-"ykQ" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/flora/ausbushes/fullgrass,
-/obj/structure/flora/ausbushes/lavendergrass,
-/obj/structure/flora/rock/jungle,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "hopqueue";
- name = "HoP Queue Shutters"
- },
-/turf/open/floor/grass/no_border,
-/area/crew_quarters/heads/hop)
"ykU" = (
/obj/effect/landmark/start/paramedic,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
@@ -77344,22 +77229,61 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
-"ylO" = (
-/obj/structure/disposalpipe/segment{
- dir = 2
+"ylT" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
},
-/obj/structure/railing/corner{
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ desc = "Talk through this. It looks like it has been modified to not broadcast.";
+ freerange = 1;
+ name = "Prison intercom";
+ pixel_y = 25;
+ prison_radio = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
},
-/turf/open/floor/iron/dark/smooth_large,
-/area/hallway/primary/central)
-"ymb" = (
+/turf/open/floor/iron/dark,
+/area/security/prison{
+ name = "Prison Processing"
+ })
+"ylW" = (
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 9
},
-/obj/structure/railing/corner{
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 8
},
+/obj/machinery/camera/autoname{
+ dir = 1;
+ network = list("ss13","rd")
+ },
+/obj/effect/turf_decal/guideline/guideline_edge/purple,
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron/white/side{
+ dir = 1
+ },
+/area/science/research)
+"ymh" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 21;
+ pixel_y = 22
+ },
/turf/open/floor/iron/dark/smooth_large,
/area/hallway/primary/central)
@@ -91344,15 +91268,15 @@ yeA
yeA
ewB
yeA
-uNP
-uNP
-uNP
+bTL
+bTL
+bTL
odm
eEg
tbt
-uNP
-uNP
-uNP
+bTL
+bTL
+bTL
yeA
ewB
yeA
@@ -91858,15 +91782,15 @@ yeA
gsA
ewB
gsA
-dLW
-dLW
-dLW
+ryv
+ryv
+ryv
odm
eEg
tbt
-dLW
-dLW
-dLW
+ryv
+ryv
+ryv
iDN
cjc
yeA
@@ -92372,15 +92296,15 @@ yeA
gsA
gsA
gsA
-uNP
-uNP
-uNP
+bTL
+bTL
+bTL
odm
vUL
tbt
-uNP
-uNP
-uNP
+bTL
+bTL
+bTL
yeA
gsA
gsA
@@ -92886,15 +92810,15 @@ yeA
ewB
gsA
yeA
-dLW
-dLW
-dLW
+ryv
+ryv
+ryv
odm
eEg
yeA
iDO
-dLW
-dLW
+ryv
+ryv
yeA
rRD
wAW
@@ -93399,9 +93323,9 @@ yeA
gsA
cjc
roh
-uNP
-uNP
-uNP
+bTL
+bTL
+bTL
fHH
yeA
fHH
@@ -93913,8 +93837,8 @@ yeA
ewB
gsA
yeA
-dLW
-dLW
+ryv
+ryv
iDO
lAb
yeA
@@ -94426,9 +94350,9 @@ ewB
gsA
wAW
gsA
-uNP
-uNP
-uNP
+bTL
+bTL
+bTL
tSx
fHH
yeA
@@ -94940,8 +94864,8 @@ gsA
gsA
gsA
gsA
-dLW
-dLW
+ryv
+ryv
vUL
fHH
fHH
@@ -95541,15 +95465,15 @@ gsA
yeA
yeA
yeA
-pkH
-pkH
-pkH
+trn
+trn
+trn
odm
tBB
tbt
-pkH
-pkH
-pkH
+trn
+trn
+trn
yeA
ewB
yeA
@@ -96055,15 +95979,15 @@ gsA
yeA
yeA
yeA
-yew
-yew
-yew
+iSN
+iSN
+iSN
odm
tBB
tbt
-yew
-yew
-yew
+iSN
+iSN
+iSN
gsA
ewB
yeA
@@ -96569,15 +96493,15 @@ ewB
gsA
gsA
yeA
-pkH
-pkH
-pkH
+trn
+trn
+trn
odm
tBB
tbt
-pkH
-pkH
-pkH
+trn
+trn
+trn
gsA
yeA
gsA
@@ -97083,15 +97007,15 @@ jGx
gsA
gsA
yeA
-yew
-yew
-yew
+iSN
+iSN
+iSN
odm
tBB
tbt
-yew
-yew
-yew
+iSN
+iSN
+iSN
yeA
gsA
ewB
@@ -97596,17 +97520,17 @@ yeA
gsA
gsA
gsA
-pkH
-pkH
-pkH
-pkH
+trn
+trn
+trn
+trn
odm
nxQ
tbt
-pkH
-pkH
-pkH
-pkH
+trn
+trn
+trn
+trn
gsA
ewB
gsA
@@ -98083,9 +98007,9 @@ uDc
lmb
hqy
cMW
-bLD
-iUC
-wrn
+kJY
+oBD
+rzo
llk
eJm
aQE
@@ -98110,17 +98034,17 @@ yeA
gsA
gsA
yeA
-yew
-yew
-yew
-yew
+iSN
+iSN
+iSN
+iSN
odm
sBb
tbt
-yew
-yew
-yew
-yew
+iSN
+iSN
+iSN
+iSN
yeA
gsA
gsA
@@ -98294,9 +98218,9 @@ lIC
pEC
nEb
vIF
-jat
-yag
-dDA
+tKq
+uAH
+sCY
sNa
vDo
jut
@@ -98340,10 +98264,10 @@ tnB
dDa
rBF
cMW
-ddt
-wsF
-tkl
-mSa
+bTR
+oTU
+mEi
+gWq
hCg
eua
ayc
@@ -98542,7 +98466,7 @@ yeA
yeA
nEb
xjm
-ono
+vIZ
kSR
jgQ
iQP
@@ -98552,8 +98476,8 @@ giZ
nEb
lIa
lrw
-rxl
-aTe
+esM
+fYr
sNa
mhd
nOh
@@ -98598,9 +98522,9 @@ hiU
tIR
cMW
bwB
-wEE
-xKg
-fGV
+cfT
+fvE
+hOH
hCg
bOe
jaQ
@@ -98623,19 +98547,19 @@ sLX
sxX
lfC
gsA
-pkH
-pkH
-pkH
-pkH
-pkH
+trn
+trn
+trn
+trn
+trn
odm
tBB
tbt
-pkH
-pkH
-pkH
-pkH
-pkH
+trn
+trn
+trn
+trn
+trn
yeA
gsA
ewB
@@ -98809,8 +98733,8 @@ cNI
nEb
eDU
aaB
-aIv
-gUM
+gUF
+hEC
oUP
ate
sal
@@ -98855,9 +98779,9 @@ cCS
bhM
cMW
qpz
-pLJ
-jfg
-iJF
+tjh
+rtZ
+qin
eLF
tmn
vXW
@@ -99066,8 +98990,8 @@ oFH
nEb
uyF
sqR
-xPj
-dbA
+rAD
+hJh
sNa
gfd
iov
@@ -99082,7 +99006,7 @@ suJ
haM
tos
fcO
-mNH
+lkA
fcO
haM
haM
@@ -99137,19 +99061,19 @@ mfz
hvo
lfC
gsA
-yew
-yew
-yew
-yew
-yew
+iSN
+iSN
+iSN
+iSN
+iSN
odm
sBb
tbt
-yew
-yew
-yew
-yew
-yew
+iSN
+iSN
+iSN
+iSN
+iSN
gsA
yeA
ewB
@@ -99324,8 +99248,8 @@ nEb
oom
wcV
osV
-cUk
-dwW
+viN
+oJT
xwW
fLS
mDq
@@ -99339,7 +99263,7 @@ suJ
haM
haM
fcO
-vgc
+fJh
fcO
fdu
fdu
@@ -99563,7 +99487,7 @@ gsA
emF
pIC
kbM
-tYh
+txn
grt
wBi
wBi
@@ -99596,7 +99520,7 @@ krf
gHE
naq
fVm
-vDk
+ckP
eRv
aid
fSI
@@ -99826,7 +99750,7 @@ nEb
pbb
qFt
bmx
-hQH
+wuQ
wUE
mEt
pcI
@@ -99853,7 +99777,7 @@ mec
sSU
jpb
mec
-csJ
+oqg
mec
sSU
sSU
@@ -100077,7 +100001,7 @@ mJJ
pxm
poQ
uPV
-kUl
+xdU
dvk
bkK
msW
@@ -100329,7 +100253,7 @@ yeA
gsA
gsA
cKl
-atF
+qKS
rDf
jZk
iGi
@@ -100343,7 +100267,7 @@ cgq
bAj
fls
aOm
-shJ
+pmV
kZu
bAj
gsA
@@ -100596,7 +100520,7 @@ kFx
crB
bXk
wIy
-sGb
+xxh
bAj
nLc
iTy
@@ -100843,9 +100767,9 @@ eln
kFx
rhT
wIb
-tnA
+uJB
aCn
-bHa
+dAb
wSw
dNb
rzL
@@ -100858,7 +100782,7 @@ trr
yaP
asB
qNP
-wuj
+seE
bAj
nmf
nmf
@@ -100896,34 +100820,34 @@ eUN
eUN
wer
ppt
-sGI
-fRE
-kyJ
-lBF
-wFO
-lBF
-txF
-vzb
+teu
+bZr
+hBW
+vpU
+bKR
+vpU
+hKy
+edm
jCR
xkS
-dZx
+rZG
xys
jcG
oNC
evd
rhQ
eLa
-fYm
-oMx
-poH
-bqS
-nGg
-nGg
-woL
-kXk
-vbL
-lkC
-sVm
+hMn
+eOy
+oeJ
+blF
+ajg
+ajg
+jUq
+ofJ
+oyD
+aOK
+hyK
pYx
hok
oER
@@ -101105,7 +101029,7 @@ iOa
jyu
rIG
jyu
-sSN
+sRj
bAo
rmT
arO
@@ -101355,7 +101279,7 @@ yeA
qFk
eoQ
xGA
-ios
+gee
hfH
joN
aCn
@@ -101367,7 +101291,7 @@ bAo
iqW
arO
saW
-pVT
+sez
bAj
pkt
drf
@@ -101410,35 +101334,35 @@ mvH
kTW
eeZ
xXo
-bDJ
+vic
dMN
wEy
htN
-xdV
-tdl
+dwI
+vYu
hKT
ngL
pWo
hFc
hVY
joJ
-jpw
-wlR
+gBo
+gpc
ekd
hwh
qxK
fjR
-gAI
-enV
-whl
-eeA
-npy
-npy
-mgp
-lCz
-aZk
-vDO
-cJt
+wHQ
+lZY
+aaV
+mnK
+xQy
+xQy
+aJN
+xWA
+hip
+rKp
+rlB
hhY
eUx
saH
@@ -101458,7 +101382,7 @@ ktu
hjl
xmu
nNV
-dEr
+fUz
pIj
fAl
gsA
@@ -101619,11 +101543,11 @@ bAo
hbo
bUQ
tBN
-ajF
+aLk
bAo
oMT
bsA
-uGi
+kHU
dAy
bAj
bAj
@@ -101660,7 +101584,7 @@ saf
saf
waw
eXl
-bNd
+nOL
qwL
abg
ovK
@@ -101710,8 +101634,8 @@ qyp
oSy
fAl
hYv
-vHW
-qyl
+oTv
+nEq
wpm
vGx
ePS
@@ -101917,7 +101841,7 @@ cME
gsK
kml
eXl
-qWw
+utF
abg
lGL
dxU
@@ -101933,7 +101857,7 @@ ryi
llP
ygb
qtW
-lBF
+vpU
feM
jja
ryr
@@ -101952,7 +101876,7 @@ pFb
kTh
diQ
pPA
-gIR
+oON
gci
wcx
vzd
@@ -102174,7 +102098,7 @@ tPk
aaR
jyI
cOA
-qWw
+utF
abg
kWu
jAD
@@ -102209,7 +102133,7 @@ idg
lKT
duI
pPA
-rzm
+dVj
gAE
wcx
lyc
@@ -102391,7 +102315,7 @@ kKx
knW
yku
lls
-dhg
+nPy
icK
wgX
mky
@@ -102431,7 +102355,7 @@ caY
nOJ
ePz
eXl
-qWw
+utF
abg
iNB
qvG
@@ -102447,7 +102371,7 @@ yga
uSu
dzf
ugX
-tFp
+kav
tmt
scE
dom
@@ -102466,7 +102390,7 @@ xug
gfP
okb
pPA
-xTa
+xxw
oit
wcx
szH
@@ -102643,7 +102567,7 @@ pIs
gfJ
xlC
gqn
-inT
+lXM
vzm
cuQ
vzm
@@ -102687,8 +102611,8 @@ sdb
mIT
sBt
wRO
-dCf
-ybp
+iEI
+luw
dst
exh
szf
@@ -102723,7 +102647,7 @@ nuU
izG
smb
kor
-rdr
+oxF
hxH
wcx
mou
@@ -102945,7 +102869,7 @@ fan
eOI
xNC
eXl
-qWw
+utF
hkB
naW
oEN
@@ -102964,8 +102888,8 @@ qAe
nsC
nnB
fvp
-kaq
-sIo
+rdS
+fen
mtN
qsz
ghj
@@ -102980,7 +102904,7 @@ dEP
dEP
iFb
kor
-gWJ
+bOF
ahA
wcx
stc
@@ -103150,7 +103074,7 @@ gsA
oIb
gZS
fon
-sbI
+xCW
nCb
axk
jHs
@@ -103202,7 +103126,7 @@ bWn
wcR
ieD
eXl
-vqB
+ieI
cOA
eXl
eXl
@@ -103225,7 +103149,7 @@ lAQ
wMI
bqO
ljt
-hRj
+ylW
dEP
vJq
nXn
@@ -103237,7 +103161,7 @@ lUQ
oLA
jxg
fAl
-hQo
+iqX
jZA
wcx
qQi
@@ -103416,7 +103340,7 @@ nCb
nCb
hXG
oXo
-kJc
+upS
aAF
dDS
fhl
@@ -103459,7 +103383,7 @@ wRO
hvB
dZF
cOA
-iyP
+rPE
aya
eXl
jFD
@@ -103480,8 +103404,8 @@ nnB
jcy
nIi
vKB
-koI
-hDl
+nhQ
+slA
nMj
wdz
iZa
@@ -103494,7 +103418,7 @@ wnH
dEP
kzq
qZZ
-rBe
+pPY
oGP
cPB
oTx
@@ -103716,7 +103640,7 @@ wRO
waw
chg
eXl
-isG
+oTS
fRc
aSr
lka
@@ -103736,12 +103660,12 @@ aoF
vFG
eYO
lMu
-euN
+lff
xmC
boq
boq
-dEP
-dEP
+mRk
+mRk
dEP
tlS
pnz
@@ -103751,7 +103675,7 @@ kmq
oLA
jsM
qZZ
-rBe
+pPY
vqT
cPB
hOw
@@ -103923,7 +103847,7 @@ gsA
uYx
tqK
cIf
-hUh
+dMH
pHx
oMO
uYx
@@ -103937,7 +103861,7 @@ hBA
pqn
bRp
nrP
-eNC
+eFf
fHK
fHK
fHK
@@ -103973,7 +103897,7 @@ lzE
ePI
dJu
cOA
-qWw
+utF
mTD
cOA
vnX
@@ -103989,10 +103913,10 @@ vhr
xGG
bRf
pzH
-kCX
-nPH
-rxt
-lRI
+pOp
+oZn
+cXM
+smX
jRK
xmC
lVr
@@ -104008,7 +103932,7 @@ dEP
dEP
fAl
qZZ
-rBe
+pPY
rvU
wcx
cPB
@@ -104198,7 +104122,7 @@ rgL
iZE
rWM
cUa
-fsl
+gnE
tJT
rnw
rAQ
@@ -104230,7 +104154,7 @@ cFO
cOA
cOA
eXl
-qWw
+utF
gCH
eXl
cOA
@@ -104240,41 +104164,41 @@ eXl
nnB
mCd
dpc
-mKV
-aix
-iQh
+dcu
+msj
+vNH
ieQ
-epu
+hyQ
ieQ
-sfm
+wcD
vFG
jWc
gFH
ctL
bHz
gFy
-iDj
+jMN
lpa
-xqQ
-uOa
-pPy
+uve
+cPD
+uUA
hob
-wfM
+hnb
nCC
bek
fAl
rkH
oDO
-oAD
-wHL
-qrx
-ybC
-ybC
-ybC
-ybC
-lQy
-aPb
-pqk
+xjG
+bcH
+rjH
+fzK
+fzK
+fzK
+fzK
+dqc
+fzK
+fFo
qZZ
jcW
jcW
@@ -104439,7 +104363,7 @@ hVV
wDS
mAB
lQp
-xvp
+nNv
uYx
tFD
oXo
@@ -104465,29 +104389,29 @@ pZc
hPP
hPP
hPP
-dcX
-iAv
-vLP
-sDu
-xXu
-mpQ
-xeL
-tto
-pAn
-pAn
-fwu
+lnQ
+wZs
+bIz
+msq
+qdW
+jjB
+wyw
+nBn
+xjC
+xjC
+vQc
oIY
ibI
pEs
gbm
-wGP
-jfF
-jfF
-jfF
-jfF
-jfF
-jfF
-ybk
+xvg
+fiB
+fiB
+fiB
+fiB
+fiB
+fiB
+mWS
gfZ
iVH
kAP
@@ -104496,8 +104420,8 @@ fRc
cFO
sgg
eyE
-jUF
-fSw
+iVf
+tVp
fZk
vRW
gvD
@@ -104509,40 +104433,40 @@ dYv
bHp
clC
xmC
-nCA
-dNO
-jHo
-nuu
-uUA
-nfp
+pEW
+crM
+crM
+mSh
+uve
+xds
dOB
-tNR
-tQm
+jdW
+fom
uZw
oRe
-iZG
-mns
-tAG
+flY
+kFE
+qtb
kGp
ozf
hVN
uoO
-lhM
-rUk
+moa
+szJ
afv
-gLU
-fln
+eBL
+twN
mKf
jcW
-pIB
-fnx
-oCU
-qEk
-rdd
+xWu
+fAH
+kKG
+xTh
+fKj
jtA
-bOb
-qgd
-wiG
+lef
+rVg
+kSE
jcW
yeA
yeA
@@ -104706,18 +104630,18 @@ vLJ
vLJ
baU
bSI
-rFi
+ruu
oTf
fVQ
jlw
rki
cUa
-ufk
+jxc
kkg
pgT
wdS
kje
-vIn
+xPT
vbe
aJB
nBO
@@ -104752,7 +104676,7 @@ wIm
vvU
ebK
nnB
-lAz
+wTx
sfs
pYZ
nnB
@@ -104765,14 +104689,14 @@ lqs
dYv
bHp
aIj
+xmC
+pQV
+juZ
+jHo
+cLF
+wFq
uUA
-bhF
-bhF
-sAp
-uUA
-uUA
-qeK
-qga
+cYV
ouD
sag
wHY
@@ -104780,26 +104704,26 @@ qZZ
qUa
xDV
mdR
-qwf
+ydC
uBX
tpl
btk
nxR
sXl
riv
-gLU
-fix
+oGE
+twN
jFp
jcW
-kjn
-buN
-kap
-otY
-bPn
+ivY
+mge
+jDD
+dqt
+cax
hVq
-rFj
-kBh
-hLx
+fEY
+gaL
+uuG
jcW
yeA
yeA
@@ -104958,7 +104882,7 @@ uYx
hBK
hBK
hBK
-tAF
+isJ
njC
hgl
fLs
@@ -104969,8 +104893,8 @@ bNo
gCh
gQR
cUa
-qrF
-tcy
+fhK
+xos
ijM
onV
jgM
@@ -105023,10 +104947,11 @@ cuH
eAx
pzV
uUA
-ucY
-fGb
-fGb
-gRI
+uUA
+evJ
+aON
+evJ
+uUA
iEd
iEd
iEd
@@ -105046,17 +104971,16 @@ iEd
iKS
uEq
qZZ
-qZZ
jcW
-pcd
-eRw
-aje
-eZz
-xIT
+hyX
+hHo
+wdh
+mBn
+xOE
hVq
-sZe
-vAS
-qVJ
+wor
+qXU
+nVB
jcW
yeA
yeA
@@ -105279,11 +105203,12 @@ gfD
mtq
voJ
aIj
-fpl
+uUA
+miw
+rrb
+whS
+yaq
miw
-nFw
-hcf
-kID
iEd
tyx
fwF
@@ -105301,19 +105226,18 @@ tyx
dfe
gVS
iEd
-eoS
-tLt
-cFk
+hcU
+lQJ
jcW
-pIB
-xwn
-dob
-tZc
-hFw
+xWu
+eyM
+vQL
+ilS
+gWE
uhP
-tAd
-lGc
-osX
+cAT
+ghx
+dvx
jcW
rKZ
rKZ
@@ -105469,13 +105393,13 @@ wDS
pUi
wPU
fOb
-nZS
-kfk
+imo
+gut
kWP
pZe
gGF
iaG
-roe
+efl
aaQ
dXY
aap
@@ -105486,7 +105410,7 @@ uEC
eBC
lQG
rXd
-iFL
+dbo
utM
cAq
lLv
@@ -105526,7 +105450,7 @@ uin
cFO
hGs
qie
-kPR
+vlq
jnG
qEG
lNa
@@ -105536,11 +105460,12 @@ rXr
vst
tgF
sng
-fpl
-kID
-aWN
-pyL
-nkG
+uUA
+wrB
+jlb
+kSG
+jlb
+sNx
iEd
boR
twg
@@ -105558,9 +105483,8 @@ boR
bmz
tyx
iEd
-eoS
-qSP
-bOH
+hcU
+uSw
jcW
voY
gZt
@@ -105720,13 +105644,13 @@ gsA
gsA
pia
uYx
-pKp
+osa
mUX
-nli
-dbO
-sRy
+eNe
+ips
+tBL
uYx
-ixG
+mkt
vMa
dWk
iQH
@@ -105769,7 +105693,7 @@ ijJ
jGK
jap
oKM
-pis
+cwG
sNq
oiI
dAa
@@ -105793,10 +105717,11 @@ kOH
jWc
bHp
aIj
-fpl
-miw
-jlb
+uUA
miw
+saA
+mFb
+jZM
miw
iEd
tyx
@@ -105815,9 +105740,8 @@ tyx
boR
ijx
iEd
-eWO
-jRG
-hXK
+hcU
+pAt
tKB
fXp
jgz
@@ -105983,8 +105907,8 @@ uYx
uYx
uYx
uYx
-uIK
-oWD
+saP
+wrh
uaZ
bKr
tfC
@@ -106050,30 +105974,30 @@ qie
tbM
bHp
aIj
-uUA
-miw
-rNe
-miw
-miw
+iEd
+iEd
+iEd
+iEd
+iEd
+iEd
iEd
ikE
-uGP
+nWc
cGT
nQy
-clH
+ohk
ucg
hNx
-caP
+lnu
oKe
eop
-myw
+wdc
vRI
imF
-pkD
+oGN
fiA
iEd
-luR
-mYj
+cSe
qtl
jcW
gQY
@@ -106248,7 +106172,7 @@ nFk
bDs
pVy
ifC
-ifC
+sjV
wkK
ifC
njd
@@ -106261,7 +106185,7 @@ bXM
jJB
vMg
ntc
-rha
+xoV
nUU
jqL
xkq
@@ -106308,15 +106232,16 @@ gzJ
tbF
wYa
iEd
-iEd
-iEd
-iEd
-iEd
-iEd
-jbj
+boR
+boR
+mAZ
+xyi
+hxa
+hmf
+qHB
ipT
ayp
-nXs
+qHB
ipT
ayp
qHB
@@ -106324,13 +106249,12 @@ sWw
ayp
nFQ
ipT
-pZT
+ucC
qHB
sWw
sjd
iEd
-ssA
-tzv
+gGx
nsz
jcW
cXH
@@ -106532,10 +106456,10 @@ xPE
cDX
yfX
gQP
-ron
+bGs
qUU
mBz
-ron
+bGs
oiI
fIf
uwF
@@ -106565,29 +106489,29 @@ dYv
lMu
tYV
iEd
-boR
-boR
-mAZ
-xyi
-hxa
-ghy
-lHd
+pSR
+sCJ
+tyx
+oQw
+foe
uKa
-eAS
-iww
+lbf
+iCi
+uKa
+dEM
+xUA
uKa
iZV
iCi
bcq
-gai
-dgD
-bNL
+otx
+xUA
+uKa
iRw
jqq
uKa
-dly
-gIw
-flk
+ogm
+itV
esH
jcW
oDk
@@ -106822,29 +106746,29 @@ tuP
bHp
aIj
iEd
-pSR
-sCJ
+tQl
tyx
-ccI
-foe
-pPm
-cfn
+tyx
+ajY
+uvC
+aKr
+pbd
+pmQ
+nJT
+eAY
pmQ
-pVo
-aqJ
tUD
dpq
sYQ
-wsd
-boU
+vjS
nqQ
-xQM
+tuq
+hhG
uWy
-jwX
+lOS
lbc
iEd
-nLi
-bPT
+kZA
slG
jcW
faC
@@ -107000,10 +106924,10 @@ gBk
iMO
oUD
dkb
-vla
-oaQ
-jAh
-dLA
+cHR
+azn
+vur
+lxb
qLO
mtI
mtI
@@ -107020,7 +106944,7 @@ mjV
rId
ifC
ifC
-dAm
+bsl
ifC
wBP
vMT
@@ -107055,7 +106979,7 @@ oiI
oiI
oiI
gSS
-lEb
+arz
fsy
xIX
pro
@@ -107077,31 +107001,31 @@ nHQ
fsB
sZU
gYb
-okC
+ycl
iEd
-tQl
-tyx
-tyx
-ajY
-uvC
-iqr
-jRC
+dRq
+dRq
+dRq
+dRq
+dRq
+gdt
+oWT
qMR
iEd
qfl
pRA
+sCP
npQ
vfR
-vfR
tjH
qAI
iEd
kTT
wkj
+paa
lWC
iEd
-ssA
-cdH
+gGx
slN
jcW
otr
@@ -107260,7 +107184,7 @@ hhv
hhv
hhv
hhv
-uzj
+pPo
qLO
mtI
mtI
@@ -107277,10 +107201,10 @@ uSo
lZI
sFf
cuM
-iFf
+qEC
njd
njd
-vpH
+ylT
mnm
uzb
sWG
@@ -107333,23 +107257,23 @@ wAA
ffm
jCC
jWc
-wEi
-ycl
-iEd
-dRq
-dRq
-dRq
-dRq
-dRq
-lXo
-xAV
+lMu
+tPQ
+sqI
+jEa
+iFD
+iim
+mFm
+ixy
+wVR
+qnY
oaH
iEd
iEd
iEd
-iXT
-dPV
-dUB
+oBr
+fwp
+nNr
iEd
iEd
iEd
@@ -107357,8 +107281,8 @@ hLb
vJn
hLb
iEd
-vKM
-lEc
+iEd
+dtp
tMI
jcW
aOs
@@ -107517,7 +107441,7 @@ aaI
aym
aKu
hhv
-kdl
+sXT
qLO
mtI
mtI
@@ -107540,7 +107464,7 @@ sgG
ydM
uiq
kBx
-fsn
+spx
dja
jMp
ixv
@@ -107557,16 +107481,16 @@ dbJ
wap
jEw
pHU
-tLG
-qJB
-acK
-tJq
-iEM
-pCU
-eWt
-jmt
-tmx
-feO
+nju
+iQt
+xNG
+kFb
+jsT
+thr
+jof
+auq
+cvt
+vIY
wzY
oiI
oiI
@@ -107590,16 +107514,16 @@ pDO
bDT
sSc
dYv
-lMu
-tPQ
-sqI
-jEa
-iFD
-iim
-mFm
-ixy
-oFP
-qkz
+bEo
+iuO
+trS
+xhB
+nxW
+pOX
+mDH
+uXO
+xyC
+qot
aXW
iEd
dHF
@@ -107614,8 +107538,8 @@ tDI
gvJ
hzp
iEd
-cKp
-cIv
+izA
+eEf
cKp
jcW
jcW
@@ -107774,7 +107698,7 @@ sJq
eAl
rIH
hhv
-uVq
+euT
qLO
mtI
mtI
@@ -107813,18 +107737,18 @@ hdp
mqz
cmj
iLp
-taR
-aUk
-gkv
+oEG
+gis
+fiS
cUv
-wMH
-mqU
-nwH
-mQn
+atI
+qBk
+ktQ
+hGy
hCu
-sTT
-wbM
-dYe
+pbg
+lkm
+qEf
iLp
aJZ
uhy
@@ -107847,16 +107771,16 @@ ykx
ykx
ykx
bnT
-bEo
-iuO
-trS
-xhB
-pOX
-pOX
-wMe
-uXO
-xyC
-wSh
+bHb
+seK
+iNV
+hPm
+lTc
+vfR
+fBl
+ixy
+iZW
+eKd
gQz
iEd
gjo
@@ -107872,7 +107796,7 @@ hJH
yhx
iKS
dlF
-luR
+eEf
nsz
jcW
wXl
@@ -108043,7 +107967,7 @@ uQP
pNF
xtP
uZg
-aDQ
+dyS
ldH
wNH
nTv
@@ -108068,22 +107992,22 @@ gHo
nQL
taf
dcw
-bNC
-wch
-wMw
-dWL
+qUt
+nJc
+mqc
+yhv
odf
wlS
-iUK
-nqV
-kok
-mQn
+wCY
+mFK
+ocD
+hGy
wlS
iDQ
-aEU
-wDl
-jzf
-mwe
+aXE
+qQj
+qFJ
+njM
bpQ
qRk
fRc
@@ -108104,14 +108028,14 @@ tqq
tGg
ykx
emN
-bHb
-seK
-iNV
-hPm
-dKE
+nvJ
+kPZ
+iEd
+nOR
+lTc
vfR
-eqN
-ixy
+fBl
+hYg
uOK
oIB
pau
@@ -108124,15 +108048,15 @@ gjo
qks
tyx
iEd
+iKS
iEd
iEd
iKS
-iKS
-ldI
-luR
+aOP
+eEf
qoc
jcW
-uUa
+vkD
aFw
xXa
nlM
@@ -108288,12 +108212,12 @@ eIK
piE
bly
hhv
-rLx
+fmg
qLO
gtD
mOm
tQy
-fbT
+hGt
soj
dHL
mUn
@@ -108302,7 +108226,7 @@ caA
xJA
wnJ
iUx
-fza
+qCN
jTr
oiw
pxh
@@ -108325,22 +108249,22 @@ seT
hdp
hdp
xgv
-kWF
-iAo
+vjz
+qBZ
hVF
sTd
ylB
wlS
-iUK
-lIb
-jXb
-mQn
+wCY
+uLd
+oWr
+hGy
wlS
jvs
hCu
qsq
-uWA
-vmw
+jpI
+nbv
oeh
eXl
eXl
@@ -108364,11 +108288,11 @@ rUt
nvJ
kPZ
iEd
-xAq
-iDp
+tgx
+aZq
vfR
-fiW
-hYg
+qRu
+iEd
scb
scb
scb
@@ -108381,13 +108305,13 @@ iEd
iEd
iEd
iEd
-iEd
-xtI
-wab
-wab
-cdb
-cOJ
-pVq
+hDu
+xkC
+rHa
+rHa
+ewh
+qYf
+sxE
qhN
epO
arL
@@ -108545,7 +108469,7 @@ hhv
hhv
hhv
hhv
-xwi
+eaw
qLO
ifC
ifC
@@ -108564,11 +108488,11 @@ xxl
hVD
uce
hae
-dCW
+heS
aRF
ilH
awG
-gjQ
+oEA
hae
eJN
fld
@@ -108580,25 +108504,25 @@ wRy
nAt
seT
gqH
-gep
-fgH
-aLa
+wBr
+oRP
+rXp
bCz
iDQ
wlS
gky
wlS
-pbC
-ctf
-tbn
-drx
+nyz
+ePP
+sjy
+muC
wlS
wlS
wlS
iDQ
wlS
-mZC
-lpb
+pUj
+lCr
chV
eXl
bzO
@@ -108624,7 +108548,7 @@ iEd
pSM
peP
vfR
-sxK
+dVW
iEd
oDF
cFu
@@ -108633,12 +108557,12 @@ scb
jkG
iLe
scb
-nTO
-fXB
-nKM
-hdh
-jTS
-hwg
+dnH
+jKr
+mvu
+qlC
+knr
+xTV
xyQ
cKp
cKp
@@ -108646,7 +108570,7 @@ eoY
cKp
cKp
jcW
-dfU
+yfq
gcc
nSh
nSh
@@ -108802,7 +108726,7 @@ lyT
vvg
gnD
oif
-oIJ
+uwf
qLO
qpo
nQR
@@ -108837,26 +108761,26 @@ iis
uZs
alb
pHU
-fgH
-lvH
-ukY
+oRP
+itB
+fSM
fbi
wlS
wlS
-cOv
-umD
+lxl
+gLa
inc
-gNq
-wLI
+dga
+fdc
fhX
-bTD
-tFW
+lfW
+kma
wlS
wlS
roY
-plG
-oza
-lpb
+pvw
+cFx
+lCr
cFD
ppw
jSx
@@ -108890,7 +108814,7 @@ uHl
eRS
pdq
scb
-uIS
+mqE
kwh
pJh
kwh
@@ -109058,17 +108982,17 @@ hsm
xFg
oif
tKJ
-xNB
-pPX
+vZp
+eEJ
qLO
aKq
eyw
-ncj
+aAO
ifC
-uuK
-gTv
+mRC
+uKh
iIu
-arH
+wyJ
kIg
nYw
nCH
@@ -109094,26 +109018,26 @@ cfg
aoG
aBO
jwn
-lvH
-vRg
+itB
+ybD
iek
wlS
wlS
hXo
-eEp
-gpA
-keh
-wUY
-utQ
-iJr
-mrI
-qbm
-dHQ
+hMp
+hmg
+mSV
+uCH
+eqi
+rhz
+iQm
+aty
+feg
wlS
sTd
smT
-lZH
-oza
+jPF
+cFx
qBR
ppw
jSx
@@ -109147,7 +109071,7 @@ scb
aUR
xzU
scb
-uIS
+mqE
kwh
cnX
ulz
@@ -109160,7 +109084,7 @@ igj
mxn
rcc
jcW
-dbq
+fdi
mSs
niG
niG
@@ -109303,7 +109227,7 @@ pAD
nyE
ole
bPV
-pqI
+aSS
prv
prv
prv
@@ -109351,26 +109275,26 @@ seT
rwm
seT
wzd
-xNe
+qpu
iDQ
qKa
wlS
wlS
vSd
-vSH
-pJX
+sQn
+vox
iZt
bxa
bxa
iKK
-sDk
-ocO
-aZY
+jRe
+tWC
+vMG
eOD
cYH
jgD
tmM
-afN
+wFD
vdZ
bzO
aDC
@@ -109385,7 +109309,7 @@ ykx
wFl
eeK
afb
-cIY
+mqg
ykx
xmx
rpF
@@ -109608,26 +109532,26 @@ bGs
nOQ
laA
wIQ
-gvo
-epQ
-epQ
-epQ
-yeC
+cuU
+oTO
+oTO
+oTO
+tBo
inc
-cOc
+dHP
tWU
-jWT
-tNA
-tNA
-fvV
+fne
+oXn
+oXn
+cMl
hTQ
-lPX
+brn
xOP
-oxU
-bZr
-trt
-blM
-qeQ
+pEr
+uLe
+xSZ
+wwd
+wZl
uME
laA
nOQ
@@ -109662,7 +109586,7 @@ mHq
agM
gJr
rAf
-ajt
+xBV
mxA
iIv
oOt
@@ -109674,7 +109598,7 @@ xxF
wIr
vrh
tBa
-hZM
+cGs
dET
rfM
sVR
@@ -109790,7 +109714,7 @@ yeA
yeA
gsA
vcX
-xYV
+cDk
aWK
dLf
uGh
@@ -109837,7 +109761,7 @@ ccv
cvf
dBX
dBX
-dBX
+ccv
gDW
pkd
jvx
@@ -109865,26 +109789,26 @@ epS
xaS
xzx
tnC
-oPm
-eJT
-uif
-jYc
-euO
-jYc
-bMq
-uux
-xUd
-izQ
-aKM
-bpZ
-dRK
-kHx
-jds
-xqm
-gao
-bss
-uIx
-fEe
+vOn
+lrB
+uKo
+xdo
+fCN
+xdo
+ghK
+muH
+odp
+jdh
+eMU
+ckg
+dfy
+hBG
+qdU
+ciQ
+wXE
+fzk
+rWI
+bZJ
keJ
sGG
sGG
@@ -109919,7 +109843,7 @@ xtp
tOd
xzI
kLF
-qDQ
+cKY
mxA
iIv
xYL
@@ -110122,26 +110046,26 @@ oao
qkS
rUQ
blK
-gpB
-goW
-sgd
-vlO
-vlO
-lWe
-oZQ
-uux
-xUd
-izQ
-izQ
-bpZ
-dRK
-nXT
-ssm
-gVy
-ssm
-jfo
-aYW
-ssm
+hIE
+tEm
+vGo
+xjh
+xjh
+jsh
+rzS
+muH
+odp
+jdh
+jdh
+ckg
+dfy
+kgi
+cBO
+ogs
+cBO
+sXf
+cyb
+cBO
kJB
aVu
aVu
@@ -110304,7 +110228,7 @@ yeA
yeA
gsA
vcX
-day
+nrb
ntn
kpk
uGh
@@ -110379,26 +110303,26 @@ bGs
tfV
vUy
fNR
-xii
-hmk
-vUY
-vUY
-kkK
+ggC
+nhC
+sij
+sij
+mIZ
wpL
-aAo
+tni
hsJ
-bQz
-mXI
-mXI
-apR
+rAx
+oeM
+oeM
+hJK
stl
-glv
+kZj
qcI
-tIK
-seS
-seS
-ifP
-oza
+dDD
+wfv
+wfv
+lOQ
+cFx
uVt
vUy
ybW
@@ -110420,8 +110344,8 @@ cbk
cbk
tyE
sOr
-xMG
-cbk
+pjI
+reA
cbk
xhi
cbk
@@ -110443,7 +110367,7 @@ sPX
qoQ
fmy
nKs
-iaD
+qoH
nDV
nDV
fzf
@@ -110597,9 +110521,9 @@ grE
moP
gOk
dFh
-ykQ
-jfV
-bdw
+fcE
+xvA
+gHS
fxw
cMI
cMI
@@ -110636,26 +110560,26 @@ oxQ
rgh
oxQ
oVP
-afF
+bDH
ahD
smT
wlS
wlS
toW
-rqc
-dzr
+rES
+eXQ
pEA
nlx
nlx
nfS
-nGO
-wDb
-mtu
+vDd
+mTH
+fLW
nQW
tLv
tmM
jgD
-bUN
+kxr
mxy
dFC
dFC
@@ -110893,26 +110817,26 @@ xlV
fNs
mlR
xgv
-nKR
-vvV
+qhj
+udI
spz
wlS
wlS
hXo
-dNq
-bhS
-jrn
-uOC
-aYq
-yej
-coE
-mxz
-dAK
+agA
+fjM
+fEz
+twT
+uSz
+pmn
+pEb
+tYk
+eTH
wlS
qKa
iDQ
-wQP
-qeQ
+mCL
+wZl
oeh
dFC
wYg
@@ -110960,11 +110884,11 @@ pLT
qPQ
kaQ
kaQ
-pFx
+pAP
xwZ
-rzr
-aEF
-dch
+cPy
+otM
+tqL
rFN
cNj
nyb
@@ -111150,26 +111074,26 @@ wuz
iBJ
heA
eRL
-ybw
-ymb
-hyp
+ymh
+dGC
+pII
xMW
wlS
wlS
-ihE
-dqO
+ppT
+eQf
wpL
-aGj
-lih
+mQE
+pjQ
qcI
-hNj
-hAe
+pOD
+xdj
wlS
fcL
wlS
-aRU
-qeQ
-otZ
+jMm
+wZl
+ajn
pBg
dFC
wYg
@@ -111214,7 +111138,7 @@ ffc
aZJ
fmy
iEO
-rmj
+rdM
sTA
wKp
tKh
@@ -111389,7 +111313,7 @@ ebF
oVd
bsT
tqN
-lQl
+vKw
oOu
rBK
sGv
@@ -111408,24 +111332,24 @@ tGT
tGT
tGT
ePp
-mrz
-aLa
+cTa
+rXp
qsq
smT
tib
dWQ
wlS
-pbC
-iBo
-oPs
-drx
+nyz
+dAm
+grI
+muC
wlS
wlS
wlS
kPT
odf
-xgI
-otZ
+hTM
+ajn
nQt
dFC
dFC
@@ -111646,7 +111570,7 @@ ebF
bsT
sYx
cQA
-lQl
+vKw
oOu
dCs
bdB
@@ -111666,22 +111590,22 @@ xZT
tGT
mNf
tEG
-uDw
-dsd
+lhX
+aaF
smT
odf
qHl
wlS
-iUK
-wxC
-oPs
-mQn
+wCY
+oYh
+grI
+hGy
wlS
wlS
cGr
iDQ
-ccs
-rUY
+iKw
+tRS
igJ
dFC
dFC
@@ -111903,7 +111827,7 @@ ebF
tqN
peH
oVd
-lQl
+vKw
oOu
dCs
kSP
@@ -111923,22 +111847,22 @@ xWy
bpm
hQf
sTz
-vYZ
-oxR
-fes
-mFG
+gnU
+mHU
+cnK
+iNo
olO
fqN
-iUK
-cbi
-mSX
-mQn
+wCY
+gEE
+lFf
+hGy
smT
smT
-sqi
-bEj
-wcY
-xyh
+sMe
+ouv
+mIH
+fna
nQt
aQm
wYg
@@ -112182,18 +112106,18 @@ ntf
wkt
oGS
qeL
-jvi
-ylO
-cir
+qyo
+oYy
+ikF
smT
-iUK
-qYH
-qBN
-cdw
+wCY
+qWY
+vVB
+whx
nVO
-kVc
-nhU
-hMb
+poD
+cMZ
+jIv
gNV
pVM
uhy
@@ -112419,8 +112343,8 @@ jGx
gsA
hdp
eKY
-fbM
beb
+xAZ
bLz
fia
jED
@@ -112440,19 +112364,19 @@ hdp
czh
hdp
cnY
-feO
-ceE
-ccp
-tnQ
-rGU
-eSj
-oJy
-lxI
-kgZ
-feO
+vIY
+iEz
+azJ
+pCI
+bra
+vyY
+lvK
+ehk
+nEF
+vIY
pBg
vAC
-jZz
+cZj
qxw
dFC
dFC
@@ -112480,8 +112404,8 @@ leR
jNP
yak
cKB
-bOn
-nSB
+xqq
+pUv
fHF
iYK
bgr
@@ -112494,7 +112418,7 @@ nAI
nGy
xaj
tzp
-tdt
+dEV
kFd
nXK
wxS
@@ -112675,11 +112599,11 @@ gsA
yeA
gsA
efr
-cOp
-ojp
-abl
+mIj
+uLH
+vmu
sSv
-fxL
+kui
jED
oRo
goU
@@ -112709,7 +112633,7 @@ piC
rVH
dFC
dFC
-aot
+cMV
qtC
rtY
fdb
@@ -112737,7 +112661,7 @@ aEE
aQU
dun
cKB
-hHs
+ibc
duB
hfs
reb
@@ -112751,7 +112675,7 @@ tPl
psH
psH
eZm
-tdt
+dEV
pEF
gbh
hSG
@@ -112932,13 +112856,13 @@ jGx
gsA
gsA
efr
-rEx
+jdn
xPu
pZQ
-xzs
+qbO
szF
qEZ
-wcd
+wdi
uWa
aMA
mVN
@@ -112966,7 +112890,7 @@ dFC
dFC
dFC
dFC
-eAz
+goF
eGd
eGd
eGd
@@ -112974,27 +112898,27 @@ csj
eGd
eGd
vRP
-kJR
+pLm
rfj
geH
qqD
tJr
-ody
-tjl
-ghU
-ody
+jVC
+dAD
+wwP
+jVC
mYL
poJ
eAN
-mAc
-taM
-nlj
-kBG
+ugp
+bSb
+tzk
+blC
fkb
vCB
xlU
dwu
-ajC
+fYI
msM
teB
faQ
@@ -113008,7 +112932,7 @@ kWN
eML
gfH
bna
-lgV
+wXc
tTZ
pwh
mNb
@@ -113173,7 +113097,7 @@ cXo
rSM
fSf
rbT
-nyl
+oLP
kiN
rNr
puT
@@ -113190,29 +113114,29 @@ yeA
gsA
efr
sWQ
-krW
+cTJ
wvS
pUl
-qkA
-qkA
-sCB
-xrL
-uPT
-uPT
-byj
-uPT
-uvB
-iyV
-uPT
-uPT
-uIm
+rwO
+rwO
+ejB
+eVc
+mpI
+mpI
+ard
+mpI
+fMD
+oJi
+mpI
+mpI
+jaG
xxe
-pMw
-pMw
-pzG
-pMw
-jhy
-sjT
+vMR
+vMR
+mzr
+vMR
+bfa
+vLB
aue
srO
krU
@@ -113223,7 +113147,7 @@ wYg
wYg
iLd
dFC
-aAP
+oVO
kib
qBy
kNX
@@ -113251,7 +113175,7 @@ xuC
fwT
hPp
shZ
-hHs
+ibc
vlT
eIa
xVk
@@ -113265,7 +113189,7 @@ gCj
uMy
lVx
bna
-tdt
+dEV
hMU
nIM
wxS
@@ -113430,7 +113354,7 @@ gyv
oQW
fSf
tJh
-tcg
+gDg
vkZ
rNr
gJX
@@ -113448,7 +113372,7 @@ jGx
efr
jGU
fpB
-gXs
+rcz
iMw
taf
iMw
@@ -113469,7 +113393,7 @@ rfl
rfl
rfl
rfl
-hcc
+qYC
hdp
bGs
qCn
@@ -113480,14 +113404,14 @@ wYg
gdM
tov
dFC
-xwz
+jgU
eGd
guk
xnK
nOM
jkr
maA
-aWv
+nfH
cyW
pPg
oym
@@ -113495,20 +113419,20 @@ qqD
wRL
vvd
bgl
-lWZ
-tFu
+ioD
+ujr
oNF
poJ
-aDX
-tIj
+lhV
+rZa
req
lLX
-nkj
-tFu
-pJP
+xNu
+ujr
+tWQ
lyQ
shZ
-hHs
+ibc
pfL
uXG
xpx
@@ -113687,17 +113611,17 @@ jGx
jGx
fHR
ilv
-jOL
-lhK
+jyo
+oYk
wHP
tEK
-fZl
-dwv
+pPj
+bDq
rNr
rBT
sgc
rNr
-vsN
+eiW
rNr
kMF
yeA
@@ -113726,7 +113650,7 @@ mtE
iqV
dJr
iFN
-ndX
+xIf
xxe
bQK
wPd
@@ -113737,7 +113661,7 @@ tfA
wYg
uGX
dFC
-qNu
+gPt
eGd
wEe
wEe
@@ -113765,7 +113689,7 @@ kOy
kOy
kOy
bWm
-hHs
+ibc
roB
xAe
iRY
@@ -113944,12 +113868,12 @@ gsA
jGx
rNr
rNr
-jUP
+uyb
rNr
rNr
emB
-qZs
-uFN
+toN
+bAe
rNr
rNr
rNr
@@ -113961,7 +113885,7 @@ vtI
vtI
iAG
cuo
-dDd
+boy
fQM
iMw
mVN
@@ -113989,12 +113913,12 @@ iJe
kgH
wAl
tpI
-tXK
-jNz
-ttC
-tLa
-lhk
-sri
+jfD
+hky
+iRN
+jMh
+jBo
+qDc
eGd
eED
jdC
@@ -114022,7 +113946,7 @@ nZj
cLH
uXK
bWm
-yar
+iJd
wyb
wyb
evy
@@ -114032,7 +113956,7 @@ jGs
eXE
dtY
qTs
-nOT
+qSv
qTs
cpa
hGI
@@ -114200,13 +114124,13 @@ gsA
yeA
vtI
vtI
-oyQ
-vBC
+hyD
+rjX
vks
vtI
iDw
-iKp
-vgH
+eYc
+dwP
wIA
hKc
ikY
@@ -114218,7 +114142,7 @@ sAw
jcE
vtI
oTD
-aGz
+ioG
jRg
hhV
mVN
@@ -114248,7 +114172,7 @@ wAl
fqb
dFC
dFC
-kwd
+mGd
dFC
dFC
dFC
@@ -114267,7 +114191,7 @@ tYM
cQG
osJ
qJC
-bOC
+hZX
qea
ght
bQA
@@ -114456,10 +114380,10 @@ ewB
gsA
gsA
vtI
-hbn
-rFf
-skT
-vcl
+wrO
+xVD
+jSt
+gli
vtI
rNr
cwJ
@@ -114475,7 +114399,7 @@ opQ
dHK
vtI
kJA
-dhX
+xhM
jkD
hdp
mVN
@@ -114497,7 +114421,7 @@ fxG
qXx
ykz
lFE
-oaP
+eUV
rfl
iJe
kgH
@@ -114505,7 +114429,7 @@ wAl
tpI
eDt
fsb
-qNu
+gPt
pMv
tJu
gWo
@@ -114515,7 +114439,7 @@ eTl
lzD
ooT
lxi
-wxs
+mnB
mYT
dxV
ncf
@@ -114536,7 +114460,7 @@ gRY
wyV
vJf
bWm
-hHs
+ibc
shZ
tTE
kfB
@@ -114545,9 +114469,9 @@ juv
wVX
eNK
pTW
-nmB
-nmB
-nmB
+wyC
+wyC
+wyC
pTW
rsY
jTQ
@@ -114713,10 +114637,10 @@ gsA
gsA
dGP
dGP
-cwz
-eYS
-cIB
-bQU
+gEV
+wVK
+nPn
+lgK
vtI
sMw
upb
@@ -114732,7 +114656,7 @@ qRV
tAq
vtI
nZk
-hrN
+mLh
lBL
iMw
mVN
@@ -114762,7 +114686,7 @@ wAl
cIP
dFC
wgc
-qNu
+gPt
ihz
svt
gHZ
@@ -114772,16 +114696,16 @@ nOM
xnK
eTl
maA
-fqu
+suU
pPs
nkm
-hSy
+hop
vRP
fAc
hmn
hmn
iGn
-tFu
+ujr
oNF
gvR
hpq
@@ -114793,7 +114717,7 @@ szG
nCo
ufy
bWm
-hHs
+ibc
iBH
pWx
drU
@@ -114802,9 +114726,9 @@ tlT
wVX
eNK
pTW
-nmB
-nmB
-nmB
+wyC
+wyC
+wyC
pTW
kYB
hPn
@@ -114970,13 +114894,13 @@ yeA
yeA
nQf
lEo
-cwz
-tSS
-kSF
-bQU
-vQi
-bnk
-keN
+gEV
+fHs
+mKX
+lgK
+wSB
+lxn
+xxE
pDn
wjX
wjX
@@ -114989,7 +114913,7 @@ vdf
eym
vtI
hvH
-dhX
+xhM
aIR
fwL
fwL
@@ -115019,7 +114943,7 @@ wAl
mkd
dFC
dFC
-jJx
+bha
dFC
wQK
wYg
@@ -115032,7 +114956,7 @@ maA
rRh
sUT
uMp
-klV
+crF
vRP
huT
qns
@@ -115050,7 +114974,7 @@ qkw
lOb
wWf
bWm
-hHs
+ibc
shZ
sEj
tMV
@@ -115227,10 +115151,10 @@ gsA
gsA
dGP
dGP
-cwz
-fuP
-oGj
-hgC
+gEV
+nql
+iAu
+trX
vtI
xjE
dYn
@@ -115246,7 +115170,7 @@ aUS
lQx
vtI
uQx
-dhX
+xhM
nzy
jhr
uEB
@@ -115267,8 +115191,8 @@ fBp
wlr
bmu
mWi
-sRu
-yhv
+sFq
+cTh
ovp
iJe
kgH
@@ -115276,7 +115200,7 @@ wAl
fKE
dFC
rQh
-qNu
+gPt
wYg
wYg
gHZ
@@ -115307,7 +115231,7 @@ fhV
soi
lHp
bWm
-hHs
+ibc
kMc
eYP
shZ
@@ -115317,7 +115241,7 @@ xVm
bws
tlL
vdV
-pum
+gjB
sOT
tlL
tZn
@@ -115484,10 +115408,10 @@ ewB
gsA
gsA
vtI
-hxx
-ems
-oZh
-vrg
+oeB
+liz
+gCa
+sMa
wII
wII
wII
@@ -115503,7 +115427,7 @@ dLk
wyg
vtI
kXn
-jTC
+rpu
rev
fwL
fHi
@@ -115524,8 +115448,8 @@ jfn
okR
bZA
mWi
-rKl
-rfV
+iyq
+eZQ
ovp
iJe
kgH
@@ -115533,7 +115457,7 @@ wAl
mkd
dFC
xFA
-euQ
+qzz
rtY
rtY
rtY
@@ -115564,10 +115488,10 @@ hig
vKu
uYm
mvj
-vQp
-dYo
-dYo
-mea
+fPi
+ltK
+ltK
+bvz
iRY
tfw
wVX
@@ -115760,7 +115684,7 @@ uZv
cbp
vtI
mLp
-dhX
+xhM
rqC
cHN
mBT
@@ -115781,16 +115705,16 @@ joH
ozn
tdk
lSp
-yke
-ulC
+wVy
+sKy
ovp
iJe
kgH
wAl
tpI
-tXK
-qwU
-lHr
+jfD
+wSi
+obH
tJu
juT
oxm
@@ -115813,8 +115737,8 @@ bBM
vQX
ljZ
kYc
-jxt
-ipE
+wHg
+fpV
rxN
bWm
rOr
@@ -115824,15 +115748,15 @@ bWm
kII
rAi
uog
-hHs
+ibc
iRY
wAP
wVX
eNK
pTW
-nmB
-nmB
-nmB
+wyC
+wyC
+wyC
pTW
uFQ
dEY
@@ -116017,7 +115941,7 @@ bUS
tiF
vtI
jPq
-dhX
+xhM
mOk
fwL
bBv
@@ -116081,15 +116005,15 @@ bWm
ciA
muZ
bWl
-hHs
+ibc
iRY
eHw
wVX
eNK
pTW
-nmB
-nmB
-nmB
+wyC
+wyC
+wyC
pTW
hTv
gmc
@@ -116274,7 +116198,7 @@ cDy
glM
vtI
pTc
-dhX
+xhM
lOv
fwL
wAq
@@ -116338,7 +116262,7 @@ xat
alT
eHp
qVB
-hHs
+ibc
iRY
otm
xVm
@@ -116531,7 +116455,7 @@ aWD
jiR
vtI
iES
-bpr
+qnm
eik
fwL
mod
@@ -116595,7 +116519,7 @@ xat
oef
ero
dHW
-hHs
+ibc
oUC
tMP
xVm
@@ -116852,7 +116776,7 @@ vvi
dHW
dHW
dHW
-hHs
+ibc
iRY
hec
xVm
@@ -116877,7 +116801,7 @@ jzF
jzF
qMD
dUi
-vFj
+omJ
ott
vSn
vfY
@@ -117078,8 +117002,8 @@ rjl
hti
dKh
wAF
-mQR
-xCc
+xwf
+eIE
mSG
xCe
lDK
@@ -117109,7 +117033,7 @@ xat
kMc
gZZ
cpU
-hHs
+ibc
iRY
dMD
xVm
@@ -117335,9 +117259,9 @@ lZE
dGE
dtm
wAF
-uBh
-lbF
-ckQ
+pqL
+dOi
+pgR
xCe
lDK
oji
@@ -117366,7 +117290,7 @@ xat
udq
kMc
ewt
-hHs
+ibc
iRY
lBK
xVm
@@ -117623,7 +117547,7 @@ rJL
kJH
dkt
maw
-jeb
+dnF
leq
dBS
qXd
@@ -118102,8 +118026,8 @@ uWD
wAl
tpI
ouQ
-xtb
-vxA
+qfC
+xCv
vDU
vwm
cJN
@@ -118134,10 +118058,10 @@ qBV
tYL
lQB
oXb
-bfC
+aYW
shZ
wEm
-hHs
+ibc
dHW
vEd
iRY
@@ -118394,7 +118318,7 @@ kMc
shZ
shZ
dHW
-hHs
+ibc
dHW
cXE
gLb
@@ -118408,7 +118332,7 @@ xtQ
gkK
qki
xHa
-ntP
+qCu
drp
hcF
htm
@@ -118620,10 +118544,10 @@ vuz
vuz
cfc
pKN
-vaf
-mGe
-mTQ
-cXL
+jOj
+oTs
+evO
+jBF
qPp
mHh
mGL
@@ -118645,13 +118569,13 @@ rYY
fYH
wFU
qgy
-bOn
-byG
-byG
-oix
+xqq
+blg
+blg
+xTD
ycs
-byG
-wWF
+blg
+cKR
eHp
dHW
gLb
@@ -118878,8 +118802,8 @@ wae
sNL
cdn
dlf
-rHk
-xRn
+okc
+rFR
bdI
whe
cgX
@@ -118898,11 +118822,11 @@ khR
tEt
sMK
lqc
-sqr
-sqr
-sqr
-ogP
-oDE
+sJf
+sJf
+sJf
+rwU
+tSH
uFm
dHW
qih
@@ -119142,15 +119066,15 @@ qPp
rij
jda
eiC
-rZQ
-uwK
-uwK
-uwK
-uwK
-jOw
-hBB
-jho
-uwK
+wEq
+sUd
+sUd
+sUd
+sUd
+inp
+sue
+ciR
+sUd
vAE
fbY
okN
@@ -119159,7 +119083,7 @@ eUB
sSl
sLv
dHW
-ovC
+vzg
kkj
wLd
ujz
@@ -119392,8 +119316,8 @@ vrX
amC
heE
gyK
-oDf
-tYv
+gOl
+wmb
pWy
qPp
xFb
@@ -119632,14 +119556,14 @@ dhI
vMO
otE
vat
-gaJ
+nnr
acM
fZQ
uTB
wTw
fZb
ijU
-vtf
+ekZ
lZd
eUC
dDq
@@ -119649,22 +119573,22 @@ vhf
amC
heE
uoF
-rHk
-gYQ
+okc
+pkY
two
qPp
mzx
sVi
eiC
-mhj
+mZZ
oZw
kko
bZU
-mhj
-mhj
-mhj
-mhj
-mhj
+mZZ
+mZZ
+mZZ
+mZZ
+mZZ
mbx
kYH
okN
@@ -120163,8 +120087,8 @@ nbQ
nes
gFW
hwc
-cmP
-wgt
+bMC
+xwX
nXb
xFS
yie
@@ -120419,10 +120343,10 @@ nXU
jbn
amC
heE
-vaf
-vOg
-xtb
-cXL
+jOj
+qcG
+qfC
+jBF
qPp
eHz
kVX
@@ -120647,8 +120571,8 @@ sFt
lkT
gTM
dVH
-oQd
-kYW
+aqm
+tJf
jpK
noe
tBu
@@ -120662,12 +120586,12 @@ vVs
ncI
waj
nLK
+tBw
fNg
-fNg
-fzc
+tfT
aeh
wJh
-dxs
+rBU
eqb
bsF
bxs
@@ -120721,19 +120645,19 @@ egp
eNg
bhN
yeA
-igH
-igH
-igH
-igH
-igH
+pEw
+pEw
+pEw
+pEw
+pEw
odm
lHv
tbt
-igH
-igH
-igH
-igH
-igH
+pEw
+pEw
+pEw
+pEw
+pEw
gsA
ewB
gsA
@@ -120902,9 +120826,9 @@ kOP
qrR
mta
wZH
-lbr
-ljm
-lTL
+oIl
+nwR
+qwZ
jxn
otE
azX
@@ -121162,7 +121086,7 @@ uCC
uCC
oUl
uCC
-dMS
+pqP
otE
otE
cvm
@@ -121235,19 +121159,19 @@ bhN
gsA
gsA
yeA
-mAU
-mAU
-mAU
-mAU
-mAU
+pQd
+pQd
+pQd
+pQd
+pQd
odm
jxz
tbt
-mAU
-mAU
-mAU
-mAU
-mAU
+pQd
+pQd
+pQd
+pQd
+pQd
gsA
ewB
oHE
@@ -121475,7 +121399,7 @@ mbJ
eTq
gSn
abk
-wON
+vMj
tfq
dHW
dHW
@@ -121750,17 +121674,17 @@ gsA
gsA
gsA
yeA
-igH
-igH
-igH
-igH
+pEw
+pEw
+pEw
+pEw
odm
jxz
tbt
-igH
-igH
-igH
-igH
+pEw
+pEw
+pEw
+pEw
gsA
gsA
ewB
@@ -122264,17 +122188,17 @@ gsA
gsA
ewB
gsA
-mAU
-mAU
-mAU
-mAU
+pQd
+pQd
+pQd
+pQd
odm
omU
tbt
-mAU
-mAU
-mAU
-mAU
+pQd
+pQd
+pQd
+pQd
gsA
ewB
gsA
@@ -122779,15 +122703,15 @@ gsA
ewB
gsA
yeA
-igH
-igH
-igH
+pEw
+pEw
+pEw
odm
jxz
tbt
-igH
-igH
-igH
+pEw
+pEw
+pEw
yeA
gsA
ewB
@@ -123293,15 +123217,15 @@ yeA
gsA
gsA
gsA
-mAU
-mAU
-mAU
+pQd
+pQd
+pQd
odm
nBj
tbt
-mAU
-mAU
-mAU
+pQd
+pQd
+pQd
gsA
gsA
gsA
@@ -123807,15 +123731,15 @@ yeA
yeA
ewB
gsA
-igH
-igH
-igH
+pEw
+pEw
+pEw
odm
jxz
tbt
-igH
-igH
-igH
+pEw
+pEw
+pEw
gsA
ewB
yeA
@@ -124321,15 +124245,15 @@ yeA
yeA
ewB
yeA
-mAU
-mAU
-mAU
+pQd
+pQd
+pQd
odm
jxz
tbt
-mAU
-mAU
-mAU
+pQd
+pQd
+pQd
yeA
ewB
yeA
@@ -125266,19 +125190,19 @@ gsA
gsA
gsA
gsA
-mqj
-mqj
-mqj
-mqj
-mqj
+oJn
+oJn
+oJn
+oJn
+oJn
odm
pft
tbt
-mqj
-mqj
-mqj
-mqj
-mqj
+oJn
+oJn
+oJn
+oJn
+oJn
yeA
gsA
gsA
@@ -125780,19 +125704,19 @@ gsA
gsA
ewB
gsA
-vzW
-vzW
-vzW
-vzW
-vzW
+ihy
+ihy
+ihy
+ihy
+ihy
odm
rYv
tbt
-vzW
-vzW
-vzW
-vzW
-vzW
+ihy
+ihy
+ihy
+ihy
+ihy
yeA
gsA
ewB
@@ -126295,17 +126219,17 @@ yeA
ewB
gsA
yeA
-mqj
-mqj
-mqj
-mqj
+oJn
+oJn
+oJn
+oJn
odm
pft
tbt
-mqj
-mqj
-mqj
-mqj
+oJn
+oJn
+oJn
+oJn
yeA
gsA
gsA
@@ -126809,17 +126733,17 @@ yeA
gsA
ewB
gsA
-vzW
-vzW
-vzW
-vzW
+ihy
+ihy
+ihy
+ihy
odm
fbn
tbt
-vzW
-vzW
-vzW
-vzW
+ihy
+ihy
+ihy
+ihy
yeA
ewB
gsA
@@ -127324,15 +127248,15 @@ yeA
ewB
gsA
yeA
-mqj
-mqj
-mqj
+oJn
+oJn
+oJn
odm
rYv
tbt
-mqj
-mqj
-mqj
+oJn
+oJn
+oJn
yeA
gsA
ewB
@@ -127838,15 +127762,15 @@ yeA
gsA
gsA
gsA
-vzW
-vzW
-vzW
+ihy
+ihy
+ihy
odm
pft
tbt
-vzW
-vzW
-vzW
+ihy
+ihy
+ihy
yeA
gsA
gsA
@@ -128352,15 +128276,15 @@ yeA
gsA
ewB
gsA
-mqj
-mqj
-mqj
+oJn
+oJn
+oJn
odm
rYv
tbt
-mqj
-mqj
-mqj
+oJn
+oJn
+oJn
yeA
ewB
yeA
@@ -128866,15 +128790,15 @@ yeA
yeA
ewB
yeA
-vzW
-vzW
-vzW
+ihy
+ihy
+ihy
odm
rYv
tbt
-vzW
-vzW
-vzW
+ihy
+ihy
+ihy
yeA
ewB
yeA
diff --git a/_maps/shuttles/whiteship/whiteship_delta.dmm b/_maps/shuttles/whiteship/whiteship_delta.dmm
index 92d9ebb7fa598..260643c9b7b2e 100644
--- a/_maps/shuttles/whiteship/whiteship_delta.dmm
+++ b/_maps/shuttles/whiteship/whiteship_delta.dmm
@@ -407,24 +407,6 @@
/obj/machinery/suit_storage_unit/standard_unit,
/turf/open/floor/iron/dark,
/area/shuttle/abandoned/crew)
-"bt" = (
-/obj/effect/turf_decal/bot_white,
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/rack,
-/obj/item/storage/toolbox/mechanical,
-/obj/item/clothing/head/utility/welding{
- pixel_x = -3;
- pixel_y = 5
- },
-/obj/machinery/airalarm/all_access{
- dir = 1;
- pixel_y = -24
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/iron/dark,
-/area/shuttle/abandoned/crew)
"bx" = (
/obj/machinery/light/small/built{
dir = 4
@@ -453,26 +435,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/shuttle/abandoned/engine)
-"bA" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/table,
-/obj/item/storage/toolbox/mechanical{
- pixel_y = 4
- },
-/obj/item/flashlight{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/clothing/head/utility/welding{
- pixel_x = -2;
- pixel_y = 1
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/open/floor/plating,
-/area/shuttle/abandoned/engine)
"bB" = (
/turf/closed/wall/mineral/titanium/nodiagonal,
/area/shuttle/abandoned/bridge)
@@ -721,24 +683,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/shuttle/abandoned/engine)
-"cn" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/decal/remains/human{
- desc = "They look like human remains, and have clearly been gnawed at."
- },
-/obj/effect/decal/cleanable/blood/gibs/old,
-/obj/item/clothing/head/hats/centhat{
- desc = "There's a gouge through the top where something has clawed clean through it. Whoever was wearing it probably doesn't need a hat any more.";
- name = "\improper damaged CentCom hat";
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/iron/dark,
-/area/shuttle/abandoned/bridge)
"co" = (
/obj/structure/chair/fancy/shuttle{
dir = 4
@@ -1570,6 +1514,24 @@
},
/turf/open/floor/iron,
/area/shuttle/abandoned/crew)
+"iQ" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/remains/human{
+ desc = "They look like human remains, and have clearly been gnawed at."
+ },
+/obj/effect/decal/cleanable/blood/gibs/old,
+/obj/item/clothing/head/hats/centhat{
+ desc = "There's a gouge through the top where something has clawed clean through it. Whoever was wearing it probably doesn't need a hat any more.";
+ name = "\improper damaged CentCom hat";
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/iron/dark,
+/area/shuttle/abandoned/bridge)
"kd" = (
/obj/structure/table,
/obj/item/paper_bin{
@@ -1751,6 +1713,26 @@
/obj/effect/turf_decal/tile/blue/half/contrasted,
/turf/open/floor/iron/dark,
/area/shuttle/abandoned/bridge)
+"vg" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/table,
+/obj/item/storage/toolbox/mechanical{
+ pixel_y = 4
+ },
+/obj/item/flashlight{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/clothing/head/utility/welding{
+ pixel_x = -2;
+ pixel_y = 1
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plating,
+/area/shuttle/abandoned/engine)
"vm" = (
/turf/closed/wall/mineral/titanium/nodiagonal,
/area/shuttle/abandoned/medbay)
@@ -2033,6 +2015,21 @@
/obj/effect/turf_decal/tile/bar/opposingcorners,
/turf/open/floor/iron,
/area/shuttle/abandoned/bar)
+"HZ" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/box/white/corners{
+ dir = 1
+ },
+/obj/structure/closet/crate,
+/obj/item/grenade/chem_grenade/metalfoam,
+/obj/item/t_scanner,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron/dark,
+/area/shuttle/abandoned/cargo)
"IY" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/turf_decal/box/white/corners{
@@ -2054,6 +2051,24 @@
},
/turf/open/floor/iron/dark,
/area/shuttle/abandoned/bridge)
+"Kc" = (
+/obj/effect/turf_decal/bot_white,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/rack,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/clothing/head/utility/welding{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/machinery/airalarm/all_access{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/shuttle/abandoned/crew)
"Ki" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/structure/frame/computer{
@@ -2086,22 +2101,6 @@
/obj/effect/turf_decal/tile/bar/opposingcorners,
/turf/open/floor/iron,
/area/shuttle/abandoned/bar)
-"Mf" = (
-/obj/effect/decal/cleanable/dirt/dust,
-/obj/effect/turf_decal/box/white/corners{
- dir = 1
- },
-/obj/structure/closet/crate,
-/obj/item/grenade/chem_grenade/metalfoam,
-/obj/item/relic,
-/obj/item/t_scanner,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 3;
- name = "3maintenance loot spawner"
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/shuttle/abandoned/cargo)
"NM" = (
/obj/machinery/airalarm/all_access{
dir = 1;
@@ -2381,7 +2380,7 @@ ai
aB
dd
bl
-bA
+vg
bB
bB
bB
@@ -2423,7 +2422,7 @@ bC
bR
bX
cf
-cn
+iQ
ct
bC
hY
@@ -2608,7 +2607,7 @@ ac
ac
ac
aZ
-bt
+Kc
ac
aa
aa
@@ -2672,7 +2671,7 @@ aa
aa
aa
cz
-Mf
+HZ
IY
ds
EA
diff --git a/beestation.dme b/beestation.dme
index c54377035f0e6..e2ee4144549e0 100644
--- a/beestation.dme
+++ b/beestation.dme
@@ -3705,7 +3705,6 @@
#include "code\modules\requests\request_manager.dm"
#include "code\modules\research\designs.dm"
#include "code\modules\research\destructive_analyzer.dm"
-#include "code\modules\research\experimentor.dm"
#include "code\modules\research\rdconsole.dm"
#include "code\modules\research\rdmachines.dm"
#include "code\modules\research\research_disk.dm"
diff --git a/code/__DEFINES/logging.dm b/code/__DEFINES/logging.dm
index e8b419486a1a8..69b78270635b4 100644
--- a/code/__DEFINES/logging.dm
+++ b/code/__DEFINES/logging.dm
@@ -5,7 +5,7 @@
#define INVESTIGATE_DEATHS "deaths"
#define INVESTIGATE_ENGINES "engines"
#define INVESTIGATE_EXONET "exonet"
-#define INVESTIGATE_EXPERIMENTOR "experimentor"
+#define INVESTIGATE_PEPPERSPRAY "pepperspray"
#define INVESTIGATE_GRAVITY "gravity"
#define INVESTIGATE_HALLUCINATIONS "hallucinations"
#define INVESTIGATE_ITEMS "items"
diff --git a/code/_globalvars/lists/maintenance_loot.dm b/code/_globalvars/lists/maintenance_loot.dm
index c43a5edcdcf9f..a70cf8e873378 100644
--- a/code/_globalvars/lists/maintenance_loot.dm
+++ b/code/_globalvars/lists/maintenance_loot.dm
@@ -80,7 +80,6 @@ GLOBAL_LIST_INIT(maintenance_loot, list(
/obj/item/reagent_containers/pill/floorpill = 4,
/obj/item/reagent_containers/spray/pestspray = 1,
/obj/item/reagent_containers/syringe/used = 4,
- /obj/item/relic = 3,
/obj/item/screwdriver = 3,
/obj/item/stack/cable_coil/random = 4,
/obj/item/stack/cable_coil/random/five = 6,
diff --git a/code/controllers/subsystem/research.dm b/code/controllers/subsystem/research.dm
index 0d77a6bfbcd1d..b35f951fdf06a 100644
--- a/code/controllers/subsystem/research.dm
+++ b/code/controllers/subsystem/research.dm
@@ -44,7 +44,6 @@ SUBSYSTEM_DEF(research)
// 2) Scientists using their shuttle to go to ruins
// 3) Giving miners a scanner
// 4) Scanning station pets
- // 5) Using the experimentor on maint devices
// (probably more added since this comment was written.)
science_tech.add_point_type(TECHWEB_POINT_TYPE_DISCOVERY, 2500)
admin_tech = new /datum/techweb/admin
diff --git a/code/game/objects/items/circuitboards/machine_circuitboards.dm b/code/game/objects/items/circuitboards/machine_circuitboards.dm
index 7e70e7d6740e3..a7c762f3d1fbc 100644
--- a/code/game/objects/items/circuitboards/machine_circuitboards.dm
+++ b/code/game/objects/items/circuitboards/machine_circuitboards.dm
@@ -860,14 +860,6 @@
/obj/item/stock_parts/manipulator = 1,
/obj/item/stock_parts/micro_laser = 1)
-/obj/item/circuitboard/machine/experimentor
- name = "E.X.P.E.R.I-MENTOR (Machine Board)"
- icon_state = "science"
- build_path = /obj/machinery/rnd/experimentor
- req_components = list(
- /obj/item/stock_parts/scanning_module = 1,
- /obj/item/stock_parts/manipulator = 2,
- /obj/item/stock_parts/micro_laser = 2)
/obj/item/circuitboard/machine/mech_recharger
name = "mechbay recharger (Machine Board)"
diff --git a/code/game/objects/items/manuals.dm b/code/game/objects/items/manuals.dm
index 5e22307559d44..331b37f233c31 100644
--- a/code/game/objects/items/manuals.dm
+++ b/code/game/objects/items/manuals.dm
@@ -348,13 +348,6 @@
title = "Research and Development 101"
page_link = "Guide_to_Research_and_Development"
-/obj/item/book/manual/wiki/experimentor
- name = "Mentoring your Experiments"
- icon_state = "rdbook"
- author = "Dr. H.P. Kritz"
- title = "Mentoring your Experiments"
- page_link = "Experimentor"
-
/obj/item/book/manual/wiki/medical_cloning
name = "Cloning techniques of the 26th century"
icon_state ="bookCloning"
diff --git a/code/game/objects/items/peppercloud.dm b/code/game/objects/items/peppercloud.dm
index 65d51f58ccae0..27c1ecf3bf5d1 100644
--- a/code/game/objects/items/peppercloud.dm
+++ b/code/game/objects/items/peppercloud.dm
@@ -102,4 +102,4 @@
playsound(src, 'sound/weapons/grenadelaunch.ogg', 70, FALSE, -2)
playsound(src, 'sound/effects/smoke.ogg', 50, TRUE, -2)
smoke.start()
- user.investigate_log("deployed a peppercloud at [COORD(center)].", INVESTIGATE_EXPERIMENTOR)
+ user.investigate_log("deployed a peppercloud at [COORD(center)].", INVESTIGATE_PEPPERSPRAY)
diff --git a/code/modules/admin/admin_investigate.dm b/code/modules/admin/admin_investigate.dm
index 4fa19f0926171..fa3bc4b5b7290 100644
--- a/code/modules/admin/admin_investigate.dm
+++ b/code/modules/admin/admin_investigate.dm
@@ -23,7 +23,6 @@
INVESTIGATE_DEATHS,
INVESTIGATE_ENGINES,
INVESTIGATE_EXONET,
- INVESTIGATE_EXPERIMENTOR,
INVESTIGATE_GRAVITY,
INVESTIGATE_HALLUCINATIONS,
INVESTIGATE_ITEMS,
diff --git a/code/modules/cargo/bounties/assistant.dm b/code/modules/cargo/bounties/assistant.dm
index 233967008dd89..9605ac55ce2a1 100644
--- a/code/modules/cargo/bounties/assistant.dm
+++ b/code/modules/cargo/bounties/assistant.dm
@@ -1,9 +1,3 @@
-/datum/bounty/item/assistant/strange_object
- name = "Strange Object"
- description = "Nanotrasen has taken an interest in strange objects. Find one in maint, and ship it off to CentCom right away."
- reward = 1200
- wanted_types = list(/obj/item/relic)
-
/datum/bounty/item/assistant/scooter
name = "Scooter"
description = "Nanotrasen has determined walking to be wasteful. Ship a scooter to CentCom to speed operations up."
diff --git a/code/modules/research/designs/machine_designs.dm b/code/modules/research/designs/machine_designs.dm
index f388dbfb71a8f..b1bfcdfa293d8 100644
--- a/code/modules/research/designs/machine_designs.dm
+++ b/code/modules/research/designs/machine_designs.dm
@@ -274,14 +274,6 @@
category = list("Research Machinery")
departmental_flags = DEPARTMENTAL_FLAG_SCIENCE
-/datum/design/board/experimentor
- name = "Machine Design (E.X.P.E.R.I-MENTOR Board)"
- desc = "The circuit board for an E.X.P.E.R.I-MENTOR."
- id = "experimentor"
- build_path = /obj/item/circuitboard/machine/experimentor
- category = list("Research Machinery")
- departmental_flags = DEPARTMENTAL_FLAG_SCIENCE
-
/datum/design/board/protolathe
name = "Machine Design (Protolathe Board)"
desc = "The circuit board for a protolathe."
diff --git a/code/modules/research/experimentor.dm b/code/modules/research/experimentor.dm
deleted file mode 100644
index a64e6ec972681..0000000000000
--- a/code/modules/research/experimentor.dm
+++ /dev/null
@@ -1,672 +0,0 @@
-//this is designed to replace the destructive analyzer
-
-//NEEDS MAJOR CODE CLEANUP
-
-#define SCANTYPE_POKE 1
-#define SCANTYPE_IRRADIATE 2
-#define SCANTYPE_GAS 3
-#define SCANTYPE_HEAT 4
-#define SCANTYPE_COLD 5
-#define SCANTYPE_OBLITERATE 6
-#define SCANTYPE_DISCOVER 7
-
-#define EFFECT_PROB_VERYLOW 20
-#define EFFECT_PROB_LOW 35
-#define EFFECT_PROB_MEDIUM 50
-#define EFFECT_PROB_HIGH 75
-#define EFFECT_PROB_VERYHIGH 95
-
-#define FAIL 8
-/obj/machinery/rnd/experimentor
- name = "\improper E.X.P.E.R.I-MENTOR"
- desc = "A \"replacement\" for the destructive analyzer with a slight tendency to catastrophically fail."
- icon = 'icons/obj/machines/heavy_lathe.dmi'
- icon_state = "h_lathe"
- density = TRUE
- use_power = IDLE_POWER_USE
- circuit = /obj/item/circuitboard/machine/experimentor
- var/recentlyExperimented = 0
- var/mob/trackedIan
- var/mob/trackedRuntime
- var/badThingCoeff = 0
- var/resetTime = 15
- var/cloneMode = FALSE
- var/list/item_reactions = list()
- var/static/list/valid_items = list() //valid items for special reactions like transforming
- var/list/critical_items_typecache //items that can cause critical reactions
- var/banned_typecache // items that won't be produced
-
-/obj/machinery/rnd/experimentor/proc/ConvertReqString2List(list/source_list)
- var/list/temp_list = params2list(source_list)
- for(var/O in temp_list)
- temp_list[O] = text2num(temp_list[O])
- return temp_list
-
-/obj/machinery/rnd/experimentor/proc/valid_items()
- if (!isnull(valid_items))
- return valid_items
- var/static/list/banned_typecache = typecacheof(list(
- /obj/item/stock_parts/cell/infinite,
- /obj/item/grenade/chem_grenade/tuberculosis
- ))
-
- valid_items = list()
-
- for(var/I in typesof(/obj/item))
- if(ispath(I, /obj/item/relic))
- item_reactions["[I]"] = SCANTYPE_DISCOVER
- else
- item_reactions["[I]"] = pick(SCANTYPE_POKE,SCANTYPE_IRRADIATE,SCANTYPE_GAS,SCANTYPE_HEAT,SCANTYPE_COLD,SCANTYPE_OBLITERATE)
-
- if(is_type_in_typecache(I, banned_typecache))
- continue
-
- if(ispath(I, /obj/item/stock_parts) || ispath(I, /obj/item/grenade/chem_grenade) || ispath(I, /obj/item/kitchen))
- var/obj/item/tempCheck = I
- if(initial(tempCheck.icon_state) != null) //check it's an actual usable item, in a hacky way
- valid_items["[I]"] += 15
-
- if(ispath(I, /obj/item/reagent_containers/food))
- var/obj/item/tempCheck = I
- if(initial(tempCheck.icon_state) != null) //check it's an actual usable item, in a hacky way
- valid_items["[I]"] += rand(1,4)
- return valid_items
-
-/obj/machinery/rnd/experimentor/Initialize(mapload)
- . = ..()
-
- trackedIan = locate(/mob/living/simple_animal/pet/dog/corgi/Ian) in GLOB.mob_living_list
- trackedRuntime = locate(/mob/living/simple_animal/pet/cat/Runtime) in GLOB.mob_living_list
-
- critical_items_typecache = typecacheof(list(
- /obj/item/construction/rcd,
- /obj/item/grenade,
- /obj/item/aicard,
- /obj/item/storage/backpack/holding,
- /obj/item/slime_extract,
- /obj/item/transfer_valve))
-
-/obj/machinery/rnd/experimentor/RefreshParts()
- for(var/obj/item/stock_parts/manipulator/M in component_parts)
- if(resetTime > 0 && (resetTime - M.rating) >= 1)
- resetTime -= M.rating
- for(var/obj/item/stock_parts/scanning_module/M in component_parts)
- badThingCoeff += M.rating*2
- for(var/obj/item/stock_parts/micro_laser/M in component_parts)
- badThingCoeff += M.rating
-
-/obj/machinery/rnd/experimentor/examine(mob/user)
- . = ..()
- if(in_range(user, src) || isobserver(user))
- . += "The status display reads: Malfunction probability reduced by [badThingCoeff]%.
Cooldown interval between experiments at [resetTime*0.1] seconds."
-
-/obj/machinery/rnd/experimentor/proc/checkCircumstances(obj/item/O)
- //snowflake check to only take "made" bombs
- if(istype(O, /obj/item/transfer_valve))
- var/obj/item/transfer_valve/T = O
- if(!T.tank_one || !T.tank_two || !T.attached_device)
- return FALSE
- return TRUE
-
-/obj/machinery/rnd/experimentor/Insert_Item(obj/item/O, mob/user)
- if(user.a_intent != INTENT_HARM)
- . = 1
- if(!is_insertion_ready(user))
- return
- if(!user.transferItemToLoc(O, src))
- return
- loaded_item = O
- to_chat(user, "You add [O] to the machine.")
- flick("h_lathe_load", src)
-
-/obj/machinery/rnd/experimentor/default_deconstruction_crowbar(obj/item/O)
- ejectItem()
- . = ..(O)
-
-/obj/machinery/rnd/experimentor/ui_interact(mob/user)
- var/list/dat = list("")
- if(!linked_console)
- dat += "Scan for R&D Console"
- if(loaded_item)
- dat += "Loaded Item: [loaded_item]"
-
- dat += ""
- if(istype(loaded_item,/obj/item/relic))
- dat += "Discover"
- dat += "Eject"
- var/list/listin = SSresearch.techweb_boost_items
- if(listin)
- var/list/output = list("Research Boost Data:")
- var/list/res = list("Already researched:")
- var/list/boosted = list("Already boosted:")
- for(var/node_id in listin)
- var/datum/techweb_node/N = SSresearch.techweb_node_by_id(node_id)
- var/str = "[N.display_name]: [listin[N]] points."
- if(SSresearch.science_tech.researched_nodes[N.id])
- res += str
- else if(SSresearch.science_tech.boosted_nodes[N.id])
- boosted += str
- if(SSresearch.science_tech.visible_nodes[N.id]) //JOY OF DISCOVERY!
- output += str
- output += boosted + res
- dat += output
- else
- dat += "Nothing loaded."
- dat += "Refresh"
- dat += "Close"
- var/datum/browser/popup = new(user, "experimentor","Experimentor", 700, 400, src)
- popup.set_content(dat.Join("
"))
- popup.open()
- onclose(user, "experimentor")
-
-/obj/machinery/rnd/experimentor/Topic(href, href_list)
- if(..())
- return
- usr.set_machine(src)
-
- var/scantype = href_list["function"]
- var/obj/item/process = locate(href_list["item"]) in src
-
- if(href_list["close"])
- usr << browse(null, "window=experimentor")
- return
- if(scantype == "search")
- var/obj/machinery/computer/rdconsole/D = locate(/obj/machinery/computer/rdconsole) in oview(5,src)
- if(D)
- linked_console = D
- else if(scantype == "eject")
- ejectItem()
- else if(scantype == "refresh")
- updateUsrDialog()
- else
- if(recentlyExperimented)
- to_chat(usr, "[src] has been used too recently!")
- else if(!loaded_item)
- to_chat(usr, "[src] is not currently loaded!")
- else if(!process || process != loaded_item) //Interface exploit protection (such as hrefs or swapping items with interface set to old item)
- to_chat(usr, "Interface failure detected in [src]. Please try again.")
- else
- var/dotype
- if(text2num(scantype) == SCANTYPE_DISCOVER)
- dotype = SCANTYPE_DISCOVER
- else
- dotype = matchReaction(process,scantype)
- experiment(dotype,process)
- use_power(750)
- if(dotype != FAIL)
- var/list/nodes = techweb_item_boost_check(process)
- var/picked = pick_weight(nodes) //This should work.
- if(linked_console)
- linked_console.stored_research.boost_with_path(SSresearch.techweb_node_by_id(picked), process.type)
- updateUsrDialog()
-
-/obj/machinery/rnd/experimentor/proc/matchReaction(matching,reaction)
- var/obj/item/D = matching
- if(D)
- if(item_reactions.Find("[D.type]"))
- var/tor = item_reactions["[D.type]"]
- if(tor == text2num(reaction))
- return tor
- else
- return FAIL
- else
- return FAIL
- else
- return FAIL
-
-/obj/machinery/rnd/experimentor/proc/ejectItem(delete=FALSE)
- if(loaded_item)
- if(cloneMode)
- visible_message("A duplicate [loaded_item] pops out!")
- var/type_to_make = loaded_item.type
- new type_to_make(get_turf(pick(oview(1,src))))
- cloneMode = FALSE
- return
- var/turf/dropturf = get_turf(pick(view(1,src)))
- if(!dropturf) //Failsafe to prevent the object being lost in the void forever.
- dropturf = drop_location()
- loaded_item.forceMove(dropturf)
- if(delete)
- qdel(loaded_item)
- loaded_item = null
-
-/obj/machinery/rnd/experimentor/proc/throwSmoke(turf/where)
- var/datum/effect_system/smoke_spread/smoke = new
- smoke.set_up(0, where)
- smoke.start()
-
-
-/obj/machinery/rnd/experimentor/proc/experiment(exp,obj/item/exp_on)
- recentlyExperimented = 1
- icon_state = "h_lathe_wloop"
- var/chosenchem
- var/criticalReaction = is_type_in_typecache(exp_on, critical_items_typecache)
- ////////////////////////////////////////////////////////////////////////////////////////////////
- if(exp == SCANTYPE_POKE)
- visible_message("[src] prods at [exp_on] with mechanical arms.")
- if(prob(EFFECT_PROB_LOW) && criticalReaction)
- visible_message("[exp_on] is gripped in just the right way, enhancing its focus.")
- badThingCoeff++
- else if(prob(EFFECT_PROB_VERYLOW-badThingCoeff))
- visible_message("[src] malfunctions and destroys [exp_on], lashing its arms out at nearby people!")
- for(var/mob/living/m in ohearers(1, src))
- m.apply_damage(15, BRUTE, pick(BODY_ZONE_HEAD,BODY_ZONE_CHEST,BODY_ZONE_PRECISE_GROIN))
- investigate_log("Experimentor dealt minor brute to [m].", INVESTIGATE_EXPERIMENTOR)
- ejectItem(TRUE)
- else if(prob(EFFECT_PROB_LOW-badThingCoeff))
- visible_message("[src] malfunctions!")
- exp = SCANTYPE_OBLITERATE
- else if(prob(EFFECT_PROB_MEDIUM-badThingCoeff))
- visible_message("[src] malfunctions, throwing the [exp_on]!")
- var/mob/living/target = locate(/mob/living) in ohearers(7,src)
- if(target)
- var/obj/item/throwing = loaded_item
- investigate_log("Experimentor has thrown [loaded_item] at [key_name(target)]", INVESTIGATE_EXPERIMENTOR)
- ejectItem()
- if(throwing)
- throwing.throw_at(target, 10, 1)
- ////////////////////////////////////////////////////////////////////////////////////////////////
- if(exp == SCANTYPE_IRRADIATE)
- visible_message("[src] reflects radioactive rays at [exp_on]!")
- if(prob(EFFECT_PROB_LOW) && criticalReaction)
- visible_message("[exp_on] has activated an unknown subroutine!")
- cloneMode = TRUE
- investigate_log("Experimentor has made a clone of [exp_on]", INVESTIGATE_EXPERIMENTOR)
- ejectItem()
- else if(prob(EFFECT_PROB_VERYLOW-badThingCoeff))
- visible_message("[src] malfunctions, melting [exp_on] and leaking radiation!")
- radiation_pulse(src, 500)
- ejectItem(TRUE)
- else if(prob(EFFECT_PROB_LOW-badThingCoeff))
- visible_message("[src] malfunctions, spewing toxic waste!")
- for(var/turf/T in oview(1, src))
- if(!T.density)
- if(prob(EFFECT_PROB_VERYHIGH) && !(locate(/obj/effect/decal/cleanable/greenglow) in T))
- var/obj/effect/decal/cleanable/reagentdecal = new/obj/effect/decal/cleanable/greenglow(T)
- reagentdecal.reagents.add_reagent(/datum/reagent/uranium/radium, 7)
- else if(prob(EFFECT_PROB_MEDIUM-badThingCoeff))
- var/savedName = "[exp_on]"
- ejectItem(TRUE)
- var/newPath = text2path(pick_weight(valid_items()))
- loaded_item = new newPath(src)
- visible_message("[src] malfunctions, transforming [savedName] into [loaded_item]!")
- investigate_log("Experimentor has transformed [savedName] into [loaded_item]", INVESTIGATE_EXPERIMENTOR)
- if(istype(loaded_item, /obj/item/grenade/chem_grenade))
- var/obj/item/grenade/chem_grenade/CG = loaded_item
- CG.prime()
- ejectItem()
- ////////////////////////////////////////////////////////////////////////////////////////////////
- if(exp == SCANTYPE_GAS)
- visible_message("[src] fills its chamber with gas, [exp_on] included.")
- if(prob(EFFECT_PROB_LOW) && criticalReaction)
- visible_message("[exp_on] achieves the perfect mix!")
- new /obj/item/stack/sheet/mineral/plasma(get_turf(pick(oview(1,src))))
- else if(prob(EFFECT_PROB_VERYLOW-badThingCoeff))
- visible_message("[src] destroys [exp_on], leaking dangerous gas!")
- chosenchem = pick(/datum/reagent/carbon,/datum/reagent/uranium/radium,/datum/reagent/toxin,/datum/reagent/consumable/condensedcapsaicin,/datum/reagent/drug/mushroomhallucinogen,/datum/reagent/drug/space_drugs,/datum/reagent/consumable/ethanol,/datum/reagent/consumable/ethanol/beepsky_smash)
- var/datum/reagents/R = new/datum/reagents(50)
- R.my_atom = src
- R.add_reagent(chosenchem , 50)
- investigate_log("Experimentor has released [chosenchem] smoke.", INVESTIGATE_EXPERIMENTOR)
- var/datum/effect_system/smoke_spread/chem/smoke = new
- smoke.set_up(R, 0, src, silent = TRUE)
- playsound(src, 'sound/effects/smoke.ogg', 50, 1, -3)
- smoke.start()
- qdel(R)
- ejectItem(TRUE)
- else if(prob(EFFECT_PROB_VERYLOW-badThingCoeff))
- visible_message("[src]'s chemical chamber has sprung a leak!")
- chosenchem = pick(/datum/reagent/mutationtoxin/classic,/datum/reagent/nanomachines,/datum/reagent/toxin/acid)
- var/datum/reagents/R = new/datum/reagents(50)
- R.my_atom = src
- R.add_reagent(chosenchem , 50)
- var/datum/effect_system/smoke_spread/chem/smoke = new
- smoke.set_up(R, 0, src, silent = TRUE)
- playsound(src, 'sound/effects/smoke.ogg', 50, 1, -3)
- smoke.start()
- qdel(R)
- ejectItem(TRUE)
- warn_admins(usr, "[chosenchem] smoke")
- investigate_log("Experimentor has released [chosenchem] smoke!", INVESTIGATE_EXPERIMENTOR)
- else if(prob(EFFECT_PROB_LOW-badThingCoeff))
- visible_message("[src] malfunctions, spewing harmless gas.")
- throwSmoke(loc)
- else if(prob(EFFECT_PROB_MEDIUM-badThingCoeff))
- visible_message("[src] melts [exp_on], ionizing the air around it!")
- empulse(loc, 4, 6)
- investigate_log("Experimentor has generated an Electromagnetic Pulse.", INVESTIGATE_EXPERIMENTOR)
- ejectItem(TRUE)
- ////////////////////////////////////////////////////////////////////////////////////////////////
- if(exp == SCANTYPE_HEAT)
- visible_message("[src] raises [exp_on]'s temperature.")
- if(prob(EFFECT_PROB_LOW) && criticalReaction)
- visible_message("[src]'s emergency coolant system gives off a small ding!")
- playsound(src, 'sound/machines/ding.ogg', 50, 1)
- var/obj/item/reagent_containers/food/drinks/coffee/C = new /obj/item/reagent_containers/food/drinks/coffee(get_turf(pick(oview(1,src))))
- chosenchem = pick(/datum/reagent/toxin/plasma,/datum/reagent/consumable/capsaicin,/datum/reagent/consumable/ethanol)
- C.reagents.remove_any(25)
- C.reagents.add_reagent(chosenchem , 50)
- C.name = "Cup of Suspicious Liquid"
- C.desc = "It has a large hazard symbol printed on the side in fading ink."
- investigate_log("Experimentor has made a cup of [chosenchem] coffee.", INVESTIGATE_EXPERIMENTOR)
- else if(prob(EFFECT_PROB_VERYLOW-badThingCoeff))
- var/turf/start = get_turf(src)
- var/mob/M = locate(/mob/living) in view(3, src)
- var/turf/MT = get_turf(M)
- if(MT)
- visible_message("[src] dangerously overheats, launching a flaming fuel orb!")
- investigate_log("Experimentor has launched a fireball at [M]!", INVESTIGATE_EXPERIMENTOR)
- var/obj/projectile/magic/fireball/FB = new /obj/projectile/magic/fireball(start)
- FB.preparePixelProjectile(MT, start)
- FB.fire()
- else if(prob(EFFECT_PROB_LOW-badThingCoeff))
- visible_message("[src] malfunctions, melting [exp_on] and releasing a burst of flame!")
- explosion(loc, -1, 0, 0, 0, 0, flame_range = 2)
- investigate_log("Experimentor started a fire.", INVESTIGATE_EXPERIMENTOR)
- ejectItem(TRUE)
- else if(prob(EFFECT_PROB_MEDIUM-badThingCoeff))
- visible_message("[src] malfunctions, melting [exp_on] and leaking hot air!")
- var/datum/gas_mixture/env = loc.return_air()
- env.adjust_heat(100000)
- air_update_turf()
- investigate_log("Experimentor has released hot air.", INVESTIGATE_EXPERIMENTOR)
- ejectItem(TRUE)
- else if(prob(EFFECT_PROB_MEDIUM-badThingCoeff))
- visible_message("[src] malfunctions, activating its emergency coolant systems!")
- throwSmoke(loc)
- for(var/mob/living/m in ohearers(1, src))
- m.apply_damage(5, BURN, pick(BODY_ZONE_HEAD,BODY_ZONE_CHEST,BODY_ZONE_PRECISE_GROIN))
- investigate_log("Experimentor has dealt minor burn damage to [key_name(m)]", INVESTIGATE_EXPERIMENTOR)
- ejectItem()
- ////////////////////////////////////////////////////////////////////////////////////////////////
- if(exp == SCANTYPE_COLD)
- visible_message("[src] lowers [exp_on]'s temperature.")
- if(prob(EFFECT_PROB_LOW) && criticalReaction)
- visible_message("[src]'s emergency coolant system gives off a small ding!")
- var/obj/item/reagent_containers/food/drinks/coffee/C = new /obj/item/reagent_containers/food/drinks/coffee(get_turf(pick(oview(1,src))))
- playsound(src, 'sound/machines/ding.ogg', 50, 1) //Ding! Your death coffee is ready!
- chosenchem = pick(/datum/reagent/uranium,/datum/reagent/consumable/frostoil,/datum/reagent/medicine/ephedrine)
- C.reagents.remove_any(25)
- C.reagents.add_reagent(chosenchem , 50)
- C.name = "Cup of Suspicious Liquid"
- C.desc = "It has a large hazard symbol printed on the side in fading ink."
- investigate_log("Experimentor has made a cup of [chosenchem] coffee.", INVESTIGATE_EXPERIMENTOR)
- else if(prob(EFFECT_PROB_VERYLOW-badThingCoeff))
- visible_message("[src] malfunctions, shattering [exp_on] and releasing a dangerous cloud of coolant!")
- var/datum/reagents/R = new/datum/reagents(50)
- R.my_atom = src
- R.add_reagent(/datum/reagent/consumable/frostoil , 50)
- investigate_log("Experimentor has released frostoil gas.", INVESTIGATE_EXPERIMENTOR)
- var/datum/effect_system/smoke_spread/chem/smoke = new
- smoke.set_up(R, 0, src, silent = TRUE)
- playsound(src, 'sound/effects/smoke.ogg', 50, 1, -3)
- smoke.start()
- qdel(R)
- ejectItem(TRUE)
- else if(prob(EFFECT_PROB_LOW-badThingCoeff))
- visible_message("[src] malfunctions, shattering [exp_on] and leaking cold air!")
- var/datum/gas_mixture/env = loc.return_air()
- env.adjust_heat(-75000)
- air_update_turf()
- investigate_log("Experimentor has released cold air.", INVESTIGATE_EXPERIMENTOR)
- ejectItem(TRUE)
- else if(prob(EFFECT_PROB_MEDIUM-badThingCoeff))
- visible_message("[src] malfunctions, releasing a flurry of chilly air as [exp_on] pops out!")
- var/datum/effect_system/smoke_spread/smoke = new
- smoke.set_up(0, loc)
- smoke.start()
- ejectItem()
- ////////////////////////////////////////////////////////////////////////////////////////////////
- if(exp == SCANTYPE_OBLITERATE)
- visible_message("[exp_on] activates the crushing mechanism, [exp_on] is destroyed!")
- if(linked_console.linked_lathe)
- var/datum/component/material_container/linked_materials = linked_console.linked_lathe.GetComponent(/datum/component/material_container)
- for(var/material in exp_on.custom_materials)
- linked_materials.insert_amount_mat( min((linked_materials.max_amount - linked_materials.total_amount), (exp_on.custom_materials[material])), material)
- if(prob(EFFECT_PROB_LOW) && criticalReaction)
- visible_message("[src]'s crushing mechanism slowly and smoothly descends, flattening the [exp_on]!")
- new /obj/item/stack/sheet/plasteel(get_turf(pick(oview(1,src))))
- else if(prob(EFFECT_PROB_VERYLOW-badThingCoeff))
- visible_message("[src]'s crusher goes way too many levels too high, crushing right through space-time!")
- playsound(src, 'sound/effects/supermatter.ogg', 50, 1, -3)
- investigate_log("Experimentor has triggered the 'throw things' reaction.", INVESTIGATE_EXPERIMENTOR)
- for(var/atom/movable/AM in oview(7,src))
- if(!AM.anchored)
- AM.throw_at(src,10,1)
- else if(prob(EFFECT_PROB_LOW-badThingCoeff))
- visible_message("[src]'s crusher goes one level too high, crushing right into space-time!")
- playsound(src, 'sound/effects/supermatter.ogg', 50, 1, -3)
- investigate_log("Experimentor has triggered the 'minor throw things' reaction.", INVESTIGATE_EXPERIMENTOR)
- var/list/throwAt = list()
- for(var/atom/movable/AM in oview(7,src))
- if(!AM.anchored)
- throwAt.Add(AM)
- for(var/counter = 1, counter < throwAt.len, ++counter)
- var/atom/movable/cast = throwAt[counter]
- cast.throw_at(pick(throwAt),10,1)
- ejectItem(TRUE)
- ////////////////////////////////////////////////////////////////////////////////////////////////
- if(exp == FAIL)
- var/a = pick("rumbles","shakes","vibrates","shudders")
- var/b = pick("crushes","spins","viscerates","smashes","insults")
- visible_message("[exp_on] [a], and [b], the experiment was a failure.")
-
- if(exp == SCANTYPE_DISCOVER)
- visible_message("[src] scans the [exp_on], revealing its true nature!")
- playsound(src, 'sound/effects/supermatter.ogg', 50, 3, -1)
- var/obj/item/relic/R = loaded_item
- R.reveal(linked_console.stored_research)
- investigate_log("Experimentor has revealed a relic with [R.realProc] effect.", INVESTIGATE_EXPERIMENTOR)
- ejectItem()
-
- //Global reactions
- if(prob(EFFECT_PROB_VERYLOW-badThingCoeff) && loaded_item)
- var/globalMalf = rand(1,100)
- if(globalMalf < 15)
- visible_message("[src]'s onboard detection system has malfunctioned!")
- item_reactions["[exp_on.type]"] = pick(SCANTYPE_POKE,SCANTYPE_IRRADIATE,SCANTYPE_GAS,SCANTYPE_HEAT,SCANTYPE_COLD,SCANTYPE_OBLITERATE)
- ejectItem()
- if(globalMalf > 16 && globalMalf < 35)
- visible_message("[src] melts [exp_on], ian-izing the air around it!")
- throwSmoke(loc)
- if(trackedIan)
- throwSmoke(trackedIan.loc)
- trackedIan.forceMove(loc)
- investigate_log("Experimentor has stolen Ian!", INVESTIGATE_EXPERIMENTOR) //...if anyone ever fixes it...
- else
- new /mob/living/simple_animal/pet/dog/corgi(loc)
- investigate_log("Experimentor has spawned a new corgi.", INVESTIGATE_EXPERIMENTOR)
- ejectItem(TRUE)
- if(globalMalf > 36 && globalMalf < 50)
- visible_message("Experimentor draws the life essence of those nearby!")
- for(var/mob/living/m in hearers(4,src))
- to_chat(m, "You feel your flesh being torn from you, mists of blood drifting to [src]!")
- m.apply_damage(50, BRUTE, BODY_ZONE_CHEST)
- investigate_log("Experimentor has taken 50 brute a blood sacrifice from [m]", INVESTIGATE_EXPERIMENTOR)
- if(globalMalf > 51 && globalMalf < 75)
- visible_message("[src] encounters a run-time error!")
- throwSmoke(loc)
- if(trackedRuntime)
- throwSmoke(trackedRuntime.loc)
- trackedRuntime.forceMove(drop_location())
- investigate_log("Experimentor has stolen Runtime!", INVESTIGATE_EXPERIMENTOR)
- else
- new /mob/living/simple_animal/pet/cat(loc)
- investigate_log("Experimentor failed to steal runtime, and instead spawned a new cat.", INVESTIGATE_EXPERIMENTOR)
- ejectItem(TRUE)
- if(globalMalf > 76)
- visible_message("[src] begins to smoke and hiss, shaking violently!")
- use_power(500000)
- investigate_log("Experimentor has drained power from its APC", INVESTIGATE_EXPERIMENTOR)
-
- addtimer(CALLBACK(src, PROC_REF(reset_exp)), resetTime)
-
-/obj/machinery/rnd/experimentor/proc/reset_exp()
- update_icon()
- recentlyExperimented = FALSE
-
-/obj/machinery/rnd/experimentor/update_icon()
- icon_state = "h_lathe"
-
-/obj/machinery/rnd/experimentor/proc/warn_admins(user, ReactionName)
- var/turf/T = get_turf(user)
- message_admins("Experimentor reaction: [ReactionName] generated by [ADMIN_LOOKUPFLW(user)] at [ADMIN_VERBOSEJMP(T)]")
- log_game("Experimentor reaction: [ReactionName] generated by [key_name(user)] in [AREACOORD(T)]")
-
-#undef SCANTYPE_POKE
-#undef SCANTYPE_IRRADIATE
-#undef SCANTYPE_GAS
-#undef SCANTYPE_HEAT
-#undef SCANTYPE_COLD
-#undef SCANTYPE_OBLITERATE
-#undef SCANTYPE_DISCOVER
-
-#undef EFFECT_PROB_VERYLOW
-#undef EFFECT_PROB_LOW
-#undef EFFECT_PROB_MEDIUM
-#undef EFFECT_PROB_HIGH
-#undef EFFECT_PROB_VERYHIGH
-
-#undef FAIL
-
-
-//////////////////////////////////SPECIAL ITEMS////////////////////////////////////////
-
-/obj/item/relic
- name = "strange object"
- desc = "What mysteries could this hold?"
- icon = 'icons/obj/assemblies.dmi'
- var/realName = "defined object"
- var/revealed = FALSE
- var/realProc
- var/cooldownMax = 60
- var/cooldown
-
-/obj/item/relic/Initialize(mapload)
- . = ..()
- icon_state = pick("shock_kit","armor-igniter-analyzer","infra-igniter0","infra-igniter1","radio-multitool","prox-radio1","radio-radio","timer-multitool0","radio-igniter-tank")
- realName = "[pick("broken","twisted","spun","improved","silly","regular","badly made")] [pick("device","object","toy","illegal tech","weapon")]"
-
-
-/obj/item/relic/proc/reveal(datum/techweb/techweb)
- if(revealed) //Re-rolling your relics seems a bit overpowered, yes?
- return
- revealed = TRUE
- name = realName
- cooldownMax = rand(60,300)
- realProc = pick("teleport","explode","rapidDupe","petSpray","flash","clean","corgicannon")
- //Give science research
- techweb.add_point_type(TECHWEB_POINT_TYPE_DISCOVERY, 2000)
-
-/obj/item/relic/attack_self(mob/user)
- if(revealed)
- if(cooldown)
- to_chat(user, "[src] does not react!")
- return
- else if(loc == user)
- cooldown = TRUE
- call(src,realProc)(user)
- if(!QDELETED(src))
- addtimer(CALLBACK(src, PROC_REF(cd)), cooldownMax)
- else
- to_chat(user, "You aren't quite sure what to do with this yet.")
-
-/obj/item/relic/proc/cd()
- cooldown = FALSE
-
-//////////////// RELIC PROCS /////////////////////////////
-
-/obj/item/relic/proc/throwSmoke(turf/where)
- var/datum/effect_system/smoke_spread/smoke = new
- smoke.set_up(0, get_turf(where))
- smoke.start()
-
-/obj/item/relic/proc/corgicannon(mob/user)
- playsound(src, "sparks", rand(25,50), 1)
- var/mob/living/simple_animal/pet/dog/corgi/C = new/mob/living/simple_animal/pet/dog/corgi(get_turf(user))
- C.throw_at(pick(oview(10,user)), 10, rand(3,8), callback = CALLBACK(src, PROC_REF(throwSmoke), C))
- warn_admins(user, "Corgi Cannon", 0)
-
-/obj/item/relic/proc/clean(mob/user)
- playsound(src, "sparks", rand(25,50), 1)
- var/obj/item/grenade/chem_grenade/cleaner/CL = new/obj/item/grenade/chem_grenade/cleaner(get_turf(user))
- CL.prime()
- warn_admins(user, "Foam", 0)
-
-/obj/item/relic/proc/flash(mob/user)
- playsound(src, "sparks", rand(25,50), 1)
- var/obj/item/grenade/flashbang/CB = new/obj/item/grenade/flashbang(user.loc)
- CB.prime()
- warn_admins(user, "Flash")
-
-/obj/item/relic/proc/petSpray(mob/user)
- var/message = "[src] begins to shake, and in the distance the sound of rampaging animals arises!"
- visible_message(message)
- to_chat(user, message)
- var/animals = rand(1,25)
- var/counter
- var/list/valid_animals = list(/mob/living/simple_animal/parrot, /mob/living/simple_animal/butterfly, /mob/living/simple_animal/pet/cat, /mob/living/simple_animal/pet/dog/corgi, /mob/living/simple_animal/crab, /mob/living/simple_animal/pet/fox, /mob/living/simple_animal/hostile/lizard, /mob/living/simple_animal/mouse, /mob/living/simple_animal/pet/dog/pug, /mob/living/simple_animal/hostile/bear, /mob/living/simple_animal/hostile/poison/bees, /mob/living/simple_animal/hostile/carp)
- for(counter = 1; counter < animals; counter++)
- var/mobType = pick(valid_animals)
- new mobType(get_turf(src))
- warn_admins(user, "Mass Mob Spawn")
- if(prob(60))
- to_chat(user, "[src] falls apart!")
- qdel(src)
-
-/obj/item/relic/proc/rapidDupe(mob/user)
- audible_message("[src] emits a loud pop!")
- var/list/dupes = list()
- var/counter
- var/max = rand(5,10)
- for(counter = 1; counter < max; counter++)
- var/obj/item/relic/R = new type(get_turf(src))
- R.name = name
- R.desc = desc
- R.realName = realName
- R.realProc = realProc
- R.revealed = TRUE
- dupes |= R
- R.throw_at(pick(oview(7,get_turf(src))),10,1)
- counter = 0
- QDEL_LIST_IN(dupes, rand(10, 100))
- warn_admins(user, "Rapid duplicator", 0)
-
-/obj/item/relic/proc/explode(mob/user)
- to_chat(user, "[src] begins to heat up!")
- addtimer(CALLBACK(src, PROC_REF(do_explode), user), rand(35, 100))
-
-/obj/item/relic/proc/do_explode(mob/user)
- if(loc == user)
- visible_message("\The [src]'s top opens, releasing a powerful blast!")
- explosion(user.loc, 0, rand(1,5), rand(1,5), rand(1,5), rand(1,5), flame_range = 2)
- warn_admins(user, "Explosion")
- qdel(src) //Comment this line to produce a light grenade (the bomb that keeps on exploding when used)!!
-
-/obj/item/relic/proc/teleport(mob/user)
- to_chat(user, "[src] begins to vibrate!")
- addtimer(CALLBACK(src, PROC_REF(do_the_teleport), user), rand(10, 30))
-
-/obj/item/relic/proc/do_the_teleport(mob/user)
- var/turf/userturf = get_turf(user)
- if(loc == user && !is_centcom_level(userturf.z)) //Because Nuke Ops bringing this back on their shuttle, then looting the ERT area is 2fun4you!
- visible_message("[src] twists and bends, relocating itself!")
- throwSmoke(userturf)
- do_teleport(user, userturf, 8, asoundin = 'sound/effects/phasein.ogg', channel = TELEPORT_CHANNEL_BLUESPACE)
- throwSmoke(get_turf(user))
- warn_admins(user, "Teleport", 0)
-
-//Admin Warning proc for relics
-/obj/item/relic/proc/warn_admins(mob/user, RelicType, priority = 1)
- var/turf/T = get_turf(src)
- var/log_msg = "[RelicType] relic used by [key_name(user)] in [AREACOORD(T)]"
- if(priority) //For truly dangerous relics that may need an admin's attention. BWOINK!
- message_admins("[RelicType] relic activated by [ADMIN_LOOKUPFLW(user)] in [ADMIN_VERBOSEJMP(T)]")
- log_game(log_msg)
- investigate_log(log_msg, "experimentor")
diff --git a/code/modules/research/rdconsole.dm b/code/modules/research/rdconsole.dm
index 15e0e98aabfc5..ea9985ed23488 100644
--- a/code/modules/research/rdconsole.dm
+++ b/code/modules/research/rdconsole.dm
@@ -536,10 +536,6 @@ Nothing else in the console has ID requirements.
/obj/machinery/computer/rdconsole/core
name = "Core R&D Console"
-/obj/machinery/computer/rdconsole/experiment
- name = "E.X.P.E.R.I-MENTOR R&D Console"
-
-
/obj/machinery/computer/rdconsole/vv_get_dropdown()
. = ..()
VV_DROPDOWN_OPTION("", "---------")
diff --git a/code/modules/research/rdmachines.dm b/code/modules/research/rdmachines.dm
index 93e3cc4c83ade..765d6091bc6ed 100644
--- a/code/modules/research/rdmachines.dm
+++ b/code/modules/research/rdmachines.dm
@@ -13,7 +13,7 @@
var/requires_console = TRUE
var/disabled = FALSE
var/obj/machinery/computer/rdconsole/linked_console
- var/obj/item/loaded_item = null //the item loaded inside the machine (currently only used by experimentor and destructive analyzer)
+ var/obj/item/loaded_item = null //the item loaded inside the machine (currently only used by the destructive analyzer)
/obj/machinery/rnd/proc/reset_busy()
busy = FALSE
diff --git a/code/modules/research/techweb/all_nodes.dm b/code/modules/research/techweb/all_nodes.dm
index 2ca411d40e28b..73a0bb54dcfb7 100644
--- a/code/modules/research/techweb/all_nodes.dm
+++ b/code/modules/research/techweb/all_nodes.dm
@@ -22,7 +22,6 @@
"design_disk",
"dest_tagger",
"destructive_analyzer",
- "experimentor",
"fax",
"glasses_prescription",
"handlabel",
diff --git a/icons/obj/assemblies.dmi b/icons/obj/assemblies.dmi
index b9f33f255e468626c14be2fd14c1c12192b967c7..ffc35e90e511fb6fe9740a3d47b690978364b92c 100644
GIT binary patch
delta 657
zcmV;C0&e}8f&!U>0+2_4n*NE@LoU0mRynlVZ-53of!P=v8J9Nw^n2(A0>SY>)k`Y<
zp6BJgG2vSLeEz+C6;ChQs6ktk(PAU+f80cicap9U8*z6VEefQ(a9{t_4jhV&xT*`2
z?UOyZt7sv~)?y=8(PC$z#IMgS3AQvgrd*Rl8-oUQ_(U6&k=|K-xI7^nqF=6FER
zZI6x}=si=?_RZvfEl4s!)=`O;f4O>iIOoTuPs>>gpO(27=bG;rW^Tra>j_VVfxzR}
zFYx#~6ELs;3Cy)}>CT_PL7*%tF}od$14Rw8NQod>U}}LhpG-gzPT{wIetA~urngI+
zzwZ17RD(&lssFS-h{@GsSWE^Z8k@7WPf73b*s
zpe1GCFiuSwcHGBf(vUgMQ(~aIq`K>F>RtaHdWOgEWU-!S;gZ&GBsFE485{lr>*ad6
z?sQp!yvnT
r*+%~W2`qqI$uP;a001BWNklH;r*qq<3Q
delta 657
zcmV;C0&e}8f&!U>0+2_4lKzRbhg^1Bt#W9!-vAAG0<*z3GA?cU>G#kL1cKv%RWGUZ
zd!Co~#)Mn(ILTHW{=mT3)9~1V
zK1>`DJJ1K_9E&oxAjvRiw0!vd%9@XnkUW{5)9Z2iE?P(|;V8CZz4S=$g3`wesd_6N
zIb%wu%a)(xvlY*AI&A8i%VA4whZZE6u)Fp0alC@z$}$QcZtT?7V+Z;$F;EMV%;|uj
z+a4V|&iIOp$6pO&*0J}q-EE;avSn7J7vt|vSd1_F;?
zzrf?~LcqNKXE4{wwL5gOVC#krF|&z|;b1KAAvCIECN+{^?nzRd1Jg
zf8B%z$_A5gSq+qo$RswDg|W(-k7JS|sPIpD3AKXYiRR;fm^1POjkPP#Q5Hl|q0Lce
zM?RUhjD6D*l{0^Nkis1&xwKVn(Ds0tM~nT=oucrlf`Bk<_R(GdBDMHp|U&
z)9JDT)f`=uLjov&^z!Wo$@|V6%dB?lHDuPdPiCK0hHfDoxl8canJpcVCDq&zs1cz;4C!>yvnT
r*+qW=)n$OW!QYzo001BWNklH;r*thG$L
diff --git a/strings/cas_white.txt b/strings/cas_white.txt
index 47e2f4a7596e6..fffb0344afef5 100644
--- a/strings/cas_white.txt
+++ b/strings/cas_white.txt
@@ -208,7 +208,6 @@ Krokodil addiction.
A H.O.N.K. mech.
A dominatrix HoS.
Sexcurity.
-The Experimentor.
That goddamn fucking mime.
Actually taking a hostage instead of just murdering them.
Spacing the clown at shift start.
From f1c30b4b756bebcb26189209c687626a03d2d79e Mon Sep 17 00:00:00 2001
From: ss13-beebot <56381746+ss13-beebot@users.noreply.github.com>
Date: Fri, 12 Jul 2024 12:07:29 -0500
Subject: [PATCH 09/15] Automatic changelog generation for PR #10452 [ci skip]
---
html/changelogs/AutoChangeLog-pr-10452.yml | 6 ++++++
1 file changed, 6 insertions(+)
create mode 100644 html/changelogs/AutoChangeLog-pr-10452.yml
diff --git a/html/changelogs/AutoChangeLog-pr-10452.yml b/html/changelogs/AutoChangeLog-pr-10452.yml
new file mode 100644
index 0000000000000..4edc147bfc1f3
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-10452.yml
@@ -0,0 +1,6 @@
+author: PestoVerde322
+delete-after: true
+changes:
+ - rscdel: Decomissioned for good the E.X.P.E.R.I-MENTOR in favour of the anomaly
+ system.
+ - rscadd: All of the Anomaly research room has been refurbished properly.
From f660a7305ece1cb7d988d5de99a439c6070225b2 Mon Sep 17 00:00:00 2001
From: h42-real <104878598+h42-real@users.noreply.github.com>
Date: Fri, 12 Jul 2024 12:14:30 -0500
Subject: [PATCH 10/15] Adds a Sprite for Wearing the Doctor's Bag (#11177)
* Updates belt.dmi
* Update firstaid.dm
---
code/game/objects/items/storage/firstaid.dm | 2 +-
icons/mob/clothing/belt.dmi | Bin 36197 -> 38731 bytes
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/code/game/objects/items/storage/firstaid.dm b/code/game/objects/items/storage/firstaid.dm
index 12d8483207eac..4533039d5f8f1 100644
--- a/code/game/objects/items/storage/firstaid.dm
+++ b/code/game/objects/items/storage/firstaid.dm
@@ -58,7 +58,7 @@
name = "doctor's bag"
icon_state = "firstaid-surgeryalt"
item_state = "firstaid-surgeryalt"
- worn_icon_state = "baguette"
+ worn_icon_state = "firstaid_surgeryalt"
desc = "A fancy high capacity aid kit for doctors, full of medical supplies and basic surgical equipment"
skin_type = null
w_class = WEIGHT_CLASS_BULKY
diff --git a/icons/mob/clothing/belt.dmi b/icons/mob/clothing/belt.dmi
index e8c911bf84552b7707e15798dd11b5d634bd26d0..c13c65bb55cdf9d7fe903ea9b2596f5274f89e5e 100644
GIT binary patch
literal 38731
zcmdSBcT`hfw#1NOE`l&UeNg@80*ucw?M#&$xe(z1P}vuRT|peNJMHALwwfUt$M=
zKpc9ycT7MaW=-Hvh>Zp4VNYec00JE~4l}a~yyNoBDZt}tpogC?2o&-mIla%9SCP9D
zJ7Rhxv7C3PHYro8GWu)G(YyAKW%LueYMMk;|9GOI2Lj&X%MI-GD96uCFm3-fw*|zc
zp94K)k1z>`jPX5sQ!uvLf-=JRR=L&;2cy=WqnbBw^pDPS6`IWYjzUY+<}{PR-c=Ru
zi_a(f<~*zAHn*m#KW6^seMY9o6}$J>48LQuA@0qGF{J@-9CidDRPt;iK$w8#2
zr-Rb7On=iAKOxT(4;w#S9Cd(nNK`Ml@lF0-;7=eZ{8E%=dR;l);3?5miD&mMZ;ZmR
zw;?>gK}g3yf^FwPYWwz}^?68S!$7+5M~^wSl2m0T6_w(#A^&+jTPu=_lSGBcUZ_7=T+_R{rO7G1zy8jC)ylD8C&6)H3`j1^E6{C!Hm(g^oFU+Pp=P$bNnn>@n6rYTf
zk%+%)|D^w=w(iz3CfD5Epc^EYn;yN+{UTrI`;uoh^&6KPMy0{!2N`*n`9&HezrP!n
zRJYO(_;_nTx2F0mm-_pX2g-@Fk=lm2{NZNohN=9#&8tT$4%SUM^&a7bS7W^q$YLhB
zt(&^uqr;~Bw?oSf8d42>aObdQROy#2$1WARl?nJTqmQVFA6Yv2N3=>afiB;D>N>w@
zL35VBcG=ln*noy7dn7JbK|*Ix!Eb|aBK60)F1uJ|y*mfLcqiNpjZ)X|MLOGVSkbMI
z_YST7q-cI;^>15!CDcD^a;)hN_x!2lWBzTsKa}4dSvRc_Tv5*
ztSDx2)if!JsV)^SHB3xn5mFQA=2MFoPOL1DG7sQ4Sa=X}tB%$$HV_Z#`ZV{zOcX
z-p!}E7-))VM547-O44uhGr3+&w3;i}wbiY7LYfP+OM!`Q`>n0??hg)P5s7Z!6B{Z`
z2bns4%d%Wo)-`ZtKk8iy>pmW7<#m76{e!ZVNO_Uv&Z{lEoP9T-3Al
zK+WccTW0ZYAH|Nn=COX7tv3yO&Lnyz=jw1
z$t^Q;v;O|V-ZMrS*0I`EG>GC$YHd|JlLY?qjRDu`9~U=6xs_LhU%X%;e8|(VF$V!>
z-11+68wY9Z6Cfn{zD&i@cRB*4u6-HZ{(Rqw{yzAohr9~jKU;#91L;(9r{|z?(0AfS
z+BZclWBdkJB7jh}#_x@gUTm1-`E9GS=gxI-s?MIx|G?+4#NXiZhMi7vn9~qpK)l-<
z7kr2okfM*DX^7rzsTghFu(ImNB(^R5_*Mf)G8vaWB`Q5I^kTj^<97Y{K?K-4it|Ni
zXs9a+vC}aBM>jOI=+mdS)sfuOAhv&`$aJt4Ida9U5_HxzTzF5~KWPI*7NU0?)
zxZw0~^c7E5tUsTyQ`Cto8lwplv{$*ik$+}q)6;+s7^7pN!VvW1Hn2SB5S>n1@;BAYS+$<#F}XM2*!`iOaz2_w4Pn$Fq~pluqED1u&`dR7wpe
z0B6tueV&QCh<@rTxL4KoA($JnM2m4;IU;0J!}NZ3Pw=sv4C(DI|54T;Lrp7-h`a{6
z;{^z)%N5u`&2w)K#P67q!6%)#K;y4LM}fT*x}|iC6S)4LBJKajhhEs@{SAT|D38Db
z2+9C+M6VDixBof;P1*kl(R`W)2Wk29U7OS4$9%O9dQo%jG$Vk=
z3d$QHH})Tc*OWS9JE6zHi(zbuQxq;|b_Tx^(tmOF=qcFSJ~mBYhUU{8f=59@kWr
zqpT~o(~0>wSkponl>5M)P}H}zY*Ddy_a{{7LN6GE`NrQF$KLJX4)UD)2(ZGkB{-?M
zN7rOArO)%j;GM+4spx#CK3sk5$|NSS^G_SAjtw>b51sHVwZ@L9iM%>DC2@a?>qR8F
zUXdKAWDymy($3CZdyjsKOh*UyxFS6vQTH3YNA?zFX=}7Oa2bXQCVs8jOo;V?4e7@0
zPdU7w6a1{<$Y!Ut!;R?NN9mU!<0?VQvv9T>Z~a~gdFuGU+l?VB(~xQp0G&eIZpkCm
z7SC|BeRXIxHZj=1dn^B*3Sl2SThP#p5$~sqT|*-6v4~5_{+pWyt)FhDtc9N4S7y
zj+WNPA2ekz7K
zJwd|M1QcQM!L=VP)uO6$?sKcZbm0TIc$z&|rxPrEQaBvHkL~G^eJOwV(%{~M$P-JN
zA0~d4PnLAb*~xo8F#e0t0MP0Sr*?nDu_c$p>HU68Nhvt*s~0x;gbJYHG1(FnM%@{`
zs#lGnwcveVF@lZP^eBi}LydUFw+WDS-atXNdqs0#r{d2+B!arBUosCezX9V|BB{r!
z=vfGswyzXCI&rt@j)#FYlnxK4dF==2xSDH5`u?)hST
zf$Jct^P6a={}Wh(;@cbh)2YKb?t0nuj4GP$#n$7uF)%6<<;qD0V^Tbcyy`Jpgcu6k
z2w$Dpe)!hs#p@iWTCYK!OWXJ*O=*qEW`F;;v)bKQ84tS8l;%8Gpn4D7`e**(pZNhlztdq-kY3fNVhTzKA_#T(3m`2lx0(TK`?mF3$vF
zns>P0(ZATdJ*LFX_25EBTOh&E)wcQsGbvx{ub>htXNc}qGN<@aL&1<^x!2nNVtx7i
zE1rL@tCCu`MD(;@o!kf#DB^1UYOB8V-DJ;oworz1pi40LKvOQBH7LYu)Ov
z*volf$NeV+et`GuE5=esdUs-I{=k7t
zdINPvshHh%0WK@mn+G9U`$rtmF1+o<>x1?dVN!F}c+^1w##2M+2%-
zKDrz%X)REeH>`R_;ANt80nJj4Yo>GYtGk6M6L
zFkg~6v-zRC_v-na!h@Y;T#9JaLf0W`El(JOsR$c;$9RA
z$3N?jY475Agy8$?gtbLGqK>8Q?4IXW#U+)1qMe*$gh5=3C_3d(ZSY5XPT)QIYg{LS
zP}&x}dg4Vxav#j}nq6Q?o4u+HFdc(&MEwn7kaY9jjlOhQojTV(b}II;$_{nO2AXhD
zw&Os|&HUj7MCT@7=h?8^Z~F-M=O>*Dprf=G>WA<9QQdMHL_II{A{BH$TJHsK_-hMN
z#WoaJ$?N;mjq67_U*wB~(umnt13*EUtIM`uuTN^^{DNEe^0N6P^j)MDe-}+y_1*S7
zuzvU<)9haSB^MS>zO-L87i3-I(v_bTx%PkXIJAfAedmR#1<%)=i>jTO5X9l168V`G
z`C25L34=!^v;l4Ea1K0?1{Xo?%PmTS!L~286i=Uu3l7=4s1n7lG+uiktOrc&b
z@JT+Un@*&~SAyMiQ*7B40YoQXr$40EiYPd14NkSTJYV(f2h$JlGP827SS8Ula9CGJ1aZEV~>Mvp9%pbgf`jhjv&ruiErtf{l9(j66
zz}w@GQU_&W;KX0IXeSzhc$G3cVd_1pWKi`&rCaLKDMGmn}xr6TDN!S&hvuC+sOgF<8eCGC2
zl&xFB-rzgmAuuIcjrO@bUi!mx3mpfK$W!h#R>3l(oMl-J9qD+%#64H??%TtV(NCQf
z;ZTFL^?K#i-oYTx&NC9NbbVsX1@ICoaeijAt=*~A-iVNW+~NL2NayjQae_`TL{<+x
zMj=(EOD)yN-SzR~;w344;iGq*_99~BzEiG|o$K0cj3yN4x`|n3od%Ck9_1+n|ENbe
zPp>>KJ(GmMK%%zK`wAf!pTQR@l2(l5qr{N5-|Iyq
zODIbAA&p?arjDt6tyod3LT}b-xJAZ3lG3xbtoOiB`FHQVYu^7r+@3?_xV7${)^k%z
z2z^G%CnJ~18l2Dhw&=h8C7eFp891JpQLMBc46$}AZP*<#gwf~ph>na2CN}7)*blUb
zZ>Nck?k;#-Qt&RRt-U4hJ!b6GHeQM2Qc>Dyt*9`-YA7PDk+LmJasXS3y!JJ{y7Fg=
zWZ_ciU{l=Az*dpJYfp+vU%1cRBEqfmK8I%?q}p6xH1B1cqQq|;%6C30ZGPfY3W$D_
z8ULBDM#v{V9=~_?1;a~>QYC9l;EPL=v7Kh+9~TK*cjGz)hpM>S8NA6F$$R85|k6Ft}q95<;9+ZW`?#+8vK$<74(b5e&x
z_o3B{cgj-f?=EaPqt5plZol`)(K{I03Td4W#l>0buYO0%CxP+V-uHKC-9*Ps)w!hP
zuwI||FG%&Uj2>xHS#53Yw}y@4=ema|V69Uf2P6aC)}a~7QEy-{*=E}pN`dlHBBQh#!<7R<6n
z+`f$HdX5f6a&5Qt9gw%Nid+ejbQr1_-qt*g>y8~Q;tIWUUfqqX^K>)K=pv+XahQI2
zd5azcsd`Oa`*OZlaILxQx8LVXs-|1kM)dn~;fAmfkN%j=-3=70!_Bp2h2^3!`X765
zFT%>FF#uS6b(wWZ{*1<^8Z7XmQT=thNrZ@U%CgjM#ZzjxzX1g6)v&BT@Tp)Pkdk|Z
z;mbDaHyqlm6HTf%ZE^X<{tnd%R%!y(K~9d0BU}U+nk@%0)g}5l^S3q)l_0mdWT}Jt
z=GN9_rA92l>>m`phyLss?9Q`mcx4!M%1ca)kT-AR(F#
zzM3_+dku@dVpEI>T`nklhfnGgXgzX$IAm|eNDM~9t<6jbsP{!a@GoE4F}rmsqGPA!
zr>+S@$Pxx;4sA~bFuxU1*Eo0;H-z4)>b_@ko#}1C`y)inYL|(X$h5GxOHwx<`;jSy!kPikk;^Ukk#H1&{)iXVVRY=?RUqc;cEh*j8jeVRe#I96nC5N`jKlaptfu>$ifjy#r+KR!&e~;nqy;$cGJf2DJ^8@W~&;BF2^sxkg@L>h-
zu01fhVeW{fep+9ZxIXy~ChFl;h>`E7S&e;8w25&_*e
z&h^I=@Y2F66RD+%^COkkyE8nQ!71Q_N5Rexo%mZ)0?)uvCk5bQY(~<6wy*@?8-W5;
zWmym5D^*GbVLoded^Rp;kcH5hPW9Ew
z`Om*54>`3Q*UJSauOKnN_Fp~v@y48e@b6cGyyal2V4f}xEnwENj@HMQMyqp_DUr5Q
zOQDu9Z&tz4xvWKpWxV&B6z`sQm4lxYNOscomCmNj#K7WMZv95n@EzeATKG#_g1d<6=TiP$}^l?Q%C5M#NRa^tBwamyBZ%k3A|wYFP}#>sa9(%hU{rN`vbeiB)oiRy$Or~b_g+{pgy}Q-+=w7dCbkQ5Bmg_Y>Ki-S=
z!taEKEEdk?H9y<2p6`$KDaLHFZwa0J9<%)6S^ql`G-VAH`~L>J
zK2w+~x&(*yD|?dBB)!BGD8=Wue5O{H4Vd3%XK*zKH3`_s*7AQDxZ(kqxyG@6)IrkHbX)DHm&7CmSH<8Tciy0w>V5C;AEBT3%0n~N
zJ4ZS7kE1T^uH8l*=|ZR^`&&j-VQ67`14V|JSI|sD<(AS!j%Wquw}L_9#3~Rvcy~Op
zz^CI**s+CneQ9~ZO?O$){=?#1YwSOTv##kUK8H7|4oGM+HYue2aZpFz4@Iqz-R9C7
zX8tkD-7ud*2pkvGPB;ZsVn4TmMZuJ>Z5PtMx~
zzEkj-IJ>`2ymZU?pSHtI{pBFWF9Tq)y7e@q@|l~Dtmx)UXAmAm@}ve&J*uvwp-ADS
z&x91ITR+CSWIMgc!6;!tm~CS#q;NOQZkR@DI?e+9IA+y6x5!^1r>q)&;Qh
zF+_*6Dvk61s$kXsF2EKS9p(E`^n-r3;)y9bQYCw5{#(OdIp&{ZW2eK1$V*kO_rkNQ
z0{eBndBMIekH^OBXgQX?tT&Y(Z)B~19=D=4p
z=)Ae(|8@m-fSl5A$dn
zoq{=IZGnpe-!MM^L9zeKkob)dSRRb%#HsHsZC59};rDM6oSf(;k$lN4w{hwrh0C4y
zxN_)A(RZkWyxAYdXpZBZv2fhU+k}I~u`<%g0~kCQrN}+8_C>-DtPnQVFs3&IUi~9{
z8aEGb75o1f6FM*TV94+3K-)TsngqqLRr+$5JqLN3kSK`-eUP@=(*b2yYM26dw`O_U
zDB=K>^K>`ALBLmfQ9(a(N_;DT2q5~4GSzI8YG{`@v;Gv
z@BYuX1q8!I^(N3BPVtrzWl(m!KwY_L&@FM=lJpaP>_Odz23Kv)%@E?uE`=%gE-%5x
z8-35E!zhObHK5!clEXS~bm1f)_}VEpA8YDx@Q9aL(cL%aYF?f=e~GjuL^&R<&8aK`
zJQSCbYOv40g}|$brO;z~;>e+IsV}}b?PISo0go+5j%*ZW4&nPHV;b6|CF7{`^PKBACQ;`b2>47V`d-HF!zg+q(LJy2<*DEn-#HxBz!
z@dfaH-(f({Iftsd8OqOGD{4Vzy!fL>hJjGLjO)~>^Nn*!eS#5$sgf5|Rv(2OYtvqM
z*!Yl_p$vV|#k5-f`(bgaA$sKOR*pS4dcr=|pZOo&3LxRb^?@2KL~o#rRj|GdVWhtE
zK3xOaGH^`QB4YZDEaBqgw(H|po#I*o7xOA@8t*5@$ykT$K%RLIYRi%EIEg+yFmL=pq5;(k!6mP4-2+>|wR4y?9C
z`hExrbEZ`eBQ_5m0F&Ee>{ITKA3ugZIcmr6yEgiQ7p6DoeI^zeMr|F|5LrtH&W-F2
zm$I3|{2!5q$pacCtk}CzJ4xD_`jSz$A2-j1)yf=;=h=7)1O3r
z5xq{nXK^Bn_-EK*Z7%hK8mCUrz6|+vsm7dW7`(QAK~=Bp>ALAm5N;=Fdu3d9gY*om
zKI#e8YXMZfGfvq*v@qaD;^Qub3R~Di{h2hlp2}8*?9La8pjr6jbE-%${OOi-?7q=y
zcXyP8;}O{w({}A%n71uBLbM^m@WOgtGrTaegnMrr>7vtgQe?w
z6SVHH@72fo@+}>p<^wd$kqnifGP0s(!w<{1;p@w(fV<-&xzUy|MbnL)0zImv|J3HX
z+7T{Iq@8mIPL1nk>8__Ny%%#fVLv!4bR>O%LK}9XrNjU3YvXk++}y&_d-CWPh%6I%
zs@$S-K=@itMF&_(53JH!L)-G7L!cYMp_L*Y!)4|zq_%F#>gZUfXYdb~tfu3)r<&jN
z#pz>B5nLLBYlgg)RUrQGJFREkA9aAEl~+Es-?{{|Rm4Ayt~mu0
z`B$D4+x~x79^H$H^)J!Ak=d3yfZ;jXa+$&BKRNDAYZa}^G+Vb7Db@5rHJrb7Sp`j1
zPe^D+^A~sg_4k0vy!JDmAk{?`H)c4rhs{?(azKFXR21X=z1*fi$d&CTK_5hSeAK
zl9A~BsJbZ-HG%9k_g{RD-r8kl4G#oYm)#PGz?%|_jB=`qv%|!R^Z+jT?i0>Bx?_
zi%zb+AH?+Dv4gc^IOVZmx|&2Jgo9s2?zGddt^RBvJ~O!n8>@hSVV=)CA)o|yiC<>5
z6CC5iYivB9@?w3sMQ+ytf;AFg@Klpv!}7J!2WygS2#wtW5|EJ->kip2+v@w~1y9*q
zN72q$+VL!m9+ITF=;KBTVd38RrZLmHIsL>rDf`0yRhz=__XWkSeWOmq4)cAhrU^J3
z@&Lz6DAUr(fkH^cjtlkiW67lOa#4I<^Izd^mk`
zLQr}zIDTWIzN%&qt_x5JKnqv+y#0i1mcl!N(zX=<(+|dkm4;PF__po4n%de{h#F?N15zk2!hl
z%y`JIx?jLLS-iC^l-zh}{VN}23T~O@cc~;+WO44i{aAHBup=%eKG^qeVfK%!G7nrQ
z$aLy#!ai01If7ZD{NW>ne2|S+W^);-HZT6H`@35y?Spc9XuAp{%6&F>IZpwOHZi*4k+l~*wWaNZ-~1FG
zua?r%*IYTI)|9bI~jA<3b_rXfK0L5ZjagEmS
zb-8b8yrjj5S^ibez_l%0?|K#f?00Ijs#XemNtIgbe_9_mPT6
zxpWTw(JH&jV~H|O9cCdUwN4qwM^wGFzE`3!AX=F
zbry$;J&}zC*j}Fv4i~*@uVLS0Woh?J`$=nc%Nz@F{m0K7FTVFw)48>Qj!
zB#OU7kDMP!`DZ>QR6%Xy+Zh?X*tfF+hbS!7in_7pkfQ-L*rZXu*wh*2XvD(26VPS?
zDvagyreuq@tTijwxbFPWMo?;?MrSf-djN^qK=Q0uov2`mc`vH*T%c8(nzKV5+fL6u
zpZ1)i?Hak=VsE|0cPUfGuMarT(>)uX0f{2cp*YL|PW+DgEbsnPv-}(lH-d{Hlsrra
zUke8^oLqri0-m)O=YgyTr36Ou#}4;<+$WU93e38kj5nV*+An*Je>FKQH}5g4u(GC)
zCeh~S+lKV!7vC9m;&sT{i5fZ7=HbDqg3aNaKNAE2ypD|t8UtxbZ{)(MHwBqwExDp%
z^pZrsGl0dpKnh0iq#u@{iCz%MQ$Zg+q@Qo!d76f@E2_-~yDDt1o=ME%)5H&Rf|>q7
zm6;Cf@U~J$f#aCeI@MqaZj?M!EE{tZC*IZ|_K@%~h8*i!nRYbNTU42gDzN7~j2jUn%4e{A1vm;v|f+Y7rJ*
z-{^!NPUv%}9*T&a;X8q8BF>CjHA!eb6buGwu4gZXMvk|Y*IeQ=@lIvW7lIxR
zehQXRO2?|MV2mQYOfd39P7vG6<)XHWTf&FBl&QmMfSLVsj0aXgt^QK_1{o7~;i7(9
zvzF*rgtN!7>w}C0pW4|2K}K`WVz7$;>)ZHt&5LY!9pWo9Q6$xO(ZML3am`5W&dU
zVWcDh+LX1`Ah`?Z+pjy#h))gOSz!M8;Ra@P=Y#Sym7zbFo{@Fp-%JUixZ2-mn@YNO
z*NNX38M%gRNk6MWcOTjv2b+9P76Lki-2a`8ZV>@A|7(g9_{@^%?tp&e+V#)7nn0{i
z#^##A25wd@%^d##}v>l5>laWn`m=X0QWw0#n`V${$L_*%#6m*L$s
z+w#lq-_)sbA{?-FL=Ce~dHGIsiRDEw<)TVpiN{2J>HYinPvh|OFuoTokKij~H61pM
zfP!IN@BU7jlJ(zI0%$^4A>Os6d(`idctBG?n#XnKygG(JjhZJ
z12ir2esJ_h-p_!*KWoz*P&m@J>vjWhikPmNP6H}x`7??I&uyd4XS^m^u8IteIY6kU
zkGCn&5-q^1D3ww*YGBpuU!H(7hJ9KU2!XeG1ixHu_`8v($lJ0!Uh0nL#Wc0G9Z;=J+NaKjoY4ayx!
z8@mdI-k!Cw>(Mtcur5W*EjoqqW261K%>Rzk@B0gqL$Wdu+TI
zr#)xJZQ*Bbkq@rH^H<(W;4s%rEjM83;^l(hB6E1VfR2YVW^$Q3DuD|OFXxm+o9$Ye
zHsI7Qpp)sRaW)}9+PX?wBdlz{(GHxPEMZw@TKqueNryO84f1LTgBcE6cE$eeb}`wK
z%Bp|-g{d4FQFZ}R?vza@Z-tRDeM(kjMw6zJTS!CAmwF=f``xZ)SenrU2;71FV!Rwg
z+h8-w*``^q*Fi%yogU*$uMrAH)cf-dQA`X&N7BKx!lj&Aj`0qvNvRgInBT1o1oS&U
zR(iDHp_BK7P0y~4k6zyvEkX=l9VL_jbKDKA0+4
zj0FeV256M;V+)HNUU%ZTMUt!8Pr;T_Jdb?@NZ1o%P&ESIXr4e;?2Q4e$$|58Vzb1p
zwfw&22z;hMh}VIn-PpS93z3)vA#GjbnI6)_TB!!VN}z7VZ4q!77|TMQ$mfx;C;|Ms
zJOa^8=ek$BRaq3sQ|QIW#v%ti^XiYesktM~kORAxeZN22ApLX6`>eKvXlm%)S=J@3
z-7_o%(88-6gSa=mQJZ|%YG-Pt$^$?FMsU@i?8d+vhc};!WDq4Rnf)%8@Yu
z?PSWQ3ee6fG`gCyI-AfeSWIsoZIttwF!PzHe^>AxVYmxRh>zAJZ#Obmg6e&6BdI5T
z*#Spyr`+tLdXogdc{<#t{4`)@gz98PGtg6%fg6Z77>
zf5Y#4;k`r)@Pwuf!6!YP<&?NNr{>zyga5D*c`PCbp_FL$YDy_!Jf>7iRjpf{_ben5
zj`yoC7{Po|4ZJFNW;p2?Cc4WAH-FGVm-6e&X=sEK;}a84Bi(=9zIyd)*nCzn=iUM=
zJ6-_a3D`NsU)dvUaFkG(ztQn6jggnu_VJhG%SH}yR_8sFoB5Wjbg{Oo~Dqpi=W6hr?AmZc`!hO
zdlmbUc;kZAyd79)2}iJ%>ERr2D>29aphv!;m#sJRy*?C@BBP?1WPR~XR-62zcvNn4
zHLgUmu&w(mAb8`0PySDcNH_Q%oynrJINTW8by8g;FVxDjtQm3+^kG&rg$gnma+wwkb4rLN7H1$B%CzcMAgC7QqBG*EmwpOFjN=ui{bZmTD
z1gIsW)@bd0z2ES)A2V*n#I$}=gBidjV*N{cBH!}Ln7#L;m6uruM?P!6+rk`$15h8!aaj1498vJxt1+0oyKiBbVm{dwN!IQcW
z>%z$-CoQc=Ju(^LT@}%^wfrjUj}C5&^y*FEmY-^P!6h7H=768Qje2>Ep)+r8ZN=Nv
ziL1N*m@v#7p3f-CRb2>f#{vy#_3EMAwLqfd;Db&X7eX{zK`Z!dMOK1S+j}|Uhv6lj
zso)74I}Y&L;e6%w(z+wnDg%9Rb91j_Y+o31``Jfk>JNLY88mpfa1iS^5(QU#$0pRU
z1hEV~Y+bfC99u!w@|?p-++?$Gk+`9Se|3rGf!pJkT^jin_6)apfT2^Se)ev?$*+=`
zdcQLAxsx=oIq(d+>IGyl8;o_dpCdo^YctD_Mz^@f64OfJShp~kiGDcJFWT-R*e`0@
zt@7r!@%Rzs>eJ~q`d)03lb@v2$ih3arP9wv^Qp@7yX(T^%Rzv!Nq&`i^MxQ-I*MFp
z@l*XIze@eU(=)Hu+YfOJT!4gB*OrpuPFQk9B9DXo2#`BHSYo3?u?}Y7aiOz4#an65
z?l*CAAnz=!U?mOSjj4__=!M_2h`@VA;g_EPzn;_%^O96x`-iQQcV=jpEpU{$g@Ed2
ztG4jwepQm1q;>uERS#XQ_1$@bSg$Lb5C$-P4(}VUIQc#CsGM=U+Z;GZ9bi*J^HWsq
ziU#td-iuPS88pe$-
zJv-{KoyAw#A3MKQYoyVs%eueP;dd<4xDHHfknG&M{#HN=bH@*zF|z6-g+8#N7NFs?
z<$AY{d{<}FxU8-2rp@*#Xc~Kn%cRFm{WUm{ri0-13+K`oz`S1(W*ghp27SC+e!;Xy
zM}U+wwseMSGxUc`?UfecwSHg9nam{&B)iO?H2<~C;`YwnGitp6B6Ev;;Dg6_
zhE!3QId*{+)FsEn9Z``;iF8WPD0cbjBcxg9
zhUFAFY&xv4dBm2X4r%ZpZ=nu7b@%}pcuE5(VC4t$wlsrg`DZ_*v{pWahPUPHh&$Eg
zI1^~zqdRpLDupi1p7cktyNBC6ut7d81mSlY=OnziM+$Z0(>^(y=IXW6xvWXTxK9X%
zb2!_z1jed|y>SAJ9)P0FwiJA_9U7l}myTLv*4z~WUG@s$Y{TkrWQdfr&QgZeA{u4w
z@RQ^}R2+(`hJEJcWSnfhc+mSE&&Bs_`>rH%Z}LfLd_4PjDZys4FFWT!`BvmlG_62C
zRVsIE)Fm-NIk&Z1$Ra9csie}Oodj&M^E@aVU;f<^4E%$U
zf8_#93cM=_>rrqYhHE5?Kr#DT2cDCP2k!a_B8xe)mV|eUErjVA4*s?0q!9d$<_5pQ
z?YA~w+kVdkHxfe2V2PC8f`MAw#mQlDjilw1w#7q~!u>lz;G_G{_UOPwKiJJ_>5Z}c
zMkUb_?z3iwn08A>)haXuDV$I1|AH!P1V^~
z1I4Y&@*s?}A?T9&w!*XU9zIDs^xe+J-e1l8!a*MWLg-qTg5UHohr~edwcHH)mzbr&
z`GYt*m*ZA;bl*k(2~R@a>}&cm6zcc=WL75Fgk*5({elOOQQqP;=43&0lXLt!I9D%g
zG+N4URIyG2ss^4gQp>YrdMKQT!Z7tv2#W~kHiZDzv?-dDEREz;@rW;g=DPcF|JY-X
z6G0z*)5(xoE(S`z!goF-<(Hmm8?G}F%qOIt)w=~0dZi17`E_lud_ea@!dJ!-A)QX!
zemlBF+HVyPx7!LL3$Dxt!gUc-Bb-ztZhK=EnQH&KZzv_%
zZ(&@g#qDsp7Td+sQ3+id(eQj$Q2!))Xs!zyge|4(@ZkOCA-^Y7i_$-gfCq_SO>CMWPW%_FbePjJ^PEp_Q3ZmK;uK?Ds3_@MNJ@V=W4mS+)9Afep+h(08n12H%_cG!j(=o
zIo1Sdczs5K1>$+nEu+nwUkK(Dwya$z-Qr~doPFW(flqb5t*araHgaid^j0$9Wo{;N71m+^bE
zvmI_?AKcd)mujfAc;ErNYOV*b{Dgj56L@DU$-HUL$!DTYyXBibS7QB2PUdil^Hke4
zO7|x>rqO!$6Y+|f=@{ID89js)9rh0{7Zk4c}v!NTLfWWU*ObOiytC9#8+gE
zQV}g`3l_J9*_}4`ZEWg&sJ=c2&M^&@QkfQFxqfFM*tQL1
zc_O{mobJxjKk^-w*&&>PI`##Szq`D|TwEN?A!a`$1OgL_XSr|9G<2
zYJwG^D)*_u#fUg){dUh<;M}YPL$4*va^Kj4!{6xI1CE#wXaC{RJ+#bauj4%3QZ0&F
zrv9o^_%--E+A0LT6uR3qq5Bdp9Vr!yi{xy)OEVnJNHg9xu6B6v1kIp4xxag$BjM$O
z;*C&fX;gn|pNSV?8XZh6gs!dbEtU*xsnfQX0P7XANj|yH6+GFBj1zi@9xB@JTih(!
z_Om`drfdT!--d2zzSXX~+Pf~CxOv(L;dK~#0WX}+FR#MhdLYlpNh`ib_IlY+P(b1M
z>Yz_{9Wgj@n$)gNvfO)IgxWZvIQm|S8P*!SuJGZC>xu}zM2Vr<9?@>{_*l<{R^coq
z5Yzn~OLf8gqfg|*jGbuPbuRsWdv2k15dnF*u(UdAC;sDEcZ)rR@{7{;@Iis`y0=4Z
zh7fnMdwWa$p*-8mN>1Xj)){|YMh`ZzB9HBzrW{4bFQ9QBYyAKWMdDW7AeK8WB<&^k
z2xLGQUm|>cQlZF$DVVza72p*gL=f*XV<`H^XkkQo=|41wix%IA4$tLf)NR
zIZ6ZJeDn#J*3F{1RX`6NIOh-Og4N;1$Eaayi0NbCMgf=b^1p1wd;c2_f4l`k3f%|m
zQ3z3>H3EUyy#;>h;Mz2lB3WkJ&vX9uxsrRt(MI&w?gr60^_}I*iN+H!UIgu?2_2~Q
zkGCLHns_}@^4fyL;k87@1c*J0oc`+Gz6XCY8ZRbj)
zdry>=8~$GOBp-kv?L(AHpC&!cL6%4{$!2aRKY0U*o@Y0Q+a`$H=Zfb%!w$2dr}gbW;ago0rWa3x{h1{CWf)0$Bq8rD7m)A!xlo{d|FX^$b{>FjQtr
zcmHksSfi?eC9Lxx_>}G>Ig47N3*!>HzOcS%|zSmp!y2b
z`CusZ&!=(Qf3Yx-oc}1u{Qtq#p^m<*cmChp`8xjC2lx34OdbrhUEApAjRy+D&Vie3
zbD;7%9Tex)uIcog6-rbc4eiz7!nSWWZrr$9R{pirKsdeptEY*E{6}Qz>szn;as+m-
z>;CXeJEwmJiiP1c^?IqLr+<7-g@-~2c2yBa9r_i1$Gp@x&Ep3
z2~V4Bs+6^r+qnBm&8bJ%&ZF$#8F*V3_5QhMY4Tk5fwb{^4<&{QL*_3VYh+>)AkQjC
zV@m8YgHN8_LWMG2ro8k9VkDidP{b{zCBQXG6tn-1b*hS3XZUm&R&`kkBg(7t@zkSm
z7-Zs|f8Ej8L*k(_#SgJKcF!r{C`q@Fk4YM^%)x=2eKodN{oaqvbkz+97D#B
zmHWP}dQ;C#cCOXe8aaLL^*qqaiqk1O8vFuN!l}~!VL&|(azcY18YtBg7LXhlm+4%)
z_c&R`3tkmlzji;hJ4F_&s0Fgq-vYad#M3>0?rB9`woDM9seSwcKvpz6lSDNE*rLRX
z=%ioO$azWbaMv7!YVLuEvPNKFZQj`Ax!WS#mWp|YkYAgf61Z}s`xE73^H`KKdag4m
z>gIu>91JYa&pAxDM2N_Etqe>@!Mc{zA*FVM?K3kow|D5jA}7W1O$s3OqiJfI2G|i7
zw>Nu1uT|3n^j$XqYSv
zeRwVHK|sWA%PydE!OTz4YJT>aj%cYI9*f@&t%SCyEm$!bCk+XiACT
zs(s5Ucv-1{kNJU^t}juOA0l$dY+qu3z>o>Xg+D8y5Dd{A@aG(vh$A*NZ8o(g+Kk^t
z<A#0lS8zxW{2XyR2+@Jd`+)po?59u9EEBFHFW-LglJDkCEg;i2wf@H@oHAJ<
zb_ilz0QkGL?tyD!652+2${$wyY~IyWKj)p_T^9fkmcozgs1F?V)A@2h*^p56AbC6A
zCEm<=W-g;dY~FRAcn~64(Zi%!_5hNT$@$>zB_+GQjL_3`bdE_|K1R*O&!vQWi!qzN
zKh{)|6~d?^)YI4Y{*~if5|CXs-h1yFRH6j+qEa|K_qorG3O0+WsjpSbt(Wd*cBMD(
z>UHN!qa3kwkBeVDLL7TpM^!8VR`#|eU{(QVp#C3KKiYpq{{HJ7zAV2Tc;L;%;JAAt
z;0R=mA4l_bU)5kk;Sy~*z;S(o6EJ)N0-a^VW4xF(I@G?|W-94ZCt_uKN%737Fi$kITYaa^&?%g#h$A#LT*n5Tk=~qGks>(T=-s
z*aCVFpybX)UfzYR7^b^yqJlE~y}g*x)4}Rw%TGQ_LXFR%K?eu^F{!Dmz8o&`P+si%
zEg#F_46o4O(Sr1{rAMSNb;YHd*?P-%*>N;)>BWiLb@E1)$=~BT;_5O3PcYT4CQ+5x1Ea4V0io7y6f}YvY%Pi_g0;XRYL2@
z&uq}olZqTvL}k@#Z9kZ_JoaW2l7L;@kl=*mwUwFhj;$}e-9z(>{=5|%`Dvx$Q-+Dv
z&WfNWncof#A2@PDr7uuPrP0*gBqOgkq``FaVN(SSrLTHbY@%N5wdn{VWvJv03qNN-
zj_pWMCRKp~kE~0P`1KN7YM%h!QRdocp+^}4yGAELGF!wjDrpVv)I^pUmS^dxpetmkJo6mOTN53!
zlmLFCKyR}EZ9nt-V?lW1<%F`Q_xnboc@mNCt4PiC!k!s|_+i0%)sr~(jVoo5~Y{xKa9^cF^LIFH2xzw$FUSvK^yWA~MEV{UO=
zpiSNxZSaiF;J&^h8ogz)6c*WiO4@VjLUabG7LJFVUS{m>^B1aRsfd)dX)&iasXOU`
z>5tM6QA2es?;l?KiEKHt348W@7C;b$@NINQAyZGLc{)3At9s;eB?3D=Ol+`R$=%#K
zAgPQw>9If}Uxk96l9q4FX>KTOurYz@YW&+Xm(3DIZNHfe8Gc6~9lz-pTdh}njZo+0
z65IagY#}vt4OR{_{<4R=)1^7TP)8J_S9W(;W)T-m
znYq{BvbwTL_$io%~tk3&GCKeu&
zqco_ipnB(j)*eUy6}r3qzu{2lx~I!<20c9+3jb2(66J+osk2bJjFZ*Dk*jLwU!Frn
zS~1F)`EqRy&J{T}RSHT5tplv9lQ?pRz&yCSjUY7kG$mKO-vKd$mCF)NUl!3woGGsE
zl)UR}^*n}nX-S7#%yaRNvWWzpFUN%pO2!>p?3CQ*L6_aQOVs@Sr}YH2)soJVeRxLx
zG%oJ}n}E?+i+ccjSX(Ww<}!VfFik^SZh+tCW!cR3VK0x(S9)`g?}Hk|JC7hi`BK__
zogXJ^TQqna!uNJY&OZ@9)^0y-(%%+%*RbNQLv&JX4aJbGnYHjc26FTR!&8Y76p#JA
z!RpDBp3n1MayA=mVRAl}PF!16B$I)cN~w#n{W9!?IkRt-ZGk4tFjK$QvhL2#=T8xJT*-X4qrFal
zcyMwu4Z#uXe}ZqVJh~>0A0Ozc2wNpSOcgn#clSBSObBl6{Kc2$)dMP)O|s7QSa0Sq>*Ec(m@i?Sg40)#GvrpX8^3+g
zP*z$+4|OUTlNNFL!LF3zcm-u3w(c;hNX{rnRQzMXQ3
zTI~-vgTK1wDgWp$-`SiEOjn}|5Ft9KpQ`9WushyZ%C9|J#+?5+qD1WuW$?jXD(wdD_fpT1|TAwE)fpW3|GOz+oXhaz?OtR0pw
z1t(X>uf(jY+j-^PF+6C~o=&}MHxTZ6(=bk6f7kYo&xS42(~CNJabKS~U@?UJ*0srw
z?)S|nClQl{T(*EWwlZ|YtNiXEK03zQVMXS5Tv?5ck=sT%uZj0&ilz0Jyf<}w5r7iH
zWB+DZkyc()a=Ncqo+?RN!&J3j(_OlP*sypPHQc@Mwu)np%a0p(!d1aF+
z_i1LjCE5aqycvbC3WL3g#&EF3IL?0&`%gU&!o&TRKP{6qo7ddqGp;m-2%+F1VJGmP
zQU@i*2L9I8ykz7PUurPNr`TU|rshw)d#|}qH?!b@kNU;aIS0Q=6JFSbQ$`03ww>->P*TiiH-ei-V%PQ^PtG84h*-xrB1eO&lPf7^lN8!M|4+P
zEtDHr7b!Y9p;ZQapioNQ)r-qtmPx&7Ep=utp)Aae-TKi5_+E3XTfC$|ZKGZNfPU36
zEvR!P4{SRzM
zUO_^oSds>lB&3JRpgg3uwzkNcBhVb!R2(=8uanK8gDo=goQbaXv??l~>_uIlMwG8H
zaS7EO6fFi$z}?23sP)mqhgzF=$;x`H&+xX_)lNss++D9M=9vz!tC2<;<-DJU`RzEg
z9u75|6|DyE)04@l{q%7$*^b7qgV54@z|TI(mYI*Uw(GCd))}zV{PAP(ThH&0*Buc@
z_brPgtbff%K6y>{AhEAp>d5b9M6NcIAs2)
zfr*;Ozgq0#fXrvLjYoIuj>w(b(MB}APQ4;D4K)lr4bvL=+_!w@UT|uVkE_-d|w5TMMo{9^O^ci@`sPn-&P}?EmUZW
z%(=rMGp2#b%Og^!4o#;o;Ut`-#H9C1JlyK@st1f=RZ%*2hz{|dmoDvzopdP
zs=^36x|#;c?N2(Btg*@(d3p`B@>k~O+fu}+w~7DcB;mE4^8re_&Kiz*dhar&FZ|4&
zz=0wxRSm)a&ZTNt|GcMbaz)v@5aB)%
z_7qMfPv5N%CJpM3j3}E>^C4scSN<|ON~uDXif?dlN~_y-H{Ke`Y59SBh3=?(|te3JS=fCe%e1MK~H6>rQQbPB_HtOr==
z`@m8&ae_E-Jq-M#A2=EcVhF7Gf`a2Nf@Ohn(TS6m(}@GlQZD@{>8bE>Zi!P#aUJP?
z_kerU#2T}eTH~eueXs6~;h(n@uUBPf_l0vDpQnl$*WuP!Y!Q*sD>r)m+*v+93L8oy
zRI&ARzhg^NH^mXk4se5!Yi0W&y;E8?;U&y2hgs9?y}xa?=1H1%&o9)yCtFDLi$
z`fSH!VEQFCHGG24(=+BAOLDzaeYwdBmq#MDa`7wSIqDbHFWW{t)8jWYBbe<*jnAU$
zGEI#4=IeKa0^_UqQIDhhWNPN|^Nr`#U$3=~D()Q{9rgN9Gsyl1tbCHxdDv%44|fb?
z*SqY=gi_zBWb{7Pe!EFVXp2a#c!rE}23cyK{I+gkKX2VBVJ64it1f3KKT0pCCTV~a
zF19afZaFZi5baB!bio%npwR*1YB)bRW)0
zUy2fgt%&%f24qIX1m^NR*s)h}O?no`>dxXZJPSYdYGZNV{4RQ)E+JVHkCQTkB<@*`
zI5|@%UNL85oi|dZz%g@5ICsMs?~EK|TCE?n@%zp;pjin-^ZWr&Cg0>jzoiicURdU*SbuRSp+mPYr^JxJ(wz1K%%hWSivSX_St~)v=
zrW40voGWfUn~lKCO4p6i8+qCbdEU(&*9>WxJ4*~!BSc@Qyf%8-QN>H^fhA~K
zN^HtXThPm;tp(Q}vE|v)L&479k_)Um8wQ9FnG)%L{!$p4XZJYkS22c*<0X+-t8ZTb
zPN+$Q-xhPSYoD%BCWGgra?^zYL8UZMOj9+?*9884p7hE5l?GesX?f$>(o_1?n+6C!
zfe+0x$ZZsssp#wazlRbeKUa&O?7Jgg)$bagv5!m)ANSwud%k&)#66ekEQCHgX0>+mn>>-wPQupv1T7@hN8>aSy#5U}@QkeUDMttFUVSW{o$#otrOY-B=0+o1~1xL_W4
zOSmIp4kOKX;4*2j*>q4W=GB>9x!gqbJbc6AT?G5`VSKUX1G9fM{JC;9U&T!42j)P*
zg~ASP-ut`4BE>^>+TCxZ+4T}Xrb%yf1>gGHL#Rcd_hpLY6r^*Xj(EDGazhcu_|>4J
z`mZ{gkH73ElP4QW=VrN09fi(jBNUv~cZ6it18ORH^uy4X$9{5~`5O7U{joRNXjYhu
zQ+Lu%Zi(<93Dxxq=)u<<5R%+A{eGODZdLDJ+@RKnE3?YzT?Y2b6X8%FHc$KR2mHXTb=qA
zLQq~w=WT2Mh=4JT-1bt|+6a$5>U<@gHR{XKDz}Nhh1NXoyT){U;Ev!>)(YHgG>elBCqH!(bv~E8!HA5
zn?(LC5kv{E{917ar*_O6PIw=$ssrT@M}eF)HJ11vs|OC{!~yGb8h#cq$4`OfwtpUo
zCOaj7KqKZ8I(~E(Y!e`aC{B`e
zHT&IZPw*^z+nn0;(ikjS>693^%
zuYB#^9Gmt!>#r>kKPz<`ajOws1(~{a0r;!Uitz9=0f(?u6-ul$e0c#bRoFXV+kgK-
z$QfbnELFMzE{e`loGtObm#0!ZC2r8F84tb!B@vscTfFTUS19=IDZ#3x5Ev4!&<4?*vS3$Rxvx=
zcfQpVnlD(&Z;(HIUW9`XB(Mt_&Gtns;*b6_q8
zVnnpMU7lL>9X1Z_+4+1DQP-}nlJJaZI2w5H((v!h<<83eG}!^YHP0WCW+VE;lEjRt
zb-VQLG1;KZWc}~Sa`NsGnV)n(q|IgUgCduOQATRxpZbc`r+(GHKdvCzQ}PH`+8+V`
zzETmUKG!YtP)4D$&ds}gftHZE^NWTPe~rv;C0!$yg~7@6k>eU;O2;0!lGcx@U55am
zL%9z2X~wf$!cFD8K{zwt5U5#wS|PQxwKpeQMStwk)1AG?6CaSB$QdnzDeS+%y~|%wr%3-aW3unyI9z$`
zwBwLxIypGl&RJ%twj&Dqjya`<`kscCx>?Yap=ZQoiTQbv@PK~eV{N0JJtujn_B#Ih
z8%}#toL*AiU{v*K0_sOkU?7f7)su2FNn>>$tI4$=kCPmsH58!OtLO!O(w(AnBq%UUS4JwjtPp}@nF
zpX{Ifpahy@N-7sbAkod^HG!G8vH#o3d
zX+(%mP2}eeF`kt74;-@00-WRmcUAICC{AkukQ`h_<|+*sV|ABg;CVoRCNAA^d}CwT
zj`DF%RjAfD7g6Z*1M$_D%bNWg*<`4Q{D6F{_qx<%DpHr^M@aFj(8bCOz%*nT!BbZ^
zMxg6B{5f78?yjX
za$fOE+nlRqk*?Arsi_{w)QIs8Eapq4(IeSMQ?!4zf;UVloZenNi97j~n&f$al-2LP
z>mT>l*stiyCFxJ+jt>iv?-Z|(8G7d*ad~8Go2{&((%}qkOEL0$?pVjwLP#QK-l2iV
zh>)U24{MG5%rUjtDCmmcbZ6A4ASaJM+e@y+Odp*6Y|*T*?KlzOJ&rek#Ks^uT4}!I
zi%nh!h*!}*JmQYA%@Uq_7rJyPq;5&tS?QMuaL(J2vQ9qhgc}dQpuBMBQQPa>lR;(L
zF%*?z#H!pZ^jiSl!G=U!=|5yGsms?Q4U$b#ZW0n=e@rH$o?>e~#mmXu+!zxrw48E!nkrbwY^wL04@JsRTC}<;t(NL0lcn(#paj&$;a+#Qv6i{*wCS
z9U3WE?xtYp)Jm$E`LUPxhP7tbP%O1ngKFgw?~Wvi4c~Ai%W0bgjQ;^}m*{sH6d9L@
z7wv6rp^G~?h9@w^_TBfYkWb}gMkiO02UX12y|l_yq&|3Er{jge*FgLoZ14j0&C*q;_7P
ztzHEVa*|=pw6|G6p86v(smSIob0a%9cJ;id?QH5KwCXaw?aX2Va#VJEWENN9b1zLm
zkRt^B{H5$#{V}_tyw6tMDfu8fQUT1p6?$fV`dI5*QANAF%{lh{a8u?WHP5v9Fg(I=
z_EJnDyR`*JQuK#`X9D#7fz6?To-v2jb{J%vtN74QDbE=^`3%7XOwBHqa%www}^
znCWmZ)2)SgpMph4dA&LYk#q*j$I8Qf`~yHObxL?Gc>&+%rV3&v+`>+EWl`3Md#+Eg
zNTuDswU=xrQtiz=m3&Dhu}-*gzvE?&>a0+-{FSMxHErN*z4r>hZ+CU>if2Z&^Q@fx
zW&_)-hug`lBfTBEY;V#DZl~KInrn+re8QZBQs*f^B!PTwp>C%WodF)ZxwGKh8V`Td
zfasY)@h$dHu~6zHy`6zOEi88SLFrjpg{hrsn&k`sm}6i#A(0c8!2AS({MP~NNS_X!
zEOf0p3Hc@Fxui25G;z7v9G*BOEHiy5rGM8dOW$jCs2uS{{_b_iBR*kvaoK?e!X3!*
zVK#=EG#9hsV5Ys>JmUdUHlO$0dhSfme)yPd_~Y?3YshFpqfcW{MXSjokcF0@M&mw<+D7kLM7wuyHu4Dy
z>cZh=Sj$~4Srpw`uAx)y!^Tm;`<9dQ9YVD|LG#JhDgGNu>W7-a0jHyrk`zQ%`i5s%
zo@njE4O?MSQX|1!pJyy$Qc}9yJFf!{EytV3%I8sZukz(Cmo>1X?eiF!Vsv2XX}0}x
zO4y>)1K$Ipm~NhqhGx4P4genw7y6yjWy?%7gKYt&6+y*%@=kZeqEQ7G$nVeb1N
z@`qw$i3q=^Y@*|zPx3$89<@oH>6s4p`hs3o$o?E#gCQulhjYjb5g7f!YTFzv$)fa2
z-7;CNtn9%4WKIdkShzBs87%Yu+;&@Fa82isi9Hy1BWH
z3f==kSZBuiGsAe}O(!E?&&*jlZFohNqKfrJLYc3w?kX7o>fu%l_D#K-3B7?;-WbjR
zkU9@C5u+?IXzh`v9u({@VHRH3+0E*F-DFVK&<{xhTfSV*cV1ml(Vv
zXK9dp`{{_=cR5tU#G&!^SkkX&j*_0?YJb@0y-6;uYgs01qt!@zbU{jPn~)^k^9!^v
z2!yw^dRbG+GR9db^|e%$s5-AKcIao_M>S}adtb5Rg9>OYhqv19kpundu<9DRX)P3kN-LG**?&4<^Z
zi%Xk>_^n6H3ck38S(D23l%2bWE;5{k*5WS6Esvoo*r1a>W#T%sBuH$0{6%FYC1D1+
z-LITyq{0s0vQW(eKy3^H9RqK*goAFn?OEp?&b?DEciCw)HBVMUu_Od8@QCT%qHp82bj9SZdHHd
z0zgZHiXLJj*LbZOYXj{+^#R7!Y780xWfE_j-nSX}p=kvK!BTP=eiGX1uLsLJ&h;vdjBOLtn-O~<|}5viMy5*nRh-7;=pfY{PkNF@>yuV~NK
zqM&RRPW~2euX}pC9t`#aunsy;W#mEuXvj^|c98e#n5I~B*z0W$N~4^vEA^SsoV_E_
z42i_pEomE>;*}=AwW%kbAPfY-<`|(4mxJV+U
zfkRMF+lmk&k<(GNT50t7DnR=JeV9@>!9a;|lJ_wG`ExF%c1$h07Y@KRc8iG)+4_w)
zafU_d@>vqut2VMu?QH@Bp4O##ZivYgEi88Yr&}sl3r^K3lA=cn;}$-2a`Qbv6j|nK
zt{jyBVHwqAX|bWwhmH~1{7U;b>IypIn(9`W3|VvQYNi^5YF(;=>(|Uo5F`Q$^V6KB
zs=ir@fA^W2SG-QeaP|x0VPlzLp&ufS)jWS{#gh;Q71kOIbnVLJa|U
z4!CSUk36F*S*Eop{>OR$FPoZyMn-)ebwi&jmsa4ywAFmt-#^8u%jy500OBuphf#;$
zD>7CYzvq|_2}pBhDWcU$3F*_a2a7C`!^Tu}5AVz{n<9n0x-^vz1qKE96R*)kMk`Q=vY+}*fYn;o+IFTKm@aI
zp3%hU#LTW2hb-oY)AfM(jo2>ry>vMZ*NB$u@pgU2=-%{Bnj(o09^eQ5rFG9t7U!u~
z4D90kCibn^$_V4Ryl)>5by`hLU*&g!6BSoR2OSe)SK!RQCQ56sh&xuoz~p4ziet_ooKiFv3;qes#X>IUUgm@6Nji-YE?~HiFx*;9G{@q7^S0|
zHMU(NYxAKZZ?Bsl2KAOa=WC=xWhs<53cWhFv!-$t>~+UTTN6p0m_d}%pYjjN=j-?X
zE?)V63t#?kKa`8UM4!~;GF)yH!Xi1sV7%fkgr0kJ{A#NH8b+shqBJ`tAiDd2B-uT5
za(8SDpDN~sL<|)pe`0YUQHwd}=c8{LlVG`;(GezunpIO^!6HsZ2X%6`Xf1*~f7_NQ!b$Gyd@!k>a_gBty$1>^%j%vBN;#q^+4m}G!S+CMdE0}4=yvcs5#=66!J*t(iFJtd^q@Z6jIqnX=
zj%F0N!KayqedGO7o2=peRRF1|q;!fLTV)h2I#JSp_h}MzpxC}~UOCae9}ap6c`in&
zG56qJxy#JV2O~ladH8Cv44)FAbLA$kj#8x78bZW|&9$Wh~Rl;3$l8d3|M;
zx?L4o4Iz)YYa9X&pRQnMmJ2_}xjXr&F6Lh^lcULlx09;15Ll_hIG^=xWUJrspnoam
zi>_X@2Wh!&E-p8ubsLYP%ZvMTk#IeY`WZmH>C8~b*fQR!Uio5kedy-SMDDht)J)5KT|rZ!<_=Hk+q$cUU#
zXKUy!0OamA-qTPSvasKT^O^fGIF1V@d$v1DuT~2=*rPZ4<6GOY1^)U)JcckwpFcx8
z(52#{_5fXM(090I3!KD@a~|w9C5?un>&s?I-0S;ZF>FYL(C_wGr-hwOC)?`<#VA=`
z%)8R}0T$LWxecZPZWvp*_#~U!P7r$kAZwJ6xWAoTr2AUKy;kPrjSj-m=N2cRDl1*l
z)Y>oq3$H|Knddznt#KO561tpiS0`z!y9DjPe?ADQ3LjK}^Zn`m$kjMRjnTX$```MJ6NfWr9&cmI5-&b-G%CQ)AV
zG<&AjTIBVZ6OPWmoxfNR!zFOpHS1#rueM1^z+E*w^weU9Os6fGU+|Z@L=wU#jfu_L
zt})V>9u?rgwFtz@7~d*Ayr)y2wi4w^ii@g}a!?f?)PUpXYMDo7@7l?)pi0iTjAs8zcU8>#*pZ5#82>$0Gl+LoJ|(w)5=5>gc;mT+t;1
zh!NadjyyT({_m*i*x1;OLnufUSYe90_j3?tw!dqLta!{ypi5CcW|%bfd=OcT7TMl?
zbb~Rp+~}Cyi(jeNXPv!a4xK$eSRVUqwAD^@p9e@#rj^7OD~ap8VxP-FsKA@D2;!}$
zgU6SdCTvs>svqp(5%_3TU$esE$*k`@f#bi1^>GjS@t;EwdJ15x?OLwIoRg`GIKM75
z5qZ#B48rVdSB`#Ae^PFLfA9G34kq#`FV)*{w8Uh=sW}!$gxq)|6$JVw1UhCrOJL4G9wTXCc*#pEa_q(13i3(@Fh4MHIxdu2ma
z>iGW@(D6S4as0P5*rU1+WRiL*$H9{kf{Xczi{{sz|%IcJs$%in>k&7DI$h%fs
z-7u?iqsODg`#w)72&wThu|>gM@lJ;)>f6gCbxkb)11Izg)YZF>A?x|NM}FI<9thpw
z>jhIdbEVNc8eqA$q^cLHq7y#HO4Tm`S(_EF$V1sep0N`r_M|y|f~{LIZOm6ux?dPk
zT@udzqGO9zuk5&;lAX0^5<1njwY8~rO*#C~Bxq}E%L82WJmVVa+flMY{QJ+fkh*8N
zxqdv7bXf97J&)e1f9Dq$9X-_!{q{|fOUL`_hwZS3cS)^1r*usudl}Tqp0b^2>+EzB
zi|5LR?t5(mJzDMUU&f(+S3X|s6!{n?WHst&vAxMJ6XjV;$lvVTq~RIkrl5Mh3@l~b
zgt<@tZYztRV5837sfvjn7+)^fsL9iKAa?6U&o;{Fd!3rMDpA%m)5ub1eZNV^h#c%r
zP|~_LsW#@;_Cf($l98EtS?T7jTRJg3s$5E77uPde`0*vCD$=iPxShGVZ%*g|u3-bI
zfWzqX>lXAil&TJH1`mD*(p3sZ_5cSC(Db2h?sQ^im8dznL87ndo82w3I5ve`H*4DC$S7!SV{VjkicHeHqQ?$+`7viDH#ppW=cs9Tma$t*mL%&36HGWdbDxs?I4uoBjE7({rme^Ap{82Or;EV=Snzxc(9bek68gV&cW5o
z#8nk%v^T4rs3NNLabg9AYfQjiI?);6rFIS(WE73zoGL5|PoMU}j1NuPx#Z-x#qcKO
z7E~(pesQ@U*8!f9`S&@CH_%+@@(_^f18l7!ZO(<@ne%Db)^558H6KOinw`k^7~{*V
z!e$R|z+fhgz9`LGa2mGMjo_0EP{uGfN6R;kc?<6e7}QpA|Fk;|_WDcO7}$-S-#
zwF};_FK2&DSy*kzG~IMv&$ja|z{WL6ybUse^$JSUsX%4E)IJN2D;V$jBRwg?khFLE9Wa0pV&6HKV6DtAH$mgew!7L
z@Zz*5qL}&h7K6*WR_s_KK!YjYG$g-ozNDXPS5fh%GJExGbo>1*`n+8oqKuzf`Th@V
ze&~Of$2KA1hy?wKzB)EGyIwg)>0-T+W`ggi&QGDK?0k$QpcXs;3gGTl;qr>gxGNaS
zu7i3$(x4c=HF_dNygJlzp~VLcku~YP
zd<=1^{@8j16PMmMyXuL#S|Js0crMvJl7Z%XLUK&3oo!ab#>vNmUnrjm
z>CEyY`mQ{Av)*oRTKq4ZvvG~twu@*
z&?H}x1$!g(h%R95sR(-Ex1{~?uj_p3He310ajB_D8=h$?DJifSPdt}u>Rr{z4x#O>
z&%6RdcAc5L^9lKZ%{ShKgRZSTj{6?5m~GWg!g7(>z29y-rKiaH*-g~H;*{85u#pRA
zcy#UKrTC*)$AN|Vt`K#l{r7K;kF8xN-|bowjIG{4VNVp7i-ctdtI19yl$xUZADGhU
z)+)g*Tcl4ls9HZJ$_bk_(Oy^LAo^#;3ncCGK)@8KtGGB)Jg*t@mHInO{z_lW=3uFc
zwW<%o@JSg#oEmVGGYjZTiq#PpcAdJ!UhkYY{p#D^*!k;^Kh0AHuzHj&FEH!=gzF`3
z9F~2$0yZc09N}xu$3JsKtCq@9IdK45A{TM;;Fg$}m}tP3nAMt#6#VtaXEyuzSBV>k
z;sDp=;KfvSU%fgQ3SzCmDfoJtx4ZC?ibC-|^MzVjYStM@9bf#rQ8wgg(BGf@|CNMz
zY3=Ac%U8S@mlcln9Eim&ZA;f}XW^Dkyr$Ch*YeKFydM)x8#;Jathe`5i2O|CoG3`z
z)}N4I|zyGhh
zA}&5N$8~AN?BGZf6E#2cc=Xe8N{MF-Q)g2w)V|#e}oiw49Qn#xrDQ?%kOQ2Dz6wah8hVaW6qfHnApg?kBiCW`VD<3Scs
zcE3El|37sBR7PlGe<{z~MiUv#)sp!kLv)2v5cii)cN+<;2k#*|Dq!jB-iWMbc|F07
zEGRE!KzUUKmn%Rif3lUin*Lw{zs1>#Y;3~P6XeYGUNTF#E$lHzyUcX&kIn}ZhOdee_N3Pg4t!V62
zAQqBm$%})vvIDz%c^o_XoR%JOzIh++j23X;sC624SVR^VVJN5oKO$vfM`PqS(WUAf
zf?5Dr0f#TF<}-fK45prEI9(h|>F*buDdLf@9St2?2Ghs@Q%l
z!tPisPJ8dC7o|t0vngBXEf*q^Lj9(_w}a)|{w?W3fD7FF_yI*2ux$3*88Z4fGDI*C
zz40LNvnD*kAa@>qBrqn9Z*fDdz5RLq#pSb1ia;CCrRsQ71<>w$
z^WaV_o|mZaduuONAp#(`Ys;6_RSXO;njsrB-)k5*v`IBjBRbnT=27aJOwjQ#kRF5ozZZt=6uz|RJ@oYoLX
z9^q$HPOdbt-kIv(`MQC5Z&(*de$s3|+!|VYMbhQ#NRee&nZt;d+#Y$m@MnroEr)V*
z93(f8|99HlcbG`m%<6DKe^tpgVK;R=Gk?Pi;83hvI0kp2gw?9H?$TrTZ5=2_C=wgEUaG)COI-?O_u-JutIFhQE~
zWrYR$=R-Hi4^~BuD!=4-vD_M3G{W2zLdtgwku@m>HRF+Y9M_S9`0ax}Xk3EcS5TS3
zD!PlgDhb-@ay&L`0p|DnQ!iVK2QRf$>R=sc2M0j~KmQ^|n5ICyFM*MD_j_Ss4}me#
zAn!^LlynV~xasAPz%@I|Y-6Nb1}6yiuGEms^%L{qt7Ax`DwPsJenTIh6VZWzPkIY=
z8xMFc=9)m3fl8pi6LnXE(b4B%-=i>fcE>pn6KgB0mKjObEZ~Q}xg#PnCfJDHe@@N~
zYUu7|hfSA+YMY#Sdgfk0!Qr5$V|RD%jlcp9+M`F$oui?Jb^WYDM#-#50{-@(*JP{N
zo3DVyy;MFO>0ZT-`y{#D+%x0|Tf{<(=neMP`$q=y4D!!y5g7C_m4vJx55A=8X&yY6
zId>f3zo)2hK=wY+rkxAD=>g|Yl67)Tb{9Xf{%2|dNX8d`;X3~vADMFCegeRsB!F@O
zmK#EQ<3G42YJd;?{C{eh^gsLK-SPfo4Reb}OsC--_wFH%K@P$p$LrB4SI&vIN<>FG
z&%n8VnQlvP(n2N_s2~`SWIpc+InB${{mzn8z9jw)laHYEAC-W^kc4Y#oz0dg(hi~H
zeQ;-<-1zh7LqsR^F^Ih5Bj%S4p=}}qLFX=5;QTiuczF^#8bU=1)CiN=r+lh6-BM9b
zBYgzMsVf0zAZt|%x-Wed+a+Bh!PF`m`oh_u%T;A~30s7^Fs^$^FED$B$S4m4RLaUqr{H)SX!~vou}pHvw@kXN}w<
zKf46VckdFyEa0JKi`xhVk7jdn>BL7pPwZ1ueIoihu5q$3V(@5vn(IZ$hnYZxdZ{NZ
z2x|#ZrWSAZY$WT@I5E7HKR2r8Vqiwmgu51=tJ_(`AOyqQ-Db44QRb-Es=Mt8ZaTQq
zFjP79^KfZ6rxu*{$~g{^v^#$FVP;{WMirdkR&_?6@mK3vW5Q-+{t_P4F>+{^{)xbp&DY0dZ*HXn_Tz@`i?Vozx>+8>3
z?*3!P@S(dZPn@B?3b>ra_UB9erq{EUMPJE3m2IP+nG5D<6ckxtuGT>SM`c8h}b*SEK?ZviH<&ASgAvxwECaf%`}n9RuA5SReyz(%d-&z8VmIYyj{OM=5h{m$WUG
Q??KtX)78&qol`;+0A_2UnE(I)
literal 36197
zcmc$`2T)UA-!2*ur6@%ZQ4s=ypdw%cqy_<{O9zn>l%fKm3P?*(ny3hZfb`x=sG$=n
zQl%4GfPjENAcPi5NV(zvzTezC=esj!&iTG`Z)TXq-m7Ns^=r@bTZzzrs?N%Cg#`cr
zuxe_k83F*OlxcqgOlN3!SQ6+j0RRkoe#XzWPObqbhWu3a({QrHZRwvzkC)e5G$z?3#2aR{MnfLej)h&Ek}jr4ILAs
zh=w-B^)HvKXCIB7$=Y0iq`+`-M!u?`KdWcdfo^-&j|cOaE=dP_jXIRO%$ytVPi}2^
zpI{xCGM5W*3rnE?scFpuSn<7?!7DDv@J!C2!Ivu+{lK6>kn8lJU030P%@ak&)b3BJ
zi^emdqT4A2D+mQU1C-YEcval}!M!$O%#F#6jK_~|!LySKe_fEas?9oAwdv@;4bFCjr+k=*!-{h>O6(1v&f!lTF4Eh!XLjY}_;R1W7<~V|
z;u^P~*qb84s4_f@@fHu`4R_`Dv+{0+udkb50f4Uiud%^?yA0G*MsfK^xR6(F-(~K8
zS2OBkWzk5)5sYWOD$dL-YJPo|G|d)asudaXaul%PbQ*BQaWgt>T#Zrf$_v3gT$K8f
zoWsVo=udh!C;{#=>wz|4_xNjg;{CwMnE`7mnDKJjTuUq`F31|#vJ&UP$)Y1#
z`ShUL`g`^E>E5q%1TSHMHjnhz4}#Vh_2uC7Uw(|%MOkWSA8dSMHn{at;?14M4!JB9
zNbmD)F9V*)&R)7@*c6oYp#IE*`Ky}BAb9|v0Wa59W4JQ6>=HsvxuA^zUCo$UMPvN9
z;}trEDzA?`S}V=p){!?T?aeu8Wo>l8CN2U97doXBN5oh7Z&KAvli8j
z0DzCfnre@X-=%EKGNxQuCU}NNTo*(O)F8-ao$H{s5~m_2D0`@XKahz-N50_O8Ne?R5|2L1S`E+!G^TFmF}+v3h?pROUGc~ic%!$Ev3l3Ksw
z8(<};WqR#dWVx6NxqqT1x$VcXOz|Ki7<#m99nQu#=8z1@lb(HR^d^Y*1RMuaWF7Z6
zrX0sh%&}p-E*esKj|g$4_=&~O0#_QS*}}H8c?`Q8n(IC{NcQ&i8S&x}$@yB^rDN#V
z!`DnG!|GoGbq>K%THDPSgJzdf(i~T)F&yP2PI
zEmryFrmH>pE1C@yG?dx#q_jYk8!
z{XbO|h`yBgG%5q+6}umj-j-#_9m}1O_w1}!`-IRuf?v^3ZI(f;;I1dN19|4gM_|}~
zM=6}ZFk{Rl9Y_(*b_D<
z)4Nh8$$;<5Izh9)>asb^L?4fRO~YIq{4DYDSsAT1QWclfo%1j^>+CgzQ{#Ss?zjlx
zy1q!PW{)`5`=?ST-;tdPCu-&K_nOeLuZ}8z9dQ8$QJ|XHLMshlUth=U$DdP*#HDf(
zgf`t0X_}yL{$7r#D_)Sq&R<@Ng565WQ!|yfxL-NwZ|1}!C`R9>rJYJ^pWSew^d>4k
zE~I=Ql&NElQE=nMOlG~(c^|@2S0N%*#J!bEtu*K|oh*)eh+r;YrDM{4Qkzayz={Z{d;tMsM-p{z
z!73$>JrsJS)q3`K8QWA&6phBmx)6aj_Lwgxs!5-*b?XrT5cBz;3w2JvGn~*MH6cKz
z=IT)Wu5DGGj_h@;x4;$JcoufcuQYTdR8I}v>CbWj=$panH#n)`y1%kQi*l+Lqi
z59>$w?KM3pr;^H#?RouzoF!J-}i+4Pq@Zz2cQ}X<5fTNdnrT#OAKW|
z+ZB6XkouhX(C7UGB-Z;W4A)pvu?XyC(U)smx5+NUz2t}}LRk9Ux9RG!Uf(>hKaiV}
z0BTDRGzlvW?qmHCrxS=vJAIM|a&K2NjLj3Nyz?6eg3DBT$wpAXp_}W!b>*G?z?){E
zVvAZA>~aFwRQ;-ZNYX?1EZFb2*G4Tohyoe)T3bL=80x=Kf&E0J0eU5x*df$Yn*hxQs&dE_XLY}DwYh>yFK}+JAno=
zLZ+5$u`_nZDNT$6J^nK`fr)#4x-@-Rs^lO~T9rQX**WeI)+V!F$QDH!)SennhGEpAu~tpEs)gl!ITEx=~9=&XTw?mpB11sW_>~Av_s500edX!2<*h
z>^|rn77jS1uRb?8^8On@m}5i}EsQH^?JfcUnw=~hL23)G!zFzV=|faNP>#^QEpfun
z|AQ9!e@Xl`s^7}tu5ZtL{Kq>GprhGlQMN$v_5i+lq512_CO%!df82(M_#QjMyg@z_
zrYkaA?^N`<|M4R3@`Q6UCGZ7owNmzb#o*O)Y@E=iS9acNnZhW9j;qPJyuvqMl$wvR
z0ss%b>U`Osc9Qg3FRi_D%z9(|Qza7Qzo$o8dbxH0E;3EV&jXK-3T5tX>dt(*e81_U
z`11mT>?eZ1WC35hxpGQl_7upeyJrG6gq6OZ+nlCLSa~FI*
z{$9W+A$<(dQ281XrP6hsqjwjy{v*C=Y~N`^H<83vVj&o+-*j!qy8|#2|IVYEe}5=Y+!p
z|9$g8b}Pf<+KXij8~#0E>sR~OL-I6P3$IJ%dRt9j3ai|Un7gZv&tKwv*b&?#V|hcE
zS_5(iTUCf(g4)%TNWA!{J)%G1OMcACnm4&uux^To#hf%q3F5
z0}i;mkJ*iq!`>J)md}1St1GxXwPh6l)PMOshg~J)US>k6H95ln@Y{a;hG%+(^u>mz
zr%25ZHl@nvro8m}^vinCKA)G@HeyKIgADQAbPphT;1y2wUujiW+0UrN1`4h4iziGf
zf}7$$+ZuI83#vA~KgAd}&BJ-8GYSZ=lo{N|Y74e*alP|VvK73+3@6{!4NtZKuDTVN
zb$>`;9v6uttFa*C001Z93sjuU8w#S5P}GZ%wYro{wvD{yfza3%H$
zzA>t0|6nsx6E&>S}`e7FQZCsiG3NzVuX
zaNOsF#@t3ztgh_fW3EEgE+w>ImnAVZvy5^0q10WBkd}YpM2)Q;7*A7Y*_{e{nxhfa
zeO-~nAmwoV#u{D0-KF~VR_(htLKGa9#`&w%MpS-ZYTOzVRkGl0#T(um5eS
zN)2Sp7x3k&xdN#x1Na#4>imDU8*Z|);$z5|-$u`aEhz`2O$bR)vA
zHReAy@I5zPQ14bMzDK*SJS%(;5K$MB@v!8{`46-kK@FPD08WE&0rWzCUf%!{%?kr4
z<2d<()Qkmhu!(_=-dVBHZs}KbFbceoXZUrOM7shMSj93atI$VS(tEGM8Q(Fc`Z=yH
zs14j)iN6w({-^F7dtS9>e)GJk#rN3>84F0kx;t-H0i+li+}mZne!6zLeQBZFS&8=zT@}@j&rZVBpzC2Pl~|
zeFXWea-k-{&PgI-OEx^0W=)u4E$O9C9GSi-dARShLVeZVcnGvU?^rSpI{^nSh|!WqMb!7p+(n*UoLaJo<`%hqkjNQy;(IU8(J{3$)ThGz{(@H|q1Y-?QC(NhRHv
z6CbE)H!Cvkiec6LUXo`6nMD*W8hnA3>moXl&(f2zrxNvne)HZ~EUbS|&bcCjsC$em
zvZzfjj^F|rQBx)?`;%lRsCC6`=(fq-gz40T+xjDHZwA@raXHdS3bM7JTrYWB0>N_-
z1S=O$09H09$@muyZ@VJRMe$+G;G=`w!CkZvL_r>%XNEbH+nbK9stpugHHHL75z3~m
zzbR6>bUHPF8syZ`s0;}?il)F=N$t|gJ#HDqTWC#yG@>(4A2Q#O~PVG*+WF1DD7pipZ
zQTdJ78f{P@-df5`^tC@VBzN+5ic8~rqyv65L$(4#lgw)r?cCL+GW*ZLK&j24RH532
zqxaKCpZM4tp}LS5%Ci^Mr?qgz$Hk6;lox!{m*UxxY1xQWi%ca_p@;vWNq(_e8C0X6
z{3b#U8Wo9Z1XFEF5Ya1nPViC0wXXIuuu*ajD89%d67gct6KYjDxIWT(Ct!b>$1z+S
zU0{Mo7U#9V$9%#!#MMzgMk|GdTys{(@557H=d?T{P%NfC^}2>vtM`c4xfVdT>Q~ai
zX-Jp8j(zn)wq%zJeq@28M0vs#&jf$BQ`FwD&vkz@LYGA5IK}cNl1kV=+`z3Bk#SYE
zaFtTiA7f4?s%S0Naf!DS5~Z76_(klHP~evS{=UY0zdWLH+n{?FUv8SO18!xmd$uYa
zoNf%A)ja&xwY-Ss`k(@)`y|Hzna-^Gwi_QGZ$~wIxiq6$<#^OI6Ig$H3-u~IZ!gdS
zQuk_!Tv!Cz{819~qlhQvP#Xu@Qyd+IL?09D3W=c_vo^=hV-tf`n|+Q(<-iY+yY}09
zRj4y2=zNO-Q>^GR9?emb3ZL9AUw<|7M$(GFD_xKDsM>KPyXOpFw1XYi1R$TM_bvN;
zE}q^UDJ^d_nKtHi>5d~ysEKpB?YEF~OO#AdWRIc<*?lS70eO1m
z;Arwif?qQc;~YSOBR4w6(p~*VVj)}a!gXs+k8xFAt*G-xkar@ybsuoiwnX<>ud}Hj
zq$@OCLj<(Dkwna@qSXoe3VZ6~kz&(><
z)x7B~l-Vc=k{Kk_st&RS7V3zMu7>@JC>j6${d++yl#(LXG?<+kaK7ap*4TCCRaeoc
zPb}QyMTV*j?N3zs*{k^EUOODC5-pplf3qD2!6`+5eIH4U
zj?;wqj2-zU`GsoUPkVtpbcQIkl_Mi+{kU~e1g$@@D6-D8&d&QGux!fZ)QpE2YKdCb
z)Hk!q5+Hfc>&T+~Y37w9$i1mB8^EnGp!AH%{4sJ(dJNHEgh2t%I|8oEturBwh>?M^
z*To(Y>-xC``GPu{Yg5i^&3Z~+UIZmPWDuCT$Z|ruQgp0@O4!1K
z_9okgK8VsR0tZ50^1b|G+fyu9@AtN3aI!3<9vIT50J91_Iy%m@W)W>wH^>b?gPe##qZ9DJ4-WyglLJt9RAu
zpWPkL(#$i>W#tl##ph}x&5~VP>gCo;s+xwg)x)JP$L{v{BB>OA|bBr
z>WrwD9IpIelvB;lX?Lg5<}iY{jU52!Q3g2D-!c=pCA#2&F=mxTj@>oMu5dnczwo-4
zZRM@J;3$U2u?dXh)ookjDTYS&o;CKx?NKcox(I}-{#6pDa5mMig%(s^XUJfP)vUAh
z$Zd~`Kmm2(^lKc#UW?V7!Z_La&i!%hX)~w}BM`E%^Ct?2T)QUatNEs8A}7R39z=R=
z5Gr6aSW_na_Q@;_Jk^Iaow?C^%M98w7|J;s>n2MbS#Scg3lr3%q|GZ__IQ;ii*n6o
z_Id};iN!g!khD$1=HzM`D<(2D>WE$0i=Wfb`@Dj$r9xF=h27`@L3S@s-+1p_Mq2v3
zsHN{F)#)H^AqMg?F;ae0lKQ;MwN3JcWYGk}TE=A)0B!HGp1}DAwRBz=ECV^@LMB;2
zk9LSW=5*iU1OyMjYX_yg9q}k!}3eC(hnm0f_E3uc;QoTa_bh-#dKHyFLE}^)q
zgCD$(`(7ry@fBT+5*zC*H*V>)e_LqWu!$ktsMPzo>!T+KS@ZK
z@ka%48++D0U*qZHU-n$6WErnMK6D{_dQ{mesyN|bL|d{@C`#d;kMqW4#TTT|oZ|j7
ze0S}fp(G9o+nk&mRO~vG|I?D4zH_E|){J$|$8K{H4}SQ5+cijzQ6O;==rd!0g;9^o
z=NETZ2F-Tr3IQ4GE3pFCy3&3BK9=&JDx!kQqjqKbCOZx4^GB{=GlNcyD{4c~e-P
zu9h$z`!a`h=ZXMXU767PU3Uc7Htyu^jND`#5m^n0-;I5A;~Daj
z5#h5UC{W=NlWwhG!83oI>PH`C-xEr>4O;>jc3iAaA7K;2_Fp#O@6>;l!H
z0WGFH0%SB54{N?V>*%|pNAB2M8~Yu*p#B%X~-D2UT(ic;9okgNmR`~R7zVL--#
z$NN&&D~>xtFL}Zm|ymNBJuu2~
z;{Oe*{U4#X{+GbC|2qpq??6I$qb)~X>Y$D82{z-
zQt?Zlsra^NZAap}>-kp)P6KTn|8zvu+gdnRoLV;dTmZZR^|q2
z^0iL&N26B~vr+P0&C&9RSciLb)Wa2ox0J_3uLXjuMQvzhdQ#5a6UsyS!W#b5ID
z-DVAKqGKP(&|&_)M4eR7;fav$M3E_>T!x`aBGh-6PPTh8d1roRdx~m~J}(liUk<&S
zhh3jOTABDC#p2i%bIXTR3XlK0nS4&AmH6vN5!{L9@&ai%$|!{C);K>GBzis@kFQ(&
zTE7Sm*nYg((j#!81pK9t*x*e$BK!}+1MP|DUH)pOLlyMF*m1CoOLiIuTFFyM#CLZ%
zl3Y~vEB1f94rTxb!tkbzf4?Fd_ZDXY|3kvPaHQS!#a89l4XlrTP1|O%at7>?o4sd+
zeMrqwEB})P)^1cvlO&Gc;v`kpc|)*#LDSNhNhH#Z5FjL&FX17k%&1`MYttW)Zx)mT
zdMoh#&g*-CsRAS3X8N}jW_t?dODO1JGrcf5^HgTY|1Fu9?>ihGpS^h7&F{1ZQI%1J
zIauUWbfjF(u$b~IjQa;9(xb=mKaaR~#2kk_wA>lJ_n+&kcXoRbzmpba|MO%<7|IL=
zEamew*enPe$UNidYOjh7(Gr=X?YXYAo9a_(4-Y3wttQT>1Un#QdroAu<2Ynb$=VIn
zyWi3J^Bb23P3+(7PF#W;@Fu>~OL;i_uU?Zj!K^1$zPmKzbW)Y>ONRejvgHQ?Zu2nd
zJ~ybC{?~x1i`H8ojtvl^Y=*Y-f9W$dV-xi5{-Y`=`!z2Ao{KaBTcK6mM@CVOks+yE
zY5x6ZH)ZxLSz8z+icr7{7n>CNJFmNi47_8uPIFk~e5mrOiQ#{uGTul_ymz{lS!Mk%
zFEHjyZR-hV`d?8Uz$1)b=^AK1BOe=U_KGb+(+AcNX$
z!GAz{<=?+v~}+>#swegdBwQ
zg+*{mB!UJQ(V)l89$h?|33McN_RZ?DYnFL?(&>aAo_8W!%n8V-yvS`I-bK80CkFBb
zrm)I!;hZ4nMH&JMBtBzM{WwF#Wj*fg?2S@Ln5NgaEvFATb5l%gmxgbNlX>HWNf&Qu
zLLlclk>$cQHFqyj+hWGXJ8ej3wGAzJgSRDrdt2<9eb5O5%GN4T<&QUu&scdUrmnmj
z(d;#5x(3J`*!Lx?z{#U4zUJ7ic6PI4Tx~imHc(a~D!D*xg}T%x;W$;}|Knj`K~Cg|
z=^Ia@_QQ#<+w8zaAo~{>?hqfy0HS+d>w?203F8)yRPw1GB$AF*sRC8%a~%8w?Y4}K+7_8g^$z)^xb}1n#rO#m9KK8QJf2MvJR%k<|Oh8D#M{x}logL3k9%Yoiq#vSM8|
z@-Js5%=W8nC&s0IIi9kg5zJ;Ng9)g*BJKPmNh#28a(R4s1KxOx&~t?fb=xt*xsMWd
z_co^P`+$k<)!LHH4<=SZ46+utgRksA}js{x)8bzLtK}1f?TK>n%
z`>6_t>CJv$K#PNiU9U(GPhZk{Wy4FXF2@JgCmDFXR5_Db#Clng-MWNh)cAF5a8!G`
zzhoo+0Zgo>tl9gw+@RAWU#$$bK96Q`Z7G4bH2^W(88mfmS(+r@waPL?Om@a%WXwee
zmY!p*T&Tvn19O