From cebd9fd2cbd29e4a2f1133889dc0dfc14a592797 Mon Sep 17 00:00:00 2001
From: PowerfulBacon <26465327+PowerfulBacon@users.noreply.github.com>
Date: Sun, 25 Aug 2024 18:32:20 +0100
Subject: [PATCH 001/106] Creates a disposal pipe that filters items that
haven't found a valid sorting pipe (#11375)
* Adds an unsorted sorting pipe
* Only send unsorted things if they need sorting
* Adds the ability to build the unsorted pipe with the RPD
* Fixes pipe sorting
* Update pipe_sorting.dm
* Bug fixes
* Entering a pipe backwards will send you the way that you came
* Update code/modules/recycling/disposal/pipe_sorting.dm
---
code/game/objects/items/RPD.dm | 1 +
code/modules/recycling/disposal/holder.dm | 1 +
.../recycling/disposal/pipe_sorting.dm | 35 +++++++++++++++----
3 files changed, 31 insertions(+), 6 deletions(-)
diff --git a/code/game/objects/items/RPD.dm b/code/game/objects/items/RPD.dm
index 96be0b40ffc06..413c3f36b725b 100644
--- a/code/game/objects/items/RPD.dm
+++ b/code/game/objects/items/RPD.dm
@@ -56,6 +56,7 @@ GLOBAL_LIST_INIT(disposal_pipe_recipes, list(
new /datum/pipe_info/disposal("Y-Junction", /obj/structure/disposalpipe/junction/yjunction),
new /datum/pipe_info/disposal("Sort Junction", /obj/structure/disposalpipe/sorting/mail, PIPE_TRIN_M),
new /datum/pipe_info/disposal("Package Junction", /obj/structure/disposalpipe/sorting/wrap, PIPE_TRIN_M),
+ new /datum/pipe_info/disposal("Unsorted Mail Junction", /obj/structure/disposalpipe/sorting/unsorted, PIPE_TRIN_M),
new /datum/pipe_info/disposal("Trunk", /obj/structure/disposalpipe/trunk),
new /datum/pipe_info/disposal("Bin", /obj/machinery/disposal/bin, PIPE_ONEDIR),
new /datum/pipe_info/disposal("Outlet", /obj/structure/disposaloutlet),
diff --git a/code/modules/recycling/disposal/holder.dm b/code/modules/recycling/disposal/holder.dm
index 4ff466db0f06c..17c6872425561 100644
--- a/code/modules/recycling/disposal/holder.dm
+++ b/code/modules/recycling/disposal/holder.dm
@@ -16,6 +16,7 @@
var/destinationTag = NONE // changes if contains a delivery container
var/tomail = FALSE // contains wrapped package
var/hasmob = FALSE // contains a mob
+ var/unsorted = TRUE // have we been sorted yet?
/obj/structure/disposalholder/Destroy()
QDEL_NULL(gas)
diff --git a/code/modules/recycling/disposal/pipe_sorting.dm b/code/modules/recycling/disposal/pipe_sorting.dm
index 4aab953e83306..d9f771528482b 100644
--- a/code/modules/recycling/disposal/pipe_sorting.dm
+++ b/code/modules/recycling/disposal/pipe_sorting.dm
@@ -8,10 +8,17 @@
/obj/structure/disposalpipe/sorting/nextdir(obj/structure/disposalholder/H)
var/sortdir = dpdir & ~(dir | turn(dir, 180))
- if(H.dir != sortdir) // probably came from the negdir
- if(check_sorting(H)) // if destination matches filtered type...
- return sortdir // exit through sortdirection
-
+ var/input_direction = dir
+ // probably came from the negdir
+ if(H.dir == input_direction)
+ // if destination matches filtered type...
+ if(check_sorting(H))
+ H.unsorted = FALSE
+ // exit through sortdirection
+ return sortdir
+ // If we are entering backwards, continue onwards
+ if (H.dir == turn(input_direction, 180))
+ return H.dir
// go with the flow to positive direction
return dir
@@ -23,7 +30,7 @@
// Mail sorting junction, uses package tags to sort objects.
/obj/structure/disposalpipe/sorting/mail
- desc = "An underfloor disposal pipe that sorts wrapped objects based on their destination tags."
+ desc = "An underfloor disposal pipe that sorts wrapped objects based on their destination tags. Objects passing through it become sorted."
flip_type = /obj/structure/disposalpipe/sorting/mail/flip
var/sortType = 0
// sortType is to be set in map editor.
@@ -82,7 +89,7 @@
// Wrap sorting junction, sorts objects destined for the mail office mail table (tomail = 1)
/obj/structure/disposalpipe/sorting/wrap
name = "package sorting disposal pipe"
- desc = "An underfloor disposal pipe which sorts wrapped and unwrapped objects."
+ desc = "An underfloor disposal pipe which sorts wrapped and unwrapped objects. Objects passing through it become sorted."
flip_type = /obj/structure/disposalpipe/sorting/wrap/flip
initialize_dirs = DISP_DIR_RIGHT | DISP_DIR_FLIP
@@ -93,3 +100,19 @@
icon_state = "pipe-j2s"
flip_type = /obj/structure/disposalpipe/sorting/wrap
initialize_dirs = DISP_DIR_LEFT | DISP_DIR_FLIP
+
+// Unsorted junction, will divert things based on whether or not they have been sorted.
+/obj/structure/disposalpipe/sorting/unsorted
+ name = "unsorted sorting disposal pipe"
+ desc = "An underfloor disposal pipe which sorts sorted and unsorted objects. Objects passing through it become sorted."
+ flip_type = /obj/structure/disposalpipe/sorting/unsorted/flip
+ initialize_dirs = DISP_DIR_RIGHT | DISP_DIR_FLIP
+
+/obj/structure/disposalpipe/sorting/unsorted/check_sorting(obj/structure/disposalholder/H)
+ return H.unsorted && (H.destinationTag > 1 || H.tomail)
+
+/obj/structure/disposalpipe/sorting/unsorted/flip
+ icon_state = "pipe-j2s"
+ flip_type = /obj/structure/disposalpipe/sorting/unsorted
+ initialize_dirs = DISP_DIR_LEFT | DISP_DIR_FLIP
+
From 808d9d7e11491b648499be6e484af13a4a35e0d4 Mon Sep 17 00:00:00 2001
From: ss13-beebot <56381746+ss13-beebot@users.noreply.github.com>
Date: Sun, 25 Aug 2024 12:41:47 -0500
Subject: [PATCH 002/106] Automatic changelog generation for PR #11375 [ci
skip]
---
html/changelogs/AutoChangeLog-pr-11375.yml | 7 +++++++
1 file changed, 7 insertions(+)
create mode 100644 html/changelogs/AutoChangeLog-pr-11375.yml
diff --git a/html/changelogs/AutoChangeLog-pr-11375.yml b/html/changelogs/AutoChangeLog-pr-11375.yml
new file mode 100644
index 0000000000000..9553d6b1ddaf4
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-11375.yml
@@ -0,0 +1,7 @@
+author: PowerfulBacon
+delete-after: true
+changes:
+ - rscadd: Adds a dispoal pipe that filters items which haven't been sorted but need
+ to be sorted.
+ - tweak: Tweaks the code of the disposal pipe filtering so that items not entering
+ from the input will not be sorted.
From 39be46405b7056ae691e09274d1f05957db00cb2 Mon Sep 17 00:00:00 2001
From: ss13-beebot <56381746+ss13-beebot@users.noreply.github.com>
Date: Sun, 25 Aug 2024 18:03:22 +0000
Subject: [PATCH 003/106] Automatic changelog compile [ci skip]
---
html/changelog.html | 5 +++++
html/changelogs/.all_changelog.yml | 5 +++++
html/changelogs/AutoChangeLog-pr-11375.yml | 7 -------
3 files changed, 10 insertions(+), 7 deletions(-)
delete mode 100644 html/changelogs/AutoChangeLog-pr-11375.yml
diff --git a/html/changelog.html b/html/changelog.html
index b067d5dd0c896..5397b500996c5 100644
--- a/html/changelog.html
+++ b/html/changelog.html
@@ -62,6 +62,11 @@
HowToLoLu updated:
Eminences no longer attempt to update a non-existent health hud
Changed a few stack traces in hud code to crashes for less obfuscated runtimes
+ PowerfulBacon updated:
+
+ - Adds a dispoal pipe that filters items which haven't been sorted but need to be sorted.
+ - Tweaks the code of the disposal pipe filtering so that items not entering from the input will not be sorted.
+
Rukofamicom updated:
- Mechs now fling their occupants in a random direction upon destruction, including when a mech falls down a chasm.
diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml
index 257a99bb942cf..2d760774ec856 100644
--- a/html/changelogs/.all_changelog.yml
+++ b/html/changelogs/.all_changelog.yml
@@ -43991,6 +43991,11 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py.
- bugfix: Eminences no longer attempt to update a non-existent health hud
- code_imp: Changed a few stack traces in hud code to crashes for less obfuscated
runtimes
+ PowerfulBacon:
+ - rscadd: Adds a dispoal pipe that filters items which haven't been sorted but need
+ to be sorted.
+ - tweak: Tweaks the code of the disposal pipe filtering so that items not entering
+ from the input will not be sorted.
Rukofamicom:
- tweak: Mechs now fling their occupants in a random direction upon destruction,
including when a mech falls down a chasm.
diff --git a/html/changelogs/AutoChangeLog-pr-11375.yml b/html/changelogs/AutoChangeLog-pr-11375.yml
deleted file mode 100644
index 9553d6b1ddaf4..0000000000000
--- a/html/changelogs/AutoChangeLog-pr-11375.yml
+++ /dev/null
@@ -1,7 +0,0 @@
-author: PowerfulBacon
-delete-after: true
-changes:
- - rscadd: Adds a dispoal pipe that filters items which haven't been sorted but need
- to be sorted.
- - tweak: Tweaks the code of the disposal pipe filtering so that items not entering
- from the input will not be sorted.
From 788bc01935ced059080dbd71b2de789e741332cb Mon Sep 17 00:00:00 2001
From: XeonMations <62395746+XeonMations@users.noreply.github.com>
Date: Sun, 25 Aug 2024 21:37:53 +0300
Subject: [PATCH 004/106] [Port] Movetype refactor (#11361)
* woe, refactor upon yee
* oopsie
* FUCKING ANIMATE CODE RAHHHHHH
* revenants now use movetype handler
---
beestation.dme | 1 +
code/__DEFINES/dcs/signals/signals_movable.dm | 9 ++
code/__DEFINES/traits.dm | 15 +++
code/_globalvars/traits.dm | 29 +++++
code/datums/components/caltrop.dm | 2 +-
code/datums/components/chasm.dm | 4 +-
code/datums/elements/movetype_handler.dm | 107 ++++++++++++++++++
code/game/atoms_movable.dm | 30 ++---
code/game/objects/buckling.dm | 19 ++++
code/game/objects/structures/life_candle.dm | 9 +-
code/modules/admin/verbs/randomverbs.dm | 2 +
code/modules/antagonists/blob/blob_mobs.dm | 2 +-
.../clock_cult/mobs/clockwork_marauder.dm | 2 +-
.../antagonists/clock_cult/mobs/eminence.dm | 2 +-
.../clock_cult/traps/receivers/skewer.dm | 2 +-
.../traps/senders/pressure_sensor.dm | 2 +-
code/modules/antagonists/revenant/revenant.dm | 6 +-
.../revenant/revenant_abilities.dm | 1 +
code/modules/holoparasite/_holoparasite.dm | 2 +-
.../mining/equipment/wormhole_jaunter.dm | 2 +-
code/modules/mob/dead/observer/observer.dm | 10 +-
code/modules/mob/living/basic/basic.dm | 1 -
.../carbon/alien/humanoid/caste/hunter.dm | 5 -
.../mob/living/carbon/carbon_movement.dm | 18 +--
code/modules/mob/living/carbon/human/human.dm | 5 -
.../mob/living/carbon/human/species.dm | 9 +-
.../modules/mob/living/carbon/update_icons.dm | 2 +-
code/modules/mob/living/init_signals.dm | 13 +++
code/modules/mob/living/life.dm | 3 -
code/modules/mob/living/living.dm | 36 +++---
code/modules/mob/living/living_defense.dm | 1 -
.../mob/living/simple_animal/constructs.dm | 2 +-
.../simple_animal/friendly/butterfly.dm | 2 +-
.../mob/living/simple_animal/hostile/bees.dm | 2 +-
.../mob/living/simple_animal/hostile/carp.dm | 2 +-
.../living/simple_animal/hostile/eyeballs.dm | 2 +-
.../simple_animal/hostile/jungle/leaper.dm | 6 +-
.../hostile/megafauna/colossus.dm | 7 +-
.../hostile/megafauna/megafauna.dm | 2 +-
.../hostile/mining_mobs/basilisk.dm | 2 +-
.../hostile/mining_mobs/curse_blob.dm | 2 +-
.../hostile/mining_mobs/elites/herald.dm | 2 +-
.../hostile/mining_mobs/hivelord.dm | 2 +-
.../simple_animal/hostile/retaliate/bat.dm | 2 +-
.../simple_animal/hostile/retaliate/ghost.dm | 2 +-
.../simple_animal/hostile/space_dragon.dm | 2 +-
.../living/simple_animal/hostile/syndicate.dm | 2 +-
.../mob/living/simple_animal/parrot.dm | 2 +-
.../modules/mob/living/simple_animal/shade.dm | 2 +-
.../mob/living/simple_animal/simple_animal.dm | 21 +++-
code/modules/mob/living/ventcrawling.dm | 4 +-
code/modules/mob/mob.dm | 6 -
code/modules/mob/mob_helpers.dm | 7 --
code/modules/surgery/organs/augments_chest.dm | 2 +-
54 files changed, 302 insertions(+), 134 deletions(-)
create mode 100644 code/datums/elements/movetype_handler.dm
diff --git a/beestation.dme b/beestation.dme
index 6dbf80dfaa37b..cd9e1b7ded241 100644
--- a/beestation.dme
+++ b/beestation.dme
@@ -826,6 +826,7 @@
#include "code\datums\elements\light_blocking.dm"
#include "code\datums\elements\mechanical_repair.dm"
#include "code\datums\elements\mirage_border.dm"
+#include "code\datums\elements\movetype_handler.dm"
#include "code\datums\elements\obj_regen.dm"
#include "code\datums\elements\openspace_item_click_handler.dm"
#include "code\datums\elements\pet_bonus.dm"
diff --git a/code/__DEFINES/dcs/signals/signals_movable.dm b/code/__DEFINES/dcs/signals/signals_movable.dm
index 077ef19d0b78d..f89b79dad4d27 100644
--- a/code/__DEFINES/dcs/signals/signals_movable.dm
+++ b/code/__DEFINES/dcs/signals/signals_movable.dm
@@ -63,3 +63,12 @@
#define COMSIG_STORAGE_ENTERED "storage_entered"
///from base of atom/movable/on_exit_storage(): (datum/component/storage/concrete/master_storage)
#define COMSIG_STORAGE_EXITED "storage_exited"
+
+// /datum/element/movetype_handler signals
+/// Called when the floating anim has to be temporarily stopped and restarted later: (timer)
+#define COMSIG_PAUSE_FLOATING_ANIM "pause_floating_anim"
+/// From base of datum/element/movetype_handler/on_movement_type_trait_gain: (flag)
+#define COMSIG_MOVETYPE_FLAG_ENABLED "movetype_flag_enabled"
+/// From base of datum/element/movetype_handler/on_movement_type_trait_loss: (flag)
+#define COMSIG_MOVETYPE_FLAG_DISABLED "movetype_flag_disabled"
+
diff --git a/code/__DEFINES/traits.dm b/code/__DEFINES/traits.dm
index 5f17209e041d1..338abf737e3ab 100644
--- a/code/__DEFINES/traits.dm
+++ b/code/__DEFINES/traits.dm
@@ -523,3 +523,18 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai
/// Trait for psyphoza, flag for examine logic
#define TRAIT_PSYCHIC_SENSE "psychic_sense"
+
+///Movement type traits for movables. See elements/movetype_handler.dm
+#define TRAIT_MOVE_GROUND "move_ground"
+#define TRAIT_MOVE_FLYING "move_flying"
+#define TRAIT_MOVE_VENTCRAWLING "move_ventcrawling"
+#define TRAIT_MOVE_FLOATING "move_floating"
+#define TRAIT_MOVE_PHASING "move_phasing"
+/// Disables the floating animation. See above.
+#define TRAIT_NO_FLOATING_ANIM "no-floating-animation"
+
+#define VENTCRAWLING_TRAIT "ventcrawling"
+#define SPECIES_FLIGHT_TRAIT "species-flight"
+#define NO_GRAVITY_TRAIT "no-gravity"
+#define LIFECANDLE_TRAIT "lifecandle"
+#define LEAPER_BUBBLE_TRAIT "leaper-bubble"
diff --git a/code/_globalvars/traits.dm b/code/_globalvars/traits.dm
index de8e170d4db26..bd77f0b85bb23 100644
--- a/code/_globalvars/traits.dm
+++ b/code/_globalvars/traits.dm
@@ -139,6 +139,13 @@ GLOBAL_LIST_INIT(traits_by_type, list(
"TRAIT_DOOR_PRYER" = TRAIT_DOOR_PRYER,
"TRAIT_FISH_SAFE_STORAGE" = TRAIT_FISH_SAFE_STORAGE,
"TRAIT_FISH_CASE_COMPATIBILE" = TRAIT_FISH_CASE_COMPATIBILE
+ ),
+ /atom/movable = list(
+ "TRAIT_MOVE_GROUND" = TRAIT_MOVE_GROUND,
+ "TRAIT_MOVE_FLYING" = TRAIT_MOVE_FLYING,
+ "TRAIT_MOVE_VENTCRAWLING" = TRAIT_MOVE_VENTCRAWLING,
+ "TRAIT_MOVE_FLOATING" = TRAIT_MOVE_FLOATING,
+ "TRAIT_MOVE_PHASING" = TRAIT_MOVE_PHASING
)
))
@@ -151,3 +158,25 @@ GLOBAL_LIST(trait_name_map)
for(var/tname in GLOB.traits_by_type[key])
var/val = GLOB.traits_by_type[key][tname]
.[val] = tname
+
+
+GLOBAL_LIST_INIT(movement_type_trait_to_flag, list(
+ TRAIT_MOVE_GROUND = GROUND,
+ TRAIT_MOVE_FLYING = FLYING,
+ TRAIT_MOVE_VENTCRAWLING = VENTCRAWLING,
+ TRAIT_MOVE_FLOATING = FLOATING,
+ TRAIT_MOVE_PHASING = PHASING
+ ))
+
+GLOBAL_LIST_INIT(movement_type_addtrait_signals, set_movement_type_addtrait_signals())
+GLOBAL_LIST_INIT(movement_type_removetrait_signals, set_movement_type_removetrait_signals())
+
+/proc/set_movement_type_addtrait_signals(signal_prefix)
+ . = list()
+ for(var/trait in GLOB.movement_type_trait_to_flag)
+ . += SIGNAL_ADDTRAIT(trait)
+
+/proc/set_movement_type_removetrait_signals(signal_prefix)
+ . = list()
+ for(var/trait in GLOB.movement_type_trait_to_flag)
+ . += SIGNAL_REMOVETRAIT(trait)
diff --git a/code/datums/components/caltrop.dm b/code/datums/components/caltrop.dm
index 4c0b708a0be17..b884e4ab248b9 100644
--- a/code/datums/components/caltrop.dm
+++ b/code/datums/components/caltrop.dm
@@ -55,7 +55,7 @@
if(!(flags & CALTROP_BYPASS_SHOES) && (H.shoes || feetCover))
return
- if((H.movement_type & FLYING) || (H.body_position == LYING_DOWN)|| H.buckled)
+ if((H.movement_type & (FLYING|FLOATING)) || (H.body_position == LYING_DOWN)|| H.buckled)
return
var/damage = rand(min_damage, max_damage)
diff --git a/code/datums/components/chasm.dm b/code/datums/components/chasm.dm
index 2cffbed9490ce..c439bcee66ce0 100644
--- a/code/datums/components/chasm.dm
+++ b/code/datums/components/chasm.dm
@@ -69,7 +69,7 @@
return FALSE
if(!isliving(AM) && !isobj(AM))
return FALSE
- if(is_type_in_typecache(AM, forbidden_types) || AM.throwing || (AM.movement_type & FLOATING))
+ if(is_type_in_typecache(AM, forbidden_types) || AM.throwing || (AM.movement_type & (FLOATING|FLYING)))
return FALSE
//Flies right over the chasm
if(ismob(AM))
@@ -78,8 +78,6 @@
var/mob/buckled_to = M.buckled
if((!ismob(M.buckled) || (buckled_to.buckled != M)) && !droppable(M.buckled))
return FALSE
- if(M.is_flying())
- return FALSE
if(ishuman(AM))
var/mob/living/carbon/human/H = AM
if(istype(H.belt, /obj/item/wormhole_jaunter))
diff --git a/code/datums/elements/movetype_handler.dm b/code/datums/elements/movetype_handler.dm
new file mode 100644
index 0000000000000..4447d1638bcf6
--- /dev/null
+++ b/code/datums/elements/movetype_handler.dm
@@ -0,0 +1,107 @@
+/**
+ * An element that enables and disables movetype bitflags as movetype traits are added and removed.
+ * It also handles the +2/-2 pixel y anim loop typical of mobs possessing the FLYING or FLOATING movetypes.
+ * This element is necessary for the TRAIT_MOVE_ traits to work correctly. So make sure to include it when
+ * manipulating those traits on non-living movables.
+ */
+/datum/element/movetype_handler
+ element_flags = ELEMENT_DETACH
+
+ var/list/attached_atoms = list()
+ var/list/paused_floating_anim_atoms = list()
+
+/datum/element/movetype_handler/Attach(datum/target)
+ . = ..()
+ if(!ismovable(target))
+ return ELEMENT_INCOMPATIBLE
+ if(attached_atoms[target]) //Already attached.
+ return
+
+ var/atom/movable/movable_target = target
+ RegisterSignals(movable_target, GLOB.movement_type_addtrait_signals, PROC_REF(on_movement_type_trait_gain))
+ RegisterSignals(movable_target, GLOB.movement_type_removetrait_signals, PROC_REF(on_movement_type_trait_loss))
+ RegisterSignal(movable_target, SIGNAL_ADDTRAIT(TRAIT_NO_FLOATING_ANIM), PROC_REF(on_no_floating_anim_trait_gain))
+ RegisterSignal(movable_target, SIGNAL_REMOVETRAIT(TRAIT_NO_FLOATING_ANIM), PROC_REF(on_no_floating_anim_trait_loss))
+ RegisterSignal(movable_target, COMSIG_PAUSE_FLOATING_ANIM, PROC_REF(pause_floating_anim))
+ attached_atoms[movable_target] = TRUE
+
+ if(movable_target.movement_type & (FLOATING|FLYING) && !HAS_TRAIT(movable_target, TRAIT_NO_FLOATING_ANIM))
+ float(movable_target)
+
+/datum/element/movetype_handler/Detach(datum/source)
+ UnregisterSignal(source, GLOB.movement_type_addtrait_signals)
+ UnregisterSignal(source, GLOB.movement_type_removetrait_signals)
+ UnregisterSignal(source, SIGNAL_ADDTRAIT(TRAIT_NO_FLOATING_ANIM))
+ UnregisterSignal(source, SIGNAL_REMOVETRAIT(TRAIT_NO_FLOATING_ANIM))
+ UnregisterSignal(source, COMSIG_PAUSE_FLOATING_ANIM)
+ attached_atoms -= source
+ paused_floating_anim_atoms -= source
+ stop_floating(source)
+ return ..()
+
+/// Called when a movement type trait is added to the movable. Enables the relative bitflag.
+/datum/element/movetype_handler/proc/on_movement_type_trait_gain(atom/movable/source, trait)
+ SIGNAL_HANDLER
+ var/flag = GLOB.movement_type_trait_to_flag[trait]
+ if(source.movement_type & flag)
+ return
+ if(!(source.movement_type & (FLOATING|FLYING)) && (trait == TRAIT_MOVE_FLYING || trait == TRAIT_MOVE_FLOATING) && !paused_floating_anim_atoms[source] && !HAS_TRAIT(source, TRAIT_NO_FLOATING_ANIM))
+ float(source)
+ source.movement_type |= flag
+ SEND_SIGNAL(source, COMSIG_MOVETYPE_FLAG_ENABLED, flag)
+
+/// Called when a movement type trait is removed from the movable. Disables the relative bitflag if it wasn't there in the compile-time bitfield.
+/datum/element/movetype_handler/proc/on_movement_type_trait_loss(atom/movable/source, trait)
+ SIGNAL_HANDLER
+ var/flag = GLOB.movement_type_trait_to_flag[trait]
+ if(initial(source.movement_type) & flag)
+ return
+ source.movement_type &= ~flag
+ if((trait == TRAIT_MOVE_FLYING || trait == TRAIT_MOVE_FLOATING) && !(source.movement_type & (FLOATING|FLYING)))
+ stop_floating(source)
+ SEND_SIGNAL(source, COMSIG_MOVETYPE_FLAG_DISABLED, flag)
+
+/// Called when the TRAIT_NO_FLOATING_ANIM trait is added to the movable. Stops it from bobbing up and down.
+/datum/element/movetype_handler/proc/on_no_floating_anim_trait_gain(atom/movable/source, trait)
+ SIGNAL_HANDLER
+ stop_floating(source)
+
+/// Called when the TRAIT_NO_FLOATING_ANIM trait is removed from the mob. Restarts the bobbing animation.
+/datum/element/movetype_handler/proc/on_no_floating_anim_trait_loss(atom/movable/source, trait)
+ SIGNAL_HANDLER
+ if(source.movement_type & (FLOATING|FLYING) && !paused_floating_anim_atoms[source])
+ float(source)
+
+///Pauses the floating animation for the duration of the timer... plus [tickrate - (world.time + timer) % tickrate] to be precise.
+/datum/element/movetype_handler/proc/pause_floating_anim(atom/movable/source, timer)
+ SIGNAL_HANDLER
+ if(paused_floating_anim_atoms[source] < world.time + timer)
+ stop_floating(source)
+ if(!length(paused_floating_anim_atoms))
+ START_PROCESSING(SSdcs, src) //1 second tickrate.
+ paused_floating_anim_atoms[source] = world.time + timer
+
+/datum/element/movetype_handler/process()
+ for(var/_paused in paused_floating_anim_atoms)
+ var/atom/movable/paused = _paused
+ if(!paused)
+ paused_floating_anim_atoms -= paused
+ else if(paused_floating_anim_atoms[paused] < world.time)
+ if(paused.movement_type & (FLOATING|FLYING) && !HAS_TRAIT(paused, TRAIT_NO_FLOATING_ANIM))
+ float(paused)
+ paused_floating_anim_atoms -= paused
+ if(!length(paused_floating_anim_atoms))
+ STOP_PROCESSING(SSdcs, src)
+
+///Floats the movable up and down. Not a comsig proc.
+/datum/element/movetype_handler/proc/float(atom/movable/target)
+ animate(target, pixel_y = 2, time = 10, loop = -1, flags = ANIMATION_RELATIVE)
+ animate(pixel_y = -2, time = 10, loop = -1, flags = ANIMATION_RELATIVE)
+
+/// Stops the above. Also not a comsig proc.
+/datum/element/movetype_handler/proc/stop_floating(atom/movable/target)
+ var/final_pixel_y = target.base_pixel_y
+ if(isliving(target)) //Living mobs also have a 'body_position_pixel_y_offset' variable that has to be taken into account here.
+ var/mob/living/living_target = target
+ final_pixel_y += living_target.body_position_pixel_y_offset
+ animate(target, pixel_y = final_pixel_y, time = 1 SECONDS)
diff --git a/code/game/atoms_movable.dm b/code/game/atoms_movable.dm
index ef28dc34e9189..0b5be56586805 100644
--- a/code/game/atoms_movable.dm
+++ b/code/game/atoms_movable.dm
@@ -38,8 +38,13 @@
var/datum/movement_packet/move_packet
var/list/acted_explosions //for explosion dodging
var/datum/forced_movement/force_moving = null //handled soley by forced_movement.dm
- ///In case you have multiple types, you automatically use the most useful one. IE: Skating on ice, flippers on water, flying over chasm/space, etc. Should only be changed through setMovetype()
+ /**
+ * In case you have multiple types, you automatically use the most useful one.
+ * IE: Skating on ice, flippers on water, flying over chasm/space, etc.
+ * I reccomend you use the movetype_handler system and not modify this directly, especially for living mobs.
+ */
var/movement_type = GROUND
+
var/atom/movable/pulling
var/grab_state = 0
var/throwforce = 0
@@ -665,14 +670,6 @@
Moved(oldloc, NONE, TRUE)
-///Proc to modify the movement_type and hook behavior associated with it changing.
-/atom/movable/proc/setMovetype(newval)
- if(movement_type == newval)
- return
- . = movement_type
- movement_type = newval
-
-
//Called whenever an object moves and by mobs when they attempt to move themselves through space
//And when an object or action applies a force on src, see newtonian_move() below
//Return 0 to have src start/keep drifting in a no-grav area and 1 to stop/not start drifting
@@ -908,8 +905,8 @@
var/matrix/initial_transform = matrix(transform)
var/matrix/rotated_transform = transform.Turn(rand(13,17) * turn_dir)
- animate(src, pixel_x = pixel_x + pixel_x_diff, pixel_y = pixel_y + pixel_y_diff, transform=rotated_transform, time = 1, easing=BACK_EASING|EASE_IN)
- animate(pixel_x = pixel_x - pixel_x_diff, pixel_y = pixel_y - pixel_y_diff, transform=initial_transform, time = 2, easing=SINE_EASING)
+ animate(src, pixel_x = pixel_x + pixel_x_diff, pixel_y = pixel_y + pixel_y_diff, transform=rotated_transform, time = 1, easing=BACK_EASING|EASE_IN, flags = ANIMATION_PARALLEL)
+ animate(pixel_x = pixel_x - pixel_x_diff, pixel_y = pixel_y - pixel_y_diff, transform=initial_transform, time = 2, easing=SINE_EASING, flags = ANIMATION_PARALLEL)
/atom/movable/proc/do_item_attack_animation(atom/A, visual_effect_icon, obj/item/used_item)
var/image/I
@@ -1008,17 +1005,6 @@
acted_explosions += ex_id
return TRUE
-//TODO: Better floating
-/atom/movable/proc/float(on)
- if(throwing)
- return
- if(on && !(movement_type & FLOATING))
- animate(src, pixel_y = 2, time = 10, loop = -1, flags = ANIMATION_RELATIVE)
- animate(pixel_y = -2, time = 10, loop = -1, flags = ANIMATION_RELATIVE)
- setMovetype(movement_type | FLOATING)
- else if (!on && (movement_type & FLOATING))
- animate(src, pixel_y = base_pixel_y, time = 10)
- setMovetype(movement_type & ~FLOATING)
/* Language procs
* Unless you are doing something very specific, these are the ones you want to use.
*/
diff --git a/code/game/objects/buckling.dm b/code/game/objects/buckling.dm
index 72188002f4287..5d74559440cfd 100644
--- a/code/game/objects/buckling.dm
+++ b/code/game/objects/buckling.dm
@@ -108,6 +108,10 @@
if (!check_loc && M.loc != loc)
M.forceMove(loc)
+ if(anchored)
+ ADD_TRAIT(M, TRAIT_NO_FLOATING_ANIM, BUCKLED_TRAIT)
+ if(!length(buckled_mobs))
+ RegisterSignal(src, COMSIG_MOVABLE_SET_ANCHORED, PROC_REF(on_set_anchored))
M.set_buckled(src)
M.setDir(dir)
buckled_mobs |= M
@@ -153,10 +157,25 @@
buckled_mob.clear_alert("buckled")
//buckled_mob.set_glide_size(DELAY_TO_GLIDE_SIZE(buckled_mob.total_multiplicative_slowdown()))
buckled_mobs -= buckled_mob
+ if(anchored)
+ REMOVE_TRAIT(buckled_mob, TRAIT_NO_FLOATING_ANIM, BUCKLED_TRAIT)
+ if(!length(buckled_mobs))
+ UnregisterSignal(src, COMSIG_MOVABLE_SET_ANCHORED, PROC_REF(on_set_anchored))
SEND_SIGNAL(src, COMSIG_MOVABLE_UNBUCKLE, buckled_mob, force)
post_unbuckle_mob(.)
+/atom/movable/proc/on_set_anchored(atom/movable/source, anchorvalue)
+ SIGNAL_HANDLER
+ for(var/_buckled_mob in buckled_mobs)
+ if(!_buckled_mob)
+ continue
+ var/mob/living/buckled_mob = _buckled_mob
+ if(anchored)
+ ADD_TRAIT(buckled_mob, TRAIT_NO_FLOATING_ANIM, BUCKLED_TRAIT)
+ else
+ REMOVE_TRAIT(buckled_mob, TRAIT_NO_FLOATING_ANIM, BUCKLED_TRAIT)
+
/atom/movable/proc/unbuckle_all_mobs(force=FALSE)
if(!has_buckled_mobs())
diff --git a/code/game/objects/structures/life_candle.dm b/code/game/objects/structures/life_candle.dm
index 83a562ace450b..40a7079e5a7de 100644
--- a/code/game/objects/structures/life_candle.dm
+++ b/code/game/objects/structures/life_candle.dm
@@ -24,6 +24,10 @@
var/respawn_time = 50
var/respawn_sound = 'sound/magic/staff_animation.ogg'
+/obj/structure/life_candle/ComponentInitialize()
+ . = ..()
+ AddElement(/datum/element/movetype_handler)
+
/obj/structure/life_candle/attack_hand(mob/user)
. = ..()
if(.)
@@ -33,12 +37,15 @@
if(user.mind in linked_minds)
user.visible_message("[user] reaches out and pinches the flame of [src].", "You sever the connection between yourself and [src].")
linked_minds -= user.mind
+ if(!linked_minds.len)
+ REMOVE_TRAIT(src, TRAIT_MOVE_FLOATING, LIFECANDLE_TRAIT)
else
user.visible_message("[user] touches [src]. It seems to respond to [user.p_their()] presence!", "You create a connection between you and [src].")
linked_minds |= user.mind
+ if(!linked_minds.len)
+ ADD_TRAIT(src, TRAIT_MOVE_FLOATING, LIFECANDLE_TRAIT)
update_icon()
- float(linked_minds.len)
if(linked_minds.len)
START_PROCESSING(SSobj, src)
set_light(lit_luminosity)
diff --git a/code/modules/admin/verbs/randomverbs.dm b/code/modules/admin/verbs/randomverbs.dm
index c77f6d58ce261..b4cac583e2998 100644
--- a/code/modules/admin/verbs/randomverbs.dm
+++ b/code/modules/admin/verbs/randomverbs.dm
@@ -1213,6 +1213,8 @@ Traitors and the like can also be revived with the previous role mostly intact.
var/source = "adminabuse"
switch(add_or_remove)
if("Add") //Not doing source choosing here intentionally to make this bit faster to use, you can always vv it.
+ if(GLOB.movement_type_trait_to_flag[chosen_trait]) //include the required element.
+ D.AddElement(/datum/element/movetype_handler)
ADD_TRAIT(D,chosen_trait,source)
if("Remove")
var/specific = input("All or specific source ?", "Trait Remove/Add") as null|anything in list("All","Specific")
diff --git a/code/modules/antagonists/blob/blob_mobs.dm b/code/modules/antagonists/blob/blob_mobs.dm
index d2e8650552041..7007f73a83b67 100644
--- a/code/modules/antagonists/blob/blob_mobs.dm
+++ b/code/modules/antagonists/blob/blob_mobs.dm
@@ -107,7 +107,7 @@
attack_verb_continuous = "hits"
attack_verb_simple = "hit"
attack_sound = 'sound/weapons/genhit1.ogg'
- movement_type = FLYING
+ is_flying_animal = TRUE
del_on_death = TRUE
deathmessage = "explodes into a cloud of gas!"
gold_core_spawnable = HOSTILE_SPAWN
diff --git a/code/modules/antagonists/clock_cult/mobs/clockwork_marauder.dm b/code/modules/antagonists/clock_cult/mobs/clockwork_marauder.dm
index 3e0490b4b8b51..de535c8d1b666 100644
--- a/code/modules/antagonists/clock_cult/mobs/clockwork_marauder.dm
+++ b/code/modules/antagonists/clock_cult/mobs/clockwork_marauder.dm
@@ -16,7 +16,7 @@ GLOBAL_LIST_EMPTY(clockwork_marauders)
atmos_requirements = list("min_oxy" = 0, "max_oxy" = 0, "min_tox" = 0, "max_tox" = 0, "min_co2" = 0, "max_co2" = 0, "min_n2" = 0, "max_n2" = 0)
minbodytemp = 0
maxbodytemp = INFINITY
- movement_type = FLYING
+ is_flying_animal = TRUE
move_resist = MOVE_FORCE_OVERPOWERING
mob_size = MOB_SIZE_LARGE
pass_flags = PASSTABLE
diff --git a/code/modules/antagonists/clock_cult/mobs/eminence.dm b/code/modules/antagonists/clock_cult/mobs/eminence.dm
index 6c9688da30681..33ee61b1214e8 100644
--- a/code/modules/antagonists/clock_cult/mobs/eminence.dm
+++ b/code/modules/antagonists/clock_cult/mobs/eminence.dm
@@ -24,7 +24,7 @@
status_flags = 0
wander = FALSE
density = FALSE
- movement_type = FLYING
+ is_flying_animal = TRUE
move_resist = MOVE_FORCE_OVERPOWERING
mob_size = MOB_SIZE_TINY
pass_flags = PASSTABLE | PASSGRILLE | PASSMOB
diff --git a/code/modules/antagonists/clock_cult/traps/receivers/skewer.dm b/code/modules/antagonists/clock_cult/traps/receivers/skewer.dm
index d951eb4e22e5f..d9d66ea55c9f4 100644
--- a/code/modules/antagonists/clock_cult/traps/receivers/skewer.dm
+++ b/code/modules/antagonists/clock_cult/traps/receivers/skewer.dm
@@ -27,7 +27,7 @@
var/target_stabbed = FALSE
density = TRUE
for(var/mob/living/M in get_turf(src))
- if(M.incorporeal_move || M.is_flying())
+ if(M.incorporeal_move || M.movement_type & (FLOATING|FLYING))
continue
if(buckle_mob(M, TRUE))
target_stabbed = TRUE
diff --git a/code/modules/antagonists/clock_cult/traps/senders/pressure_sensor.dm b/code/modules/antagonists/clock_cult/traps/senders/pressure_sensor.dm
index 159afb8ace32e..e4b55981a9328 100644
--- a/code/modules/antagonists/clock_cult/traps/senders/pressure_sensor.dm
+++ b/code/modules/antagonists/clock_cult/traps/senders/pressure_sensor.dm
@@ -34,7 +34,7 @@
if(istype(M))
if(is_servant_of_ratvar(M))
return
- if(M.incorporeal_move || M.is_flying())
+ if(M.incorporeal_move || M.movement_type & (FLOATING|FLYING))
return
else
return
diff --git a/code/modules/antagonists/revenant/revenant.dm b/code/modules/antagonists/revenant/revenant.dm
index 4dcd3d8d278b0..b6e68b0a9167e 100644
--- a/code/modules/antagonists/revenant/revenant.dm
+++ b/code/modules/antagonists/revenant/revenant.dm
@@ -43,7 +43,6 @@
status_flags = 0
wander = FALSE
density = FALSE
- movement_type = FLYING
move_resist = MOVE_FORCE_OVERPOWERING
mob_size = MOB_SIZE_TINY
pass_flags = PASSTABLE | PASSMOB
@@ -87,6 +86,8 @@
AddComponent(/datum/component/tracking_beacon, "ghost", null, null, TRUE, "#9e4d91", TRUE, TRUE, "#490066")
grant_all_languages(TRUE, FALSE, FALSE, LANGUAGE_REVENANT) // rev can understand every langauge
ADD_TRAIT(src, TRAIT_FREE_HYPERSPACE_MOVEMENT, INNATE_TRAIT)
+ AddElement(/datum/element/movetype_handler)
+ ADD_TRAIT(src, TRAIT_MOVE_FLOATING, "ghost")
/mob/living/simple_animal/revenant/onTransitZ(old_z, new_z)
. = ..()
@@ -416,8 +417,7 @@
/mob/living/simple_animal/revenant/stop_orbit(datum/component/orbiter/orbits)
// reset the simple_flying animation
- animate(src, pixel_y = 2, time = 1 SECONDS, loop = -1, flags = ANIMATION_RELATIVE)
- animate(pixel_y = -2, time = 1 SECONDS, flags = ANIMATION_RELATIVE)
+ ADD_TRAIT(src, TRAIT_MOVE_FLOATING, "ghost")
return ..()
/// Incorporeal move check: blocked by holy-watered tiles and salt piles.
diff --git a/code/modules/antagonists/revenant/revenant_abilities.dm b/code/modules/antagonists/revenant/revenant_abilities.dm
index 2ca00e5b20de5..85b96e894dc64 100644
--- a/code/modules/antagonists/revenant/revenant_abilities.dm
+++ b/code/modules/antagonists/revenant/revenant_abilities.dm
@@ -56,6 +56,7 @@
/mob/living/simple_animal/revenant/orbit(atom/target)
setDir(SOUTH) // reset dir so the right directional sprites show up
+ REMOVE_TRAIT(src, TRAIT_MOVE_FLOATING, "ghost")
return ..()
diff --git a/code/modules/holoparasite/_holoparasite.dm b/code/modules/holoparasite/_holoparasite.dm
index 30c7e5f0eb9bf..1872d2191de10 100644
--- a/code/modules/holoparasite/_holoparasite.dm
+++ b/code/modules/holoparasite/_holoparasite.dm
@@ -25,7 +25,7 @@ GLOBAL_LIST_EMPTY_TYPED(holoparasites, /mob/living/simple_animal/hostile/holopar
light_on = FALSE
a_intent = INTENT_HARM
stop_automated_movement = TRUE
- movement_type = FLYING // Immunity to chasms and landmines, etc.
+ is_flying_animal = TRUE // Immunity to chasms and landmines, etc.
attack_sound = "punch"
atmos_requirements = list("min_oxy" = 0, "max_oxy" = 0, "min_tox" = 0, "max_tox" = 0, "min_co2" = 0, "max_co2" = 0, "min_n2" = 0, "max_n2" = 0)
minbodytemp = 0
diff --git a/code/modules/mining/equipment/wormhole_jaunter.dm b/code/modules/mining/equipment/wormhole_jaunter.dm
index 2b01cd25a1ddd..5d06cca10e6b6 100644
--- a/code/modules/mining/equipment/wormhole_jaunter.dm
+++ b/code/modules/mining/equipment/wormhole_jaunter.dm
@@ -50,7 +50,7 @@
try_move_adjacent(J)
else
user.Paralyze(2 SECONDS, TRUE, TRUE) //Ignore stun immunity here, for their own good
- user.setMovetype(user.movement_type | FLOATING) //Prevents falling into chasm during delay, automatically removed upon movement
+ ADD_TRAIT(user, TRAIT_MOVE_FLOATING, "jaunter") //Prevents falling into chasm during delay, automatically removed upon movement
addtimer(CALLBACK(J, TYPE_PROC_REF(/atom, attackby), null, user), 1 SECONDS) //Forcibly teleport them away from the chasm after a brief dramatic delay
playsound(src,'sound/effects/sparks4.ogg',50,1)
qdel(src)
diff --git a/code/modules/mob/dead/observer/observer.dm b/code/modules/mob/dead/observer/observer.dm
index 49cad7d8e675f..731151f1fd56a 100644
--- a/code/modules/mob/dead/observer/observer.dm
+++ b/code/modules/mob/dead/observer/observer.dm
@@ -16,7 +16,6 @@ GLOBAL_VAR_INIT(observer_default_invisibility, INVISIBILITY_SPIRIT)
lighting_alpha = LIGHTING_PLANE_ALPHA_MOSTLY_INVISIBLE
invisibility = INVISIBILITY_SPIRIT
hud_type = /datum/hud/ghost
- movement_type = GROUND | FLYING
light_system = MOVABLE_LIGHT
light_range = 1
light_power = 2
@@ -135,9 +134,6 @@ GLOBAL_VAR_INIT(observer_default_invisibility, INVISIBILITY_SPIRIT)
remove_verb(/mob/dead/observer/verb/boo)
remove_verb(/mob/dead/observer/verb/possess)
- animate(src, pixel_y = 2, time = 10, loop = -1, flags = ANIMATION_RELATIVE)
- animate(pixel_y = -2, time = 10, loop = -1, flags = ANIMATION_RELATIVE)
-
add_to_dead_mob_list()
for(var/v in GLOB.active_alternate_appearances)
@@ -153,6 +149,8 @@ GLOBAL_VAR_INIT(observer_default_invisibility, INVISIBILITY_SPIRIT)
data_huds_on = 1
AddComponent(/datum/component/tracking_beacon, "ghost", null, null, TRUE, "#9e4d91", TRUE, TRUE, "#490066")
+ AddElement(/datum/element/movetype_handler)
+ ADD_TRAIT(src, TRAIT_MOVE_FLOATING, "ghost")
/mob/dead/observer/get_photo_description(obj/item/camera/camera)
return "You can also see a g-g-g-g-ghooooost!"
@@ -480,14 +478,14 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp
/mob/dead/observer/orbit()
setDir(2)//reset dir so the right directional sprites show up
+ REMOVE_TRAIT(src, TRAIT_MOVE_FLOATING, "ghost")
return ..()
/mob/dead/observer/stop_orbit(datum/component/orbiter/orbits)
. = ..()
//restart our floating animation after orbit is done.
pixel_y = base_pixel_y
- animate(src, pixel_y = base_pixel_y + 2, time = 1 SECONDS, loop = -1)
- animate(pixel_y = -2, time = 10, loop = -1, flags = ANIMATION_RELATIVE)
+ ADD_TRAIT(src, TRAIT_MOVE_FLOATING, "ghost")
/mob/dead/observer/verb/jumptomob() //Moves the ghost instead of just changing the ghosts's eye -Nodrak
set category = "Ghost"
diff --git a/code/modules/mob/living/basic/basic.dm b/code/modules/mob/living/basic/basic.dm
index e853c16df621a..2101a9406c67f 100644
--- a/code/modules/mob/living/basic/basic.dm
+++ b/code/modules/mob/living/basic/basic.dm
@@ -140,7 +140,6 @@
icon = initial(icon)
icon_state = icon_living
density = initial(density)
- setMovetype(initial(movement_type))
/mob/living/basic/proc/melee_attack(atom/target)
src.face_atom(target)
diff --git a/code/modules/mob/living/carbon/alien/humanoid/caste/hunter.dm b/code/modules/mob/living/carbon/alien/humanoid/caste/hunter.dm
index 1b024ec6aa2b5..96cb3c54cc149 100644
--- a/code/modules/mob/living/carbon/alien/humanoid/caste/hunter.dm
+++ b/code/modules/mob/living/carbon/alien/humanoid/caste/hunter.dm
@@ -87,8 +87,3 @@
if(leaping) //check that toggles out of leaping mode if the alien gets hit or otherwise interrupted
leaping = FALSE
update_icons()
-
-/mob/living/carbon/alien/humanoid/float(on)
- if(leaping)
- return
- return ..()
diff --git a/code/modules/mob/living/carbon/carbon_movement.dm b/code/modules/mob/living/carbon/carbon_movement.dm
index 33b556e736336..dcf4439f0018a 100644
--- a/code/modules/mob/living/carbon/carbon_movement.dm
+++ b/code/modules/mob/living/carbon/carbon_movement.dm
@@ -56,17 +56,17 @@
if(!usable_legs && !(movement_type & (FLYING | FLOATING)))
ADD_TRAIT(src, TRAIT_IMMOBILIZED, LACKING_LOCOMOTION_APPENDAGES_TRAIT)
+/mob/living/carbon/on_movement_type_flag_enabled(datum/source, flag)
+ var/old_movetype = movement_type
+ . = ..()
+ if(flag & (FLYING | FLOATING) && !(old_movetype & (FLYING | FLOATING)))
+ remove_movespeed_modifier(/datum/movespeed_modifier/limbless)
+ REMOVE_TRAIT(src, TRAIT_FLOORED, LACKING_LOCOMOTION_APPENDAGES_TRAIT)
+ REMOVE_TRAIT(src, TRAIT_IMMOBILIZED, LACKING_LOCOMOTION_APPENDAGES_TRAIT)
-/mob/living/carbon/setMovetype(newval)
+/mob/living/carbon/on_movement_type_flag_disabled(datum/source, flag)
. = ..()
- if(isnull(.))
- return
- if(!(. & (FLYING | FLOATING)))
- if(movement_type & (FLYING | FLOATING)) //From not flying to flying.
- remove_movespeed_modifier(/datum/movespeed_modifier/limbless)
- REMOVE_TRAIT(src, TRAIT_FLOORED, LACKING_LOCOMOTION_APPENDAGES_TRAIT)
- REMOVE_TRAIT(src, TRAIT_IMMOBILIZED, LACKING_LOCOMOTION_APPENDAGES_TRAIT)
- else if(!(movement_type & (FLYING | FLOATING))) //From flying to no longer flying.
+ if(flag & (FLYING | FLOATING) && !(movement_type & (FLYING | FLOATING)))
var/limbless_slowdown = 0
if(usable_legs < default_num_legs)
limbless_slowdown += (default_num_legs - usable_legs) * 3
diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm
index 7372fb37f1ef1..090928d713575 100644
--- a/code/modules/mob/living/carbon/human/human.dm
+++ b/code/modules/mob/living/carbon/human/human.dm
@@ -811,11 +811,6 @@
/mob/living/carbon/human/can_hold_items()
return TRUE
-/mob/living/carbon/human/update_gravity(has_gravity,override = 0)
- if(dna && dna.species) //prevents a runtime while a human is being monkeyfied
- override = dna.species.override_float
- ..()
-
/mob/living/carbon/human/vomit(lost_nutrition = 10, blood = 0, stun = 1, distance = 0, message = 1, toxic = 0)
if(blood && (NOBLOOD in dna.species.species_traits))
if(message)
diff --git a/code/modules/mob/living/carbon/human/species.dm b/code/modules/mob/living/carbon/human/species.dm
index 8874bad02caff..ec07a513434e7 100644
--- a/code/modules/mob/living/carbon/human/species.dm
+++ b/code/modules/mob/living/carbon/human/species.dm
@@ -101,7 +101,6 @@ GLOBAL_LIST_EMPTY(features_by_species)
var/obj/item/organ/liver/mutantliver
var/obj/item/organ/stomach/mutantstomach
- var/override_float = FALSE
//Bitflag that controls what in game ways can select this species as a spawnable source
//Think magic mirror and pride mirror, slime extract, ERT etc, see defines
@@ -2346,19 +2345,17 @@ GLOBAL_LIST_EMPTY(features_by_species)
//UNSAFE PROC, should only be called through the Activate or other sources that check for CanFly
/datum/species/proc/toggle_flight(mob/living/carbon/human/H)
- if(!(H.movement_type & FLYING))
+ if(!HAS_TRAIT_FROM(H, TRAIT_MOVE_FLYING, SPECIES_FLIGHT_TRAIT))
stunmod *= 2
speedmod -= 0.35
- H.setMovetype(H.movement_type | FLYING)
- override_float = TRUE
+ ADD_TRAIT(H, TRAIT_MOVE_FLYING, SPECIES_FLIGHT_TRAIT)
H.pass_flags |= PASSTABLE
if(("wings" in H.dna.species.mutant_bodyparts) || ("moth_wings" in H.dna.species.mutant_bodyparts))
H.Togglewings()
else
stunmod *= 0.5
speedmod += 0.35
- H.setMovetype(H.movement_type & ~FLYING)
- override_float = FALSE
+ REMOVE_TRAIT(H, TRAIT_MOVE_FLYING, SPECIES_FLIGHT_TRAIT)
H.pass_flags &= ~PASSTABLE
if(("wingsopen" in H.dna.species.mutant_bodyparts) || ("moth_wingsopen" in H.dna.species.mutant_bodyparts))
H.Togglewings()
diff --git a/code/modules/mob/living/carbon/update_icons.dm b/code/modules/mob/living/carbon/update_icons.dm
index 505201504141c..a02ae4866236f 100644
--- a/code/modules/mob/living/carbon/update_icons.dm
+++ b/code/modules/mob/living/carbon/update_icons.dm
@@ -21,8 +21,8 @@
resize = RESIZE_DEFAULT_SIZE
if(changed)
+ SEND_SIGNAL(src, COMSIG_PAUSE_FLOATING_ANIM, 0.3 SECONDS)
animate(src, transform = ntransform, time = (lying_prev == 0 || lying_angle == 0) ? 2 : 0, pixel_y = final_pixel_y, dir = final_dir, easing = (EASE_IN|EASE_OUT))
- setMovetype(movement_type & ~FLOATING) // If we were without gravity, the bouncing animation got stopped, so we make sure we restart it in next life().
UPDATE_OO_IF_PRESENT
/mob/living/carbon
diff --git a/code/modules/mob/living/init_signals.dm b/code/modules/mob/living/init_signals.dm
index 108570a584da3..b3608f641cd33 100644
--- a/code/modules/mob/living/init_signals.dm
+++ b/code/modules/mob/living/init_signals.dm
@@ -38,6 +38,9 @@
SIGNAL_REMOVETRAIT(TRAIT_NODEATH),
), PROC_REF(update_succumb_action))
+ RegisterSignal(src, COMSIG_MOVETYPE_FLAG_ENABLED, PROC_REF(on_movement_type_flag_enabled))
+ RegisterSignal(src, COMSIG_MOVETYPE_FLAG_DISABLED, PROC_REF(on_movement_type_flag_disabled))
+
///Called when TRAIT_KNOCKEDOUT is added to the mob.
/mob/living/proc/on_knockedout_trait_gain(datum/source)
SIGNAL_HANDLER
@@ -173,3 +176,13 @@
throw_alert("succumb", /atom/movable/screen/alert/succumb)
else
clear_alert("succumb")
+
+///From [element/movetype_handler/on_movement_type_trait_gain()]
+/mob/living/proc/on_movement_type_flag_enabled(datum/source, trait)
+ SIGNAL_HANDLER
+ update_movespeed(FALSE)
+
+///From [element/movetype_handler/on_movement_type_trait_loss()]
+/mob/living/proc/on_movement_type_flag_disabled(datum/source, trait)
+ SIGNAL_HANDLER
+ update_movespeed(FALSE)
diff --git a/code/modules/mob/living/life.dm b/code/modules/mob/living/life.dm
index f3e618c29e544..b98d460e29a1f 100644
--- a/code/modules/mob/living/life.dm
+++ b/code/modules/mob/living/life.dm
@@ -7,9 +7,6 @@
SEND_SIGNAL(src, COMSIG_LIVING_LIFE, delta_time, times_fired)
- if((movement_type & FLYING) && !(movement_type & FLOATING)) //TODO: Better floating
- float(on = TRUE)
-
if (notransform)
return
if(!loc)
diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm
index c63839b88e9ce..cf15ae9ef633e 100644
--- a/code/modules/mob/living/living.dm
+++ b/code/modules/mob/living/living.dm
@@ -25,6 +25,10 @@
//color correction
RegisterSignal(src, COMSIG_MOVABLE_ENTERED_AREA, PROC_REF(apply_color_correction))
+/mob/living/ComponentInitialize()
+ . = ..()
+ AddElement(/datum/element/movetype_handler)
+
/mob/living/prepare_huds()
..()
prepare_data_huds()
@@ -928,10 +932,11 @@
/mob/living/proc/get_visible_name()
return name
-/mob/living/update_gravity(has_gravity, override)
+/mob/living/update_gravity(has_gravity)
. = ..()
if(!SSticker.HasRoundStarted())
return
+ var/was_weightless = alerts["gravity"] && istype(alerts["gravity"], /atom/movable/screen/alert/weightless)
if(has_gravity)
if(has_gravity == 1)
clear_alert("gravity")
@@ -940,24 +945,12 @@
throw_alert("gravity", /atom/movable/screen/alert/veryhighgravity)
else
throw_alert("gravity", /atom/movable/screen/alert/highgravity)
+ if(was_weightless)
+ REMOVE_TRAIT(src, TRAIT_MOVE_FLOATING, NO_GRAVITY_TRAIT)
else
throw_alert("gravity", /atom/movable/screen/alert/weightless)
- if(!override && !is_flying())
- float(!has_gravity)
-
-/mob/living/float(on)
- if(throwing)
- return
- var/fixed = 0
- if(anchored || (buckled && buckled.anchored))
- fixed = 1
- if(on && !(movement_type & FLOATING) && !fixed)
- animate(src, pixel_y = base_pixel_y + 2, time = 10, loop = -1, flags = ANIMATION_RELATIVE)
- animate(pixel_y = base_pixel_y - 2, time = 10, loop = -1, flags = ANIMATION_RELATIVE)
- setMovetype(movement_type | FLOATING)
- else if(((!on || fixed) && (movement_type & FLOATING)))
- animate(src, pixel_y = base_pixel_y + body_position_pixel_y_offset, time = 1 SECONDS)
- setMovetype(movement_type & ~FLOATING)
+ if(!was_weightless)
+ ADD_TRAIT(src, TRAIT_MOVE_FLOATING, NO_GRAVITY_TRAIT)
// The src mob is trying to strip an item from someone
// Override if a certain type of mob should be behave differently when stripping items (can't, for example)
@@ -1026,7 +1019,7 @@
var/matrix/reset_matrix = matrix()
reset_matrix.Turn(-5)
// Offset animation
- animate(src, time = 1, pixel_x = rand(-2, 2), pixel_y = rand(-1, 1), easing = ELASTIC_EASING, flags = ANIMATION_RELATIVE)
+ animate(src, time = 1, pixel_x = rand(-2, 2), pixel_y = rand(-1, 1), easing = ELASTIC_EASING, flags = ANIMATION_RELATIVE|ANIMATION_PARALLEL)
for (var/i in 1 to 4)
var/dx = rand(-4, 2)
var/dy = rand(-4, 2)
@@ -1044,11 +1037,8 @@
var/amplitude = min(4, (jitteriness/100) + 1)
var/pixel_x_diff = rand(-amplitude, amplitude)
var/pixel_y_diff = rand(-amplitude/3, amplitude/3)
- var/final_pixel_x = base_pixel_x + body_position_pixel_x_offset
- var/final_pixel_y = base_pixel_y + body_position_pixel_y_offset
- animate(src, pixel_x = pixel_x + pixel_x_diff, pixel_y = pixel_y + pixel_y_diff , time = 2, loop = 6)
- animate(pixel_x = final_pixel_x , pixel_y = final_pixel_y , time = 2)
- setMovetype(movement_type & ~FLOATING) // If we were without gravity, the bouncing animation got stopped, so we make sure to restart it in next life().
+ animate(src, pixel_x = pixel_x_diff, pixel_y = pixel_y_diff , time = 2, loop = 6, flags = ANIMATION_RELATIVE|ANIMATION_PARALLEL)
+ animate(pixel_x = -pixel_x_diff , pixel_y = -pixel_y_diff , time = 2, flags = ANIMATION_RELATIVE)
/mob/living/proc/get_temperature(datum/gas_mixture/environment)
var/loc_temp = environment ? environment.return_temperature() : T0C
diff --git a/code/modules/mob/living/living_defense.dm b/code/modules/mob/living/living_defense.dm
index a34ecf210817b..3e02d5a4e4875 100644
--- a/code/modules/mob/living/living_defense.dm
+++ b/code/modules/mob/living/living_defense.dm
@@ -450,7 +450,6 @@
if(!used_item)
used_item = get_active_held_item()
..()
- setMovetype(movement_type & ~FLOATING) // If we were without gravity, the bouncing animation got stopped, so we make sure we restart the bouncing after the next movement.
/mob/living/extrapolator_act(mob/living/user, obj/item/extrapolator/extrapolator, dry_run = FALSE)
. = ..()
diff --git a/code/modules/mob/living/simple_animal/constructs.dm b/code/modules/mob/living/simple_animal/constructs.dm
index 0517752446447..fff6e77656b29 100644
--- a/code/modules/mob/living/simple_animal/constructs.dm
+++ b/code/modules/mob/living/simple_animal/constructs.dm
@@ -27,7 +27,7 @@
maxbodytemp = INFINITY
healable = 0
faction = list("cult")
- movement_type = FLYING
+ is_flying_animal = TRUE
pressure_resistance = 100
unique_name = 1
AIStatus = AI_OFF //normal constructs don't have AI
diff --git a/code/modules/mob/living/simple_animal/friendly/butterfly.dm b/code/modules/mob/living/simple_animal/friendly/butterfly.dm
index fe890e42c6f3e..841c87de1c948 100644
--- a/code/modules/mob/living/simple_animal/friendly/butterfly.dm
+++ b/code/modules/mob/living/simple_animal/friendly/butterfly.dm
@@ -17,7 +17,7 @@
friendly_verb_continuous = "nudges"
friendly_verb_simple = "nudge"
density = FALSE
- movement_type = FLYING
+ is_flying_animal = TRUE
pass_flags = PASSTABLE | PASSMOB
ventcrawler = VENTCRAWLER_ALWAYS
mob_size = MOB_SIZE_TINY
diff --git a/code/modules/mob/living/simple_animal/hostile/bees.dm b/code/modules/mob/living/simple_animal/hostile/bees.dm
index f83fc638d85e9..57fecbb17cdd1 100644
--- a/code/modules/mob/living/simple_animal/hostile/bees.dm
+++ b/code/modules/mob/living/simple_animal/hostile/bees.dm
@@ -44,7 +44,7 @@
density = FALSE
mob_size = MOB_SIZE_TINY
mob_biotypes = list(MOB_ORGANIC, MOB_BUG)
- movement_type = FLYING
+ is_flying_animal = TRUE
gold_core_spawnable = HOSTILE_SPAWN
search_objects = 1 //have to find those plant trays!
ventcrawler = VENTCRAWLER_ALWAYS
diff --git a/code/modules/mob/living/simple_animal/hostile/carp.dm b/code/modules/mob/living/simple_animal/hostile/carp.dm
index a88869e9eedac..b6679739954fb 100644
--- a/code/modules/mob/living/simple_animal/hostile/carp.dm
+++ b/code/modules/mob/living/simple_animal/hostile/carp.dm
@@ -38,7 +38,7 @@
minbodytemp = 0
maxbodytemp = 1500
faction = list("carp")
- movement_type = FLYING
+ is_flying_animal = TRUE
pressure_resistance = 200
gold_core_spawnable = HOSTILE_SPAWN
diff --git a/code/modules/mob/living/simple_animal/hostile/eyeballs.dm b/code/modules/mob/living/simple_animal/hostile/eyeballs.dm
index 38eff231950a5..152b4e66c8109 100644
--- a/code/modules/mob/living/simple_animal/hostile/eyeballs.dm
+++ b/code/modules/mob/living/simple_animal/hostile/eyeballs.dm
@@ -23,7 +23,7 @@
attack_verb_continuous = "blinks at"
attack_verb_simple = "blink at"
attack_sound = 'sound/weapons/pierce.ogg'
- movement_type = FLYING
+ is_flying_animal = TRUE
faction = list("spooky")
del_on_death = TRUE
diff --git a/code/modules/mob/living/simple_animal/hostile/jungle/leaper.dm b/code/modules/mob/living/simple_animal/hostile/jungle/leaper.dm
index e12c6e9011f98..185508e1af543 100644
--- a/code/modules/mob/living/simple_animal/hostile/jungle/leaper.dm
+++ b/code/modules/mob/living/simple_animal/hostile/jungle/leaper.dm
@@ -81,13 +81,17 @@
/obj/structure/leaper_bubble/Initialize(mapload)
. = ..()
- float(on = TRUE)
QDEL_IN(src, 100)
var/static/list/loc_connections = list(
COMSIG_ATOM_ENTERED = PROC_REF(on_entered),
)
AddElement(/datum/element/connect_loc, loc_connections)
+/obj/structure/leaper_bubble/ComponentInitialize()
+ . = ..()
+ AddElement(/datum/element/movetype_handler)
+ ADD_TRAIT(src, TRAIT_MOVE_FLOATING, LEAPER_BUBBLE_TRAIT)
+
/obj/structure/leaper_bubble/Destroy()
new /obj/effect/temp_visual/leaper_projectile_impact(get_turf(src))
playsound(src,'sound/effects/snap.ogg',50, 1, -1)
diff --git a/code/modules/mob/living/simple_animal/hostile/megafauna/colossus.dm b/code/modules/mob/living/simple_animal/hostile/megafauna/colossus.dm
index 1ae92cf7d81dc..fb555e75d5c83 100644
--- a/code/modules/mob/living/simple_animal/hostile/megafauna/colossus.dm
+++ b/code/modules/mob/living/simple_animal/hostile/megafauna/colossus.dm
@@ -58,6 +58,10 @@ Difficulty: Very Hard
small_sprite_type = /datum/action/small_sprite/megafauna/colossus
var/invulnerable_finale = FALSE
+/mob/living/simple_animal/hostile/megafauna/colossus/Initialize()
+ . = ..()
+ ADD_TRAIT(src, TRAIT_NO_FLOATING_ANIM, ROUNDSTART_TRAIT) //we don't want this guy to float, messes up his animations.
+
/datum/action/innate/megafauna_attack/spiral_attack
name = "Spiral Shots"
icon_icon = 'icons/mob/actions/actions_items.dmi'
@@ -709,7 +713,7 @@ GLOBAL_DATUM(blackbox, /obj/machinery/smartfridge/black_box)
friendly_verb_continuous = "mends"
friendly_verb_simple = "mend"
density = FALSE
- movement_type = FLYING
+ is_flying_animal = TRUE
pass_flags = PASSTABLE | PASSGRILLE | PASSMOB
ventcrawler = VENTCRAWLER_ALWAYS
mob_size = MOB_SIZE_TINY
@@ -724,7 +728,6 @@ GLOBAL_DATUM(blackbox, /obj/machinery/smartfridge/black_box)
faction = list("neutral")
del_on_death = TRUE
unsuitable_atmos_damage = 0
- movement_type = FLYING
minbodytemp = 0
maxbodytemp = 1500
obj_damage = 0
diff --git a/code/modules/mob/living/simple_animal/hostile/megafauna/megafauna.dm b/code/modules/mob/living/simple_animal/hostile/megafauna/megafauna.dm
index 90b948f3e0d15..8cfeb02215ed7 100644
--- a/code/modules/mob/living/simple_animal/hostile/megafauna/megafauna.dm
+++ b/code/modules/mob/living/simple_animal/hostile/megafauna/megafauna.dm
@@ -12,7 +12,7 @@
light_range = 3
faction = list("mining", "boss")
weather_immunities = list("lava","ash")
- movement_type = FLYING
+ is_flying_animal = TRUE
robust_searching = TRUE
ranged_ignores_vision = TRUE
stat_attack = HARD_CRIT
diff --git a/code/modules/mob/living/simple_animal/hostile/mining_mobs/basilisk.dm b/code/modules/mob/living/simple_animal/hostile/mining_mobs/basilisk.dm
index 2617d977807f9..a7731786fb78a 100644
--- a/code/modules/mob/living/simple_animal/hostile/mining_mobs/basilisk.dm
+++ b/code/modules/mob/living/simple_animal/hostile/mining_mobs/basilisk.dm
@@ -79,7 +79,7 @@
speak_emote = list("telepathically cries")
attack_sound = 'sound/weapons/bladeslice.ogg'
stat_attack = HARD_CRIT
- movement_type = FLYING
+ is_flying_animal = TRUE
robust_searching = 1
crusher_loot = /obj/item/crusher_trophy/watcher_wing
loot = list()
diff --git a/code/modules/mob/living/simple_animal/hostile/mining_mobs/curse_blob.dm b/code/modules/mob/living/simple_animal/hostile/mining_mobs/curse_blob.dm
index a2d214b92fa6d..483fad157364a 100644
--- a/code/modules/mob/living/simple_animal/hostile/mining_mobs/curse_blob.dm
+++ b/code/modules/mob/living/simple_animal/hostile/mining_mobs/curse_blob.dm
@@ -6,7 +6,7 @@
icon_living = "curseblob"
icon_aggro = "curseblob"
mob_biotypes = list(MOB_SPIRIT)
- movement_type = FLYING
+ is_flying_animal = TRUE
move_to_delay = 5
vision_range = 20
aggro_vision_range = 20
diff --git a/code/modules/mob/living/simple_animal/hostile/mining_mobs/elites/herald.dm b/code/modules/mob/living/simple_animal/hostile/mining_mobs/elites/herald.dm
index 1f2e7a54654fb..6f0bdfcf37f7e 100644
--- a/code/modules/mob/living/simple_animal/hostile/mining_mobs/elites/herald.dm
+++ b/code/modules/mob/living/simple_animal/hostile/mining_mobs/elites/herald.dm
@@ -195,7 +195,7 @@
icon_state = "herald_mirror"
deathmessage = "shatters violently!"
deathsound = 'sound/effects/glassbr1.ogg'
- movement_type = FLYING
+ is_flying_animal = TRUE
del_on_death = TRUE
is_mirror = TRUE
var/mob/living/simple_animal/hostile/asteroid/elite/herald/my_master = null
diff --git a/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord.dm b/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord.dm
index f0af72f7c10dc..674fba7ba4458 100644
--- a/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord.dm
+++ b/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord.dm
@@ -72,7 +72,7 @@
speed = 3
maxHealth = 1
health = 1
- movement_type = FLYING
+ is_flying_animal = TRUE
melee_damage = 2
attack_verb_continuous = "slashes"
attack_verb_simple = "slash"
diff --git a/code/modules/mob/living/simple_animal/hostile/retaliate/bat.dm b/code/modules/mob/living/simple_animal/hostile/retaliate/bat.dm
index 2e7f3ee0990d8..73c3c5bc50c8b 100644
--- a/code/modules/mob/living/simple_animal/hostile/retaliate/bat.dm
+++ b/code/modules/mob/living/simple_animal/hostile/retaliate/bat.dm
@@ -27,7 +27,7 @@
environment_smash = ENVIRONMENT_SMASH_NONE
ventcrawler = VENTCRAWLER_ALWAYS
mob_size = MOB_SIZE_TINY
- movement_type = FLYING
+ is_flying_animal = TRUE
speak_emote = list("squeaks")
var/max_co2 = 0 //to be removed once metastation map no longer use those for Sgt Araneus
var/min_oxy = 0
diff --git a/code/modules/mob/living/simple_animal/hostile/retaliate/ghost.dm b/code/modules/mob/living/simple_animal/hostile/retaliate/ghost.dm
index f5149af8826f2..597842e87db3a 100644
--- a/code/modules/mob/living/simple_animal/hostile/retaliate/ghost.dm
+++ b/code/modules/mob/living/simple_animal/hostile/retaliate/ghost.dm
@@ -30,7 +30,7 @@
atmos_requirements = list("min_oxy" = 0, "max_oxy" = 0, "min_tox" = 0, "max_tox" = 0, "min_co2" = 0, "max_co2" = 0, "min_n2" = 0, "max_n2" = 0)
minbodytemp = 0
maxbodytemp = 1500
- movement_type = FLYING
+ is_flying_animal = TRUE
pressure_resistance = 300
gold_core_spawnable = NO_SPAWN //too spooky for science
var/ghost_hair_style
diff --git a/code/modules/mob/living/simple_animal/hostile/space_dragon.dm b/code/modules/mob/living/simple_animal/hostile/space_dragon.dm
index 661717fe758a5..327937ca85e11 100644
--- a/code/modules/mob/living/simple_animal/hostile/space_dragon.dm
+++ b/code/modules/mob/living/simple_animal/hostile/space_dragon.dm
@@ -55,7 +55,7 @@
maxbodytemp = 1500
faction = list("carp")
pressure_resistance = 200
- movement_type = FLYING | FLOATING // fly so you can move without gravity, float so no animation applies
+ is_flying_animal = TRUE | FLOATING // fly so you can move without gravity, float so no animation applies
/// How much endlag using Wing Gust should apply. Each use of wing gust increments this, and it decreases over time.
var/tiredness = 0
/// A multiplier to how much each use of wing gust should add to the tiredness variable. Set to 5 if the current rift is destroyed.
diff --git a/code/modules/mob/living/simple_animal/hostile/syndicate.dm b/code/modules/mob/living/simple_animal/hostile/syndicate.dm
index 19ff51965dd2b..dcc80d8464af9 100644
--- a/code/modules/mob/living/simple_animal/hostile/syndicate.dm
+++ b/code/modules/mob/living/simple_animal/hostile/syndicate.dm
@@ -292,7 +292,7 @@
atmos_requirements = list("min_oxy" = 0, "max_oxy" = 0, "min_tox" = 0, "max_tox" = 0, "min_co2" = 0, "max_co2" = 0, "min_n2" = 0, "max_n2" = 0)
minbodytemp = 0
mob_size = MOB_SIZE_TINY
- movement_type = FLYING
+ is_flying_animal = TRUE
limb_destroyer = TRUE
speak_emote = list("states")
bubble_icon = "syndibot"
diff --git a/code/modules/mob/living/simple_animal/parrot.dm b/code/modules/mob/living/simple_animal/parrot.dm
index fb9041a2c67f3..6b88ae9f0c990 100644
--- a/code/modules/mob/living/simple_animal/parrot.dm
+++ b/code/modules/mob/living/simple_animal/parrot.dm
@@ -67,7 +67,7 @@
friendly_verb_continuous = "grooms"
friendly_verb_simple = "groom"
mob_size = MOB_SIZE_SMALL
- movement_type = FLYING
+ is_flying_animal = TRUE
gold_core_spawnable = FRIENDLY_SPAWN
chat_color = "#A6E398"
mobchatspan = "curator"
diff --git a/code/modules/mob/living/simple_animal/shade.dm b/code/modules/mob/living/simple_animal/shade.dm
index 8bc330969caaf..fc0933635fbed 100644
--- a/code/modules/mob/living/simple_animal/shade.dm
+++ b/code/modules/mob/living/simple_animal/shade.dm
@@ -30,7 +30,7 @@
status_flags = 0
faction = list("cult")
status_flags = CANPUSH
- movement_type = FLYING
+ is_flying_animal = TRUE
loot = list(/obj/item/ectoplasm)
del_on_death = TRUE
initial_language_holder = /datum/language_holder/construct
diff --git a/code/modules/mob/living/simple_animal/simple_animal.dm b/code/modules/mob/living/simple_animal/simple_animal.dm
index 89fab3bd63b31..bc89221e8e418 100644
--- a/code/modules/mob/living/simple_animal/simple_animal.dm
+++ b/code/modules/mob/living/simple_animal/simple_animal.dm
@@ -99,6 +99,9 @@
var/dextrous = FALSE //If the creature has, and can use, hands
var/dextrous_hud_type = /datum/hud/dextrous
+ ///If the creature should have an innate TRAIT_MOVE_FLYING trait added on init that is also toggled off/on on death/revival.
+ var/is_flying_animal = FALSE
+
var/AIStatus = AI_ON //The Status of our AI, can be changed via toggle_ai(togglestatus) to AI_ON (On, usual processing), AI_IDLE (Will not process, but will return to AI_ON if an enemy comes near), AI_OFF (Off, Not processing ever), AI_Z_OFF (Temporarily off due to nonpresence of players)
var/can_have_ai = TRUE //once we have become sentient, we can never go back
@@ -141,6 +144,8 @@
. = ..()
if(dextrous)
AddComponent(/datum/component/personal_crafting)
+ if(is_flying_animal)
+ ADD_TRAIT(src, TRAIT_MOVE_FLYING, ROUNDSTART_TRAIT)
if(discovery_points)
AddComponent(/datum/component/discoverable, discovery_points, get_discover_id = CALLBACK(src, PROC_REF(get_discovery_id)))
@@ -159,6 +164,16 @@
return ..()
+/mob/living/simple_animal/vv_edit_var(var_name, var_value)
+ . = ..()
+ switch(var_name)
+ if(NAMEOF(src, is_flying_animal))
+ if(stat != DEAD)
+ if(!is_flying_animal)
+ REMOVE_TRAIT(src, TRAIT_MOVE_FLYING, ROUNDSTART_TRAIT)
+ else
+ ADD_TRAIT(src, TRAIT_MOVE_FLYING, ROUNDSTART_TRAIT)
+
/mob/living/simple_animal/examine(mob/user)
. = ..()
if(stat == DEAD)
@@ -379,7 +394,6 @@
new i(loc)
/mob/living/simple_animal/death(gibbed)
- movement_type &= ~FLYING
if(nest)
nest.spawned_mobs -= src
nest = null
@@ -396,6 +410,8 @@
del_on_death = FALSE
qdel(src)
else
+ if(is_flying_animal)
+ REMOVE_TRAIT(src, TRAIT_MOVE_FLYING, ROUNDSTART_TRAIT)
health = 0
icon_state = icon_dead
if(flip_on_death)
@@ -437,7 +453,8 @@
icon = initial(icon)
icon_state = icon_living
density = initial(density)
- setMovetype(initial(movement_type))
+ if(is_flying_animal)
+ ADD_TRAIT(src, TRAIT_MOVE_FLYING, ROUNDSTART_TRAIT)
/mob/living/simple_animal/proc/make_babies() // <3 <3 <3
set waitfor = 0
diff --git a/code/modules/mob/living/ventcrawling.dm b/code/modules/mob/living/ventcrawling.dm
index 0fd5f65ae1d0e..34a30f59b160a 100644
--- a/code/modules/mob/living/ventcrawling.dm
+++ b/code/modules/mob/living/ventcrawling.dm
@@ -102,7 +102,7 @@ GLOBAL_LIST_INIT(ventcrawl_machinery, typecacheof(list(
A.pipe_vision_img.plane = ABOVE_HUD_PLANE
client.images += A.pipe_vision_img
pipes_shown += A.pipe_vision_img
- setMovetype(movement_type | VENTCRAWLING)
+ ADD_TRAIT(src, TRAIT_MOVE_VENTCRAWLING, VENTCRAWLING_TRAIT)
/mob/living/proc/remove_ventcrawl()
@@ -110,7 +110,7 @@ GLOBAL_LIST_INIT(ventcrawl_machinery, typecacheof(list(
for(var/image/current_image in pipes_shown)
client.images -= current_image
pipes_shown.len = 0
- setMovetype(movement_type & ~VENTCRAWLING)
+ REMOVE_TRAIT(src, TRAIT_MOVE_VENTCRAWLING, VENTCRAWLING_TRAIT)
diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm
index db43fd25105f0..b272ad7106b3e 100644
--- a/code/modules/mob/mob.dm
+++ b/code/modules/mob/mob.dm
@@ -1249,12 +1249,6 @@
/mob/proc/set_nutrition(var/change) //Seriously fuck you oldcoders.
nutrition = max(0, change)
-/mob/setMovetype(newval) //Set the movement type of the mob and update it's movespeed
- . = ..()
- if(isnull(.))
- return
- update_movespeed(FALSE)
-
/mob/proc/update_equipment_speed_mods()
var/speedies = equipped_speed_mods()
if(!speedies)
diff --git a/code/modules/mob/mob_helpers.dm b/code/modules/mob/mob_helpers.dm
index f9c46bdedf7c4..209d811c6726c 100644
--- a/code/modules/mob/mob_helpers.dm
+++ b/code/modules/mob/mob_helpers.dm
@@ -520,13 +520,6 @@
message_admins("No ghosts were willing to take control of [ADMIN_LOOKUPFLW(M)])")
return FALSE
-///Is the mob a flying mob
-/mob/proc/is_flying(mob/M = src)
- if(M.movement_type & FLYING)
- return 1
- else
- return 0
-
///Clicks a random nearby mob with the source from this mob
/mob/proc/click_random_mob()
var/list/nearby_mobs = list()
diff --git a/code/modules/surgery/organs/augments_chest.dm b/code/modules/surgery/organs/augments_chest.dm
index eca93f0723ede..5edb0bbf147ad 100644
--- a/code/modules/surgery/organs/augments_chest.dm
+++ b/code/modules/surgery/organs/augments_chest.dm
@@ -182,7 +182,7 @@
var/turf/T = get_turf(owner)
if(!T) // No more runtimes from being stuck in nullspace.
return 0
- if(owner.is_flying() && owner.has_gravity())
+ if((owner.movement_type & (FLOATING|FLYING)) && owner.has_gravity())
return 0
// Priority 1: use air from environment.
var/datum/gas_mixture/environment = T.return_air()
From 71d66cba61c9db9ea95e8edab22b82df6052928d Mon Sep 17 00:00:00 2001
From: ss13-beebot <56381746+ss13-beebot@users.noreply.github.com>
Date: Sun, 25 Aug 2024 13:47:29 -0500
Subject: [PATCH 005/106] Automatic changelog generation for PR #11361 [ci
skip]
---
html/changelogs/AutoChangeLog-pr-11361.yml | 6 ++++++
1 file changed, 6 insertions(+)
create mode 100644 html/changelogs/AutoChangeLog-pr-11361.yml
diff --git a/html/changelogs/AutoChangeLog-pr-11361.yml b/html/changelogs/AutoChangeLog-pr-11361.yml
new file mode 100644
index 0000000000000..9cb0261a33f00
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-11361.yml
@@ -0,0 +1,6 @@
+author: Ghommie, XeonMations
+delete-after: true
+changes:
+ - refactor: Refactored movetypes.
+ - bugfix: Jitteriness, melee attack animations and resting/standing up should no
+ longer momentarily disable the floating movetype
From 905296202fc5a0e104507270253c671846fc13f4 Mon Sep 17 00:00:00 2001
From: ss13-beebot <56381746+ss13-beebot@users.noreply.github.com>
Date: Sun, 25 Aug 2024 19:03:36 +0000
Subject: [PATCH 006/106] Automatic changelog compile [ci skip]
---
html/changelog.html | 5 +++++
html/changelogs/.all_changelog.yml | 4 ++++
html/changelogs/AutoChangeLog-pr-11361.yml | 6 ------
3 files changed, 9 insertions(+), 6 deletions(-)
delete mode 100644 html/changelogs/AutoChangeLog-pr-11361.yml
diff --git a/html/changelog.html b/html/changelog.html
index 5397b500996c5..316be22211334 100644
--- a/html/changelog.html
+++ b/html/changelog.html
@@ -57,6 +57,11 @@
25 August 2024
+
Ghommie, XeonMations updated:
+
+ - Refactored movetypes.
+ - Jitteriness, melee attack animations and resting/standing up should no longer momentarily disable the floating movetype
+
HowToLoLu updated:
- Eminences no longer attempt to update a non-existent health hud
diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml
index 2d760774ec856..90526fe5c1495 100644
--- a/html/changelogs/.all_changelog.yml
+++ b/html/changelogs/.all_changelog.yml
@@ -43987,6 +43987,10 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py.
XeonMations:
- bugfix: Fixed changeling antag info panel not showing their objectives.
2024-08-25:
+ Ghommie, XeonMations:
+ - refactor: Refactored movetypes.
+ - bugfix: Jitteriness, melee attack animations and resting/standing up should no
+ longer momentarily disable the floating movetype
HowToLoLu:
- bugfix: Eminences no longer attempt to update a non-existent health hud
- code_imp: Changed a few stack traces in hud code to crashes for less obfuscated
diff --git a/html/changelogs/AutoChangeLog-pr-11361.yml b/html/changelogs/AutoChangeLog-pr-11361.yml
deleted file mode 100644
index 9cb0261a33f00..0000000000000
--- a/html/changelogs/AutoChangeLog-pr-11361.yml
+++ /dev/null
@@ -1,6 +0,0 @@
-author: Ghommie, XeonMations
-delete-after: true
-changes:
- - refactor: Refactored movetypes.
- - bugfix: Jitteriness, melee attack animations and resting/standing up should no
- longer momentarily disable the floating movetype
From b0e9330d6dba38df4f0d0e92b81b95ad359cc5d8 Mon Sep 17 00:00:00 2001
From: XeonMations <62395746+XeonMations@users.noreply.github.com>
Date: Mon, 26 Aug 2024 09:25:57 +0300
Subject: [PATCH 007/106] Movement Refactor fixes (#11379)
* wew
* did stuff
---
code/__DEFINES/traits.dm | 2 ++
code/datums/components/orbiter.dm | 2 ++
code/modules/antagonists/blob/blob_mobs.dm | 1 +
.../modules/antagonists/clock_cult/mobs/eminence.dm | 1 +
code/modules/holoparasite/_holoparasite.dm | 1 +
code/modules/mob/dead/observer/observer.dm | 5 ++---
code/modules/mob/living/simple_animal/constructs.dm | 1 +
.../mob/living/simple_animal/hostile/bees.dm | 1 +
.../mob/living/simple_animal/hostile/carp.dm | 1 +
.../simple_animal/hostile/megafauna/megafauna.dm | 1 +
.../simple_animal/hostile/mining_mobs/curse_blob.dm | 1 +
.../hostile/mining_mobs/elites/herald.dm | 1 +
.../simple_animal/hostile/mining_mobs/hivelord.dm | 1 +
.../living/simple_animal/hostile/retaliate/bat.dm | 1 +
.../living/simple_animal/hostile/space_dragon.dm | 3 ++-
.../mob/living/simple_animal/hostile/syndicate.dm | 1 +
.../mob/living/simple_animal/simple_animal.dm | 13 +++++++++++++
17 files changed, 33 insertions(+), 4 deletions(-)
diff --git a/code/__DEFINES/traits.dm b/code/__DEFINES/traits.dm
index 338abf737e3ab..d207836b91066 100644
--- a/code/__DEFINES/traits.dm
+++ b/code/__DEFINES/traits.dm
@@ -532,6 +532,8 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai
#define TRAIT_MOVE_PHASING "move_phasing"
/// Disables the floating animation. See above.
#define TRAIT_NO_FLOATING_ANIM "no-floating-animation"
+/// Trait given to an atom/movable when they orbit something.
+#define ORBITING_TRAIT "orbiting"
#define VENTCRAWLING_TRAIT "ventcrawling"
#define SPECIES_FLIGHT_TRAIT "species-flight"
diff --git a/code/datums/components/orbiter.dm b/code/datums/components/orbiter.dm
index 8186365f5cd89..3db152283651f 100644
--- a/code/datums/components/orbiter.dm
+++ b/code/datums/components/orbiter.dm
@@ -65,6 +65,7 @@
orbiter.orbiting.end_orbit(orbiter)
current_orbiters[orbiter] = TRUE
orbiter.orbiting = src
+ ADD_TRAIT(orbiter, TRAIT_NO_FLOATING_ANIM, ORBITING_TRAIT)
RegisterSignal(orbiter, COMSIG_MOVABLE_MOVED, PROC_REF(orbiter_move_react))
SEND_SIGNAL(parent, COMSIG_ATOM_ORBIT_BEGIN, orbiter)
var/matrix/initial_transform = matrix(orbiter.transform)
@@ -99,6 +100,7 @@
current_orbiters -= orbiter
orbiter.stop_orbit(src)
orbiter.orbiting = null
+ REMOVE_TRAIT(orbiter, TRAIT_NO_FLOATING_ANIM, ORBITING_TRAIT)
if(!refreshing && !length(current_orbiters) && !QDELING(src))
qdel(src)
diff --git a/code/modules/antagonists/blob/blob_mobs.dm b/code/modules/antagonists/blob/blob_mobs.dm
index 7007f73a83b67..790157494eaf3 100644
--- a/code/modules/antagonists/blob/blob_mobs.dm
+++ b/code/modules/antagonists/blob/blob_mobs.dm
@@ -108,6 +108,7 @@
attack_verb_simple = "hit"
attack_sound = 'sound/weapons/genhit1.ogg'
is_flying_animal = TRUE
+ no_flying_animation = TRUE
del_on_death = TRUE
deathmessage = "explodes into a cloud of gas!"
gold_core_spawnable = HOSTILE_SPAWN
diff --git a/code/modules/antagonists/clock_cult/mobs/eminence.dm b/code/modules/antagonists/clock_cult/mobs/eminence.dm
index 33ee61b1214e8..276e4f2495c3f 100644
--- a/code/modules/antagonists/clock_cult/mobs/eminence.dm
+++ b/code/modules/antagonists/clock_cult/mobs/eminence.dm
@@ -25,6 +25,7 @@
wander = FALSE
density = FALSE
is_flying_animal = TRUE
+ no_flying_animation = TRUE
move_resist = MOVE_FORCE_OVERPOWERING
mob_size = MOB_SIZE_TINY
pass_flags = PASSTABLE | PASSGRILLE | PASSMOB
diff --git a/code/modules/holoparasite/_holoparasite.dm b/code/modules/holoparasite/_holoparasite.dm
index 1872d2191de10..e7b0e0cf7ee13 100644
--- a/code/modules/holoparasite/_holoparasite.dm
+++ b/code/modules/holoparasite/_holoparasite.dm
@@ -26,6 +26,7 @@ GLOBAL_LIST_EMPTY_TYPED(holoparasites, /mob/living/simple_animal/hostile/holopar
a_intent = INTENT_HARM
stop_automated_movement = TRUE
is_flying_animal = TRUE // Immunity to chasms and landmines, etc.
+ no_flying_animation = TRUE
attack_sound = "punch"
atmos_requirements = list("min_oxy" = 0, "max_oxy" = 0, "min_tox" = 0, "max_tox" = 0, "min_co2" = 0, "max_co2" = 0, "min_n2" = 0, "max_n2" = 0)
minbodytemp = 0
diff --git a/code/modules/mob/dead/observer/observer.dm b/code/modules/mob/dead/observer/observer.dm
index 731151f1fd56a..713ff44cf5ad7 100644
--- a/code/modules/mob/dead/observer/observer.dm
+++ b/code/modules/mob/dead/observer/observer.dm
@@ -16,6 +16,7 @@ GLOBAL_VAR_INIT(observer_default_invisibility, INVISIBILITY_SPIRIT)
lighting_alpha = LIGHTING_PLANE_ALPHA_MOSTLY_INVISIBLE
invisibility = INVISIBILITY_SPIRIT
hud_type = /datum/hud/ghost
+ movement_type = FLYING | FLOATING
light_system = MOVABLE_LIGHT
light_range = 1
light_power = 2
@@ -452,7 +453,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp
// This is the ghost's follow verb with an argument
/mob/dead/observer/check_orbitable(atom/movable/target_original)
var/atom/movable/target = target_original.get_orbitable()
- if (!istype(target))
+ if (!istype(target) || target_original.orbit_datum?.parent == target_original)
return
var/icon/I = icon(target.icon,target.icon_state,target.dir)
@@ -478,14 +479,12 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp
/mob/dead/observer/orbit()
setDir(2)//reset dir so the right directional sprites show up
- REMOVE_TRAIT(src, TRAIT_MOVE_FLOATING, "ghost")
return ..()
/mob/dead/observer/stop_orbit(datum/component/orbiter/orbits)
. = ..()
//restart our floating animation after orbit is done.
pixel_y = base_pixel_y
- ADD_TRAIT(src, TRAIT_MOVE_FLOATING, "ghost")
/mob/dead/observer/verb/jumptomob() //Moves the ghost instead of just changing the ghosts's eye -Nodrak
set category = "Ghost"
diff --git a/code/modules/mob/living/simple_animal/constructs.dm b/code/modules/mob/living/simple_animal/constructs.dm
index fff6e77656b29..5a2ac317faab5 100644
--- a/code/modules/mob/living/simple_animal/constructs.dm
+++ b/code/modules/mob/living/simple_animal/constructs.dm
@@ -28,6 +28,7 @@
healable = 0
faction = list("cult")
is_flying_animal = TRUE
+ no_flying_animation = TRUE
pressure_resistance = 100
unique_name = 1
AIStatus = AI_OFF //normal constructs don't have AI
diff --git a/code/modules/mob/living/simple_animal/hostile/bees.dm b/code/modules/mob/living/simple_animal/hostile/bees.dm
index 57fecbb17cdd1..f80c42a3a5b47 100644
--- a/code/modules/mob/living/simple_animal/hostile/bees.dm
+++ b/code/modules/mob/living/simple_animal/hostile/bees.dm
@@ -45,6 +45,7 @@
mob_size = MOB_SIZE_TINY
mob_biotypes = list(MOB_ORGANIC, MOB_BUG)
is_flying_animal = TRUE
+ no_flying_animation = TRUE
gold_core_spawnable = HOSTILE_SPAWN
search_objects = 1 //have to find those plant trays!
ventcrawler = VENTCRAWLER_ALWAYS
diff --git a/code/modules/mob/living/simple_animal/hostile/carp.dm b/code/modules/mob/living/simple_animal/hostile/carp.dm
index b6679739954fb..028284cc89c73 100644
--- a/code/modules/mob/living/simple_animal/hostile/carp.dm
+++ b/code/modules/mob/living/simple_animal/hostile/carp.dm
@@ -39,6 +39,7 @@
maxbodytemp = 1500
faction = list("carp")
is_flying_animal = TRUE
+ no_flying_animation = TRUE
pressure_resistance = 200
gold_core_spawnable = HOSTILE_SPAWN
diff --git a/code/modules/mob/living/simple_animal/hostile/megafauna/megafauna.dm b/code/modules/mob/living/simple_animal/hostile/megafauna/megafauna.dm
index 8cfeb02215ed7..2be5fe3585f48 100644
--- a/code/modules/mob/living/simple_animal/hostile/megafauna/megafauna.dm
+++ b/code/modules/mob/living/simple_animal/hostile/megafauna/megafauna.dm
@@ -13,6 +13,7 @@
faction = list("mining", "boss")
weather_immunities = list("lava","ash")
is_flying_animal = TRUE
+ no_flying_animation = TRUE
robust_searching = TRUE
ranged_ignores_vision = TRUE
stat_attack = HARD_CRIT
diff --git a/code/modules/mob/living/simple_animal/hostile/mining_mobs/curse_blob.dm b/code/modules/mob/living/simple_animal/hostile/mining_mobs/curse_blob.dm
index 483fad157364a..7539e563cb096 100644
--- a/code/modules/mob/living/simple_animal/hostile/mining_mobs/curse_blob.dm
+++ b/code/modules/mob/living/simple_animal/hostile/mining_mobs/curse_blob.dm
@@ -7,6 +7,7 @@
icon_aggro = "curseblob"
mob_biotypes = list(MOB_SPIRIT)
is_flying_animal = TRUE
+ no_flying_animation = TRUE
move_to_delay = 5
vision_range = 20
aggro_vision_range = 20
diff --git a/code/modules/mob/living/simple_animal/hostile/mining_mobs/elites/herald.dm b/code/modules/mob/living/simple_animal/hostile/mining_mobs/elites/herald.dm
index 6f0bdfcf37f7e..a04f02f744f30 100644
--- a/code/modules/mob/living/simple_animal/hostile/mining_mobs/elites/herald.dm
+++ b/code/modules/mob/living/simple_animal/hostile/mining_mobs/elites/herald.dm
@@ -196,6 +196,7 @@
deathmessage = "shatters violently!"
deathsound = 'sound/effects/glassbr1.ogg'
is_flying_animal = TRUE
+ no_flying_animation = TRUE
del_on_death = TRUE
is_mirror = TRUE
var/mob/living/simple_animal/hostile/asteroid/elite/herald/my_master = null
diff --git a/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord.dm b/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord.dm
index 674fba7ba4458..a226dac261e75 100644
--- a/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord.dm
+++ b/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord.dm
@@ -73,6 +73,7 @@
maxHealth = 1
health = 1
is_flying_animal = TRUE
+ no_flying_animation = TRUE
melee_damage = 2
attack_verb_continuous = "slashes"
attack_verb_simple = "slash"
diff --git a/code/modules/mob/living/simple_animal/hostile/retaliate/bat.dm b/code/modules/mob/living/simple_animal/hostile/retaliate/bat.dm
index 73c3c5bc50c8b..eb9b4b54450d8 100644
--- a/code/modules/mob/living/simple_animal/hostile/retaliate/bat.dm
+++ b/code/modules/mob/living/simple_animal/hostile/retaliate/bat.dm
@@ -28,6 +28,7 @@
ventcrawler = VENTCRAWLER_ALWAYS
mob_size = MOB_SIZE_TINY
is_flying_animal = TRUE
+ no_flying_animation = TRUE
speak_emote = list("squeaks")
var/max_co2 = 0 //to be removed once metastation map no longer use those for Sgt Araneus
var/min_oxy = 0
diff --git a/code/modules/mob/living/simple_animal/hostile/space_dragon.dm b/code/modules/mob/living/simple_animal/hostile/space_dragon.dm
index 327937ca85e11..0f8acbb22532b 100644
--- a/code/modules/mob/living/simple_animal/hostile/space_dragon.dm
+++ b/code/modules/mob/living/simple_animal/hostile/space_dragon.dm
@@ -55,7 +55,8 @@
maxbodytemp = 1500
faction = list("carp")
pressure_resistance = 200
- is_flying_animal = TRUE | FLOATING // fly so you can move without gravity, float so no animation applies
+ is_flying_animal = TRUE
+ no_flying_animation = TRUE
/// How much endlag using Wing Gust should apply. Each use of wing gust increments this, and it decreases over time.
var/tiredness = 0
/// A multiplier to how much each use of wing gust should add to the tiredness variable. Set to 5 if the current rift is destroyed.
diff --git a/code/modules/mob/living/simple_animal/hostile/syndicate.dm b/code/modules/mob/living/simple_animal/hostile/syndicate.dm
index dcc80d8464af9..ee81f657b0bb3 100644
--- a/code/modules/mob/living/simple_animal/hostile/syndicate.dm
+++ b/code/modules/mob/living/simple_animal/hostile/syndicate.dm
@@ -293,6 +293,7 @@
minbodytemp = 0
mob_size = MOB_SIZE_TINY
is_flying_animal = TRUE
+ no_flying_animation = TRUE
limb_destroyer = TRUE
speak_emote = list("states")
bubble_icon = "syndibot"
diff --git a/code/modules/mob/living/simple_animal/simple_animal.dm b/code/modules/mob/living/simple_animal/simple_animal.dm
index bc89221e8e418..22288e02d679e 100644
--- a/code/modules/mob/living/simple_animal/simple_animal.dm
+++ b/code/modules/mob/living/simple_animal/simple_animal.dm
@@ -101,6 +101,8 @@
///If the creature should have an innate TRAIT_MOVE_FLYING trait added on init that is also toggled off/on on death/revival.
var/is_flying_animal = FALSE
+ //If the creature should play its bobbing up and down animation.
+ var/no_flying_animation
var/AIStatus = AI_ON //The Status of our AI, can be changed via toggle_ai(togglestatus) to AI_ON (On, usual processing), AI_IDLE (Will not process, but will return to AI_ON if an enemy comes near), AI_OFF (Off, Not processing ever), AI_Z_OFF (Temporarily off due to nonpresence of players)
var/can_have_ai = TRUE //once we have become sentient, we can never go back
@@ -142,6 +144,8 @@
/mob/living/simple_animal/ComponentInitialize()
. = ..()
+ if(no_flying_animation)
+ ADD_TRAIT(src, TRAIT_NO_FLOATING_ANIM, ROUNDSTART_TRAIT)
if(dextrous)
AddComponent(/datum/component/personal_crafting)
if(is_flying_animal)
@@ -173,6 +177,11 @@
REMOVE_TRAIT(src, TRAIT_MOVE_FLYING, ROUNDSTART_TRAIT)
else
ADD_TRAIT(src, TRAIT_MOVE_FLYING, ROUNDSTART_TRAIT)
+ if(NAMEOF(src, no_flying_animation))
+ if(!no_flying_animation)
+ REMOVE_TRAIT(src, TRAIT_NO_FLOATING_ANIM, ROUNDSTART_TRAIT)
+ else
+ ADD_TRAIT(src, TRAIT_NO_FLOATING_ANIM, ROUNDSTART_TRAIT)
/mob/living/simple_animal/examine(mob/user)
. = ..()
@@ -412,6 +421,8 @@
else
if(is_flying_animal)
REMOVE_TRAIT(src, TRAIT_MOVE_FLYING, ROUNDSTART_TRAIT)
+ if(no_flying_animation)
+ REMOVE_TRAIT(src, TRAIT_NO_FLOATING_ANIM, ROUNDSTART_TRAIT)
health = 0
icon_state = icon_dead
if(flip_on_death)
@@ -455,6 +466,8 @@
density = initial(density)
if(is_flying_animal)
ADD_TRAIT(src, TRAIT_MOVE_FLYING, ROUNDSTART_TRAIT)
+ if(no_flying_animation)
+ ADD_TRAIT(src, TRAIT_NO_FLOATING_ANIM, ROUNDSTART_TRAIT)
/mob/living/simple_animal/proc/make_babies() // <3 <3 <3
set waitfor = 0
From a2f6079200f831880b8458f6971265135cd347e0 Mon Sep 17 00:00:00 2001
From: ss13-beebot <56381746+ss13-beebot@users.noreply.github.com>
Date: Mon, 26 Aug 2024 01:35:33 -0500
Subject: [PATCH 008/106] Automatic changelog generation for PR #11379 [ci
skip]
---
html/changelogs/AutoChangeLog-pr-11379.yml | 5 +++++
1 file changed, 5 insertions(+)
create mode 100644 html/changelogs/AutoChangeLog-pr-11379.yml
diff --git a/html/changelogs/AutoChangeLog-pr-11379.yml b/html/changelogs/AutoChangeLog-pr-11379.yml
new file mode 100644
index 0000000000000..8553c5bab7f55
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-11379.yml
@@ -0,0 +1,5 @@
+author: XeonMations
+delete-after: true
+changes:
+ - bugfix: Fixed a few mobs having floating animations.
+ - bugfix: Ghosts can no longer become stuck in the orbit animation.
From 625b04b1ac9f0ecd0ba278c64b7f9c0cc8e8bdd8 Mon Sep 17 00:00:00 2001
From: ss13-beebot <56381746+ss13-beebot@users.noreply.github.com>
Date: Mon, 26 Aug 2024 07:03:40 +0000
Subject: [PATCH 009/106] Automatic changelog compile [ci skip]
---
html/changelog.html | 7 +++++++
html/changelogs/.all_changelog.yml | 4 ++++
html/changelogs/AutoChangeLog-pr-11379.yml | 5 -----
3 files changed, 11 insertions(+), 5 deletions(-)
delete mode 100644 html/changelogs/AutoChangeLog-pr-11379.yml
diff --git a/html/changelog.html b/html/changelog.html
index 316be22211334..32c74b2c044f9 100644
--- a/html/changelog.html
+++ b/html/changelog.html
@@ -56,6 +56,13 @@
-->
+
26 August 2024
+
XeonMations updated:
+
+ - Fixed a few mobs having floating animations.
+ - Ghosts can no longer become stuck in the orbit animation.
+
+
25 August 2024
Ghommie, XeonMations updated:
diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml
index 90526fe5c1495..c8592ac6f633b 100644
--- a/html/changelogs/.all_changelog.yml
+++ b/html/changelogs/.all_changelog.yml
@@ -44018,3 +44018,7 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py.
- bugfix: fixes Silo link message
rkz, kapu:
- bugfix: fixes VV bodypart editor
+2024-08-26:
+ XeonMations:
+ - bugfix: Fixed a few mobs having floating animations.
+ - bugfix: Ghosts can no longer become stuck in the orbit animation.
diff --git a/html/changelogs/AutoChangeLog-pr-11379.yml b/html/changelogs/AutoChangeLog-pr-11379.yml
deleted file mode 100644
index 8553c5bab7f55..0000000000000
--- a/html/changelogs/AutoChangeLog-pr-11379.yml
+++ /dev/null
@@ -1,5 +0,0 @@
-author: XeonMations
-delete-after: true
-changes:
- - bugfix: Fixed a few mobs having floating animations.
- - bugfix: Ghosts can no longer become stuck in the orbit animation.
From d1c6236fb6a10f503bec1e94d4763a988276558d Mon Sep 17 00:00:00 2001
From: XeonMations <62395746+XeonMations@users.noreply.github.com>
Date: Tue, 27 Aug 2024 02:01:44 +0300
Subject: [PATCH 010/106] Fuck ups of the year. (#11385)
---
code/modules/mob/dead/observer/observer.dm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/code/modules/mob/dead/observer/observer.dm b/code/modules/mob/dead/observer/observer.dm
index 713ff44cf5ad7..c970ae658ff1f 100644
--- a/code/modules/mob/dead/observer/observer.dm
+++ b/code/modules/mob/dead/observer/observer.dm
@@ -453,7 +453,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp
// This is the ghost's follow verb with an argument
/mob/dead/observer/check_orbitable(atom/movable/target_original)
var/atom/movable/target = target_original.get_orbitable()
- if (!istype(target) || target_original.orbit_datum?.parent == target_original)
+ if (!istype(target) || orbiting?.parent == target_original)
return
var/icon/I = icon(target.icon,target.icon_state,target.dir)
From ff2162b9e0cfce9b154d7bbb171ebf7ee3f554a7 Mon Sep 17 00:00:00 2001
From: ss13-beebot <56381746+ss13-beebot@users.noreply.github.com>
Date: Mon, 26 Aug 2024 18:11:15 -0500
Subject: [PATCH 011/106] Automatic changelog generation for PR #11385 [ci
skip]
---
html/changelogs/AutoChangeLog-pr-11385.yml | 4 ++++
1 file changed, 4 insertions(+)
create mode 100644 html/changelogs/AutoChangeLog-pr-11385.yml
diff --git a/html/changelogs/AutoChangeLog-pr-11385.yml b/html/changelogs/AutoChangeLog-pr-11385.yml
new file mode 100644
index 0000000000000..a6975354010ba
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-11385.yml
@@ -0,0 +1,4 @@
+author: XeonMations
+delete-after: true
+changes:
+ - bugfix: Ghosts can now orbit the same person another ghost is orbiting.
From 8d8f3f8eae4fd759ca8f55c0bb05560b87ba5476 Mon Sep 17 00:00:00 2001
From: ss13-beebot <56381746+ss13-beebot@users.noreply.github.com>
Date: Tue, 27 Aug 2024 00:12:25 +0000
Subject: [PATCH 012/106] Automatic changelog compile [ci skip]
---
html/changelog.html | 48 +++-------------------
html/changelogs/.all_changelog.yml | 3 ++
html/changelogs/AutoChangeLog-pr-11385.yml | 4 --
3 files changed, 9 insertions(+), 46 deletions(-)
delete mode 100644 html/changelogs/AutoChangeLog-pr-11385.yml
diff --git a/html/changelog.html b/html/changelog.html
index 32c74b2c044f9..bbacd6316ef34 100644
--- a/html/changelog.html
+++ b/html/changelog.html
@@ -56,6 +56,12 @@
-->
+
27 August 2024
+
XeonMations updated:
+
+ - Ghosts can now orbit the same person another ghost is orbiting.
+
+
26 August 2024
XeonMations updated:
@@ -870,48 +876,6 @@ XeonMations updated:
- Fixed holy aura not being removed after holy water is removed from the person's symptom
-
- 25 June 2024
- EvilDragonfiend updated:
-
- - Language menu TGUI now shows language icon, and better readable description layout
- - Slightly improved language menu code
-
- Gilgaxx updated:
-
- - Echostation: replaced disposals' delivery chute (input) with a disposals outlet (output)
- - Echostation: Inverted the airmixer to distro so it's now 21/79 o2/n2
-
- HowToLoLu updated:
-
- - Tinfoil envirosuit helmets act as internals now and no longer block syringes, just like other envirosuit helmets
-
- Markus Larsson updated:
-
- - Added almost 20 new maintenance rooms.
- - Added a chance for a ripley to spawn.
- - Added a sniffer to the Robotics maintenance room.
-
- PowerfulBacon updated:
-
- - Lowers damage of cult sword from 30 to 23. Maximum damage from sharpening reduced from 40 to 30.
- - Cult stun now EMPs the target's headset.
- - Holy protection is now visible to anyone with holy protection themselves, and is also visible to cultists.
- - Flagellant's have postiive armour rather than negative armour, making them somewhat viable.
- - Holy protection will now allow you to bypass the mirror shield's blocking, and will result in taking reduced damage from cult swords.
- - EMPs will no longer disable all your channels on radio headsets, instead temporarilly disabling them for 20 seconds similar to other EMP effects.
-
- XeonMations updated:
-
- - Renewed Cyborg software to correctly deal with laser pointer spam.
- - Laser pointers now stunlock a cyborg for 5 seconds instead of the previous 1-2 seconds, now consider cyborg software before flashing a borg.
-
- rkz, Fikou, twaticus, Pepsiman0, Twaticus, Arkatos1 updated:
-
- - expanded Tile reskinning to all iron tiles. Tile reskinning now controlled via radial menu when pressing 'Z' while holding the tilestack.
- - rad edits
- - adds several new iron tile types, at the moment exclusively in the tile reskinning menu
-
GoonStation 13 Development Team
diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml
index c8592ac6f633b..8dc5304988c33 100644
--- a/html/changelogs/.all_changelog.yml
+++ b/html/changelogs/.all_changelog.yml
@@ -44022,3 +44022,6 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py.
XeonMations:
- bugfix: Fixed a few mobs having floating animations.
- bugfix: Ghosts can no longer become stuck in the orbit animation.
+2024-08-27:
+ XeonMations:
+ - bugfix: Ghosts can now orbit the same person another ghost is orbiting.
diff --git a/html/changelogs/AutoChangeLog-pr-11385.yml b/html/changelogs/AutoChangeLog-pr-11385.yml
deleted file mode 100644
index a6975354010ba..0000000000000
--- a/html/changelogs/AutoChangeLog-pr-11385.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-author: XeonMations
-delete-after: true
-changes:
- - bugfix: Ghosts can now orbit the same person another ghost is orbiting.
From ceee177c04241c34ddced7884f977e485d30b5a4 Mon Sep 17 00:00:00 2001
From: PowerfulBacon <26465327+PowerfulBacon@users.noreply.github.com>
Date: Tue, 27 Aug 2024 11:35:01 +0100
Subject: [PATCH 013/106] Boxstation mapping fixes #11364 (#11368)
* Fixes 89,129
* Update BoxStation.dmm
* Update BoxStation.dmm
* Camera fixes
* Adds in an unsorted loop to the boxstation package loop
* Fixes direction of the sorting pipe
* Fixes boxstation disposal issues
* Fixes cameras
* Fixes multiple objects stacked on top of each other
* Fixes some lights placed on windows
* Fixes all boxstation light issues
* Update BoxStation.dmm
* Fixes some lights placed on windows
* Fixes all boxstation light issues
---
_maps/map_files/BoxStation/BoxStation.dmm | 608 +++++++++++-------
.../exploration/exploration_shuttle.dmm | 4 +-
2 files changed, 377 insertions(+), 235 deletions(-)
diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm
index b42aad1f36026..7a73b04e23595 100644
--- a/_maps/map_files/BoxStation/BoxStation.dmm
+++ b/_maps/map_files/BoxStation/BoxStation.dmm
@@ -4326,8 +4326,8 @@
/turf/open/floor/iron/freezer,
/area/crew_quarters/toilet/locker)
"aYf" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/disposalpipe/junction/flip{
+ dir = 8
},
/turf/open/floor/plating,
/area/maintenance/port)
@@ -4847,6 +4847,9 @@
/obj/item/clothing/head/soft/rainbow,
/obj/item/clothing/shoes/sneakers/rainbow,
/obj/item/clothing/under/color/rainbow,
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
/turf/open/floor/plating,
/area/maintenance/port)
"bee" = (
@@ -4926,6 +4929,24 @@
/obj/machinery/light,
/turf/open/floor/iron,
/area/hallway/primary/starboard)
+"beF" = (
+/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"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
"beM" = (
/obj/structure/chair{
dir = 1
@@ -5182,7 +5203,9 @@
/turf/open/floor/iron,
/area/quartermaster/office)
"bgB" = (
-/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/sorting/unsorted/flip{
+ dir = 1
+ },
/turf/closed/wall,
/area/quartermaster/sorting)
"bgF" = (
@@ -5218,9 +5241,6 @@
/area/engine/gravity_generator)
"bgZ" = (
/obj/machinery/stasis,
-/obj/machinery/light{
- dir = 1
- },
/obj/effect/turf_decal/tile/blue{
dir = 4
},
@@ -5231,6 +5251,9 @@
/obj/effect/turf_decal/tile/blue{
dir = 4
},
+/obj/machinery/light{
+ dir = 1
+ },
/turf/open/floor/iron/white,
/area/medical/sleeper)
"bhh" = (
@@ -6517,12 +6540,10 @@
"bqR" = (
/obj/structure/table/glass,
/obj/item/storage/backpack/duffelbag/med/surgery,
-/obj/machinery/light{
- dir = 8
- },
/obj/effect/turf_decal/tile/blue{
dir = 8
},
+/obj/machinery/light/small/directional/south,
/turf/open/floor/iron/white,
/area/medical/sleeper)
"bqS" = (
@@ -8042,6 +8063,9 @@
dir = 4
},
/obj/effect/turf_decal/stripes/corner,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
/turf/open/floor/iron,
/area/science/mixing)
"bHv" = (
@@ -8108,7 +8132,6 @@
dir = 1
},
/obj/item/kirbyplants/random,
-/obj/machinery/camera/directional/north,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
"bIm" = (
@@ -8538,7 +8561,7 @@
dir = 4
},
/obj/machinery/camera/preset/toxins{
- dir = 8
+ dir = 4
},
/turf/open/floor/plating{
initial_gas_mix = "o2=0.01;n2=0.01;TEMP=293.15";
@@ -10595,17 +10618,6 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
-"bWU" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 4
- },
-/turf/open/floor/iron/dark/side{
- dir = 4
- },
-/area/engine/atmos)
"bWX" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow{
@@ -11674,9 +11686,6 @@
/turf/open/floor/engine/co2,
/area/engine/atmos)
"ccE" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 5
},
@@ -11978,9 +11987,6 @@
/turf/open/floor/iron/white,
/area/science/robotics/lab)
"ceB" = (
-/obj/machinery/light{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 6
},
@@ -12009,9 +12015,6 @@
/turf/open/floor/iron/dark,
/area/hallway/secondary/command)
"ceI" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 10
},
@@ -12654,7 +12657,6 @@
/turf/open/floor/iron,
/area/hallway/primary/central)
"cjA" = (
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron/white,
@@ -13308,6 +13310,10 @@
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
+/obj/machinery/power/apc/auto_name/directional/south{
+ areastring = "/area/engine/supermatter"
+ },
+/obj/structure/cable/yellow,
/turf/open/floor/engine,
/area/engine/engineering)
"cqj" = (
@@ -15547,6 +15553,9 @@
/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
dir = 1
},
+/obj/machinery/camera/autoname/directional/north{
+ network = list("ss13","engine")
+ },
/turf/open/floor/engine,
/area/engine/engineering)
"cFR" = (
@@ -16185,6 +16194,21 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/storage/eva)
+"cLh" = (
+/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/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"cLp" = (
/obj/structure/railing{
dir = 8
@@ -16206,6 +16230,9 @@
},
/obj/structure/disposalpipe/segment,
/obj/effect/spawner/lootdrop/grille_or_trash,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/plating,
/area/maintenance/fore/secondary)
"cMm" = (
@@ -16771,9 +16798,7 @@
/turf/open/floor/engine,
/area/science/explab)
"cWC" = (
-/obj/machinery/airalarm/directional/east{
- pixel_x = 24
- },
+/obj/machinery/airalarm/directional/east,
/obj/effect/turf_decal/tile/yellow/half/contrasted,
/obj/structure/closet/secure_closet/engineering_personal,
/turf/open/floor/iron,
@@ -17367,12 +17392,6 @@
/obj/machinery/status_display/evac{
pixel_x = 32
},
-/obj/machinery/status_display/evac{
- pixel_x = 32
- },
-/obj/machinery/status_display/evac{
- pixel_x = 32
- },
/turf/open/floor/iron/cafeteria_red,
/area/crew_quarters/bar)
"dmK" = (
@@ -17740,12 +17759,17 @@
name = "Dormitories Maintenance";
req_access_txt = "12"
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plating,
/area/maintenance/fore/secondary)
"dvS" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
},
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/maintenance/aft)
"dvV" = (
@@ -19414,9 +19438,6 @@
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat/hallway)
"ede" = (
-/obj/machinery/light{
- dir = 4
- },
/obj/effect/turf_decal/tile/blue/opposingcorners{
dir = 1
},
@@ -19654,6 +19675,7 @@
/obj/effect/turf_decal/tile/brown/anticorner/contrasted{
dir = 1
},
+/obj/machinery/light/small/directional/north,
/turf/open/floor/iron,
/area/quartermaster/qm)
"eiC" = (
@@ -20175,9 +20197,6 @@
"etZ" = (
/obj/structure/table/glass,
/obj/item/storage/belt/medical,
-/obj/machinery/light{
- dir = 8
- },
/obj/item/storage/box/medipens,
/obj/effect/turf_decal/tile/blue{
dir = 8
@@ -20969,6 +20988,24 @@
},
/turf/open/floor/iron,
/area/engine/engineering)
+"eKr" = (
+/obj/structure/disposalpipe/segment{
+ 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/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
"eLa" = (
/obj/machinery/door/poddoor/preopen{
id = "bridgeentrance";
@@ -21078,6 +21115,9 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 8
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plating,
/area/maintenance/fore/secondary)
"eMZ" = (
@@ -21761,6 +21801,21 @@
},
/turf/open/floor/iron,
/area/security/courtroom)
+"faE" = (
+/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 = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
"fbS" = (
/obj/structure/table,
/obj/item/storage/box/chemimp{
@@ -21990,6 +22045,9 @@
/obj/structure/cable/yellow{
icon_state = "2-4"
},
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/iron,
/area/crew_quarters/dorms)
"fhv" = (
@@ -22144,9 +22202,6 @@
/turf/open/floor/iron/grid/steel,
/area/gateway)
"fkv" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 1
@@ -22154,6 +22209,9 @@
/obj/structure/cable/yellow{
icon_state = "1-2"
},
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
/turf/open/floor/plating,
/area/maintenance/port)
"fkM" = (
@@ -22421,7 +22479,6 @@
/area/library)
"fsG" = (
/obj/structure/bed/roller,
-/obj/structure/bed/roller,
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 9
@@ -22785,6 +22842,7 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 4
},
+/obj/machinery/light/small/directional/north,
/turf/open/floor/iron/freezer,
/area/crew_quarters/toilet)
"fBh" = (
@@ -23519,11 +23577,11 @@
/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
- dir = 8
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
},
/obj/structure/disposalpipe/segment{
- dir = 6
+ dir = 4
},
/turf/open/floor/iron,
/area/crew_quarters/fitness)
@@ -23682,7 +23740,6 @@
/turf/open/floor/iron,
/area/science/storage)
"fUY" = (
-/obj/machinery/light/small,
/obj/machinery/advanced_airlock_controller{
pixel_y = 24
},
@@ -23692,6 +23749,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
},
+/obj/machinery/light/small/directional/north,
/turf/open/floor/catwalk_floor,
/area/hallway/secondary/exit)
"fVk" = (
@@ -24383,12 +24441,10 @@
/area/maintenance/starboard/aft)
"gkL" = (
/obj/machinery/washing_machine,
-/obj/machinery/light/small{
- dir = 4
- },
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/obj/machinery/light/small/directional/west,
/turf/open/floor/iron/freezer,
/area/crew_quarters/toilet)
"gkT" = (
@@ -24559,6 +24615,12 @@
},
/turf/open/floor/prison,
/area/security/prison)
+"goV" = (
+/obj/machinery/camera/directional/north{
+ network = list("ss13","rd")
+ },
+/turf/open/floor/engine,
+/area/science/explab)
"goW" = (
/obj/machinery/airalarm/directional/north,
/turf/open/floor/plating,
@@ -24801,6 +24863,18 @@
},
/turf/open/floor/carpet,
/area/hallway/secondary/entry)
+"gtR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore/secondary)
"gui" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -25137,11 +25211,7 @@
dir = 4;
pixel_x = -24
},
-/obj/structure/sink{
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
+/obj/effect/turf_decal/loading_area,
/turf/open/floor/iron/white,
/area/medical/virology)
"gCm" = (
@@ -25272,6 +25342,9 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
},
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
/turf/open/floor/iron,
/area/science/mixing)
"gEs" = (
@@ -25688,6 +25761,18 @@
"gQd" = (
/turf/closed/wall,
/area/quartermaster/exploration_dock)
+"gQG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore/secondary)
"gQJ" = (
/obj/machinery/power/solar{
id = "portsolar";
@@ -25978,6 +26063,9 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
},
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
/turf/open/floor/iron,
/area/science/mixing)
"gZG" = (
@@ -26586,6 +26674,12 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 9
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
/turf/open/floor/iron,
/area/crew_quarters/dorms)
"hnD" = (
@@ -27979,6 +28073,9 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plating,
/area/maintenance/fore/secondary)
"hRX" = (
@@ -29091,9 +29188,6 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"imi" = (
-/obj/machinery/light/small{
- dir = 1
- },
/obj/machinery/advanced_airlock_controller{
dir = 1;
pixel_y = -24
@@ -29104,6 +29198,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
},
+/obj/machinery/light/small/directional/south,
/turf/open/floor/catwalk_floor,
/area/hallway/secondary/exit)
"imn" = (
@@ -30497,6 +30592,9 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plating,
/area/maintenance/fore/secondary)
"iRw" = (
@@ -30659,8 +30757,26 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 4
},
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
/turf/open/floor/iron,
/area/crew_quarters/dorms)
+"iVk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/obj/structure/barricade/wooden/crude,
+/obj/machinery/door/airlock/maintenance{
+ id_tag = "commissarydoor";
+ req_one_access_txt = "12;63;48;50"
+ },
+/obj/effect/mapping_helpers/airlock/abandoned,
+/turf/open/floor/plating,
+/area/maintenance/port)
"iVN" = (
/obj/effect/turf_decal/tile/blue/half/contrasted{
dir = 1
@@ -31373,6 +31489,12 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
+"jlW" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
"jmC" = (
/obj/structure/table,
/obj/item/crowbar/large,
@@ -31477,9 +31599,6 @@
pixel_x = -5;
pixel_y = 30
},
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 10
},
@@ -31584,16 +31703,6 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/captain)
-"jsS" = (
-/obj/structure/chair,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit)
"jsT" = (
/obj/structure/disposalpipe/segment{
dir = 5
@@ -31725,12 +31834,10 @@
/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/disposalpipe/sorting/mail{
- sortType = 24
- },
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 4
},
+/obj/structure/disposalpipe/junction,
/turf/open/floor/iron/white/side{
dir = 4
},
@@ -32529,6 +32636,9 @@
/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
dir = 4
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/iron,
/area/crew_quarters/dorms)
"jMr" = (
@@ -32755,6 +32865,9 @@
/area/engine/atmos)
"jRJ" = (
/obj/machinery/vending/boozeomat,
+/obj/machinery/light{
+ dir = 4
+ },
/turf/open/floor/iron/cafeteria_red,
/area/crew_quarters/bar)
"jSj" = (
@@ -32940,9 +33053,6 @@
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat/hallway)
"jVS" = (
-/obj/machinery/light{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 9
},
@@ -34177,6 +34287,12 @@
},
/turf/open/floor/iron/dark/telecomms,
/area/science/server)
+"kzn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
"kzD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/door/firedoor,
@@ -35021,9 +35137,6 @@
/obj/effect/turf_decal/tile/blue/opposingcorners{
dir = 1
},
-/obj/machinery/light{
- dir = 1
- },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
@@ -35244,6 +35357,9 @@
/area/chapel/office)
"kUw" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/machinery/light{
+ dir = 4
+ },
/turf/open/floor/iron/dark/side{
dir = 4
},
@@ -35348,12 +35464,7 @@
/turf/open/floor/iron/white,
/area/medical/genetics)
"kWa" = (
-/obj/structure/disposaloutlet,
/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 5
},
@@ -36118,6 +36229,9 @@
},
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/plating,
/area/maintenance/fore/secondary)
"lnP" = (
@@ -36327,6 +36441,9 @@
name = "Security Junction";
sortType = 7
},
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
/turf/open/floor/plating,
/area/maintenance/fore/secondary)
"lrg" = (
@@ -36456,6 +36573,10 @@
pixel_x = 24;
req_access_txt = "39"
},
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
/turf/open/floor/iron/white,
/area/medical/virology)
"lvx" = (
@@ -36986,12 +37107,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
-"lFf" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/iron/cafeteria_red,
-/area/crew_quarters/bar)
"lFJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 8
@@ -39064,12 +39179,6 @@
},
/turf/closed/wall,
/area/maintenance/starboard/aft)
-"mHc" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/aft)
"mHx" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
@@ -39577,6 +39686,13 @@
},
/turf/open/floor/iron,
/area/medical/genetics)
+"mUT" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/camera/directional/south,
+/turf/open/floor/iron/white/corner,
+/area/hallway/secondary/entry)
"mUU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 8
@@ -40147,6 +40263,9 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 1
},
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/iron,
/area/hallway/primary/fore)
"nfd" = (
@@ -40512,7 +40631,6 @@
pixel_x = -22;
pixel_y = 1
},
-/obj/effect/turf_decal/loading_area,
/obj/machinery/airalarm/directional/west{
pixel_x = -32
},
@@ -40824,6 +40942,9 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 4
},
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/iron,
/area/crew_quarters/dorms)
"nuK" = (
@@ -41568,8 +41689,7 @@
/turf/open/floor/wood,
/area/library)
"nJp" = (
-/obj/machinery/camera/autoname/directional/east,
-/obj/effect/turf_decal/tile/dark_blue/half/contrasted,
+/obj/machinery/camera/directional/east,
/turf/open/floor/iron,
/area/hallway/primary/central)
"nJq" = (
@@ -41622,6 +41742,7 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
dir = 8
},
+/obj/machinery/light/directional/west,
/turf/open/floor/iron/dark/side{
dir = 8
},
@@ -41903,6 +42024,9 @@
dir = 6
},
/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
/turf/open/floor/plating,
/area/maintenance/fore/secondary)
"nQy" = (
@@ -42287,6 +42411,9 @@
pixel_x = -4;
pixel_y = -3
},
+/obj/machinery/light{
+ dir = 8
+ },
/turf/open/floor/iron/white,
/area/medical/sleeper)
"nYz" = (
@@ -44074,6 +44201,9 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plating,
/area/maintenance/fore/secondary)
"oPg" = (
@@ -45254,6 +45384,9 @@
/obj/structure/cable/yellow{
icon_state = "1-4"
},
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
/turf/open/floor/plating,
/area/maintenance/port)
"prA" = (
@@ -45407,7 +45540,6 @@
pixel_y = -24
},
/obj/structure/cable/yellow,
-/obj/machinery/light,
/obj/structure/table/glass,
/obj/item/reagent_containers/glass/beaker/cryoxadone,
/obj/item/reagent_containers/glass/beaker/cryoxadone{
@@ -45947,6 +46079,9 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 4
},
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/iron,
/area/hallway/primary/fore)
"pEC" = (
@@ -46316,9 +46451,6 @@
/obj/machinery/airalarm/directional/north{
pixel_y = 23
},
-/obj/machinery/light{
- dir = 1
- },
/obj/effect/turf_decal/tile/blue{
dir = 4
},
@@ -46647,8 +46779,8 @@
/turf/open/floor/iron,
/area/security/brig)
"pVb" = (
-/obj/structure/disposalpipe/junction/yjunction{
- dir = 4
+/obj/structure/disposalpipe/segment{
+ dir = 6
},
/turf/closed/wall,
/area/quartermaster/sorting)
@@ -46728,6 +46860,9 @@
/obj/effect/turf_decal/stripes/closeup{
dir = 1
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/open/floor/iron,
/area/crew_quarters/dorms)
"pWy" = (
@@ -47214,6 +47349,9 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 8
},
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/iron,
/area/crew_quarters/dorms)
"qkq" = (
@@ -47467,9 +47605,6 @@
id = "quarantineshutters";
name = "isolation shutters"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/turf/open/floor/iron/white,
/area/medical/virology)
"qqM" = (
@@ -47849,9 +47984,6 @@
/obj/machinery/computer/cargo{
dir = 4
},
-/obj/machinery/light{
- dir = 8
- },
/obj/effect/turf_decal/tile/brown/half/contrasted{
dir = 1
},
@@ -48664,9 +48796,6 @@
/turf/open/floor/iron,
/area/security/brig)
"qSx" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 1
},
@@ -49172,9 +49301,6 @@
/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
/turf/open/floor/iron,
/area/crew_quarters/fitness)
"rcC" = (
@@ -49915,6 +50041,7 @@
/obj/effect/turf_decal/tile/blue{
dir = 4
},
+/obj/machinery/camera/autoname/directional/north,
/turf/open/floor/iron/white/corner{
dir = 1
},
@@ -50772,6 +50899,9 @@
dir = 1
},
/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/plating,
/area/maintenance/fore/secondary)
"rHU" = (
@@ -51140,9 +51270,12 @@
/turf/open/floor/catwalk_floor/iron,
/area/engine/gravity_generator)
"rPX" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/maintenance/port)
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
"rQp" = (
/obj/effect/turf_decal/stripes/line,
/obj/structure/closet/firecloset,
@@ -51261,12 +51394,13 @@
/turf/open/floor/iron,
/area/science/explab)
"rRQ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
},
-/obj/machinery/camera/directional/north,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/camera/autoname/directional/west,
/turf/open/floor/iron,
-/area/hallway/primary/port)
+/area/hallway/primary/central)
"rRU" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -51382,6 +51516,8 @@
dir = 8
},
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
/turf/open/floor/iron,
/area/science/mixing)
"rUj" = (
@@ -51484,6 +51620,9 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 1
},
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
/turf/open/floor/iron,
/area/crew_quarters/dorms)
"rWK" = (
@@ -54025,7 +54164,6 @@
/obj/effect/turf_decal/stripes/line{
dir = 5
},
-/obj/machinery/camera/autoname/directional/east,
/turf/open/floor/iron/dark/side{
dir = 4
},
@@ -54552,15 +54690,6 @@
},
/turf/open/floor/iron/cafeteria,
/area/crew_quarters/kitchen)
-"thV" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/turf/open/floor/iron/white,
-/area/medical/sleeper)
"thW" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
@@ -54585,6 +54714,12 @@
},
/turf/open/floor/iron/white,
/area/medical/chemistry)
+"tiP" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore/secondary)
"tjb" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -55371,7 +55506,12 @@
dir = 1
},
/obj/effect/turf_decal/tile/neutral/anticorner/contrasted,
-/turf/open/floor/iron,
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
/area/crew_quarters/dorms)
"tAf" = (
/obj/machinery/light/small,
@@ -55493,9 +55633,6 @@
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
-/obj/machinery/camera/autoname/directional/north{
- network = list("ss13","engine")
- },
/turf/open/floor/iron/dark,
/area/engine/engineering)
"tCh" = (
@@ -55613,12 +55750,6 @@
pixel_x = -31
},
/obj/item/clothing/head/utility/hardhat/cakehat,
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = -31
- },
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = -31
- },
/turf/open/floor/iron/cafeteria_red,
/area/crew_quarters/bar)
"tEr" = (
@@ -56597,7 +56728,6 @@
/turf/open/floor/iron,
/area/engine/engineering)
"tYh" = (
-/obj/machinery/light,
/obj/machinery/atmospherics/components/binary/pump/on{
dir = 1;
name = "N2 Outlet Pump"
@@ -56664,6 +56794,9 @@
/obj/machinery/light_switch{
pixel_x = -28
},
+/obj/machinery/light{
+ dir = 8
+ },
/turf/open/floor/iron/white,
/area/medical/sleeper)
"tZA" = (
@@ -56719,12 +56852,12 @@
/turf/open/floor/iron/dark,
/area/science/nanite)
"ubL" = (
-/obj/machinery/camera/autoname/directional/east,
-/obj/machinery/camera/autoname/directional/east,
-/turf/open/floor/iron/white/side{
- dir = 9
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/science/research)
+/obj/machinery/camera/directional/south,
+/turf/open/floor/iron,
+/area/hallway/primary/port)
"ubO" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -56755,12 +56888,10 @@
/turf/open/floor/wood,
/area/security/detectives_office)
"ucv" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 1
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 8
},
-/turf/open/floor/iron/dark,
+/turf/open/floor/iron,
/area/crew_quarters/fitness)
"ucP" = (
/obj/effect/turf_decal/tile/blue{
@@ -56969,6 +57100,9 @@
dir = 1
},
/obj/effect/turf_decal/stripes/closeup,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/iron,
/area/crew_quarters/dorms)
"ugE" = (
@@ -57949,9 +58083,6 @@
/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
/obj/machinery/light/small{
dir = 1
},
@@ -58151,6 +58282,9 @@
/obj/structure/sign/departments/minsky/engineering/atmospherics{
pixel_y = -32
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plating,
/area/maintenance/fore/secondary)
"uJd" = (
@@ -59372,6 +59506,9 @@
dir = 8
},
/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
/turf/open/floor/iron,
/area/science/mixing)
"vmB" = (
@@ -59746,6 +59883,13 @@
/obj/machinery/airalarm/directional/east,
/turf/open/floor/iron/dark,
/area/hydroponics)
+"vvL" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc/auto_name/directional/east,
+/turf/open/floor/plating,
+/area/maintenance/fore/secondary)
"vvN" = (
/obj/structure/tank_dispenser/oxygen,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -60681,11 +60825,13 @@
/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/structure/disposalpipe/sorting/mail/flip{
+ sortType = 24
+ },
/turf/open/floor/iron,
/area/science/mixing)
"vTj" = (
@@ -60739,15 +60885,14 @@
/turf/open/floor/iron/cafeteria_red,
/area/crew_quarters/bar)
"vTI" = (
-/obj/machinery/camera/directional/north,
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 8
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
},
-/obj/effect/turf_decal/trimline/dark_blue/filled/line{
+/obj/machinery/camera/autoname/directional/north,
+/turf/open/floor/iron/white/corner{
dir = 1
},
-/turf/open/floor/iron/dark,
-/area/hallway/primary/central)
+/area/hallway/secondary/entry)
"vUe" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -61011,7 +61156,7 @@
/obj/structure/disposalpipe/segment{
dir = 5
},
-/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 8
},
/turf/open/floor/iron,
@@ -61765,6 +61910,9 @@
/obj/structure/cable/yellow{
icon_state = "4-8"
},
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
/turf/open/floor/iron,
/area/crew_quarters/dorms)
"wph" = (
@@ -61871,9 +62019,6 @@
/turf/open/floor/plating,
/area/maintenance/port)
"wrE" = (
-/obj/machinery/light{
- dir = 4
- },
/obj/effect/turf_decal/tile/green/anticorner/contrasted{
dir = 4
},
@@ -61909,7 +62054,6 @@
"wti" = (
/obj/effect/turf_decal/stripes/line,
/obj/item/kirbyplants/random,
-/obj/machinery/camera/autoname/directional/south,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
"wts" = (
@@ -62050,6 +62194,12 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
+"wvP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
"wvY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
@@ -63124,9 +63274,10 @@
/turf/open/floor/iron/white,
/area/medical/medbay/central)
"wXL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
@@ -63665,12 +63816,6 @@
/obj/structure/flora/grass/jungle/b,
/turf/open/floor/grass,
/area/hallway/secondary/command)
-"xkV" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/starboard/aft)
"xli" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 8
@@ -63930,9 +64075,6 @@
/obj/effect/turf_decal/stripes/red/line{
dir = 4
},
-/obj/machinery/camera/directional/north{
- network = list("ss13","rd")
- },
/turf/open/floor/iron,
/area/science/explab)
"xpk" = (
@@ -65496,9 +65638,6 @@
/turf/open/floor/iron/freezer,
/area/security/prison)
"xWg" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
/obj/machinery/light{
dir = 8
},
@@ -65508,6 +65647,11 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 5
},
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/disposaloutlet,
+/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron/white,
/area/medical/virology)
"xWV" = (
@@ -78033,7 +78177,7 @@ aaa
asE
aPt
jdt
-aRY
+mUT
arB
arB
arB
@@ -78041,7 +78185,7 @@ tAH
rQX
rQX
arB
-awZ
+vTI
tlO
azB
rQX
@@ -85740,7 +85884,7 @@ aBR
aBR
aLJ
aLE
-aOl
+ubL
aPA
aQW
aQW
@@ -86252,7 +86396,7 @@ aBa
aBa
aaf
aKt
-rRQ
+aLN
bDe
aOl
aPF
@@ -88064,10 +88208,10 @@ cCF
elS
fkv
prx
-aSg
-aPz
+wvP
+iVk
bdW
-aSg
+kzn
aZE
bgz
biT
@@ -88320,9 +88464,9 @@ aWB
cCj
aSg
aYf
-dZN
-dfx
-rPX
+faE
+aSg
+aPz
pVb
bgB
bhX
@@ -90637,7 +90781,7 @@ gMk
gMk
bbV
qnI
-qnI
+rRQ
qnI
efv
qnI
@@ -91151,7 +91295,7 @@ nbZ
nbZ
sEj
aYl
-nJp
+aYl
aYl
aYl
sEj
@@ -92150,9 +92294,9 @@ kOu
mpK
jTP
ajo
-aqR
-aqR
-gfW
+rPX
+mkJ
+beF
ayE
aaa
aaa
@@ -95574,7 +95718,7 @@ cfz
cgR
ccw
mhm
-xxT
+cLh
cqi
cMD
cAP
@@ -97030,10 +97174,10 @@ qSy
arf
twX
rWw
-wXL
-wXL
+rOm
+rOm
nuF
-wXL
+rOm
qkk
nuF
fhu
@@ -97543,7 +97687,7 @@ ixa
jaD
hDg
jMo
-vGi
+wXL
oax
kcC
vGi
@@ -98338,7 +98482,7 @@ dgB
aaa
aaa
dgB
-vTI
+cAx
sAB
urY
aZV
@@ -99367,7 +99511,7 @@ aRt
aJq
aJq
aJq
-aJq
+nJp
aJq
qVS
aJq
@@ -99588,7 +99732,7 @@ anF
dwH
ahn
eMP
-riU
+gQG
ahn
anF
anF
@@ -99845,7 +99989,7 @@ anF
anF
eTS
anF
-riU
+gQG
xEr
anF
anF
@@ -100102,7 +100246,7 @@ anF
anF
ahn
vUB
-riU
+gQG
ahn
anF
anF
@@ -100616,8 +100760,8 @@ gXs
gXs
ahn
gEO
-riU
-anF
+gtR
+tiP
anF
jdh
fBN
@@ -100874,7 +101018,7 @@ aaa
ahn
tkF
riU
-anF
+vvL
anF
ahn
ahJ
@@ -100950,7 +101094,7 @@ bSM
bTV
bUT
fUA
-bWU
+fYS
sYl
bYT
bZK
@@ -101178,7 +101322,7 @@ aNl
blh
ueA
blh
-thV
+blh
oiT
blh
blh
@@ -102961,7 +103105,7 @@ kYi
ixC
aOO
kAz
-lFf
+fRF
wRy
fRF
fRF
@@ -103789,8 +103933,8 @@ bNd
bNd
bNd
bNd
-kOf
-bAw
+eKr
+jlW
dvS
cfj
rAw
@@ -106360,7 +106504,7 @@ nZo
ouW
dPe
bNd
-mHc
+cOe
cOe
ahO
iBQ
@@ -112508,7 +112652,7 @@ bBD
tRP
bBD
bBD
-ubL
+vZt
bBD
bBD
xiZ
@@ -112778,7 +112922,7 @@ xLe
tIE
fQv
tIA
-sei
+goV
sei
sei
hNK
@@ -114578,7 +114722,7 @@ kdn
sei
hNK
cNW
-xkV
+cNW
cNW
cNW
cNW
@@ -116065,7 +116209,7 @@ aaa
aaa
aaf
aNa
-jsS
+aOd
aPq
aPq
ffm
diff --git a/_maps/shuttles/exploration/exploration_shuttle.dmm b/_maps/shuttles/exploration/exploration_shuttle.dmm
index c2e4fd1e84e45..b67dca8a646f0 100644
--- a/_maps/shuttles/exploration/exploration_shuttle.dmm
+++ b/_maps/shuttles/exploration/exploration_shuttle.dmm
@@ -258,13 +258,11 @@
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/exploration)
"F" = (
-/obj/machinery/camera/preset{
- dir = 6
- },
/obj/machinery/newscaster{
pixel_x = 32;
pixel_y = 1
},
+/obj/machinery/camera/autoname/directional/east,
/turf/open/floor/mineral/titanium,
/area/shuttle/exploration)
"G" = (
From 1cf494144d21689452b455484893fb275f364fb3 Mon Sep 17 00:00:00 2001
From: Markus Larsson <82539179+MarkusLarsson421@users.noreply.github.com>
Date: Tue, 27 Aug 2024 13:17:12 +0200
Subject: [PATCH 014/106] Delta Science Doors Fix (#11303)
* Silly goose didn't use the "txt" var.
* Update DeltaStation2.dmm
* Update DeltaStation2.dmm
* Update DeltaStation2.dmm
---
.../map_files/Deltastation/DeltaStation2.dmm | 53 +++++++------------
1 file changed, 19 insertions(+), 34 deletions(-)
diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm
index 5438d4cc34303..c5a3ea36ef506 100644
--- a/_maps/map_files/Deltastation/DeltaStation2.dmm
+++ b/_maps/map_files/Deltastation/DeltaStation2.dmm
@@ -1932,8 +1932,6 @@
"anB" = (
/obj/structure/table/reinforced,
/obj/machinery/recharger,
-/obj/structure/cable/yellow,
-/obj/machinery/power/apc/auto_name/directional/south,
/turf/open/floor/iron/white,
/area/science/misc_lab/range)
"anD" = (
@@ -26344,7 +26342,7 @@
icon_state = "4-8"
},
/turf/open/floor/iron,
-/area/hallway/primary/aft)
+/area/maintenance/aft)
"dbu" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance/two,
@@ -28282,9 +28280,6 @@
/area/science/misc_lab/range)
"drC" = (
/obj/effect/turf_decal/delivery,
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
/turf/open/floor/iron/white,
/area/science/misc_lab/range)
"drP" = (
@@ -29063,9 +29058,8 @@
/turf/closed/wall,
/area/crew_quarters/heads/hor)
"dxX" = (
-/obj/structure/cable/white,
/obj/structure/cable/yellow{
- icon_state = "1-4"
+ icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced/tinted,
/turf/open/floor/plating,
@@ -32005,7 +31999,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/department/medical/morgue)
+/area/maintenance/aft)
"dTY" = (
/obj/structure/sign/warning/nosmoking,
/turf/closed/wall,
@@ -33506,7 +33500,7 @@
},
/obj/machinery/door/airlock/research/glass{
name = "Shuttle dock";
- req_one_access = "47"
+ req_one_access_txt = "47"
},
/turf/open/floor/iron,
/area/science/shuttledock)
@@ -38547,7 +38541,7 @@
req_access_txt = "5"
},
/turf/open/floor/iron/white,
-/area/medical/surgery)
+/area/maintenance/starboard/aft)
"fOK" = (
/obj/machinery/door/airlock/public/glass{
name = "Holodeck Access"
@@ -47575,10 +47569,6 @@
/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/machinery/door/airlock/command{
- name = "Research Director's Quarters";
- req_access_txt = "30"
- },
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -47964,7 +47954,7 @@
name = "isolation shutters"
},
/turf/open/floor/iron,
-/area/medical/virology)
+/area/maintenance/aft)
"iXX" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -52854,6 +52844,10 @@
/turf/open/floor/iron,
/area/quartermaster/office)
"kFK" = (
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
/turf/open/floor/iron/white,
/area/science/misc_lab/range)
"kFO" = (
@@ -72913,13 +72907,13 @@
/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
},
+/obj/machinery/door/airlock/research{
+ req_one_access_txt = "47";
+ name = "Research Testing Range"
+ },
/turf/open/floor/iron,
/area/science/misc_lab/range)
"rqS" = (
@@ -76375,15 +76369,15 @@
/turf/open/floor/iron,
/area/hallway/primary/starboard)
"syU" = (
-/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
},
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
/turf/open/floor/iron/white,
/area/science/misc_lab/range)
"syZ" = (
@@ -81188,7 +81182,7 @@
name = "isolation shutters"
},
/turf/open/floor/iron,
-/area/medical/surgery)
+/area/maintenance/starboard/aft)
"uit" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -81833,15 +81827,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"utb" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 8
- },
-/turf/open/floor/iron/smooth,
-/area/tcommsat/server)
"utc" = (
/obj/item/beacon,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -133211,7 +133196,7 @@ bUI
bXa
cSI
cSI
-utb
+mUm
ceA
vCq
dzh
From 61b21cc07df7ed6b0baac6d0458f81c93bd3cbba Mon Sep 17 00:00:00 2001
From: XeonMations <62395746+XeonMations@users.noreply.github.com>
Date: Wed, 28 Aug 2024 17:58:39 +0300
Subject: [PATCH 015/106] Fixes simplemobs being able to interact with
machinery (#11387)
* another PR, another banger
* comment moment
---
code/game/machinery/_machinery.dm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/code/game/machinery/_machinery.dm b/code/game/machinery/_machinery.dm
index 7e6497177ac85..eea51ee705002 100644
--- a/code/game/machinery/_machinery.dm
+++ b/code/game/machinery/_machinery.dm
@@ -360,7 +360,7 @@ Class Procs:
/obj/machinery/can_interact(mob/user)
var/silicon = issilicon(user)
var/admin_ghost = IsAdminGhost(user)
- var/living = isliving(user)
+ var/living = ishuman(user) // /mob/living/carbon/HUMANS, not /mob/living.
if((machine_stat & (NOPOWER|BROKEN)) && !(interaction_flags_machine & INTERACT_MACHINE_OFFLINE)) // Check if the machine is broken, and if we can still interact with it if so
return FALSE
From a251e91529fba7328066c1f07572f1393a93bc39 Mon Sep 17 00:00:00 2001
From: ss13-beebot <56381746+ss13-beebot@users.noreply.github.com>
Date: Wed, 28 Aug 2024 10:08:53 -0500
Subject: [PATCH 016/106] Automatic changelog generation for PR #11387 [ci
skip]
---
html/changelogs/AutoChangeLog-pr-11387.yml | 4 ++++
1 file changed, 4 insertions(+)
create mode 100644 html/changelogs/AutoChangeLog-pr-11387.yml
diff --git a/html/changelogs/AutoChangeLog-pr-11387.yml b/html/changelogs/AutoChangeLog-pr-11387.yml
new file mode 100644
index 0000000000000..4e2a4f4583c90
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-11387.yml
@@ -0,0 +1,4 @@
+author: XeonMations
+delete-after: true
+changes:
+ - bugfix: Fixed simplemobs being able to interact with machinery via CTRL, ALT clicks.
From c95ed70fd70701b573b4da90314df2d6c2c1ffd6 Mon Sep 17 00:00:00 2001
From: ClownMoff <148357670+ClownMoff@users.noreply.github.com>
Date: Wed, 28 Aug 2024 15:59:25 +0100
Subject: [PATCH 017/106] Update cigarette.dm (#11373)
---
code/modules/vending/cigarette.dm | 1 +
1 file changed, 1 insertion(+)
diff --git a/code/modules/vending/cigarette.dm b/code/modules/vending/cigarette.dm
index 11cb5dc2bc990..bdcbddde25053 100644
--- a/code/modules/vending/cigarette.dm
+++ b/code/modules/vending/cigarette.dm
@@ -9,6 +9,7 @@
/obj/item/storage/fancy/cigarettes/cigpack_robust = 3,
/obj/item/storage/fancy/cigarettes/cigpack_carp = 3,
/obj/item/storage/fancy/cigarettes/cigpack_midori = 3,
+ /obj/item/storage/fancy/cigarettes/dromedaryco = 3,
/obj/item/storage/box/matches = 10,
/obj/item/lighter/greyscale = 4,
/obj/item/storage/fancy/rollingpapers = 5)
From ded9e053ef45ff46398ef5bee5e3b9ccbf46116a Mon Sep 17 00:00:00 2001
From: ss13-beebot <56381746+ss13-beebot@users.noreply.github.com>
Date: Wed, 28 Aug 2024 10:18:28 -0500
Subject: [PATCH 018/106] Automatic changelog generation for PR #11373 [ci
skip]
---
html/changelogs/AutoChangeLog-pr-11373.yml | 4 ++++
1 file changed, 4 insertions(+)
create mode 100644 html/changelogs/AutoChangeLog-pr-11373.yml
diff --git a/html/changelogs/AutoChangeLog-pr-11373.yml b/html/changelogs/AutoChangeLog-pr-11373.yml
new file mode 100644
index 0000000000000..4597a2c56c08a
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-11373.yml
@@ -0,0 +1,4 @@
+author: ClownMoff
+delete-after: true
+changes:
+ - rscadd: Adds the Dromedaire Co cigarettes to the vendor
From f4028a7a2025234d4b5d9751544ce8ec240d6051 Mon Sep 17 00:00:00 2001
From: ss13-beebot <56381746+ss13-beebot@users.noreply.github.com>
Date: Wed, 28 Aug 2024 16:03:51 +0000
Subject: [PATCH 019/106] Automatic changelog compile [ci skip]
---
html/changelog.html | 10 ++++++++++
html/changelogs/.all_changelog.yml | 5 +++++
html/changelogs/AutoChangeLog-pr-11373.yml | 4 ----
html/changelogs/AutoChangeLog-pr-11387.yml | 4 ----
4 files changed, 15 insertions(+), 8 deletions(-)
delete mode 100644 html/changelogs/AutoChangeLog-pr-11373.yml
delete mode 100644 html/changelogs/AutoChangeLog-pr-11387.yml
diff --git a/html/changelog.html b/html/changelog.html
index bbacd6316ef34..4cffda762b330 100644
--- a/html/changelog.html
+++ b/html/changelog.html
@@ -56,6 +56,16 @@
-->
+
28 August 2024
+
ClownMoff updated:
+
+ - Adds the Dromedaire Co cigarettes to the vendor
+
+
XeonMations updated:
+
+ - Fixed simplemobs being able to interact with machinery via CTRL, ALT clicks.
+
+
27 August 2024
XeonMations updated:
diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml
index 8dc5304988c33..f29c3685061bf 100644
--- a/html/changelogs/.all_changelog.yml
+++ b/html/changelogs/.all_changelog.yml
@@ -44025,3 +44025,8 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py.
2024-08-27:
XeonMations:
- bugfix: Ghosts can now orbit the same person another ghost is orbiting.
+2024-08-28:
+ ClownMoff:
+ - rscadd: Adds the Dromedaire Co cigarettes to the vendor
+ XeonMations:
+ - bugfix: Fixed simplemobs being able to interact with machinery via CTRL, ALT clicks.
diff --git a/html/changelogs/AutoChangeLog-pr-11373.yml b/html/changelogs/AutoChangeLog-pr-11373.yml
deleted file mode 100644
index 4597a2c56c08a..0000000000000
--- a/html/changelogs/AutoChangeLog-pr-11373.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-author: ClownMoff
-delete-after: true
-changes:
- - rscadd: Adds the Dromedaire Co cigarettes to the vendor
diff --git a/html/changelogs/AutoChangeLog-pr-11387.yml b/html/changelogs/AutoChangeLog-pr-11387.yml
deleted file mode 100644
index 4e2a4f4583c90..0000000000000
--- a/html/changelogs/AutoChangeLog-pr-11387.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-author: XeonMations
-delete-after: true
-changes:
- - bugfix: Fixed simplemobs being able to interact with machinery via CTRL, ALT clicks.
From 79ee7538ea52c517309af9fea10990b47aecd0c4 Mon Sep 17 00:00:00 2001
From: ss13-beebot <56381746+ss13-beebot@users.noreply.github.com>
Date: Thu, 29 Aug 2024 00:12:28 +0000
Subject: [PATCH 020/106] Automatic changelog compile [ci skip]
---
html/changelog.html | 10 ----------
1 file changed, 10 deletions(-)
diff --git a/html/changelog.html b/html/changelog.html
index 4cffda762b330..efdcdd40fdd03 100644
--- a/html/changelog.html
+++ b/html/changelog.html
@@ -876,16 +876,6 @@ XeonMations updated:
- Made explosive flashbulbs spawn with a flash.
-
- 27 June 2024
- PowerfulBacon updated:
-
- - Fixes item attack logs.
-
- XeonMations updated:
-
- - Fixed holy aura not being removed after holy water is removed from the person's symptom
-
GoonStation 13 Development Team
From fd1e700cc41fb608dc3ec722a534c3dced7d1dab Mon Sep 17 00:00:00 2001
From: Dejaku51 <40302913+Dejaku51@users.noreply.github.com>
Date: Thu, 29 Aug 2024 18:13:47 +0200
Subject: [PATCH 021/106] Server framework v2 (#10983)
* i don't remember what is happening
* much better
* just debug stuff
* the ideas are coming
* that shouldn't be here
* it works now!
* RnD servers integrated
* sparks!
* no more "if true return true"
* reverse logic
* adds ! to comments in stat.dm
* clean up after yourself on Destroy()
* splits early return
* clean up after yourself tcomm monitoring
* you too all tcomms machines
* adds type holder instead of GetComponents
* fix indentation
* cmon indentation
* HOW?!
* oopsie woopsie
* removes TODO and adds a comment
* packet types and null on destroy
* update comment
* fixed radstation tcomms area + switches hub with blackbox
* rebalances tcomms heat generation
* fix echo tcomms cooling
* that should stop funny exploit discovered by aramix
* cooldown define
* remove useless signal
* opened machine is under maintenance
* return null instead of 0 points
* return false
* I HATE TESTS
---
_maps/map_files/EchoStation/EchoStation.dmm | 4 +-
_maps/map_files/RadStation/RadStation.dmm | 240 +++++++++---------
beestation.dme | 2 +
.../signals_machine/signals_machinery.dm | 2 +
code/__DEFINES/networks.dm | 4 +
code/__DEFINES/stat.dm | 10 +-
.../subsystem/processing/servers.dm | 4 +
code/controllers/subsystem/research.dm | 12 +-
code/datums/components/ntnet_interface.dm | 2 +-
code/datums/components/server.dm | 72 ++++++
code/game/machinery/_machinery.dm | 2 +
.../telecomms/computers/telemonitor.dm | 177 +++++--------
.../telecomms/machine_interactions.dm | 1 +
.../telecomms/machines/broadcaster.dm | 4 +-
code/game/machinery/telecomms/machines/bus.dm | 3 +-
code/game/machinery/telecomms/machines/hub.dm | 3 +-
.../telecomms/machines/message_server.dm | 2 +-
.../machinery/telecomms/machines/processor.dm | 3 +-
.../machinery/telecomms/machines/receiver.dm | 3 +-
.../machinery/telecomms/machines/relay.dm | 3 +-
.../machinery/telecomms/machines/server.dm | 3 +-
.../machinery/telecomms/telecomunications.dm | 62 ++++-
code/modules/power/power.dm | 3 +-
code/modules/research/server.dm | 146 +++--------
tgui/packages/tgui/interfaces/Telemonitor.tsx | 79 ++++++
25 files changed, 484 insertions(+), 362 deletions(-)
create mode 100644 code/controllers/subsystem/processing/servers.dm
create mode 100644 code/datums/components/server.dm
create mode 100644 tgui/packages/tgui/interfaces/Telemonitor.tsx
diff --git a/_maps/map_files/EchoStation/EchoStation.dmm b/_maps/map_files/EchoStation/EchoStation.dmm
index bcbb03c320ea0..8874fbae515d0 100644
--- a/_maps/map_files/EchoStation/EchoStation.dmm
+++ b/_maps/map_files/EchoStation/EchoStation.dmm
@@ -3628,13 +3628,13 @@
/turf/open/floor/plating,
/area/storage/tech)
"brs" = (
-/obj/machinery/telecomms/hub/preset,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/obj/machinery/airalarm/directional/north,
/obj/machinery/firealarm/directional/west,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/obj/machinery/blackbox_recorder,
/turf/open/floor/circuit/telecomms/mainframe{
initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
},
@@ -30465,10 +30465,10 @@
/area/hydroponics)
"oOM" = (
/obj/structure/cable,
-/obj/machinery/blackbox_recorder,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/obj/machinery/telecomms/hub/preset,
/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/server)
"oOS" = (
diff --git a/_maps/map_files/RadStation/RadStation.dmm b/_maps/map_files/RadStation/RadStation.dmm
index e868e2ba67069..0860f3be74112 100644
--- a/_maps/map_files/RadStation/RadStation.dmm
+++ b/_maps/map_files/RadStation/RadStation.dmm
@@ -7033,6 +7033,15 @@
/obj/machinery/meter,
/turf/open/floor/iron/tech,
/area/engine/engine_room)
+"cqV" = (
+/obj/machinery/firealarm/directional/south,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/telecomms{
+ initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
+ },
+/area/tcommsat/computer)
"cqW" = (
/obj/machinery/light{
dir = 4
@@ -14195,6 +14204,18 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/turf/open/floor/iron/white,
/area/science/research)
+"eAA" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{
+ dir = 8;
+ initialize_directions = 8
+ },
+/turf/open/floor/circuit/telecomms/mainframe{
+ initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
+ },
+/area/tcommsat/computer)
"eAC" = (
/turf/closed/wall,
/area/security/checkpoint/medical)
@@ -34417,20 +34438,6 @@
dir = 8
},
/area/hallway/primary/central)
-"kYm" = (
-/obj/item/radio/intercom{
- pixel_y = -35
- },
-/obj/machinery/atmospherics/components/unary/portables_connector{
- dir = 1
- },
-/obj/machinery/airalarm/directional/south,
-/obj/machinery/portable_atmospherics/canister/plasma,
-/obj/effect/mapping_helpers/atmos_auto_connect,
-/turf/open/floor/iron/dark/telecomms{
- initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
- },
-/area/engine/gravity_generator)
"kYr" = (
/obj/structure/sign/warning/nosmoking,
/turf/closed/wall,
@@ -36083,18 +36090,6 @@
dir = 1
},
/area/science/research)
-"lxG" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{
- dir = 8;
- initialize_directions = 8
- },
-/turf/open/floor/circuit/telecomms/mainframe{
- initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
- },
-/area/engine/gravity_generator)
"lyc" = (
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
@@ -43941,6 +43936,16 @@
},
/turf/open/floor/iron,
/area/quartermaster/sorting)
+"nTp" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/telecomms/hub/preset,
+/turf/open/floor/circuit/green/telecomms/mainframe,
+/area/tcommsat/server)
"nTI" = (
/obj/structure/chair/wood/wings,
/turf/open/floor/carpet/green,
@@ -44165,28 +44170,6 @@
"nXU" = (
/turf/closed/wall,
/area/hallway/secondary/exit/departure_lounge)
-"nXV" = (
-/obj/machinery/status_display/evac{
- pixel_y = 32
- },
-/obj/structure/table/reinforced,
-/obj/effect/spawner/lootdrop/aimodule_harmful,
-/obj/effect/spawner/lootdrop/aimodule_harmful,
-/obj/effect/spawner/lootdrop/aimodule_harmful,
-/obj/structure/window/reinforced/spawner/east{
- dir = 8
- },
-/obj/machinery/door/window/brigdoor/northright{
- dir = 2;
- name = "Security Boards";
- req_access_txt = "16"
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/camera/autoname/directional/east{
- network = list("aiupload")
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai_upload)
"nYc" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -48451,6 +48434,28 @@
/obj/machinery/advanced_airlock_controller/directional/north,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"plH" = (
+/obj/machinery/status_display/evac{
+ pixel_y = 32
+ },
+/obj/structure/table/reinforced,
+/obj/effect/spawner/lootdrop/aimodule_harmful,
+/obj/effect/spawner/lootdrop/aimodule_harmful,
+/obj/effect/spawner/lootdrop/aimodule_harmful,
+/obj/structure/window/reinforced/spawner/east{
+ dir = 8
+ },
+/obj/machinery/door/window/brigdoor/northright{
+ dir = 2;
+ name = "Security Boards";
+ req_access_txt = "16"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/camera/autoname/directional/east{
+ network = list("aiupload")
+ },
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai_upload)
"plT" = (
/obj/machinery/airalarm/directional/west,
/obj/effect/turf_decal/tile/blue/half/contrasted{
@@ -48874,6 +48879,15 @@
},
/turf/open/floor/iron/tech,
/area/engine/atmos)
+"psP" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/blackbox_recorder,
+/turf/open/floor/circuit/telecomms/mainframe{
+ initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
+ },
+/area/tcommsat/computer)
"psU" = (
/obj/effect/turf_decal/bot,
/obj/machinery/light{
@@ -49390,15 +49404,6 @@
dir = 1
},
/area/hallway/primary/central)
-"pBi" = (
-/obj/machinery/firealarm/directional/south,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/turf/open/floor/iron/dark/telecomms{
- initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
- },
-/area/engine/gravity_generator)
"pBt" = (
/obj/structure/table/reinforced,
/obj/effect/turf_decal/stripes/line{
@@ -51580,6 +51585,20 @@
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/plating,
/area/vacant_room/commissary/commissary1)
+"qjt" = (
+/obj/item/radio/intercom{
+ pixel_y = -35
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector{
+ dir = 1
+ },
+/obj/machinery/airalarm/directional/south,
+/obj/machinery/portable_atmospherics/canister/plasma,
+/obj/effect/mapping_helpers/atmos_auto_connect,
+/turf/open/floor/iron/dark/telecomms{
+ initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
+ },
+/area/tcommsat/computer)
"qjH" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/curtain/directional{
@@ -52409,32 +52428,25 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/starboard/fore)
-"qvV" = (
-/obj/machinery/power/apc/auto_name/directional/south,
-/obj/machinery/light_switch/tcomms{
- pixel_x = 12;
- pixel_y = -21
- },
-/obj/machinery/light_switch{
- name = "Control Room light switch";
- pixel_x = -10;
- pixel_y = -21
+"qwL" = (
+/obj/structure/sign/poster/random,
+/turf/closed/wall,
+/area/gateway)
+"qwX" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -33
},
-/obj/machinery/light,
/obj/structure/cable{
- icon_state = "0-4"
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ dir = 5
},
+/obj/machinery/space_heater,
/turf/open/floor/iron/dark/telecomms{
initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
},
-/area/engine/gravity_generator)
-"qwL" = (
-/obj/structure/sign/poster/random,
-/turf/closed/wall,
-/area/gateway)
+/area/tcommsat/computer)
"qwZ" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/landmark/blobstart,
@@ -70281,15 +70293,6 @@
"wfM" = (
/turf/open/floor/plating,
/area/maintenance/port/aft)
-"wfO" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/telecomms/hub/preset,
-/turf/open/floor/circuit/telecomms/mainframe{
- initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
- },
-/area/tcommsat/computer)
"wfX" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/guideline/guideline_half_edge/blue{
@@ -70663,6 +70666,28 @@
/obj/structure/table/wood,
/turf/open/floor/carpet/green,
/area/hallway/secondary/exit/departure_lounge)
+"wmK" = (
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/machinery/light_switch/tcomms{
+ pixel_x = 12;
+ pixel_y = -21
+ },
+/obj/machinery/light_switch{
+ name = "Control Room light switch";
+ pixel_x = -10;
+ pixel_y = -21
+ },
+/obj/machinery/light,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/telecomms{
+ initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
+ },
+/area/tcommsat/computer)
"wng" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/yellow{
@@ -74009,16 +74034,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
-"xtz" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/blackbox_recorder,
-/turf/open/floor/circuit/green/telecomms/mainframe,
-/area/tcommsat/server)
"xtE" = (
/obj/effect/turf_decal/tile/dark_green/fourcorners/contrasted,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -75339,21 +75354,6 @@
},
/turf/open/floor/engine,
/area/security/nuke_storage)
-"xMj" = (
-/obj/structure/extinguisher_cabinet{
- pixel_y = -33
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- dir = 5
- },
-/obj/machinery/space_heater,
-/turf/open/floor/iron/dark/telecomms{
- initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
- },
-/area/engine/gravity_generator)
"xMx" = (
/obj/effect/turf_decal/stripes/line,
/obj/structure/cable{
@@ -110049,7 +110049,7 @@ eyz
mTR
uTv
uTv
-nXV
+plH
cLD
ogV
buw
@@ -110088,7 +110088,7 @@ cMI
iST
iST
tHK
-ebF
+iST
ebF
ebF
ebF
@@ -110345,7 +110345,7 @@ eSO
qgB
jeN
ief
-kYm
+qjt
ebF
aSY
cSN
@@ -110602,7 +110602,7 @@ xCR
cSZ
oaZ
jHW
-pBi
+cqV
ebF
iUV
eId
@@ -110859,7 +110859,7 @@ pYb
iwO
ghe
kAi
-qvV
+wmK
ebF
oVd
bsT
@@ -111116,7 +111116,7 @@ rEu
qVF
omg
aWq
-xMj
+qwX
ebF
bsT
sYx
@@ -111369,11 +111369,11 @@ uSx
rEW
cJD
kPu
-xtz
+nTp
hoG
oDI
-wfO
-lxG
+psP
+eAA
ebF
tqN
bHa
@@ -111630,7 +111630,7 @@ cMI
iST
iST
iST
-ebF
+iST
ebF
ebF
ebF
diff --git a/beestation.dme b/beestation.dme
index cd9e1b7ded241..598b90abcda73 100644
--- a/beestation.dme
+++ b/beestation.dme
@@ -510,6 +510,7 @@
#include "code\controllers\subsystem\processing\processing.dm"
#include "code\controllers\subsystem\processing\projectiles.dm"
#include "code\controllers\subsystem\processing\quirks.dm"
+#include "code\controllers\subsystem\processing\servers.dm"
#include "code\controllers\subsystem\processing\singulo.dm"
#include "code\controllers\subsystem\processing\station.dm"
#include "code\controllers\subsystem\processing\wet_floors.dm"
@@ -679,6 +680,7 @@
#include "code\datums\components\remote_materials.dm"
#include "code\datums\components\riding.dm"
#include "code\datums\components\rotation.dm"
+#include "code\datums\components\server.dm"
#include "code\datums\components\seclight_attachable.dm"
#include "code\datums\components\shell.dm"
#include "code\datums\components\shielded.dm"
diff --git a/code/__DEFINES/dcs/signals/signals_obj/signals_machine/signals_machinery.dm b/code/__DEFINES/dcs/signals/signals_obj/signals_machine/signals_machinery.dm
index 0ee2c981e4acd..21102eba3950d 100644
--- a/code/__DEFINES/dcs/signals/signals_obj/signals_machine/signals_machinery.dm
+++ b/code/__DEFINES/dcs/signals/signals_obj/signals_machine/signals_machinery.dm
@@ -16,6 +16,8 @@
#define COMSIG_MACHINERY_POWER_RESTORED "machinery_power_restored"
///from /obj/machinery/set_occupant(atom/movable/O): (new_occupant)
#define COMSIG_MACHINERY_SET_OCCUPANT "machinery_set_occupant"
+///from /obj/machinery/proc/use_power(): (power_used)
+#define COMSIG_MACHINERY_POWER_USED "machinery_power_used"
// /obj/machinery/atmospherics/components/unary/cryo_cell signals
diff --git a/code/__DEFINES/networks.dm b/code/__DEFINES/networks.dm
index c938cdbfb0f9b..31eecf7b0690d 100644
--- a/code/__DEFINES/networks.dm
+++ b/code/__DEFINES/networks.dm
@@ -49,6 +49,7 @@
#define __NETWORK_CARGO "CARGO"
#define __NETWORK_BOTS "BOTS"
#define __NETWORK_COMPUTER "COMPUTER"
+#define __NETWORK_SERVER "SERVER"
#define __NETWORK_CARDS "CARDS"
#define __NETWORK_CIRCUITS "CIRCUITS"
@@ -132,3 +133,6 @@
#define NETWORK_ERROR_BAD_NETWORK "network_error_bad_network"
#define NETWORK_ERROR_BAD_RECEIVER_ID "network_error_bad_receiver_id"
#define NETWORK_ERROR_UNAUTHORIZED "network_error_bad_unauthorized"
+
+// Packet types
+#define PACKET_TYPE_PING "ping"
diff --git a/code/__DEFINES/stat.dm b/code/__DEFINES/stat.dm
index 889c183b21e92..199191d4e68ae 100644
--- a/code/__DEFINES/stat.dm
+++ b/code/__DEFINES/stat.dm
@@ -13,10 +13,12 @@
#define MAX_SATIETY 600
// bitflags for machine stat variable
-#define BROKEN (1<<0)
-#define NOPOWER (1<<1)
-#define MAINT (1<<2) // under maintaince
-#define EMPED (1<<3) // temporary broken by EMP pulse
+#define BROKEN (1<<0)
+#define NOPOWER (1<<1)
+#define MAINT (1<<2) //! under maintenance
+#define EMPED (1<<3) //! temporary broken by EMP pulse
+#define OVERHEATED (1<<4) //! overheated
+#define TURNED_OFF (1<<5) //! turned off
//ai power requirement defines
#define POWER_REQ_ALL 1
diff --git a/code/controllers/subsystem/processing/servers.dm b/code/controllers/subsystem/processing/servers.dm
new file mode 100644
index 0000000000000..8e47f663e45dd
--- /dev/null
+++ b/code/controllers/subsystem/processing/servers.dm
@@ -0,0 +1,4 @@
+PROCESSING_SUBSYSTEM_DEF(servers)
+ name = "Servers"
+ wait = 0.2 SECONDS
+ stat_tag = "SP"
diff --git a/code/controllers/subsystem/research.dm b/code/controllers/subsystem/research.dm
index bc208fcf8f4ae..e39e83a0b1c04 100644
--- a/code/controllers/subsystem/research.dm
+++ b/code/controllers/subsystem/research.dm
@@ -63,9 +63,10 @@ SUBSYSTEM_DEF(research)
bitcoins[i] = bitcoins[i]? bitcoins[i] + result[i] : result[i]
else
for(var/obj/machinery/rnd/server/miner in servers)
- if(miner.working)
- bitcoins = single_server_income.Copy()
- break //Just need one to work.
+ if(miner.machine_stat)
+ continue
+ bitcoins = single_server_income.Copy()
+ break //Just need one to work.
if (!isnull(last_income))
var/income_time_difference = world.time - last_income
science_tech.last_bitcoins = bitcoins // Doesn't take tick drift into account
@@ -77,8 +78,9 @@ SUBSYSTEM_DEF(research)
/datum/controller/subsystem/research/proc/calculate_server_coefficient() //Diminishing returns.
var/list/obj/machinery/rnd/server/active = new()
for(var/obj/machinery/rnd/server/miner in servers)
- if(miner.working)
- active.Add(miner)
+ if(miner.machine_stat)
+ continue
+ active.Add(miner)
var/amt = active.len
if(!amt)
return 0
diff --git a/code/datums/components/ntnet_interface.dm b/code/datums/components/ntnet_interface.dm
index 784eae9e12ece..671bffe09e0ab 100644
--- a/code/datums/components/ntnet_interface.dm
+++ b/code/datums/components/ntnet_interface.dm
@@ -8,7 +8,7 @@
* Arguments:
* * packet_data - Either a list() or a /datum/netdata. If its netdata, the other args are ignored
* * target_id - Target hardware id or network_id for this packet. If we are a network id, then its
- broadcasted to that network.
+ * * broadcasted to that network.
* * passkey - Authentication for the packet. If the target doesn't authenticate the packet is dropped
*/
/datum/proc/ntnet_send(packet_data, target_id = null, passkey = null)
diff --git a/code/datums/components/server.dm b/code/datums/components/server.dm
new file mode 100644
index 0000000000000..ae8cb5a501a8f
--- /dev/null
+++ b/code/datums/components/server.dm
@@ -0,0 +1,72 @@
+#define SPARK_COOLDOWN_TIME 10 SECONDS
+
+// Server component
+// will generate a heat based on the power usage of the machine
+// use only with /obj/machinery
+
+
+
+/datum/component/server
+
+ var/efficiency = 1 // 0 to 1 range
+
+ var/temperature = T20C // current temperature
+ var/warning_temp = T0C + 50 // 50C
+ var/overheated_temp = T0C + 100 // 100C - temperature at which the server stops working
+ var/heat_capacity = 2500 // Used for auxmos heat transfer
+
+ var/heat_generation = 0 // heat generated by the machine
+
+ // if it sparks when overheated
+ var/sparks = TRUE
+ COOLDOWN_DECLARE(spark_cooldown)
+
+/datum/component/server/Initialize()
+ if(!ismachinery(parent)) // currently only compatible with machinery
+ return COMPONENT_INCOMPATIBLE
+ RegisterSignal(parent, COMSIG_MACHINERY_POWER_USED, PROC_REF(ParentPowerUsed))
+ START_PROCESSING(SSservers, src)
+
+/datum/component/server/Destroy(force, silent)
+ . = ..()
+ UnregisterSignal(parent, COMSIG_MACHINERY_POWER_USED)
+ STOP_PROCESSING(SSservers, src)
+
+/datum/component/server/proc/ParentPowerUsed(source, amount, chan)
+ heat_generation += amount * 1000
+
+// server is overheated and doesn't work
+/datum/component/server/proc/overheated(is_overheated)
+ if(is_overheated && sparks && COOLDOWN_FINISHED(src, spark_cooldown))
+ do_sparks(5, FALSE, parent)
+ COOLDOWN_START(src, spark_cooldown, SPARK_COOLDOWN_TIME)
+
+
+/datum/component/server/process(delta_time)
+ var/obj/machinery/parent_machine = parent
+ if(!calculate_temperature())
+ return
+ if(temperature > overheated_temp)
+ if(!(parent_machine.machine_stat & OVERHEATED))
+ overheated(TRUE)
+ parent_machine.set_machine_stat(parent_machine.machine_stat | OVERHEATED)
+ return
+ efficiency = 0
+ else
+ if(parent_machine.machine_stat & OVERHEATED)
+ overheated(FALSE)
+ parent_machine.set_machine_stat(parent_machine.machine_stat & ~OVERHEATED)
+ var/efficiency_change = ((temperature - T20C) / (overheated_temp - T20C))
+ efficiency = clamp(1 - efficiency_change, 0, 1)
+ temperature += heat_generation / heat_capacity
+ heat_generation = 0
+
+/datum/component/server/proc/calculate_temperature()
+ var/turf/turf = get_turf(parent)
+ if(!turf)
+ return FALSE
+ var/datum/gas_mixture/environment = turf.return_air()
+
+ temperature = environment.temperature_share(null, OPEN_HEAT_TRANSFER_COEFFICIENT, temperature, heat_capacity)
+
+#undef SPARK_COOLDOWN_TIME
diff --git a/code/game/machinery/_machinery.dm b/code/game/machinery/_machinery.dm
index eea51ee705002..c8de830c096ed 100644
--- a/code/game/machinery/_machinery.dm
+++ b/code/game/machinery/_machinery.dm
@@ -588,10 +588,12 @@ Class Procs:
if(!panel_open)
panel_open = TRUE
icon_state = icon_state_open
+ set_machine_stat(machine_stat & MAINT)
to_chat(user, "You open the maintenance hatch of [src].")
else
panel_open = FALSE
icon_state = icon_state_closed
+ set_machine_stat(machine_stat & ~MAINT)
to_chat(user, "You close the maintenance hatch of [src].")
return 1
return 0
diff --git a/code/game/machinery/telecomms/computers/telemonitor.dm b/code/game/machinery/telecomms/computers/telemonitor.dm
index 048bd813e8bcb..c249c6b615127 100644
--- a/code/game/machinery/telecomms/computers/telemonitor.dm
+++ b/code/game/machinery/telecomms/computers/telemonitor.dm
@@ -1,7 +1,6 @@
/*
- Telecomms monitor tracks the overall trafficing of a telecommunications network
- and displays a heirarchy of linked machines.
+ Telecommunications Monitoring Console displays the status of the telecommunications network it's connected to.
*/
@@ -9,118 +8,80 @@
name = "telecommunications monitoring console"
icon_screen = "comm_monitor"
desc = "Monitors the details of the telecommunications network it's synced with."
-
- var/screen = 0 // the screen number:
- var/list/machinelist = list() // the machines located by the computer
- var/obj/machinery/telecomms/SelectedMachine
-
+ circuit = /obj/item/circuitboard/computer/comm_monitor
+ network_id = __NETWORK_SERVER // if its connected to the default one we will ignore it
var/network = "NULL" // the network to probe
+ var/list/servers = list() // the servers in the network
- var/temp = "" // temporary feedback messages
- circuit = /obj/item/circuitboard/computer/comm_monitor
-/obj/machinery/computer/telecomms/monitor/ui_interact(mob/user)
+/obj/machinery/computer/telecomms/monitor/Initialize(mapload)
. = ..()
- var/dat = "Telecommunications MonitorTelecommunications Monitor"
-
- switch(screen)
-
-
- // --- Main Menu ---
-
- if(0)
- dat += "
[temp]
"
- dat += "
Current Network: [network]
"
- if(machinelist.len)
- dat += "
Detected Network Entities:"
- for(var/obj/machinery/telecomms/T in machinelist)
- dat += "- [REF(T)] [T.name] ([T.id])
"
- dat += "
"
- dat += "
\[Flush Buffer\]"
- else
- dat += "\[Probe Network\]"
-
-
- // --- Viewing Machine ---
-
- if(1)
- dat += "
[temp]
"
- dat += "\[Main Menu\]"
- dat += "
Current Network: [network]
"
- dat += "Selected Network Entity: [SelectedMachine.name] ([SelectedMachine.id])
"
- dat += "Linked Entities: "
- for(var/obj/machinery/telecomms/T in SelectedMachine.links)
- if(!T.hide)
- dat += "- [REF(T.id)] [T.name] ([T.id])
"
- dat += "
"
-
-
-
- user << browse(dat, "window=comm_monitor;size=575x400")
- onclose(user, "server_control")
-
- temp = ""
- return
-
-
-/obj/machinery/computer/telecomms/monitor/Topic(href, href_list)
- if(..())
- return
-
-
- add_fingerprint(usr)
- usr.set_machine(src)
-
- if(href_list["viewmachine"])
- screen = 1
- for(var/obj/machinery/telecomms/T in machinelist)
- if(T.id == href_list["viewmachine"])
- SelectedMachine = T
- break
-
- if(href_list["operation"])
- switch(href_list["operation"])
-
- if("release")
- machinelist = list()
- screen = 0
-
- if("mainmenu")
- screen = 0
-
- if("probe")
- if(machinelist.len > 0)
- temp = "- FAILED: CANNOT PROBE WHEN BUFFER FULL -"
-
- else
- for(var/obj/machinery/telecomms/T in urange(25, src))
- if(T.network == network)
- machinelist.Add(T)
+ update_network()
+ RegisterSignal(src, COMSIG_COMPONENT_NTNET_RECEIVE, PROC_REF(ntnet_receive))
- if(!machinelist.len)
- temp = "- FAILED: UNABLE TO LOCATE NETWORK ENTITIES IN \[[network]\] -"
- else
- temp = "- [machinelist.len] ENTITIES LOCATED & BUFFERED -"
-
- screen = 0
-
-
- if(href_list["network"])
-
- var/newnet = stripped_input(usr, "Which network do you want to view?", "Comm Monitor", network)
- if(newnet && (get_dist(usr, src) <= 1 || issilicon(usr)))
- if(length(newnet) > 15)
- temp = "- FAILED: NETWORK TAG STRING TOO LENGHTLY -"
+/obj/machinery/computer/telecomms/monitor/Destroy()
+ . = ..()
+ UnregisterSignal(src, COMSIG_COMPONENT_NTNET_RECEIVE)
- else
- network = newnet
- screen = 0
- machinelist = list()
- temp = "- NEW NETWORK TAG SET IN ADDRESS \[[network]\] -"
- updateUsrDialog()
- return
+/obj/machinery/computer/telecomms/monitor/ui_interact(mob/user, datum/tgui/ui)
+ ui = SStgui.try_update_ui(user, src, ui)
+ if(!ui)
+ ui = new(user, src, "Telemonitor")
+ ui.set_autoupdate(TRUE)
+ ui.open()
-/obj/machinery/computer/telecomms/monitor/attackby()
+/obj/machinery/computer/telecomms/monitor/ui_act(action, params)
. = ..()
- updateUsrDialog()
+ if(.)
+ return
+ if(action == "change_network")
+ network = params["network_name"]
+ update_network()
+ return TRUE
+ if(action == "delete_server")
+ servers -= params["server_id"]
+
+/obj/machinery/computer/telecomms/monitor/ui_data(mob/user)
+ var/list/data = list()
+ data["network_id"] = network
+ data["current_time"] = world.time
+ data["servers"] = servers
+
+ return data
+
+/obj/machinery/computer/telecomms/monitor/process()
+ get_server_status()
+
+/obj/machinery/computer/telecomms/monitor/proc/get_server_status()
+ if(network_id == __NETWORK_SERVER)
+ return
+ var/data = list()
+ data["type"] = PACKET_TYPE_PING
+ ntnet_send(data, network_id)
+
+/obj/machinery/computer/telecomms/monitor/proc/ntnet_receive(datum/source, datum/netdata/data)
+ if(islist(data.receiver_id))
+ return // if its broadcasting we don't want that packet, its probably our ping
+ servers[data.sender_id] = data.data
+ servers[data.sender_id]["last_update"] = world.time
+ servers[data.sender_id]["sender_id"] = data.sender_id
+
+/obj/machinery/computer/telecomms/monitor/proc/update_network()
+ servers = list()
+ if(!network || network == "NULL")
+ return
+ var/new_network_id = NETWORK_NAME_COMBINE(__NETWORK_SERVER, network) // should result in something like SERVER.TCOMMSAT
+ var/area/A = get_area(src)
+ if(A)
+ if(!A.network_root_id)
+ log_telecomms("Area '[A.name]([REF(A)])' has no network network_root_id, force assigning in object [src]([REF(src)])")
+ SSnetworks.lookup_area_root_id(A)
+ new_network_id = NETWORK_NAME_COMBINE(A.network_root_id, new_network_id) // should result in something like SS13.SERVER.TCOMMSAT
+ else
+ log_telecomms("Created [src]([REF(src)] in nullspace, assuming network to be in station")
+ new_network_id = NETWORK_NAME_COMBINE(STATION_NETWORK_ROOT, new_network_id) // should result in something like SS13.SERVER.TCOMMSAT
+ new_network_id = simple_network_name_fix(new_network_id) // make sure the network name is valid
+ var/datum/ntnet/new_network = SSnetworks.create_network_simple(new_network_id)
+ new_network.move_interface(GetComponent(/datum/component/ntnet_interface), new_network_id, network_id)
+ network_id = new_network_id
diff --git a/code/game/machinery/telecomms/machine_interactions.dm b/code/game/machinery/telecomms/machine_interactions.dm
index 25ca9b563a6e8..5667bebb77478 100644
--- a/code/game/machinery/telecomms/machine_interactions.dm
+++ b/code/game/machinery/telecomms/machine_interactions.dm
@@ -116,6 +116,7 @@
network = params["value"]
links = list()
log_game("[key_name(usr)] has changed the network for [src] at [AREACOORD(src)] to [network].")
+ update_network()
. = TRUE
if("tempfreq")
if(params["value"])
diff --git a/code/game/machinery/telecomms/machines/broadcaster.dm b/code/game/machinery/telecomms/machines/broadcaster.dm
index 7ae10d4ffbbae..87ac18365802a 100644
--- a/code/game/machinery/telecomms/machines/broadcaster.dm
+++ b/code/game/machinery/telecomms/machines/broadcaster.dm
@@ -15,7 +15,8 @@ GLOBAL_VAR_INIT(message_delay, 0) // To make sure restarting the recentmessages
telecomms_type = /obj/machinery/telecomms/broadcaster
density = TRUE
use_power = IDLE_POWER_USE
- idle_power_usage = 25
+ idle_power_usage = 5
+ active_power_usage = 20
circuit = /obj/item/circuitboard/machine/telecomms/broadcaster
/obj/machinery/telecomms/broadcaster/receive_information(datum/signal/subspace/signal, obj/machinery/telecomms/machine_from)
@@ -46,6 +47,7 @@ GLOBAL_VAR_INIT(message_delay, 0) // To make sure restarting the recentmessages
sleep(signal.data["slow"]) // simulate the network lag if necessary
signal.broadcast()
+ use_power(active_power_usage)
if(!GLOB.message_delay)
GLOB.message_delay = 1
diff --git a/code/game/machinery/telecomms/machines/bus.dm b/code/game/machinery/telecomms/machines/bus.dm
index 6846d57098455..f960969eaa841 100644
--- a/code/game/machinery/telecomms/machines/bus.dm
+++ b/code/game/machinery/telecomms/machines/bus.dm
@@ -15,7 +15,8 @@
telecomms_type = /obj/machinery/telecomms/bus
density = TRUE
use_power = IDLE_POWER_USE
- idle_power_usage = 50
+ idle_power_usage = 10
+ active_power_usage = 50
netspeed = 40
circuit = /obj/item/circuitboard/machine/telecomms/bus
var/change_frequency = 0
diff --git a/code/game/machinery/telecomms/machines/hub.dm b/code/game/machinery/telecomms/machines/hub.dm
index d8c9b3f478041..7b97ff04b8e7f 100644
--- a/code/game/machinery/telecomms/machines/hub.dm
+++ b/code/game/machinery/telecomms/machines/hub.dm
@@ -15,7 +15,8 @@
telecomms_type = /obj/machinery/telecomms/hub
density = TRUE
use_power = IDLE_POWER_USE
- idle_power_usage = 80
+ idle_power_usage = 10
+ active_power_usage = 40
long_range_link = TRUE
netspeed = 40
circuit = /obj/item/circuitboard/machine/telecomms/hub
diff --git a/code/game/machinery/telecomms/machines/message_server.dm b/code/game/machinery/telecomms/machines/message_server.dm
index a1c489fe4467b..8879663f62add 100644
--- a/code/game/machinery/telecomms/machines/message_server.dm
+++ b/code/game/machinery/telecomms/machines/message_server.dm
@@ -77,7 +77,7 @@
density = TRUE
use_power = IDLE_POWER_USE
idle_power_usage = 10
- active_power_usage = 100
+ active_power_usage = 40
circuit = /obj/item/circuitboard/machine/telecomms/message_server
var/list/datum/data_tablet_msg/modular_msgs = list()
diff --git a/code/game/machinery/telecomms/machines/processor.dm b/code/game/machinery/telecomms/machines/processor.dm
index 5c6a3f92a9eba..ab5c3c175f7fc 100644
--- a/code/game/machinery/telecomms/machines/processor.dm
+++ b/code/game/machinery/telecomms/machines/processor.dm
@@ -13,7 +13,8 @@
telecomms_type = /obj/machinery/telecomms/processor
density = TRUE
use_power = IDLE_POWER_USE
- idle_power_usage = 30
+ idle_power_usage = 10
+ active_power_usage = 30
circuit = /obj/item/circuitboard/machine/telecomms/processor
var/process_mode = 1 // 1 = Uncompress Signals, 0 = Compress Signals
diff --git a/code/game/machinery/telecomms/machines/receiver.dm b/code/game/machinery/telecomms/machines/receiver.dm
index 1f0a2ec4753fe..89e1c31cd883a 100644
--- a/code/game/machinery/telecomms/machines/receiver.dm
+++ b/code/game/machinery/telecomms/machines/receiver.dm
@@ -13,7 +13,8 @@
telecomms_type = /obj/machinery/telecomms/receiver
density = TRUE
use_power = IDLE_POWER_USE
- idle_power_usage = 30
+ idle_power_usage = 5
+ active_power_usage = 20
circuit = /obj/item/circuitboard/machine/telecomms/receiver
/obj/machinery/telecomms/receiver/receive_signal(datum/signal/subspace/signal)
diff --git a/code/game/machinery/telecomms/machines/relay.dm b/code/game/machinery/telecomms/machines/relay.dm
index 27652e4af2e2a..2d06dd11f8240 100644
--- a/code/game/machinery/telecomms/machines/relay.dm
+++ b/code/game/machinery/telecomms/machines/relay.dm
@@ -12,8 +12,7 @@
desc = "A mighty piece of hardware used to send massive amounts of data far away."
telecomms_type = /obj/machinery/telecomms/relay
density = TRUE
- use_power = IDLE_POWER_USE
- idle_power_usage = 30
+ use_power = NO_POWER_USE // made only so they don't overheat in whatever places they usually are in (exploration shuttle, small rooms in multi-z maps etc.)
netspeed = 5
long_range_link = 1
circuit = /obj/item/circuitboard/machine/telecomms/relay
diff --git a/code/game/machinery/telecomms/machines/server.dm b/code/game/machinery/telecomms/machines/server.dm
index a90f707e6a7be..a967533160486 100644
--- a/code/game/machinery/telecomms/machines/server.dm
+++ b/code/game/machinery/telecomms/machines/server.dm
@@ -12,7 +12,8 @@
telecomms_type = /obj/machinery/telecomms/server
density = TRUE
use_power = IDLE_POWER_USE
- idle_power_usage = 15
+ idle_power_usage = 5
+ active_power_usage = 10
circuit = /obj/item/circuitboard/machine/telecomms/server
var/list/log_entries = list()
var/totaltraffic = 0 // gigabytes (if > 1024, divide by 1024 -> terrabytes)
diff --git a/code/game/machinery/telecomms/telecomunications.dm b/code/game/machinery/telecomms/telecomunications.dm
index 183c75955b45d..62fc15fd0d93f 100644
--- a/code/game/machinery/telecomms/telecomunications.dm
+++ b/code/game/machinery/telecomms/telecomunications.dm
@@ -18,7 +18,8 @@ GLOBAL_LIST_EMPTY(telecomms_list)
icon = 'icons/obj/machines/telecomms.dmi'
critical_machine = TRUE
light_color = LIGHT_COLOR_CYAN
- /// list of machines this machine is linked to
+ network_id = __NETWORK_SERVER
+ /// /// list of machines this machine is linked to
var/list/links = list()
/**
* associative lazylist list of the telecomms_type of linked telecomms machines and a list of said machines.
@@ -49,6 +50,8 @@ GLOBAL_LIST_EMPTY(telecomms_list)
/// Is it a hidden machine?
var/hide = FALSE
+ var/datum/component/server/server_component
+
/// relay signal to all linked machinery that are of type [filter]. If signal has been sent [amount] times, stop sending
/obj/machinery/telecomms/proc/relay_information(datum/signal/subspace/signal, filter, copysig, amount = 20)
@@ -59,12 +62,16 @@ GLOBAL_LIST_EMPTY(telecomms_list)
CRASH("null or non /obj/machinery/telecomms typepath given as the filter argument! given typepath: [filter]")
var/send_count = 0
-
// Apply some lag based on traffic rates
var/netlag = round(traffic / 50)
if(netlag > signal.data["slow"])
signal.data["slow"] = netlag
+ // Aply some lag from throttling
+ var/efficiency = get_efficiency()
+ var/throttling = (10 - 10 * efficiency)
+ signal.data["slow"] += throttling
+
// Loop through all linked machines and send the signal or copy.
for(var/obj/machinery/telecomms/filtered_machine in links_by_telecomms_type?[filter])
@@ -86,7 +93,7 @@ GLOBAL_LIST_EMPTY(telecomms_list)
if(send_count > 0 && is_freq_listening(signal))
traffic++
-
+ use_power(active_power_usage)
return send_count
/obj/machinery/telecomms/proc/relay_direct_information(datum/signal/signal, obj/machinery/telecomms/machine)
@@ -103,6 +110,9 @@ GLOBAL_LIST_EMPTY(telecomms_list)
/obj/machinery/telecomms/Initialize(mapload)
. = ..()
+ server_component = AddComponent(/datum/component/server) // they generate heat
+ update_network() // we try to connect to NTnet
+ RegisterSignal(src, COMSIG_COMPONENT_NTNET_RECEIVE, PROC_REF(ntnet_receive))
GLOB.telecomms_list += src
if(mapload && autolinkers.len)
return INITIALIZE_HINT_LATELOAD
@@ -114,12 +124,23 @@ GLOBAL_LIST_EMPTY(telecomms_list)
add_automatic_link(telecomms_machine)
/obj/machinery/telecomms/Destroy()
+ UnregisterSignal(src, COMSIG_COMPONENT_NTNET_RECEIVE)
+ server_component = null
GLOB.telecomms_list -= src
for(var/obj/machinery/telecomms/comm in GLOB.telecomms_list)
remove_link(comm)
links = list()
return ..()
+/obj/machinery/telecomms/proc/get_temperature()
+ return server_component.temperature
+
+/obj/machinery/telecomms/proc/get_efficiency()
+ return server_component.efficiency
+
+/obj/machinery/telecomms/proc/get_overheat_temperature()
+ return server_component.overheated_temp
+
// Used in auto linking
/obj/machinery/telecomms/proc/add_automatic_link(obj/machinery/telecomms/T)
var/turf/position = get_turf(src)
@@ -136,6 +157,39 @@ GLOBAL_LIST_EMPTY(telecomms_list)
add_new_link(T)
return
+/obj/machinery/telecomms/proc/update_network()
+ var/area/A = get_area(src)
+ if(!network || network == "NULL" || !A)
+ return
+ var/new_network_id = NETWORK_NAME_COMBINE(__NETWORK_SERVER, network) // should result in something like SERVER.TCOMMSAT
+ if(!A.network_root_id)
+ log_telecomms("Area '[A.name]([REF(A)])' has no network network_root_id, force assigning in object [src]([REF(src)])")
+ SSnetworks.lookup_area_root_id(A)
+ new_network_id = NETWORK_NAME_COMBINE(A.network_root_id, new_network_id) // should result in something like SS13.SERVER.TCOMMSAT
+ else
+ log_telecomms("Created [src]([REF(src)] in nullspace, assuming network to be in station")
+ new_network_id = NETWORK_NAME_COMBINE(STATION_NETWORK_ROOT, new_network_id) // should result in something like SS13.SERVER.TCOMMSAT
+ new_network_id = simple_network_name_fix(new_network_id) // make sure the network name is valid
+ var/datum/ntnet/new_network = SSnetworks.create_network_simple(new_network_id)
+ new_network.move_interface(GetComponent(/datum/component/ntnet_interface), new_network_id, network_id)
+ network_id = new_network_id
+
+/obj/machinery/telecomms/proc/ntnet_receive(datum/source, datum/netdata/data)
+
+ //Check radio signal jamming
+ if(is_jammed(JAMMER_PROTECTION_WIRELESS) || machine_stat & (BROKEN|NOPOWER|MAINT|EMPED))
+ return
+
+ switch(data.data["type"])
+ if(PACKET_TYPE_PING) // we respond to the ping with our status
+ var/list/send_data = list()
+ send_data["name"] = name
+ send_data["temperature"] = get_temperature()
+ send_data["overheat_temperature"] = get_overheat_temperature()
+ send_data["efficiency"] = get_efficiency()
+ send_data["overheated"] = (machine_stat & OVERHEATED)
+
+ ntnet_send(send_data, data["sender_id"])
/obj/machinery/telecomms/update_icon()
if(on)
@@ -153,7 +207,7 @@ GLOBAL_LIST_EMPTY(telecomms_list)
var/newState = on
if(toggled)
- if(machine_stat & (BROKEN|NOPOWER|EMPED)) // if powered, on. if not powered, off. if too damaged, off
+ if(machine_stat & (BROKEN|NOPOWER|EMPED|OVERHEATED)) // if powered, on. if not powered, off. if too damaged, off
newState = FALSE
else
newState = TRUE
diff --git a/code/modules/power/power.dm b/code/modules/power/power.dm
index 687f9da811192..9e728db502056 100644
--- a/code/modules/power/power.dm
+++ b/code/modules/power/power.dm
@@ -78,7 +78,7 @@
return TRUE
if(!loc)
return FALSE
- if(machine_stat & EMPED)
+ if(machine_stat & (EMPED|OVERHEATED))
return FALSE
var/area/A = get_area(src) // make sure it's in an area
if(!A)
@@ -94,6 +94,7 @@
return
if(chan == -1)
chan = power_channel
+ SEND_SIGNAL(src, COMSIG_MACHINERY_POWER_USED, amount, chan)
A.use_power(amount, chan)
/obj/machinery/proc/addStaticPower(value, powerchannel)
diff --git a/code/modules/research/server.dm b/code/modules/research/server.dm
index 2ea70ed407f99..0645cd91e86c3 100644
--- a/code/modules/research/server.dm
+++ b/code/modules/research/server.dm
@@ -3,11 +3,12 @@
desc = "A computer system running a deep neural network that processes arbitrary information to produce data useable in the development of new technologies. In layman's terms, it makes research points."
icon = 'icons/obj/machines/research.dmi'
icon_state = "RD-server-on"
+ circuit = /obj/item/circuitboard/machine/rdserver
+
+ idle_power_usage = 5 // having servers online uses a little bit of power
+ active_power_usage = 50 // mining uses a lot of power
+
var/datum/techweb/stored_research
- //Code for point mining here.
- var/overheated = FALSE
- var/working = TRUE
- var/research_disabled = FALSE
var/server_id = 0
var/heat_gen = 1
// some notes on this number
@@ -17,24 +18,12 @@
// 7.40./2 = 3.70 (note, all these values are rounded). This is howw this number was found.
var/base_mining_income = 3.70
- // Heating is weird. Since the servers are stored in a room that sucks air in one vent, into a pipe network, to a
- // T1 freezer, then out another vent at standard presure, the rooms temps could vary as wieldy as 100K. The T1 freezer
- // has 10000 heat power at the start, so each of the servers produce that but only heat a quarter of the turf
- // This allows the servers to rapidly heat up in under 5 min to the shut off point and make it annoying to cool back
- // down, giving time for RD to fire the guy who shut off the cooler
-
- var/heating_power = 10000 // Changed the value from 40000. Just enough for a T1 freezer to keep up with 2 of them
- var/heating_effecency = 0.25
- var/temp_tolerance_low = T0C
- var/temp_tolerance_high = T20C
- var/temp_tolerance_damage = T0C + 200 // Most CPUS get up to 200C they start breaking. TODO: Start doing damage to the server?
- var/temp_penalty_coefficient = 0.5 //1 = -1 points per degree above high tolerance. 0.5 = -0.5 points per degree above high tolerance.
- var/current_temp = -1
req_access = list(ACCESS_RD_SERVER) //ONLY THE R&D, AND WHO HAVE THE ACCESS TO CAN CHANGE SERVER SETTINGS.
+ var/datum/component/server/server_component
/obj/machinery/rnd/server/Initialize(mapload)
. = ..()
-
+ server_component = AddComponent(/datum/component/server)
server_id = 0
while(server_id == 0)
var/test_id = rand(1,65535)
@@ -47,10 +36,9 @@
name += " [uppertext(num2hex(server_id, -1))]" //gives us a random four-digit hex number as part of the name. Y'know, for fluff.
SSresearch.servers |= src
stored_research = SSresearch.science_tech
- // The +10 is so the sparks work
- RefreshParts()
/obj/machinery/rnd/server/Destroy()
+ server_component = null
SSresearch.servers -= src
return ..()
@@ -58,7 +46,7 @@
var/tot_rating = 0
for(var/obj/item/stock_parts/SP in src)
tot_rating += SP.rating
- heat_gen = initial(src.heat_gen) / max(1, tot_rating)
+ active_power_usage = initial(src.active_power_usage) / max(1, tot_rating)
/obj/machinery/rnd/server/update_icon()
if (panel_open)
@@ -67,95 +55,37 @@
if (machine_stat & EMPED || machine_stat & NOPOWER)
icon_state = "RD-server-off"
return
- if (research_disabled || overheated)
+ if (machine_stat & (TURNED_OFF|OVERHEATED))
icon_state = "RD-server-halt"
return
icon_state = "RD-server-on"
-/obj/machinery/rnd/server/power_change()
- . = ..()
- refresh_working()
- return
-
-/obj/machinery/rnd/server/process()
- if(!working)
- current_temp = -1
- return
- var/turf/L = get_turf(src)
- var/datum/gas_mixture/env
- if(istype(L))
- env = L.return_air()
- // This is from the RD server code. It works well enough but I need to move over the
- // sspace heater code so we can caculate power used per tick as well and making this both
- // exothermic and an endothermic component
- if(env)
- var/perc = max((get_env_temp() - temp_tolerance_high), 0) * temp_penalty_coefficient / base_mining_income
-
- env.adjust_heat(heating_power * perc * heat_gen)
- air_update_turf()
- src.air_update_turf()
- else
- current_temp = env ? env.return_temperature() : -1
-
-/obj/machinery/rnd/server/proc/get_env_temp()
- // if we are on and ran though one tick
- if(working && current_temp >= 0)
- return current_temp
- else
- // otherwise we get the temp from the turf
- var/turf/L = get_turf(src)
- var/datum/gas_mixture/env
- if(istype(L))
- env = L.return_air()
- return env ? env.return_temperature() : T20C // env might be null at round start. This stops runtimes
-
-/obj/machinery/rnd/server/proc/refresh_working()
- var/current_temp = get_env_temp()
-
- // Once we go over the damage temp, the breaker is flipped
- // Power is still going to the server
- if(!overheated && current_temp >= temp_tolerance_damage)
- investigate_log("[src] overheated!", INVESTIGATE_RESEARCH) // Do we need this?
- overheated = TRUE
-
- // If we are over heated, the server will not restart till
- // eveything is at a safe temp
- if(overheated && current_temp <= temp_tolerance_low)
- overheated = FALSE
-
- // If we are overheateed, start shooting out sparks
- // don't shoot them if we have no power
- if(overheated && !(machine_stat & NOPOWER) && prob(40))
- do_sparks(5, FALSE, src)
-
- if(overheated || research_disabled || machine_stat & EMPED || machine_stat & NOPOWER)
- working = FALSE
- else
- working = TRUE
-
- update_icon()
-
-/obj/machinery/rnd/server/emp_act()
- . = ..()
- refresh_working()
-
-/obj/machinery/rnd/server/emp_reset()
- ..()
- refresh_working()
/obj/machinery/rnd/server/proc/toggle_disable()
- research_disabled = !research_disabled
- refresh_working()
+ set_machine_stat(machine_stat ^ TURNED_OFF)
/obj/machinery/rnd/server/proc/mine()
- // Cheap way to refresh if we are operational or not. mine() is run on the tech web
- // subprocess. This saves us having to run our own subprocess
- refresh_working()
- if(working)
- var/penalty = max((get_env_temp() - temp_tolerance_high), 0) * temp_penalty_coefficient
- return list(TECHWEB_POINT_TYPE_GENERIC = max(base_mining_income - penalty, 0))
- else
- return list(TECHWEB_POINT_TYPE_GENERIC = 0)
+ use_power(active_power_usage, power_channel)
+ var/efficiency = get_efficiency()
+ if(!powered() || efficiency <= 0 && machine_stat)
+ return null
+ return list(TECHWEB_POINT_TYPE_GENERIC = max(base_mining_income * efficiency, 0))
+
+/obj/machinery/rnd/server/proc/get_temperature()
+ return server_component.temperature
+
+/obj/machinery/rnd/server/proc/get_overheat_temperature()
+ return server_component.overheated_temp
+
+/obj/machinery/rnd/server/proc/get_warning_temperature()
+ return server_component.warning_temp
+
+/obj/machinery/rnd/server/proc/get_efficiency()
+ return server_component.efficiency
+
+/obj/machinery/rnd/server/on_set_machine_stat(old_value)
+ . = ..()
+ update_appearance()
/obj/machinery/computer/rdservercontrol
name = "R&D Server Controller"
@@ -182,11 +112,11 @@
servers += list(list(
"name" = S.name,
"server_id" = S.server_id,
- "temperature" = S.get_env_temp(),
- "temperature_warning" = S.temp_tolerance_high,
- "temperature_max" = S.temp_tolerance_damage,
- "enabled" = !S.research_disabled,
- "overheated" = S.overheated,
+ "temperature" = S.get_temperature(),
+ "temperature_warning" = S.get_warning_temperature(),
+ "temperature_max" = S.get_overheat_temperature(),
+ "enabled" = !(S.machine_stat & TURNED_OFF), // displays state of the power button as you can turn on/off servers using this console
+ "overheated" = (S.machine_stat & OVERHEATED),
))
data["servers"] = servers
@@ -222,7 +152,7 @@
if(S.server_id == test_id)
S.toggle_disable()
- investigate_log("[S.name] was turned [S.research_disabled ? "off" : "on"] by [key_name(usr)]", INVESTIGATE_RESEARCH)
+ investigate_log("[S.name] was turned [(S.machine_stat & TURNED_OFF) ? "off" : "on"] by [key_name(usr)]", INVESTIGATE_RESEARCH)
. = TRUE
break
diff --git a/tgui/packages/tgui/interfaces/Telemonitor.tsx b/tgui/packages/tgui/interfaces/Telemonitor.tsx
new file mode 100644
index 0000000000000..9c034a2d325ae
--- /dev/null
+++ b/tgui/packages/tgui/interfaces/Telemonitor.tsx
@@ -0,0 +1,79 @@
+import { useBackend } from '../backend';
+import { Input, Section, Stack, ProgressBar, Button, Flex } from '../components';
+import { Window } from '../layouts';
+type Tdata = {
+ network_id: string;
+ current_time: number; // world.time during ui_update
+ servers: {
+ name: string; // name of the server
+ sender_id: string; // hardware id of the server
+ temperature: number; // Kelvins
+ overheat_temperature: number; // Kelvins
+ efficiency: number; // 0-1 range
+ last_update: number; // world.time of last update
+ overheated: boolean; // true/false
+ }[];
+};
+export const Telemonitor = (props, context) => {
+ const { act, data } = useBackend(context);
+ const isOnline = function (server) {
+ return Math.floor((data.current_time - server.last_update) / 10) < 10;
+ };
+ return (
+
+
+
+ {data.servers.length === 0 ? (
+
+
+ Searching for servers
+ .
+ .
+ .
+
+
+ ) : (
+
+ {Object.values(data.servers).map((server) => (
+
+
+ {isOnline(server) ? (server.overheated ? 'OVERHEATED' : 'ONLINE') : 'OFFLINE'}
+
+ }>
+ Efficiency:{' '}
+
+ Temperature: {Math.round(server.temperature)}K
+
+
+ ))}
+
+ )}
+
+
+ );
+};
From 000ed5cf7649a074a3431397177fc496aa62e058 Mon Sep 17 00:00:00 2001
From: ss13-beebot <56381746+ss13-beebot@users.noreply.github.com>
Date: Thu, 29 Aug 2024 11:23:27 -0500
Subject: [PATCH 022/106] Automatic changelog generation for PR #10983 [ci
skip]
---
html/changelogs/AutoChangeLog-pr-10983.yml | 7 +++++++
1 file changed, 7 insertions(+)
create mode 100644 html/changelogs/AutoChangeLog-pr-10983.yml
diff --git a/html/changelogs/AutoChangeLog-pr-10983.yml b/html/changelogs/AutoChangeLog-pr-10983.yml
new file mode 100644
index 0000000000000..d6cbefbb283df
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-10983.yml
@@ -0,0 +1,7 @@
+author: Dejaku51
+delete-after: true
+changes:
+ - rscadd: thermal mechanics for tcomms
+ - bugfix: thermal mechanics for RnD servers
+ - bugfix: upgrading RnD servers
+ - tweak: upgrading RnD servers now makes it use less power and produce less heat
From af85a212a6cfe674ea0e5f52269a2d59f7c0fa85 Mon Sep 17 00:00:00 2001
From: ss13-beebot <56381746+ss13-beebot@users.noreply.github.com>
Date: Thu, 29 Aug 2024 17:03:19 +0000
Subject: [PATCH 023/106] Automatic changelog compile [ci skip]
---
html/changelog.html | 9 +++++++++
html/changelogs/.all_changelog.yml | 6 ++++++
html/changelogs/AutoChangeLog-pr-10983.yml | 7 -------
3 files changed, 15 insertions(+), 7 deletions(-)
delete mode 100644 html/changelogs/AutoChangeLog-pr-10983.yml
diff --git a/html/changelog.html b/html/changelog.html
index efdcdd40fdd03..368e62b474fbe 100644
--- a/html/changelog.html
+++ b/html/changelog.html
@@ -56,6 +56,15 @@
-->
+
29 August 2024
+
Dejaku51 updated:
+
+ - thermal mechanics for tcomms
+ - thermal mechanics for RnD servers
+ - upgrading RnD servers
+ - upgrading RnD servers now makes it use less power and produce less heat
+
+
28 August 2024
ClownMoff updated:
diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml
index f29c3685061bf..aeab8db123ba6 100644
--- a/html/changelogs/.all_changelog.yml
+++ b/html/changelogs/.all_changelog.yml
@@ -44030,3 +44030,9 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py.
- rscadd: Adds the Dromedaire Co cigarettes to the vendor
XeonMations:
- bugfix: Fixed simplemobs being able to interact with machinery via CTRL, ALT clicks.
+2024-08-29:
+ Dejaku51:
+ - rscadd: thermal mechanics for tcomms
+ - bugfix: thermal mechanics for RnD servers
+ - bugfix: upgrading RnD servers
+ - tweak: upgrading RnD servers now makes it use less power and produce less heat
diff --git a/html/changelogs/AutoChangeLog-pr-10983.yml b/html/changelogs/AutoChangeLog-pr-10983.yml
deleted file mode 100644
index d6cbefbb283df..0000000000000
--- a/html/changelogs/AutoChangeLog-pr-10983.yml
+++ /dev/null
@@ -1,7 +0,0 @@
-author: Dejaku51
-delete-after: true
-changes:
- - rscadd: thermal mechanics for tcomms
- - bugfix: thermal mechanics for RnD servers
- - bugfix: upgrading RnD servers
- - tweak: upgrading RnD servers now makes it use less power and produce less heat
From c05a8ee2d98373918a7bb43fb1f834e91eed5df4 Mon Sep 17 00:00:00 2001
From: Rukofamicom
Date: Thu, 29 Aug 2024 12:18:22 -0500
Subject: [PATCH 024/106] Gibtonite flashes again (#11366)
---
icons/turf/smoothrocks.dmi | Bin 3876 -> 3872 bytes
1 file changed, 0 insertions(+), 0 deletions(-)
diff --git a/icons/turf/smoothrocks.dmi b/icons/turf/smoothrocks.dmi
index 0948aaaaa3b8d2d68b267125a0f337296ea59f1f..17bbf513ce744f21a1dfd1f2cb8fa97bdd010bd5 100644
GIT binary patch
delta 280
zcmV+z0q6dt9-tnOf&n6tgC&2V7u2fifxbc&T9;U~u@qZHygdo!SP-9bS+6G6WM_7i
zxqM!&H(R-U*@#ORa!kEkNc&KW>LVUXHyy^h3-PTh*F!FC31d0S=afn}r2TuouVyJw#9jErY<_iXMBBct$c)8%HuDns!w$}Hq>Vca;#
z-$DM+Y^s3?Rl|s?+4pK1fly!lk7SsTyLEgmsgEV>+I@+aaQiJccEhRtoZ5Fkç
e{;#W)n9J36`Tb+{1>^^Z#{CL4Dwwme0dozN366UJ
delta 284
zcmV+%0ptFl9;6txGK07{yi*Z%;xwRu!LeS+6G6WM_7i
zxqMl!)*HEaU5j%Va!kE^miD0*)mPk?ZaR#07vg(YE{9y&62@|tPbrmdNV|`GU(ZCf
zk3$~&N>qoTJ%vks6|E3jBeX$ii_i|C9}(Ik^bV?rpwKQRfghWlv&8%!nkpe
zzk~dt*;E4)s)i9&v+vb30-?V8AIUHwx2yP8QXfm$w!0F~;rd%{?1p3eJ+<%t9#I`r
i`n-8%>~CGF#9S^ni{A@htRIy0$#_GfR|B)H0doz38-(2e
From 1f5a444a9e512216882fdb71e518ca5262e6f16e Mon Sep 17 00:00:00 2001
From: ss13-beebot <56381746+ss13-beebot@users.noreply.github.com>
Date: Thu, 29 Aug 2024 12:28:03 -0500
Subject: [PATCH 025/106] Automatic changelog generation for PR #11366 [ci
skip]
---
html/changelogs/AutoChangeLog-pr-11366.yml | 5 +++++
1 file changed, 5 insertions(+)
create mode 100644 html/changelogs/AutoChangeLog-pr-11366.yml
diff --git a/html/changelogs/AutoChangeLog-pr-11366.yml b/html/changelogs/AutoChangeLog-pr-11366.yml
new file mode 100644
index 0000000000000..bb138939f95f0
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-11366.yml
@@ -0,0 +1,5 @@
+author: Rukofamicom
+delete-after: true
+changes:
+ - bugfix: Gibtonite flashes again, so miners can better time the deactivation of
+ it with a scanner.
From 522552aab205cd9e2878cd29d28e023d5bc8e762 Mon Sep 17 00:00:00 2001
From: ss13-beebot <56381746+ss13-beebot@users.noreply.github.com>
Date: Thu, 29 Aug 2024 18:03:54 +0000
Subject: [PATCH 026/106] Automatic changelog compile [ci skip]
---
html/changelog.html | 4 ++++
html/changelogs/.all_changelog.yml | 3 +++
html/changelogs/AutoChangeLog-pr-11366.yml | 5 -----
3 files changed, 7 insertions(+), 5 deletions(-)
delete mode 100644 html/changelogs/AutoChangeLog-pr-11366.yml
diff --git a/html/changelog.html b/html/changelog.html
index 368e62b474fbe..35adeb6daf111 100644
--- a/html/changelog.html
+++ b/html/changelog.html
@@ -64,6 +64,10 @@ Dejaku51 updated:
- upgrading RnD servers
- upgrading RnD servers now makes it use less power and produce less heat
+
Rukofamicom updated:
+
+ - Gibtonite flashes again, so miners can better time the deactivation of it with a scanner.
+
28 August 2024
ClownMoff updated:
diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml
index aeab8db123ba6..76967c19aae8c 100644
--- a/html/changelogs/.all_changelog.yml
+++ b/html/changelogs/.all_changelog.yml
@@ -44036,3 +44036,6 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py.
- bugfix: thermal mechanics for RnD servers
- bugfix: upgrading RnD servers
- tweak: upgrading RnD servers now makes it use less power and produce less heat
+ Rukofamicom:
+ - bugfix: Gibtonite flashes again, so miners can better time the deactivation of
+ it with a scanner.
diff --git a/html/changelogs/AutoChangeLog-pr-11366.yml b/html/changelogs/AutoChangeLog-pr-11366.yml
deleted file mode 100644
index bb138939f95f0..0000000000000
--- a/html/changelogs/AutoChangeLog-pr-11366.yml
+++ /dev/null
@@ -1,5 +0,0 @@
-author: Rukofamicom
-delete-after: true
-changes:
- - bugfix: Gibtonite flashes again, so miners can better time the deactivation of
- it with a scanner.
From 611dd96c91eeaeb6815bbae1d347e5db2b2934a2 Mon Sep 17 00:00:00 2001
From: ss13-beebot <56381746+ss13-beebot@users.noreply.github.com>
Date: Fri, 30 Aug 2024 00:12:46 +0000
Subject: [PATCH 027/106] Automatic changelog compile [ci skip]
---
html/changelog.html | 6 ------
1 file changed, 6 deletions(-)
diff --git a/html/changelog.html b/html/changelog.html
index 35adeb6daf111..b66404b089a28 100644
--- a/html/changelog.html
+++ b/html/changelog.html
@@ -883,12 +883,6 @@
spockye updated:
- A couple fland station power cable and disposals fixes
-
-
28 June 2024
-
XeonMations updated:
-
- - Made explosive flashbulbs spawn with a flash.
-
GoonStation 13 Development Team
From 9025aaa883b323a59550f0aac2bef83fd4437ad7 Mon Sep 17 00:00:00 2001
From: XeonMations <62395746+XeonMations@users.noreply.github.com>
Date: Fri, 30 Aug 2024 19:06:53 +0300
Subject: [PATCH 028/106] Edited some FLYING checks to also check for FLOATING
(#11391)
* rahhh
* ()
* rahhhhh
---
code/datums/components/conveyor_movement.dm | 2 +-
code/datums/components/slippery.dm | 2 +-
code/datums/components/spikes.dm | 2 +-
code/datums/components/squashable.dm | 2 +-
code/datums/elements/footstep.dm | 2 +-
code/datums/weather/weather_types/floor_is_lava.dm | 2 +-
code/game/objects/effects/alien_acid.dm | 2 +-
code/game/objects/effects/mainttraps.dm | 2 +-
code/game/objects/structures/tables_racks.dm | 2 +-
code/game/turfs/open/_open.dm | 2 +-
code/game/turfs/open/lava.dm | 2 +-
code/game/turfs/turf.dm | 2 +-
code/modules/assembly/mousetrap.dm | 2 +-
code/modules/awaymissions/mission_code/snowdin.dm | 2 +-
code/modules/mob/living/carbon/carbon_movement.dm | 2 +-
code/modules/mob/living/carbon/human/species.dm | 4 ++--
code/modules/multiz/movement/atom/atom_zfall.dm | 2 +-
17 files changed, 18 insertions(+), 18 deletions(-)
diff --git a/code/datums/components/conveyor_movement.dm b/code/datums/components/conveyor_movement.dm
index 99baf5be94185..43fb9979a2cc9 100644
--- a/code/datums/components/conveyor_movement.dm
+++ b/code/datums/components/conveyor_movement.dm
@@ -24,7 +24,7 @@
source.delay = speed //We use the default delay
if(living_parent)
var/mob/living/moving_mob = parent
- if((moving_mob.movement_type & FLYING) && !moving_mob.stat)
+ if((moving_mob.movement_type & (FLOATING|FLYING)) && !moving_mob.stat)
return MOVELOOP_SKIP_STEP
var/atom/movable/moving_parent = parent
if(moving_parent.anchored || !moving_parent.has_gravity())
diff --git a/code/datums/components/slippery.dm b/code/datums/components/slippery.dm
index b37dc0ba7d7e9..3b244d5e16f8a 100644
--- a/code/datums/components/slippery.dm
+++ b/code/datums/components/slippery.dm
@@ -34,7 +34,7 @@
if(!isliving(arrived))
return
var/mob/living/victim = arrived
- if(!(victim.movement_type & FLYING) && victim.slip(knockdown_time, parent, lube_flags, paralyze_time, force_drop_items) && callback)
+ if(!(victim.movement_type & (FLOATING|FLYING)) && victim.slip(knockdown_time, parent, lube_flags, paralyze_time, force_drop_items) && callback)
callback.Invoke(victim)
/datum/component/slippery/UnregisterFromParent()
diff --git a/code/datums/components/spikes.dm b/code/datums/components/spikes.dm
index f8e4da45acdb6..be078a73721c7 100644
--- a/code/datums/components/spikes.dm
+++ b/code/datums/components/spikes.dm
@@ -58,7 +58,7 @@
if(ishuman(C))
var/mob/living/carbon/human/H = C
var/feetCover = (H.wear_suit && (H.wear_suit.body_parts_covered & FEET)) || (H.w_uniform && (H.w_uniform.body_parts_covered & FEET))
- if((H.movement_type & FLYING) || H.body_position == LYING_DOWN || H.buckled || H.shoes || feetCover)
+ if((H.movement_type & (FLOATING|FLYING)) || H.body_position == LYING_DOWN || H.buckled || H.shoes || feetCover)
prick(H, 0.5)
else
prick(H, 2)
diff --git a/code/datums/components/squashable.dm b/code/datums/components/squashable.dm
index 48cc9ef2905ad..f9159614909fd 100644
--- a/code/datums/components/squashable.dm
+++ b/code/datums/components/squashable.dm
@@ -53,7 +53,7 @@
if(isliving(crossing_movable))
var/mob/living/crossing_mob = crossing_movable
- if(crossing_mob.mob_size > MOB_SIZE_SMALL && !(crossing_mob.movement_type & FLYING))
+ if(crossing_mob.mob_size > MOB_SIZE_SMALL && !(crossing_mob.movement_type & (FLOATING|FLYING)))
if(HAS_TRAIT(crossing_mob, TRAIT_PACIFISM))
crossing_mob.visible_message("[crossing_mob] carefully steps over [parent_as_living].", "You carefully step over [parent_as_living] to avoid hurting it.")
return
diff --git a/code/datums/elements/footstep.dm b/code/datums/elements/footstep.dm
index e7eb666df0d39..d06aa85c297dd 100644
--- a/code/datums/elements/footstep.dm
+++ b/code/datums/elements/footstep.dm
@@ -62,7 +62,7 @@
if(!istype(turf))
return
- if(!turf.footstep || source.buckled || source.throwing || source.movement_type & (VENTCRAWLING | FLYING))
+ if(!turf.footstep || source.buckled || source.throwing || source.movement_type & (VENTCRAWLING | FLOATING | FLYING))
return
if(source.body_position == LYING_DOWN) //play crawling sound if we're lying
diff --git a/code/datums/weather/weather_types/floor_is_lava.dm b/code/datums/weather/weather_types/floor_is_lava.dm
index ad7d9c8ff361d..9762499693560 100644
--- a/code/datums/weather/weather_types/floor_is_lava.dm
+++ b/code/datums/weather/weather_types/floor_is_lava.dm
@@ -35,6 +35,6 @@
return
if(!L.client) //Only sentient people are going along with it!
return
- if(L.movement_type & FLYING)
+ if(L.movement_type & (FLOATING|FLYING))
return
L.adjustFireLoss(3)
diff --git a/code/game/objects/effects/alien_acid.dm b/code/game/objects/effects/alien_acid.dm
index a63780cf2ba35..3f09a59d351d3 100644
--- a/code/game/objects/effects/alien_acid.dm
+++ b/code/game/objects/effects/alien_acid.dm
@@ -64,7 +64,7 @@
if(isliving(AM))
var/mob/living/L = AM
- if(L.movement_type & FLYING)
+ if(L.movement_type & (FLOATING|FLYING))
return
if(L.m_intent != MOVE_INTENT_WALK && prob(40))
var/acid_used = min(acid_level*0.05, 20)
diff --git a/code/game/objects/effects/mainttraps.dm b/code/game/objects/effects/mainttraps.dm
index 56c111cf972e9..66e992d356504 100644
--- a/code/game/objects/effects/mainttraps.dm
+++ b/code/game/objects/effects/mainttraps.dm
@@ -34,7 +34,7 @@
if(isturf(loc))
if(ismob(AM) && grounded)
var/mob/MM = AM
- if(!(MM.movement_type & FLYING))
+ if(!(MM.movement_type & (FLOATING|FLYING)))
if(TrapEffect(AM))
if(!reusable)
qdel(src)
diff --git a/code/game/objects/structures/tables_racks.dm b/code/game/objects/structures/tables_racks.dm
index f6975e17359cb..ccd47398717ab 100644
--- a/code/game/objects/structures/tables_racks.dm
+++ b/code/game/objects/structures/tables_racks.dm
@@ -315,7 +315,7 @@
check_break(M)
/obj/structure/table/glass/proc/check_break(mob/living/M)
- if(M.has_gravity() && M.mob_size > MOB_SIZE_SMALL && !(M.movement_type & FLYING))
+ if(M.has_gravity() && M.mob_size > MOB_SIZE_SMALL && !(M.movement_type & (FLOATING|FLYING)))
table_shatter(M)
/obj/structure/table/glass/proc/table_shatter(mob/living/victim)
diff --git a/code/game/turfs/open/_open.dm b/code/game/turfs/open/_open.dm
index 478e54c75e0c5..9f33454d776b7 100644
--- a/code/game/turfs/open/_open.dm
+++ b/code/game/turfs/open/_open.dm
@@ -220,7 +220,7 @@
return TRUE
/turf/open/handle_slip(mob/living/carbon/slipper, knockdown_amount, obj/O, lube, paralyze_amount, force_drop)
- if(slipper.movement_type & FLYING)
+ if(slipper.movement_type & (FLOATING|FLYING))
return 0
if(has_gravity(src))
var/obj/buckled_obj
diff --git a/code/game/turfs/open/lava.dm b/code/game/turfs/open/lava.dm
index edcc7d6ec0560..a31ddf285f808 100644
--- a/code/game/turfs/open/lava.dm
+++ b/code/game/turfs/open/lava.dm
@@ -125,7 +125,7 @@
else if (isliving(thing))
. = 1
var/mob/living/L = thing
- if(L.movement_type & FLYING)
+ if(L.movement_type & (FLOATING|FLYING))
continue //YOU'RE FLYING OVER IT
var/buckle_check = L.buckled
if(isobj(buckle_check))
diff --git a/code/game/turfs/turf.dm b/code/game/turfs/turf.dm
index c0a5cc490813b..031d6392a9fb5 100644
--- a/code/game/turfs/turf.dm
+++ b/code/game/turfs/turf.dm
@@ -203,7 +203,7 @@ GLOBAL_LIST_EMPTY(created_baseturf_lists)
/turf/attack_hand(mob/user)
// Show a zmove radial when clicked
if(get_turf(user) == src)
- if(!user.has_gravity(src) || (user.movement_type & FLYING))
+ if(!user.has_gravity(src) || (user.movement_type & (FLOATING|FLYING)))
show_zmove_radial(user)
return
else if(allow_z_travel)
diff --git a/code/modules/assembly/mousetrap.dm b/code/modules/assembly/mousetrap.dm
index 95be8edeb6f96..e2e35e186188d 100644
--- a/code/modules/assembly/mousetrap.dm
+++ b/code/modules/assembly/mousetrap.dm
@@ -122,7 +122,7 @@
if(armed)
if(ismob(AM))
var/mob/MM = AM
- if(!(MM.movement_type & FLYING))
+ if(!(MM.movement_type & (FLOATING|FLYING)))
if(ishuman(AM))
var/mob/living/carbon/H = AM
if(H.m_intent == MOVE_INTENT_RUN)
diff --git a/code/modules/awaymissions/mission_code/snowdin.dm b/code/modules/awaymissions/mission_code/snowdin.dm
index 0ff32fdc3e236..1aa6d774f215a 100644
--- a/code/modules/awaymissions/mission_code/snowdin.dm
+++ b/code/modules/awaymissions/mission_code/snowdin.dm
@@ -182,7 +182,7 @@
else if (isliving(thing))
. = 1
var/mob/living/L = thing
- if(L.movement_type & FLYING)
+ if(L.movement_type & (FLOATING|FLYING))
continue //YOU'RE FLYING OVER IT
if("snow" in L.weather_immunities)
continue
diff --git a/code/modules/mob/living/carbon/carbon_movement.dm b/code/modules/mob/living/carbon/carbon_movement.dm
index dcf4439f0018a..20c7220756cb3 100644
--- a/code/modules/mob/living/carbon/carbon_movement.dm
+++ b/code/modules/mob/living/carbon/carbon_movement.dm
@@ -1,6 +1,6 @@
/mob/living/carbon/slip(knockdown_amount, obj/O, lube, paralyze, force_drop)
- if(movement_type & FLYING)
+ if(movement_type & (FLYING|FLOATING))
return FALSE
if((lube & NO_SLIP_ON_CATWALK) && (locate(/obj/structure/lattice/catwalk) in get_turf(src)))
return FALSE
diff --git a/code/modules/mob/living/carbon/human/species.dm b/code/modules/mob/living/carbon/human/species.dm
index ec07a513434e7..923ccb3a61634 100644
--- a/code/modules/mob/living/carbon/human/species.dm
+++ b/code/modules/mob/living/carbon/human/species.dm
@@ -2275,12 +2275,12 @@ GLOBAL_LIST_EMPTY(features_by_species)
var/datum/gas_mixture/current = H.loc.return_air()
if(current && (current.return_pressure() >= ONE_ATMOSPHERE*0.85)) //as long as there's reasonable pressure and no gravity, flight is possible
return TRUE
- if(H.movement_type & FLYING)
+ if(H.movement_type & (FLYING|FLOATING))
return TRUE
return FALSE
/datum/species/proc/negates_gravity(mob/living/carbon/human/H)
- if(H.movement_type & FLYING)
+ if(H.movement_type & (FLYING|FLOATING))
return TRUE
return FALSE
diff --git a/code/modules/multiz/movement/atom/atom_zfall.dm b/code/modules/multiz/movement/atom/atom_zfall.dm
index 710b15f2ded3d..b6cba85938d6d 100644
--- a/code/modules/multiz/movement/atom/atom_zfall.dm
+++ b/code/modules/multiz/movement/atom/atom_zfall.dm
@@ -13,7 +13,7 @@
target = get_step_multiz(source, direction)
if(!target)
return FALSE
- return !(movement_type & FLYING) && has_gravity(src) && !throwing
+ return !(movement_type & (FLYING|FLOATING)) && has_gravity(src) && !throwing
/// Returns a set of flags, determining what the zfall system will consider this atom in its falling handling
/atom/proc/intercept_zImpact(atom/movable/AM, levels = 1)
From d99d842821dec7aaebf8b1ddd7cbe7ddc97cdcb0 Mon Sep 17 00:00:00 2001
From: ss13-beebot <56381746+ss13-beebot@users.noreply.github.com>
Date: Fri, 30 Aug 2024 11:16:37 -0500
Subject: [PATCH 029/106] Automatic changelog generation for PR #11391 [ci
skip]
---
html/changelogs/AutoChangeLog-pr-11391.yml | 5 +++++
1 file changed, 5 insertions(+)
create mode 100644 html/changelogs/AutoChangeLog-pr-11391.yml
diff --git a/html/changelogs/AutoChangeLog-pr-11391.yml b/html/changelogs/AutoChangeLog-pr-11391.yml
new file mode 100644
index 0000000000000..0b2b02c859540
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-11391.yml
@@ -0,0 +1,5 @@
+author: XeonMations
+delete-after: true
+changes:
+ - bugfix: Fixed revenants being able to fall down z levels
+ - bugfix: Certain FLYING checks now also check for FLOATING movetypes.
From c35c0b358efa1d6c5ca357272f1c9eadebb58500 Mon Sep 17 00:00:00 2001
From: ss13-beebot <56381746+ss13-beebot@users.noreply.github.com>
Date: Fri, 30 Aug 2024 17:03:11 +0000
Subject: [PATCH 030/106] Automatic changelog compile [ci skip]
---
html/changelog.html | 7 +++++++
html/changelogs/.all_changelog.yml | 4 ++++
html/changelogs/AutoChangeLog-pr-11391.yml | 5 -----
3 files changed, 11 insertions(+), 5 deletions(-)
delete mode 100644 html/changelogs/AutoChangeLog-pr-11391.yml
diff --git a/html/changelog.html b/html/changelog.html
index b66404b089a28..3357b620a097e 100644
--- a/html/changelog.html
+++ b/html/changelog.html
@@ -56,6 +56,13 @@
-->
+
30 August 2024
+
XeonMations updated:
+
+ - Fixed revenants being able to fall down z levels
+ - Certain FLYING checks now also check for FLOATING movetypes.
+
+
29 August 2024
Dejaku51 updated:
diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml
index 76967c19aae8c..8bbdfa8d78e45 100644
--- a/html/changelogs/.all_changelog.yml
+++ b/html/changelogs/.all_changelog.yml
@@ -44039,3 +44039,7 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py.
Rukofamicom:
- bugfix: Gibtonite flashes again, so miners can better time the deactivation of
it with a scanner.
+2024-08-30:
+ XeonMations:
+ - bugfix: Fixed revenants being able to fall down z levels
+ - bugfix: Certain FLYING checks now also check for FLOATING movetypes.
diff --git a/html/changelogs/AutoChangeLog-pr-11391.yml b/html/changelogs/AutoChangeLog-pr-11391.yml
deleted file mode 100644
index 0b2b02c859540..0000000000000
--- a/html/changelogs/AutoChangeLog-pr-11391.yml
+++ /dev/null
@@ -1,5 +0,0 @@
-author: XeonMations
-delete-after: true
-changes:
- - bugfix: Fixed revenants being able to fall down z levels
- - bugfix: Certain FLYING checks now also check for FLOATING movetypes.
From 4de6e1b2b1c1366266214c3ef658314cb572c934 Mon Sep 17 00:00:00 2001
From: ss13-beebot <56381746+ss13-beebot@users.noreply.github.com>
Date: Sat, 31 Aug 2024 00:12:28 +0000
Subject: [PATCH 031/106] Automatic changelog compile [ci skip]
---
html/changelog.html | 6 ------
1 file changed, 6 deletions(-)
diff --git a/html/changelog.html b/html/changelog.html
index 3357b620a097e..643db05b480f7 100644
--- a/html/changelog.html
+++ b/html/changelog.html
@@ -884,12 +884,6 @@ rkz, HowToLu/Dakae, PigeonVerde/PestoVerde, Floria/BriggsIDP,
- adds zmimic hooks for tiles and material turfs
- Medium buff to floor bot logic making them more discerning when repairing or placing tiles. They will now also actually repair tiles instead of always replacing them, if possible.
-
-
29 June 2024
-
spockye updated:
-
- - A couple fland station power cable and disposals fixes
-
GoonStation 13 Development Team
From 768747e6224b11c98cb33832fc545b4261ce0c26 Mon Sep 17 00:00:00 2001
From: PowerfulBacon <26465327+PowerfulBacon@users.noreply.github.com>
Date: Sat, 31 Aug 2024 12:52:45 +0100
Subject: [PATCH 032/106] Update runtimestation.dmm (#11405)
---
_maps/map_files/debug/runtimestation.dmm | 38 ++++++++++--------------
1 file changed, 15 insertions(+), 23 deletions(-)
diff --git a/_maps/map_files/debug/runtimestation.dmm b/_maps/map_files/debug/runtimestation.dmm
index 0388aed6c7f9e..23d06519def6f 100644
--- a/_maps/map_files/debug/runtimestation.dmm
+++ b/_maps/map_files/debug/runtimestation.dmm
@@ -223,9 +223,7 @@
/obj/machinery/atmospherics/components/binary/pump/on{
dir = 1
},
-/turf/open/floor/iron{
- dir = 2
- },
+/turf/open/floor/iron,
/area/engine/atmos)
"aO" = (
/obj/machinery/atmospherics/components/binary/pump/on,
@@ -328,9 +326,7 @@
dir = 1
},
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
-/obj/effect/turf_decal/bot{
- dir = 2
- },
+/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/engine/atmos)
"bc" = (
@@ -338,9 +334,7 @@
dir = 1
},
/obj/machinery/portable_atmospherics/canister,
-/obj/effect/turf_decal/bot{
- dir = 2
- },
+/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/engine/atmos)
"bd" = (
@@ -1259,7 +1253,6 @@
/turf/closed/wall,
/area/quartermaster/storage)
"ez" = (
-/obj/machinery/camera/autoname/directional/east,
/obj/structure/cable{
icon_state = "4-8"
},
@@ -1478,7 +1471,6 @@
/area/hallway/primary/central)
"fe" = (
/obj/machinery/button/door{
- dir = 2;
id = "cargounload";
layer = 4;
name = "Loading Doors";
@@ -1518,7 +1510,6 @@
/area/quartermaster/storage)
"fi" = (
/obj/docking_port/stationary{
- dir = 1;
dwidth = 1;
height = 4;
roundstart_template = /datum/map_template/shuttle/escape_pod/default;
@@ -1559,7 +1550,6 @@
/area/quartermaster/storage)
"fp" = (
/obj/docking_port/stationary{
- dheight = 0;
dir = 2;
dwidth = 9;
height = 25;
@@ -1701,9 +1691,7 @@
/turf/open/floor/iron,
/area/storage/primary)
"fF" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
+/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -1922,15 +1910,11 @@
pixel_x = 32;
pixel_y = -7
},
+/obj/machinery/camera/autoname/directional/east,
/turf/open/floor/plating,
/area/storage/primary)
"gh" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/computer/shuttle_flight/mining{
- dir = 2
- },
+/obj/machinery/computer/shuttle_flight/mining,
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
"gi" = (
@@ -2138,6 +2122,14 @@
},
/turf/open/floor/iron,
/area/medical/chemistry)
+"hP" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/mapping_helpers/simple_pipes/supply_scrubber/hidden,
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron,
+/area/quartermaster/miningoffice)
"ii" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -4541,7 +4533,7 @@ aa
aa
em
gi
-go
+hP
go
gp
ei
From 25a2715974c941c2169cc4be187307f7fa5a9f67 Mon Sep 17 00:00:00 2001
From: ss13-beebot <56381746+ss13-beebot@users.noreply.github.com>
Date: Sat, 31 Aug 2024 07:02:13 -0500
Subject: [PATCH 033/106] Automatic changelog generation for PR #11405 [ci
skip]
---
html/changelogs/AutoChangeLog-pr-11405.yml | 4 ++++
1 file changed, 4 insertions(+)
create mode 100644 html/changelogs/AutoChangeLog-pr-11405.yml
diff --git a/html/changelogs/AutoChangeLog-pr-11405.yml b/html/changelogs/AutoChangeLog-pr-11405.yml
new file mode 100644
index 0000000000000..9c51e12da5545
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-11405.yml
@@ -0,0 +1,4 @@
+author: PowerfulBacon
+delete-after: true
+changes:
+ - bugfix: Fixes some mapping issues with RuntimeStation
From fd55feafac6ca89c963096d2b2cd9129d5d27d0b Mon Sep 17 00:00:00 2001
From: ss13-beebot <56381746+ss13-beebot@users.noreply.github.com>
Date: Sat, 31 Aug 2024 12:04:33 +0000
Subject: [PATCH 034/106] Automatic changelog compile [ci skip]
---
html/changelog.html | 6 ++++++
html/changelogs/.all_changelog.yml | 3 +++
html/changelogs/AutoChangeLog-pr-11405.yml | 4 ----
3 files changed, 9 insertions(+), 4 deletions(-)
delete mode 100644 html/changelogs/AutoChangeLog-pr-11405.yml
diff --git a/html/changelog.html b/html/changelog.html
index 643db05b480f7..ee03e5010776c 100644
--- a/html/changelog.html
+++ b/html/changelog.html
@@ -56,6 +56,12 @@
-->
+
31 August 2024
+
PowerfulBacon updated:
+
+ - Fixes some mapping issues with RuntimeStation
+
+
30 August 2024
XeonMations updated:
diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml
index 8bbdfa8d78e45..34b3c7436c5ed 100644
--- a/html/changelogs/.all_changelog.yml
+++ b/html/changelogs/.all_changelog.yml
@@ -44043,3 +44043,6 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py.
XeonMations:
- bugfix: Fixed revenants being able to fall down z levels
- bugfix: Certain FLYING checks now also check for FLOATING movetypes.
+2024-08-31:
+ PowerfulBacon:
+ - bugfix: Fixes some mapping issues with RuntimeStation
diff --git a/html/changelogs/AutoChangeLog-pr-11405.yml b/html/changelogs/AutoChangeLog-pr-11405.yml
deleted file mode 100644
index 9c51e12da5545..0000000000000
--- a/html/changelogs/AutoChangeLog-pr-11405.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-author: PowerfulBacon
-delete-after: true
-changes:
- - bugfix: Fixes some mapping issues with RuntimeStation
From 4913a94fa3f3599eb6c3e92f4884d13f2259e258 Mon Sep 17 00:00:00 2001
From: PestoVerde322 <75247747+PestoVerde322@users.noreply.github.com>
Date: Sat, 31 Aug 2024 23:29:14 +0200
Subject: [PATCH 035/106] DeltaStation2 New Brig (and minor fixes/adjustments -
Fluked PR edition (#11218)
* I have fluked the previous PR
A horrible mistake
* Redone disposals
* the most important fix of them all oh the tragedy to fix this dear god!
* nutiles changes
* Brig changes yet again
* update moment
* Last minute fixes
* intercomms rahhh
---------
Co-authored-by: PigeonVerde322
---
.../map_files/Deltastation/DeltaStation2.dmm | 36695 ++++++++--------
1 file changed, 19485 insertions(+), 17210 deletions(-)
diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm
index c5a3ea36ef506..a5ea8f41ba1a2 100644
--- a/_maps/map_files/Deltastation/DeltaStation2.dmm
+++ b/_maps/map_files/Deltastation/DeltaStation2.dmm
@@ -125,6 +125,12 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"aaz" = (
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/obj/machinery/vending/cigarette,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/security/brig)
"aaA" = (
/obj/item/robot_suit,
/obj/effect/decal/cleanable/dirt,
@@ -182,14 +188,6 @@
},
/turf/open/floor/iron/white,
/area/crew_quarters/cryopods)
-"abd" = (
-/obj/structure/table/reinforced,
-/obj/item/folder/red,
-/obj/item/clothing/mask/gas/sechailer,
-/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
-/obj/item/book/manual/wiki/sopsecurity,
-/turf/open/floor/iron,
-/area/security/main)
"abe" = (
/obj/effect/turf_decal/delivery,
/obj/item/kirbyplants/random,
@@ -229,18 +227,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/crew_quarters/cryopods)
-"abo" = (
-/obj/machinery/cryopod{
- dir = 1
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/crew_quarters/cryopods)
"abp" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small{
@@ -274,35 +260,11 @@
/obj/structure/fans/tiny/invisible,
/turf/open/space/basic,
/area/space)
-"abu" = (
-/obj/machinery/cryopod,
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/crew_quarters/cryopods)
"abv" = (
/obj/item/stack/cable_coil,
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/starboard/fore)
-"abx" = (
-/obj/structure/barricade/wooden,
-/obj/machinery/door/airlock/security{
- name = "Storage Closet"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard)
-"abz" = (
-/obj/machinery/cryopod,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/iron,
-/area/crew_quarters/cryopods)
"abB" = (
/obj/structure/closet/secure_closet/security/sec,
/obj/effect/turf_decal/stripes/end{
@@ -368,15 +330,6 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard)
-"abM" = (
-/obj/machinery/cryopod{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/iron,
-/area/crew_quarters/cryopods)
"abP" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/external{
@@ -418,11 +371,6 @@
},
/turf/open/floor/iron,
/area/construction/mining/aux_base)
-"abX" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/maintenance/starboard)
"abZ" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -621,10 +569,6 @@
/obj/structure/sign/departments/minsky/engineering/engineering,
/turf/closed/wall/r_wall,
/area/maintenance/solars/starboard/fore)
-"adl" = (
-/obj/item/kirbyplants/random,
-/turf/open/floor/prison,
-/area/security/prison)
"adm" = (
/obj/structure/disposalpipe/segment{
dir = 10
@@ -658,10 +602,25 @@
"adu" = (
/turf/open/floor/plating,
/area/maintenance/department/medical/morgue)
+"ady" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "garbage"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
"adB" = (
/obj/machinery/airalarm/directional/east,
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
+"adC" = (
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron/dark,
+/area/security/main)
"adE" = (
/obj/effect/decal/cleanable/dirt,
/turf/closed/wall,
@@ -728,17 +687,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"aeS" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/turf_decal/delivery,
-/obj/item/kirbyplants{
- icon_state = "plant-22"
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/entry)
"aeW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -787,6 +735,12 @@
},
/turf/open/floor/iron,
/area/construction/mining/aux_base)
+"afg" = (
+/obj/structure/filingcabinet/chestdrawer,
+/turf/open/floor/iron/dark/side{
+ dir = 10
+ },
+/area/security/brig)
"aft" = (
/obj/structure/closet/emcloset,
/obj/effect/turf_decal/delivery,
@@ -830,23 +784,6 @@
},
/turf/open/space,
/area/space/nearstation)
-"afC" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -26;
- pixel_y = 32
- },
-/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/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/detectives_office)
"afD" = (
/obj/machinery/meter,
/obj/effect/turf_decal/stripes/line,
@@ -889,13 +826,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"agl" = (
-/obj/effect/turf_decal/delivery,
-/obj/item/kirbyplants{
- icon_state = "plant-22"
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/entry)
"agp" = (
/obj/machinery/door/airlock/external{
name = "Auxiliary Base Airlock";
@@ -909,16 +839,6 @@
},
/turf/open/floor/plating,
/area/construction/mining/aux_base)
-"agM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/miningoffice)
"agO" = (
/obj/docking_port/stationary{
dheight = 1;
@@ -949,15 +869,16 @@
},
/turf/open/floor/iron,
/area/maintenance/starboard/fore)
-"ahf" = (
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 4
+"ahc" = (
+/obj/machinery/status_display/evac{
+ pixel_x = 32;
+ pixel_y = 32
},
-/obj/machinery/computer/operating{
+/obj/effect/turf_decal/tile/yellow{
dir = 4
},
-/turf/open/floor/iron/white,
-/area/security/brig)
+/turf/open/floor/iron,
+/area/engine/break_room)
"ahg" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 4
@@ -1403,6 +1324,18 @@
},
/turf/open/floor/iron/white/corner,
/area/hallway/secondary/entry)
+"akm" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/hallway/primary/central)
"akn" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/table,
@@ -1413,13 +1346,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"akr" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/security/main)
"akv" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -1548,6 +1474,12 @@
},
/turf/open/floor/iron,
/area/maintenance/starboard/fore)
+"akZ" = (
+/obj/effect/turf_decal/tile/red/anticorner/contrasted,
+/obj/structure/bedsheetbin,
+/obj/structure/table,
+/turf/open/floor/prison/dark,
+/area/security/prison)
"alb" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/maintenance_hatch{
@@ -1636,13 +1568,6 @@
/obj/machinery/status_display/evac,
/turf/closed/wall,
/area/hallway/secondary/entry)
-"alH" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/science/research)
"alI" = (
/obj/structure/table,
/obj/effect/decal/cleanable/dirt,
@@ -1717,15 +1642,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/qm)
-"amd" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/landmark/event_spawn,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/security/brig)
"amg" = (
/obj/structure/chair/office{
dir = 8
@@ -1790,20 +1706,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/security/checkpoint)
-"amy" = (
-/obj/machinery/door/airlock/mining/glass{
- name = "Cargo Office";
- req_one_access_txt = "31;48"
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/iron,
-/area/quartermaster/office)
"amA" = (
/obj/structure/girder,
/obj/effect/decal/cleanable/dirt,
@@ -1929,11 +1831,6 @@
},
/turf/open/floor/iron,
/area/science/misc_lab/range)
-"anB" = (
-/obj/structure/table/reinforced,
-/obj/machinery/recharger,
-/turf/open/floor/iron/white,
-/area/science/misc_lab/range)
"anD" = (
/obj/machinery/light,
/obj/structure/table/reinforced,
@@ -2046,6 +1943,13 @@
"aoF" = (
/turf/closed/wall,
/area/maintenance/disposal)
+"aoI" = (
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/obj/machinery/computer/prisoner/management{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/security/warden)
"aoW" = (
/obj/machinery/light/small{
dir = 8
@@ -2071,20 +1975,25 @@
/obj/item/camera_film,
/turf/open/floor/wood,
/area/vacant_room/office)
-"aph" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable/white,
-/turf/open/floor/plating,
-/area/security/checkpoint/customs)
"api" = (
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"apo" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable/white,
-/turf/open/floor/plating,
-/area/security/checkpoint)
+"apj" = (
+/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/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/security/prison)
"apt" = (
/obj/effect/spawner/room/threexthree,
/turf/open/floor/plating,
@@ -2117,37 +2026,6 @@
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"apD" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "garbage"
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/structure/sign/warning/vacuum{
- pixel_y = 32
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"apE" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "garbage"
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
"apF" = (
/obj/machinery/mass_driver{
dir = 4;
@@ -2263,12 +2141,6 @@
/obj/item/kirbyplants/random,
/turf/open/floor/wood,
/area/vacant_room/office)
-"aqg" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white,
-/obj/machinery/power/apc/auto_name/directional/south,
-/turf/open/floor/wood,
-/area/vacant_room/office)
"aqh" = (
/obj/structure/table/wood,
/obj/item/camera,
@@ -2381,18 +2253,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"ara" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/components/binary/valve/digital/on/layer2{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard)
"arf" = (
/obj/machinery/disposal/deliveryChute{
dir = 4
@@ -2460,6 +2320,29 @@
},
/turf/open/floor/circuit/green,
/area/engine/atmospherics_engine)
+"arm" = (
+/obj/structure/table/reinforced,
+/obj/item/food/grown/carrot{
+ pixel_x = -1;
+ pixel_y = 6
+ },
+/obj/item/food/grown/carrot{
+ pixel_x = -6;
+ pixel_y = 12
+ },
+/obj/item/food/grown/carrot{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/food/grown/carrot{
+ pixel_x = -1;
+ pixel_y = 11
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"arp" = (
/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
@@ -2669,12 +2552,6 @@
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"asj" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/iron,
-/area/science/research)
"ask" = (
/obj/structure/lattice/catwalk,
/turf/open/space,
@@ -2691,6 +2568,11 @@
dir = 1
},
/area/engine/atmospherics_engine)
+"asw" = (
+/obj/structure/table,
+/obj/item/storage/box/prisoner,
+/turf/open/floor/iron/dark,
+/area/security/main)
"asC" = (
/obj/structure/table,
/obj/item/paper_bin,
@@ -2704,6 +2586,17 @@
/obj/item/pen,
/turf/open/floor/iron,
/area/quartermaster/office)
+"asE" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/recharger{
+ pixel_x = -7
+ },
+/obj/item/assembly/flash/handheld,
+/turf/open/floor/iron/dark/side,
+/area/security/main)
"asT" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -2885,18 +2778,6 @@
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"atC" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "garbage"
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
"atD" = (
/obj/machinery/conveyor{
dir = 4;
@@ -3064,15 +2945,6 @@
"auj" = (
/turf/closed/wall,
/area/crew_quarters/toilet/auxiliary)
-"auk" = (
-/obj/item/kirbyplants{
- icon_state = "plant-22"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/entry)
"auo" = (
/obj/effect/turf_decal/tile/neutral{
dir = 4
@@ -3083,13 +2955,6 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"auq" = (
-/obj/item/kirbyplants{
- icon_state = "plant-22"
- },
-/obj/effect/turf_decal/tile/neutral,
-/turf/open/floor/iron,
-/area/hallway/secondary/entry)
"aus" = (
/obj/structure/disposalpipe/segment{
dir = 5
@@ -3122,6 +2987,14 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
+"auD" = (
+/obj/structure/chair/office{
+ dir = 1
+ },
+/obj/effect/landmark/start/cargo_technician,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron,
+/area/quartermaster/storage)
"auE" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet,
@@ -3404,6 +3277,10 @@
"avQ" = (
/turf/closed/wall,
/area/quartermaster/warehouse)
+"avS" = (
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/carpet/red,
+/area/security/detectives_office)
"avT" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -3512,6 +3389,24 @@
/obj/structure/grille,
/turf/open/floor/plating,
/area/maintenance/port/fore)
+"awB" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"awC" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/start/janitor,
@@ -3750,6 +3645,16 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/port/fore)
+"axN" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/airalarm/directional/east,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/engine/engineering)
"axZ" = (
/obj/structure/janitorialcart,
/obj/effect/decal/cleanable/dirt,
@@ -4055,6 +3960,23 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/aft)
+"azc" = (
+/obj/structure/chair/office{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/start/quartermaster,
+/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/neutral/fourcorners/contrasted,
+/turf/open/floor/iron,
+/area/quartermaster/qm)
"azf" = (
/obj/structure/cable/yellow{
icon_state = "0-8"
@@ -4080,29 +4002,29 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/crew_quarters/toilet/auxiliary)
-"azk" = (
-/obj/structure/disposalpipe/segment{
+"azj" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 9
},
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
},
-/turf/open/floor/iron,
-/area/hallway/primary/fore)
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/turf/open/floor/iron/dark/textured,
+/area/security/prison)
"azn" = (
/obj/item/storage/box/lights/mixed,
/turf/open/floor/plating,
/area/quartermaster/warehouse)
-"azw" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/security/brig)
"azA" = (
/obj/structure/closet/crate{
opened = 1
@@ -4138,14 +4060,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/storage)
-"azG" = (
-/obj/structure/cable/white,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/quartermaster/storage)
"azJ" = (
/obj/structure/table/glass,
/obj/item/clothing/glasses/science{
@@ -4399,14 +4313,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/storage)
-"aAI" = (
-/obj/structure/cable/white,
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/quartermaster/storage)
"aAJ" = (
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -4698,25 +4604,6 @@
},
/turf/open/floor/plating,
/area/quartermaster/storage)
-"aCf" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/miningoffice)
"aCh" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -4803,35 +4690,12 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"aCE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/turf/open/floor/iron/white,
-/area/science/lab)
"aCN" = (
/obj/effect/turf_decal/tile/neutral{
dir = 4
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"aCT" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/iron,
-/area/quartermaster/warehouse)
"aCU" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -4885,6 +4749,15 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai_upload)
+"aDh" = (
+/obj/structure/chair/fancy/bench{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"aDi" = (
/obj/docking_port/stationary{
dir = 4;
@@ -4988,10 +4861,6 @@
"aDI" = (
/turf/closed/wall,
/area/hallway/secondary/service)
-"aDJ" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/hallway/secondary/service)
"aDL" = (
/turf/closed/wall,
/area/crew_quarters/bar)
@@ -5004,17 +4873,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"aDO" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/security/brig)
-"aDP" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/quartermaster/warehouse)
"aDT" = (
/obj/machinery/light/small,
/turf/open/floor/plating,
@@ -5084,14 +4942,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/quartermaster/storage)
-"aEi" = (
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/space/basic,
-/area/quartermaster/storage)
"aEl" = (
/obj/machinery/atmospherics/components/binary/pump/on{
dir = 8;
@@ -5257,13 +5107,6 @@
/obj/machinery/atmospherics/pipe/simple/orange/visible,
/turf/open/space,
/area/space/nearstation)
-"aEC" = (
-/obj/effect/turf_decal{
- dir = 1
- },
-/obj/effect/turf_decal/caution/stand_clear,
-/turf/open/floor/prison,
-/area/security/prison)
"aEQ" = (
/obj/structure/sink/kitchen{
desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
@@ -5345,22 +5188,9 @@
},
/turf/open/floor/iron,
/area/maintenance/department/science)
-"aFd" = (
-/obj/machinery/airalarm/directional/east{
- pixel_x = 24
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/hallway/primary/fore)
"aFe" = (
/turf/closed/wall,
/area/quartermaster/sorting)
-"aFf" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/quartermaster/sorting)
"aFi" = (
/turf/closed/wall,
/area/security/checkpoint/supply)
@@ -5433,17 +5263,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/quartermaster/exploration_prep)
-"aFZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/machinery/fax/service,
-/obj/structure/table,
-/turf/open/floor/iron,
-/area/hallway/secondary/service)
"aGb" = (
/obj/structure/plasticflaps/opaque,
/obj/effect/decal/cleanable/dirt,
@@ -5459,23 +5278,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/crew_quarters/bar)
-"aGc" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -24;
- pixel_y = 32
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/window/westleft{
- name = "Bar Delivery";
- req_access_txt = "25"
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/iron,
-/area/crew_quarters/bar)
"aGk" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -5507,26 +5309,6 @@
},
/turf/open/floor/plating,
/area/quartermaster/sorting)
-"aGq" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/structure/disposaloutlet,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/iron,
-/area/quartermaster/sorting)
-"aGr" = (
-/obj/machinery/light/small,
-/obj/effect/landmark/prisonspawn,
-/turf/open/floor/prison,
-/area/security/prison)
"aGs" = (
/obj/structure/window/reinforced{
dir = 4
@@ -5543,24 +5325,6 @@
/obj/item/kirbyplants/random,
/turf/open/floor/iron,
/area/quartermaster/sorting)
-"aGt" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/structure/disposaloutlet,
-/turf/open/floor/plating,
-/area/quartermaster/sorting)
-"aGu" = (
-/obj/structure/closet/secure_closet/evidence,
-/obj/machinery/camera/directional/south{
- c_tag = "Security - Evidence Storage"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/brig)
"aGz" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
@@ -5785,13 +5549,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/quartermaster/sorting)
-"aHJ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/quartermaster/sorting)
"aHK" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/conveyor{
@@ -5806,6 +5563,32 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/security/checkpoint/supply)
+"aHN" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/mining{
+ name = "Quartermaster's Office";
+ req_access_txt = "41"
+ },
+/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
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/quartermaster/qm)
"aHP" = (
/obj/machinery/door/airlock/security{
name = "Security Post - Cargo";
@@ -5838,14 +5621,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/quartermaster/storage)
-"aHX" = (
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/quartermaster/storage)
"aIA" = (
/obj/structure/sign/warning/biohazard,
/turf/closed/wall/r_wall,
@@ -5876,6 +5651,15 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/engine/atmospherics_engine)
+"aII" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/wood/big,
+/area/lawoffice)
"aIL" = (
/obj/structure/table,
/obj/item/storage/box/bodybags{
@@ -5947,17 +5731,6 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/quartermaster/sorting)
-"aJl" = (
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/structure/cable/white,
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/checkpoint/supply)
"aJm" = (
/obj/structure/chair/office{
dir = 4
@@ -6193,11 +5966,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/sorting)
-"aKJ" = (
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/checkpoint/supply)
"aKN" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/brigdoor/southright{
@@ -6216,6 +5984,32 @@
"aKV" = (
/turf/closed/wall,
/area/security/prison)
+"aKY" = (
+/obj/effect/turf_decal/delivery/red,
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/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/effect/turf_decal/stripes/closeup,
+/obj/effect/turf_decal/stripes/red/line,
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 1
+ },
+/obj/machinery/turnstile{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/security/prison)
"aLb" = (
/obj/item/wrench,
/obj/effect/turf_decal/stripes/line{
@@ -6274,19 +6068,6 @@
},
/turf/open/floor/iron,
/area/engine/atmospherics_engine)
-"aLu" = (
-/obj/structure/closet/radiation,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/obj/machinery/airalarm/directional/east{
- pixel_x = 24
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron,
-/area/engine/atmospherics_engine)
"aLw" = (
/obj/structure/cable/yellow{
icon_state = "0-8"
@@ -6357,18 +6138,6 @@
},
/turf/open/floor/plating,
/area/quartermaster/storage)
-"aMc" = (
-/obj/structure/cable/white,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "hosprivacy";
- name = "HoS Privacy Blast door"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/heads/hos)
"aMt" = (
/obj/structure/sign/warning/fire,
/turf/closed/wall,
@@ -6532,13 +6301,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/security/checkpoint/supply)
-"aNw" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/loading_area{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/quartermaster/storage)
"aNF" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -6554,6 +6316,15 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard)
+"aNH" = (
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron,
+/area/quartermaster/qm)
"aNO" = (
/obj/machinery/door/poddoor/incinerator_atmos_main,
/turf/open/floor/engine/vacuum,
@@ -6659,16 +6430,14 @@
"aOF" = (
/turf/open/floor/carpet/purple,
/area/crew_quarters/bar/atrium)
-"aOQ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/plasticflaps,
-/obj/effect/turf_decal/delivery,
-/obj/machinery/conveyor{
- dir = 4;
- id = "cargodisposals"
+"aOM" = (
+/obj/effect/landmark/event_spawn,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
},
-/turf/open/floor/iron,
-/area/quartermaster/sorting)
+/turf/open/floor/iron/white,
+/area/security/brig/medbay)
"aOR" = (
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -6688,61 +6457,6 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron,
/area/quartermaster/storage)
-"aPb" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/iron,
-/area/quartermaster/storage)
-"aPc" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/light,
-/obj/machinery/camera/directional/south{
- c_tag = "Cargo Bay - Aft Starboard";
- name = "cargo camera"
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/iron,
-/area/quartermaster/storage)
-"aPd" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/iron,
-/area/quartermaster/storage)
-"aPe" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/iron,
-/area/quartermaster/storage)
-"aPf" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/iron,
-/area/quartermaster/storage)
-"aPg" = (
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"aPn" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating,
-/area/security/brig)
"aPw" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -6931,10 +6645,21 @@
},
/turf/open/floor/iron/checker,
/area/engine/atmos)
-"aQd" = (
-/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/security/main)
+"aPW" = (
+/obj/machinery/computer/security/hos{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 1
+ },
+/obj/machinery/newscaster{
+ pixel_x = 32
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = -32
+ },
+/turf/open/floor/iron/dark/smooth_half,
+/area/crew_quarters/heads/hos)
"aQh" = (
/obj/effect/turf_decal/delivery,
/obj/structure/window/reinforced,
@@ -6980,25 +6705,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"aQF" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/disposal/deliveryChute{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/quartermaster/sorting)
-"aQJ" = (
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/structure/cable/white,
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/checkpoint/supply)
"aQO" = (
/obj/machinery/status_display/supply,
/turf/closed/wall,
@@ -7294,53 +7000,43 @@
/obj/effect/turf_decal/box/corners,
/turf/open/floor/engine,
/area/science/explab)
-"aSg" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
+"aSn" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/turf/closed/wall,
-/area/quartermaster/sorting)
-"aSh" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
},
-/turf/closed/wall,
-/area/security/checkpoint/supply)
-"aSi" = (
+/turf/open/floor/iron,
+/area/crew_quarters/locker)
+"aSs" = (
/obj/structure/cable/yellow{
- icon_state = "0-4"
+ icon_state = "1-8"
},
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
},
-/turf/open/floor/plating,
-/area/security/checkpoint/supply)
-"aSk" = (
/obj/structure/cable/yellow{
- icon_state = "0-8"
+ icon_state = "4-8"
},
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 4
},
-/turf/open/floor/plating,
-/area/security/checkpoint/supply)
-"aSB" = (
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/quartermaster/qm)
-"aSJ" = (
-/obj/machinery/light/small{
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/machinery/door/airlock/vault{
+ name = "Vault Door";
+ req_access_txt = "53"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
},
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
-/area/security/detectives_office)
+/area/security/nuke_storage)
"aSP" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/general/visible{
@@ -7537,6 +7233,12 @@
/obj/effect/turf_decal/loading_area,
/turf/open/floor/iron,
/area/hallway/secondary/service)
+"aTB" = (
+/obj/structure/table/wood,
+/obj/item/radio/intercom,
+/obj/effect/turf_decal/tile/green/fourcorners/contrasted,
+/turf/open/floor/iron,
+/area/security/courtroom)
"aTC" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
@@ -7561,17 +7263,22 @@
"aTO" = (
/turf/closed/wall,
/area/quartermaster/office)
-"aUh" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/quartermaster/qm)
"aUp" = (
/obj/effect/spawner/structure/window/reinforced/tinted,
/turf/open/floor/plating,
/area/quartermaster/qm)
+"aUt" = (
+/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/plating,
+/area/maintenance/starboard)
"aUH" = (
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
@@ -7732,13 +7439,51 @@
},
/turf/open/floor/iron/cafeteria,
/area/crew_quarters/theatre)
-"aVx" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
+"aVn" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 4
},
-/turf/open/floor/plating,
-/area/quartermaster/office)
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron{
+ heat_capacity = 1e+006
+ },
+/area/maintenance/starboard)
+"aVt" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/table/reinforced,
+/obj/item/storage/box/rubbershot{
+ pixel_x = -4;
+ pixel_y = -4
+ },
+/obj/item/storage/box/rubbershot,
+/obj/item/storage/box/rubbershot{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/storage/box/rubbershot,
+/obj/item/storage/box/rubbershot{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/storage/box/rubbershot{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/ai_monitored/security/armory)
"aVV" = (
/obj/structure/sink{
dir = 8;
@@ -7760,6 +7505,13 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/janitor)
+"aWm" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/crew_quarters/heads/chief)
"aWt" = (
/turf/open/floor/engine/co2,
/area/engine/atmos)
@@ -7797,6 +7549,20 @@
},
/turf/open/floor/plating,
/area/engine/atmos)
+"aWA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/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/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/wood,
+/area/security/detectives_office)
"aWB" = (
/obj/machinery/atmospherics/pipe/manifold4w/yellow/visible,
/obj/effect/turf_decal/stripes/line{
@@ -7866,68 +7632,12 @@
},
/turf/open/floor/engine/air,
/area/engine/atmos)
-"aXc" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/maintenance/department/science)
-"aXe" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/iron,
-/area/hallway/primary/fore)
-"aXf" = (
-/obj/structure/plasticflaps/opaque,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/iron,
-/area/quartermaster/office)
-"aXg" = (
+"aXh" = (
+/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/window/westright{
- name = "Cargo Office Delivery";
- req_access_txt = "31"
- },
-/turf/open/floor/iron,
-/area/quartermaster/office)
-"aXl" = (
-/obj/machinery/holopad,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron,
-/area/quartermaster/office)
-"aXq" = (
-/obj/machinery/door/airlock/mining{
- name = "Cargo Bay";
- req_access_txt = "31"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/iron,
-/area/quartermaster/office)
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
"aXB" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -7969,21 +7679,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/quartermaster/qm)
-"aXK" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/security{
- aiControlDisabled = 1;
- name = "Education Chamber";
- req_access_txt = "3"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/execution/transfer)
"aXV" = (
/obj/machinery/light/small{
dir = 8
@@ -8048,6 +7743,21 @@
/obj/machinery/space_heater,
/turf/open/floor/plating,
/area/maintenance/port/fore)
+"aYu" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposaloutlet,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/quartermaster/sorting)
"aYx" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
@@ -8090,37 +7800,15 @@
/obj/machinery/vending/wardrobe/cargo_wardrobe,
/turf/open/floor/iron,
/area/quartermaster/storage)
-"aYX" = (
-/obj/machinery/disposal/bin,
-/obj/machinery/light,
-/obj/machinery/newscaster{
- pixel_y = -32
+"aZr" = (
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 10
},
-/obj/structure/disposalpipe/trunk{
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 1
},
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron,
-/area/quartermaster/storage)
-"aZi" = (
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable/white,
-/turf/open/floor/plating,
-/area/quartermaster/qm)
-"aZj" = (
-/obj/structure/cable/white,
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/quartermaster/qm)
+/turf/open/floor/prison/dark,
+/area/security/prison)
"aZt" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -8134,17 +7822,6 @@
},
/turf/open/floor/catwalk_floor/iron,
/area/engine/atmos)
-"aZu" = (
-/obj/structure/chair{
- dir = 1;
- name = "Jury"
- },
-/obj/machinery/status_display/evac{
- pixel_y = -32
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/courtroom)
"aZv" = (
/obj/structure/lattice/catwalk,
/obj/structure/disposaloutlet,
@@ -8153,6 +7830,9 @@
},
/turf/open/space/basic,
/area/space/nearstation)
+"aZx" = (
+/turf/open/floor/iron/dark/smooth_large,
+/area/security/main)
"aZJ" = (
/obj/machinery/firealarm/directional/south,
/obj/effect/turf_decal/tile/blue/opposingcorners{
@@ -8224,6 +7904,18 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
+"bab" = (
+/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/brown/half/contrasted{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/quartermaster/office)
"bac" = (
/obj/structure/closet/secure_closet/atmospherics,
/obj/effect/decal/cleanable/dirt,
@@ -8287,10 +7979,6 @@
"bar" = (
/turf/closed/wall,
/area/hydroponics)
-"bas" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/hydroponics)
"bat" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -8367,36 +8055,10 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/quartermaster/miningoffice)
-"baV" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/iron,
-/area/quartermaster/miningoffice)
-"baW" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/iron,
-/area/quartermaster/miningoffice)
"baX" = (
/obj/machinery/status_display/evac,
/turf/closed/wall,
/area/quartermaster/qm)
-"baY" = (
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/structure/cable/white,
-/turf/open/floor/plating,
-/area/quartermaster/qm)
"bbd" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -8456,11 +8118,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/hydroponics)
-"bbS" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron,
-/area/hydroponics)
"bbU" = (
/obj/structure/closet/secure_closet/hydroponics,
/obj/structure/extinguisher_cabinet{
@@ -8591,15 +8248,16 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"bcp" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/quartermaster/office)
"bcr" = (
/obj/machinery/status_display/evac,
/turf/closed/wall,
/area/quartermaster/office)
+"bct" = (
+/obj/effect/turf_decal/tile/techfloorgrid{
+ dir = 5
+ },
+/turf/open/space/basic,
+/area/space)
"bcy" = (
/obj/structure/table,
/obj/effect/decal/cleanable/dirt,
@@ -8618,12 +8276,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
-"bcA" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron,
-/area/quartermaster/miningoffice)
"bcB" = (
/obj/structure/closet/secure_closet/miner,
/obj/effect/decal/cleanable/dirt,
@@ -8661,14 +8313,15 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
-"bcG" = (
-/obj/structure/cable/yellow{
- icon_state = "0-2"
+"bcJ" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Detective's Interrogation"
},
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/quartermaster/miningoffice)
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/turf/open/floor/carpet/grimy,
+/area/security/detectives_office)
"bcX" = (
/turf/open/floor/engine/plasma,
/area/engine/atmos)
@@ -8738,22 +8391,6 @@
},
/turf/open/floor/engine/o2,
/area/engine/atmos)
-"bdo" = (
-/obj/structure/table/reinforced,
-/obj/item/radio{
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/item/radio{
- pixel_x = -5;
- pixel_y = 5
- },
-/obj/item/radio,
-/obj/effect/turf_decal/tile/red/anticorner/contrasted{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/security/main)
"bdq" = (
/obj/structure/reagent_dispensers/watertank,
/obj/structure/window/reinforced,
@@ -8764,18 +8401,6 @@
},
/turf/open/floor/iron,
/area/hydroponics)
-"bdr" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/hydroponics)
"bdw" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -8941,14 +8566,9 @@
},
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
-"bei" = (
-/obj/structure/cable/white,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/quartermaster/miningoffice)
+"beh" = (
+/turf/closed/wall,
+/area/security/main)
"bej" = (
/obj/structure/sign/warning/vacuum,
/turf/closed/wall,
@@ -9098,12 +8718,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/crew_quarters/kitchen)
-"bfb" = (
-/obj/structure/cable/white,
-/obj/effect/turf_decal/bot,
-/obj/machinery/power/apc/auto_name/directional/south,
-/turf/open/floor/iron,
-/area/crew_quarters/kitchen)
"bfc" = (
/obj/machinery/chem_master/condimaster,
/obj/effect/turf_decal/bot,
@@ -9137,23 +8751,18 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/crew_quarters/kitchen)
+"bfj" = (
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/obj/machinery/computer/crew{
+ dir = 8
+ },
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/iron/dark,
+/area/security/main)
"bfk" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/hallway/primary/fore)
-"bfl" = (
-/obj/structure/table/reinforced,
-/obj/item/kitchen/rollingpin,
-/obj/item/reagent_containers/food/condiment/flour{
- pixel_x = -2;
- pixel_y = 13
- },
-/obj/item/clothing/head/utility/chefhat,
-/obj/effect/turf_decal{
- dir = 1
- },
-/turf/open/floor/prison,
-/area/security/prison)
"bfq" = (
/obj/structure/table/reinforced,
/obj/item/folder/yellow,
@@ -9167,6 +8776,13 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
+"bfv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/science/research)
"bfw" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/mining{
@@ -9186,19 +8802,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/quartermaster/miningoffice)
-"bfG" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/warning/pods{
- name = "MINING POD"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/quartermaster/miningoffice)
"bfH" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/ore_box,
@@ -9214,40 +8817,12 @@
},
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
-"bfJ" = (
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/quartermaster/miningoffice)
"bfT" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/plasma_input{
dir = 4
},
/turf/open/floor/engine/plasma,
/area/engine/atmos)
-"bgb" = (
-/obj/machinery/door/poddoor/preopen{
- id = "justicechamber";
- name = "Justice Chamber Blast door"
- },
-/obj/machinery/door/window/brigdoor/northright{
- dir = 2;
- name = "Justice Chamber";
- req_access_txt = "3"
- },
-/obj/machinery/door/window/brigdoor/northright{
- name = "Justice Chamber";
- req_access_txt = "3"
- },
-/obj/machinery/atmospherics/pipe/simple/general/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/execution/transfer)
"bgc" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -9311,21 +8886,22 @@
/obj/item/reagent_containers/food/condiment/flour,
/turf/open/floor/iron,
/area/crew_quarters/kitchen)
+"bgt" = (
+/obj/structure/chair{
+ name = "Prosecution";
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron/dark/side{
+ dir = 8
+ },
+/area/security/courtroom)
"bgu" = (
/obj/structure/table/reinforced,
/obj/effect/turf_decal/bot,
/obj/machinery/dish_drive,
/turf/open/floor/iron,
/area/crew_quarters/kitchen)
-"bgw" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/hallway/primary/fore)
"bgD" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -9354,13 +8930,6 @@
},
/turf/open/floor/iron/dark/textured,
/area/maintenance/disposal/incinerator)
-"bgN" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron,
-/area/quartermaster/miningoffice)
"bgO" = (
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
@@ -9490,12 +9059,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/hydroponics)
-"bhA" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron,
-/area/hydroponics)
"bhC" = (
/obj/structure/table/glass,
/obj/item/radio/intercom{
@@ -9604,21 +9167,26 @@
/obj/effect/turf_decal/tile/yellow/half/contrasted,
/turf/open/floor/iron,
/area/construction/mining/aux_base)
-"bie" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/mining/glass{
- name = "Mining Office";
- req_one_access_txt = "31;48"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
+"bhZ" = (
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/obj/structure/filingcabinet/chestdrawer,
+/turf/open/floor/iron/dark,
+/area/security/main)
+"bib" = (
+/obj/item/kirbyplants/random,
+/obj/machinery/firealarm{
+ pixel_y = 24
},
-/obj/effect/turf_decal/stripes/line{
- dir = 4
+/obj/machinery/button/door{
+ id = "ceblast";
+ name = "Lockdown Control";
+ pixel_x = 26;
+ pixel_y = 26;
+ req_access_txt = "56"
},
-/obj/machinery/door/firedoor,
-/turf/open/floor/iron,
-/area/quartermaster/miningoffice)
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron/dark,
+/area/crew_quarters/heads/chief)
"bir" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -9649,16 +9217,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
-"biu" = (
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/quartermaster/miningoffice)
"biC" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
@@ -9671,17 +9229,6 @@
"biP" = (
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/hos)
-"biS" = (
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "hosspace";
- name = "HoS Space Blast door"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/heads/hos)
"biT" = (
/turf/open/floor/engine/n2o,
/area/engine/atmos)
@@ -9827,30 +9374,17 @@
},
/turf/open/floor/iron,
/area/maintenance/port/fore)
-"bke" = (
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
+"bjR" = (
+/obj/item/kirbyplants/random,
+/obj/machinery/power/apc/auto_name/directional/north,
/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/quartermaster/miningoffice)
-"bkf" = (
-/obj/structure/cable/yellow{
- icon_state = "0-8"
+ icon_state = "0-4"
},
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/quartermaster/miningoffice)
+/turf/open/floor/wood,
+/area/security/detectives_office)
"bkl" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -9875,12 +9409,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
-"bku" = (
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/security/main)
"bkw" = (
/obj/structure/extinguisher_cabinet{
pixel_y = 31
@@ -10066,6 +9594,18 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/service)
+"blo" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "brigfront";
+ name = "Brig Blast door"
+ },
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/security/warden)
"blp" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/eastleft{
@@ -10263,34 +9803,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
-"blX" = (
-/obj/machinery/disposal/bin,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light,
-/obj/effect/turf_decal/delivery,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/quartermaster/miningoffice)
-"blY" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/machinery/airalarm/directional/south{
- pixel_y = -22
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/iron,
-/area/quartermaster/miningoffice)
-"blZ" = (
-/obj/machinery/computer/security/mining{
- dir = 1
- },
-/obj/machinery/newscaster{
- pixel_y = -32
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron,
-/area/quartermaster/miningoffice)
"bma" = (
/obj/machinery/computer/shuttle_flight/mining{
dir = 1
@@ -10316,14 +9828,28 @@
},
/turf/open/floor/carpet/grimy,
/area/library)
-"bmk" = (
-/obj/structure/cable/white,
+"bmg" = (
+/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/brown{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/hallway/primary/central)
+"bml" = (
/obj/structure/cable/yellow{
- icon_state = "0-8"
+ icon_state = "1-2"
},
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/main)
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"bmv" = (
/obj/structure/chair/office{
dir = 8
@@ -10339,38 +9865,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint/supply)
-"bmw" = (
-/turf/open/floor/carpet/red,
-/area/crew_quarters/heads/hos)
-"bmz" = (
-/turf/closed/wall,
-/area/crew_quarters/heads/hos)
-"bmA" = (
-/obj/structure/dresser,
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/turf/open/floor/carpet/red,
-/area/crew_quarters/heads/hos)
-"bmB" = (
-/obj/machinery/status_display/evac{
- pixel_y = 32
- },
-/obj/machinery/camera/directional/north{
- c_tag = "Security - Head of Security's Quarters"
- },
-/obj/structure/bed/double,
-/obj/item/bedsheet/double/hos,
-/turf/open/floor/carpet/red,
-/area/crew_quarters/heads/hos)
-"bmC" = (
-/obj/structure/table/wood,
-/obj/item/storage/secure/safe/HoS{
- pixel_x = 32
- },
-/obj/item/flashlight/lamp,
-/turf/open/floor/carpet/red,
-/area/crew_quarters/heads/hos)
"bmD" = (
/obj/structure/window/reinforced{
dir = 4
@@ -10534,11 +10028,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/hallway/secondary/service)
-"bnp" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/hallway/secondary/service)
"bnq" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/preopen{
@@ -10596,21 +10085,6 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"bnw" = (
-/obj/machinery/vending/wallmed{
- name = "Emergency NanoMed";
- pixel_y = 26;
- use_power = 0
- },
-/obj/machinery/camera/directional/north{
- c_tag = "Security - Medbay"
- },
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 4
- },
-/obj/structure/table/optable,
-/turf/open/floor/iron/white,
-/area/security/brig)
"bnx" = (
/turf/closed/wall,
/area/hallway/primary/fore)
@@ -10648,13 +10122,6 @@
},
/turf/open/floor/iron,
/area/maintenance/starboard/fore)
-"bnC" = (
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/quartermaster/miningoffice)
"bnG" = (
/turf/closed/wall/r_wall,
/area/security/execution/transfer)
@@ -10685,10 +10152,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"bnY" = (
-/obj/machinery/computer/secure_data,
-/turf/open/floor/carpet/red,
-/area/crew_quarters/heads/hos)
"boa" = (
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -10696,23 +10159,6 @@
/obj/effect/spawner/structure/window/reinforced/tinted,
/turf/open/floor/plating,
/area/crew_quarters/heads/hos)
-"boc" = (
-/obj/machinery/computer/prisoner/management{
- dir = 8
- },
-/turf/open/floor/carpet/red,
-/area/crew_quarters/heads/hos)
-"bod" = (
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "hosroom";
- name = "HoS Room Blast door"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/heads/hos)
"boe" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -10859,6 +10305,21 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/maintenance/starboard/fore)
+"bpa" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_edge,
+/area/security/main)
"bpb" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/effect/decal/cleanable/dirt,
@@ -10878,12 +10339,12 @@
},
/turf/open/floor/iron/white,
/area/medical/virology)
-"bpf" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/circuit/green,
-/area/security/nuke_storage)
+"bpg" = (
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/obj/structure/table,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/iron/dark,
+/area/security/prison)
"bpx" = (
/obj/machinery/vending/clothing,
/obj/effect/decal/cleanable/dirt,
@@ -10891,15 +10352,6 @@
/obj/machinery/digital_clock/directional/south,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"bpD" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/computer/crew{
- dir = 8
- },
-/turf/open/floor/carpet/red,
-/area/crew_quarters/heads/hos)
"bpF" = (
/obj/structure/window/reinforced{
dir = 4
@@ -11008,6 +10460,12 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
+"bqh" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/prison/dark,
+/area/security/execution/transfer)
"bqi" = (
/obj/machinery/portable_atmospherics/canister/nitrogen,
/obj/machinery/light{
@@ -11074,15 +10532,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/hydroponics)
-"bqz" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown/half/contrasted{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/quartermaster/storage)
"bqB" = (
/obj/machinery/biogenerator,
/obj/effect/turf_decal/bot,
@@ -11194,80 +10643,6 @@
},
/turf/open/floor/iron,
/area/engine/storage_shared)
-"bro" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/security/glass{
- name = "Security Office";
- req_one_access_txt = "1;4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/iron,
-/area/security/main)
-"brp" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/turf/open/floor/iron,
-/area/security/main)
-"brB" = (
-/obj/structure/table/wood,
-/obj/item/phone{
- desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in.";
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/clothing/mask/cigarette/cigar/cohiba{
- pixel_x = 6
- },
-/obj/item/clothing/mask/cigarette/cigar/havana{
- pixel_x = 2
- },
-/obj/item/clothing/mask/cigarette/cigar{
- pixel_x = 4.5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/carpet/red,
-/area/crew_quarters/heads/hos)
-"brC" = (
-/obj/machinery/computer/security/hos{
- dir = 1
- },
-/turf/open/floor/carpet/red,
-/area/crew_quarters/heads/hos)
-"brD" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/carpet/red,
-/area/crew_quarters/heads/hos)
-"brG" = (
-/obj/machinery/light_switch{
- pixel_x = -26;
- pixel_y = -26
- },
-/turf/open/floor/carpet/red,
-/area/crew_quarters/heads/hos)
-"brH" = (
-/obj/machinery/button/door{
- id = "hosroom";
- name = "Privacy Control";
- pixel_x = 64;
- pixel_y = -26;
- req_access_txt = "58"
- },
-/turf/open/floor/carpet/red,
-/area/crew_quarters/heads/hos)
-"brI" = (
-/obj/machinery/computer/secure_data{
- dir = 8
- },
-/turf/open/floor/carpet/red,
-/area/crew_quarters/heads/hos)
"brL" = (
/obj/structure/lattice,
/obj/structure/window/reinforced{
@@ -11610,16 +10985,6 @@
"bsW" = (
/turf/closed/wall,
/area/hallway/primary/central)
-"bth" = (
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/sign/warning/vacuum,
-/turf/closed/wall,
-/area/security/brig)
"btw" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 26
@@ -11630,33 +10995,6 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/aft)
-"btz" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/carpet/red,
-/area/crew_quarters/heads/hos)
-"btD" = (
-/obj/machinery/light,
-/obj/machinery/status_display/ai{
- pixel_y = -32
- },
-/obj/item/radio/intercom{
- pixel_x = 26;
- pixel_y = -26
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/crew_quarters/heads/hos)
-"btE" = (
-/obj/machinery/suit_storage_unit/hos,
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/iron,
-/area/crew_quarters/heads/hos)
"btF" = (
/obj/structure/lattice,
/obj/structure/window/reinforced{
@@ -11706,30 +11044,21 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/engine/atmos)
+"btV" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/closet/secure_closet/genpop,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"btW" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/iron,
/area/engine/atmos)
-"bua" = (
-/obj/effect/decal/cleanable/dirt,
-/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/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/atmos)
"bud" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/effect/turf_decal/bot,
@@ -11817,17 +11146,6 @@
"but" = (
/turf/closed/wall/r_wall,
/area/security/nuke_storage)
-"buL" = (
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/main)
-"buP" = (
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/security/main)
"buZ" = (
/obj/machinery/meter,
/obj/effect/turf_decal/stripes/line{
@@ -11898,61 +11216,6 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
-"bvk" = (
-/obj/item/kirbyplants/random,
-/obj/machinery/light/small,
-/obj/machinery/light_switch{
- pixel_x = 26;
- pixel_y = -26
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/iron,
-/area/engine/atmos)
-"bvl" = (
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/atmos)
-"bvp" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/engine/atmos)
-"bvq" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/loading_area{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/engine/atmos)
-"bvr" = (
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "atmoslock";
- name = "Atmospherics Lockdown Blast door"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/atmos)
"bvv" = (
/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
@@ -11995,6 +11258,21 @@
},
/turf/open/floor/iron,
/area/hydroponics)
+"bvA" = (
+/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/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"bvB" = (
/obj/effect/turf_decal/tile/blue,
/obj/effect/turf_decal/tile/green{
@@ -12038,6 +11316,18 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/hallway/primary/central)
+"bvS" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/quartermaster/miningoffice)
"bwn" = (
/obj/machinery/status_display/ai,
/turf/closed/wall/r_wall,
@@ -12112,68 +11402,6 @@
/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/engine/atmos)
-"bwB" = (
-/obj/machinery/disposal/bin,
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -24
- },
-/obj/machinery/light_switch{
- pixel_x = -38;
- pixel_y = -8
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/engine/atmos)
-"bwF" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/obj/structure/window/reinforced,
-/obj/machinery/door/window/eastright{
- name = "Atmospherics Delivery";
- req_access_txt = "24"
- },
-/turf/open/floor/iron,
-/area/engine/atmos)
-"bwG" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/plasticflaps/opaque,
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "atmoslock";
- name = "Atmospherics Lockdown Blast door"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=8";
- dir = 8;
- freq = 1400;
- location = "Atmospherics"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/iron,
-/area/engine/atmos)
"bwJ" = (
/obj/structure/rack,
/obj/structure/cable/yellow{
@@ -12337,17 +11565,12 @@
},
/turf/open/floor/iron,
/area/maintenance/starboard/fore)
-"bxb" = (
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/structure/cable/white,
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/hallway/primary/central)
+"bwZ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron/dark,
+/area/maintenance/starboard)
"bxh" = (
/turf/open/floor/circuit/green,
/area/security/nuke_storage)
@@ -12384,6 +11607,16 @@
"bxE" = (
/turf/closed/wall/r_wall,
/area/engine/break_room)
+"bxF" = (
+/obj/machinery/photocopier,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/iron/dark/side{
+ dir = 5
+ },
+/area/security/main)
"bxH" = (
/obj/machinery/status_display/evac,
/turf/closed/wall/r_wall,
@@ -12452,40 +11685,9 @@
},
/turf/open/floor/plating,
/area/engine/atmos)
-"bxX" = (
-/obj/structure/table,
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/airalarm/directional/east{
- pixel_x = 24
- },
-/obj/item/wrench,
-/obj/item/clothing/mask/gas,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/turf/open/floor/iron/dark/corner,
-/area/hallway/primary/port)
"bxY" = (
/turf/closed/wall/r_wall,
/area/storage/tech)
-"byb" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/security/brig)
"byc" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -12507,15 +11709,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/command)
-"byf" = (
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "bridgewindows";
- name = "Bridge View Blast door"
- },
-/turf/open/floor/plating,
-/area/bridge)
"byg" = (
/obj/machinery/computer/card,
/obj/effect/turf_decal/tile/blue{
@@ -12540,23 +11733,6 @@
/obj/item/storage/toolbox/mechanical,
/turf/open/floor/iron/dark,
/area/bridge)
-"byo" = (
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/brig)
"byq" = (
/obj/machinery/computer/monitor,
/obj/effect/turf_decal/tile/yellow{
@@ -12564,21 +11740,6 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
-"byu" = (
-/obj/structure/cable/white,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/machinery/power/apc/auto_name/directional/south,
-/obj/machinery/light_switch{
- pixel_x = 12;
- pixel_y = -22
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard/aft)
"byF" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -12748,6 +11909,16 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/science/research)
+"bzK" = (
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 1
+ },
+/obj/structure/closet/secure_closet/injection{
+ name = "educational injections";
+ pixel_x = 2
+ },
+/turf/open/floor/iron/dark,
+/area/security/execution/transfer)
"bzL" = (
/obj/machinery/light{
dir = 4
@@ -12796,17 +11967,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"bzW" = (
-/obj/structure/cable/white,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/hallway/primary/central)
"bzX" = (
/obj/structure/cable/yellow{
icon_state = "0-8"
@@ -12814,24 +11974,34 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/security/nuke_storage)
-"bAc" = (
-/obj/docking_port/stationary{
- dir = 8;
- dwidth = 2;
- height = 5;
- id = "laborcamp_home";
- name = "fore bay 1";
- roundstart_template = /datum/map_template/shuttle/labour/delta;
- width = 9
+"bAa" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
},
-/turf/open/space/basic,
-/area/space)
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/dark,
+/area/security/main)
"bAe" = (
/obj/structure/table/reinforced,
/obj/item/flashlight/lamp,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai)
+"bAg" = (
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/iron{
+ dir = 4;
+ icon_state = "chapel"
+ },
+/area/chapel/main)
+"bAv" = (
+/obj/structure/sign/warning/securearea{
+ pixel_x = -32
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
"bAx" = (
/obj/machinery/status_display/evac,
/turf/closed/wall/r_wall,
@@ -12974,15 +12144,6 @@
},
/turf/open/floor/iron/dark/corner,
/area/engine/atmos)
-"bBf" = (
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "atmoslock";
- name = "Atmospherics Lockdown Blast door"
- },
-/turf/open/floor/plating,
-/area/engine/atmos)
"bBh" = (
/obj/item/kirbyplants/random,
/obj/effect/turf_decal/tile/brown/half/contrasted{
@@ -13039,18 +12200,6 @@
"bBC" = (
/turf/closed/wall,
/area/bridge)
-"bBD" = (
-/obj/machinery/newscaster{
- pixel_y = -32
- },
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- dir = 5
- },
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron/dark,
-/area/security/execution/transfer)
"bBF" = (
/obj/structure/table/reinforced,
/obj/item/clipboard,
@@ -13071,11 +12220,6 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
-"bBS" = (
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/hallway/primary/central)
"bBT" = (
/obj/machinery/door/airlock/public/glass{
name = "Departures Lounge"
@@ -13121,13 +12265,6 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/medical)
-"bCf" = (
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/hallway/primary/starboard)
"bCn" = (
/obj/machinery/light{
dir = 8
@@ -13147,14 +12284,6 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/ai)
-"bCA" = (
-/obj/structure/cable/white,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/engine/gravity_generator)
"bCB" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/airalarm/directional/north{
@@ -13202,15 +12331,6 @@
dir = 1
},
/area/engine/break_room)
-"bCX" = (
-/obj/machinery/airalarm/directional/east{
- pixel_x = 24
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/turf/open/floor/iron/checker,
-/area/engine/break_room)
"bCZ" = (
/obj/machinery/computer/station_alert{
dir = 1
@@ -13290,12 +12410,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/storage/primary)
-"bDq" = (
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/crew_quarters/heads/chief)
"bDt" = (
/obj/structure/table/reinforced,
/obj/item/assembly/igniter,
@@ -13486,19 +12600,6 @@
/obj/effect/turf_decal/tile/blue,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"bFh" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/power/apc/auto_name/directional/north,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/prison)
"bFn" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 4
@@ -13622,36 +12723,19 @@
},
/turf/open/floor/iron/white,
/area/science/mixing)
-"bGr" = (
-/obj/machinery/status_display/evac{
- pixel_x = 32;
- pixel_y = 32
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
-"bGu" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+"bGt" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Anti Radiation shielded room"
},
-/turf/closed/wall,
-/area/engine/break_room)
-"bGv" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
},
-/obj/structure/closet/emcloset,
-/obj/effect/turf_decal/stripes/line{
- dir = 9
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/turf/open/floor/iron,
-/area/engine/break_room)
+/turf/open/floor/iron/techmaint,
+/area/security/prison/shielded)
"bGw" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/airalarm/directional/south{
@@ -13663,25 +12747,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/toilet/restrooms)
-"bGx" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
-"bGy" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/engine/break_room)
"bGD" = (
/obj/structure/rack,
/obj/effect/turf_decal/bot,
@@ -13722,14 +12787,6 @@
/obj/effect/turf_decal/tile/blue,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"bGP" = (
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/bridge)
"bGR" = (
/obj/structure/table/wood,
/obj/item/folder/blue,
@@ -13744,11 +12801,6 @@
},
/turf/open/floor/carpet/grimy,
/area/crew_quarters/dorms)
-"bGS" = (
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/bridge)
"bHf" = (
/obj/machinery/holopad,
/turf/open/floor/carpet/royalblue,
@@ -13784,28 +12836,19 @@
"bHr" = (
/turf/closed/wall/r_wall,
/area/security/detectives_office)
-"bHs" = (
-/obj/structure/cable/yellow{
- icon_state = "0-2"
+"bHu" = (
+/obj/machinery/hydroponics/constructable,
+/obj/structure/railing{
+ dir = 8
},
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "detectivewindows";
- name = "Detective Privacy Blast door"
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 8
},
-/turf/open/floor/plating,
-/area/security/detectives_office)
+/turf/open/floor/prison/dark,
+/area/security/prison)
"bHv" = (
/turf/closed/wall,
/area/hallway/primary/starboard)
-"bHO" = (
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/warning/electricshock{
- pixel_y = -32
- },
-/turf/open/floor/plating,
-/area/engine/gravity_generator)
"bHP" = (
/obj/machinery/light,
/obj/machinery/status_display/evac{
@@ -13862,13 +12905,6 @@
/obj/machinery/status_display/evac,
/turf/closed/wall,
/area/engine/break_room)
-"bIc" = (
-/obj/structure/table/reinforced,
-/obj/item/folder/yellow,
-/obj/item/lightreplacer,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron,
-/area/engine/break_room)
"bIh" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -13977,39 +13013,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/maintenance/department/medical/central)
-"bJW" = (
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/crew_quarters/heads/chief)
-"bJX" = (
-/obj/machinery/door/poddoor/preopen{
- id = "ceblast";
- name = "Chief's Lockdown Shutters"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
-"bJY" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/iron,
-/area/engine/break_room)
"bKe" = (
/obj/machinery/holopad,
/obj/effect/decal/cleanable/dirt,
@@ -14033,11 +13036,6 @@
/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/storage)
-"bKl" = (
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/engine/break_room)
"bKp" = (
/obj/structure/rack,
/obj/effect/turf_decal/bot,
@@ -14193,16 +13191,12 @@
},
/turf/open/floor/iron/white,
/area/science/misc_lab/range)
-"bLm" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+"bLh" = (
+/obj/effect/turf_decal/siding/wideplating_new/dark/corner{
dir = 8
},
-/obj/machinery/light/small,
-/turf/open/floor/prison,
-/area/security/prison)
+/turf/open/floor/iron/dark,
+/area/security/main)
"bLp" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -14213,6 +13207,10 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/exit/departure_lounge)
+"bLr" = (
+/obj/structure/chair/office,
+/turf/open/floor/iron/dark/smooth_large,
+/area/security/main)
"bLs" = (
/turf/closed/wall/r_wall,
/area/ai_monitored/security/armory)
@@ -14225,6 +13223,15 @@
},
/turf/open/floor/iron,
/area/maintenance/port/fore)
+"bLC" = (
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenosecure";
+ name = "Secure Pen Shutters"
+ },
+/turf/open/floor/plating,
+/area/science/xenobiology)
"bLF" = (
/turf/closed/wall/r_wall,
/area/engine/transit_tube)
@@ -14232,18 +13239,6 @@
/obj/machinery/status_display/evac,
/turf/closed/wall,
/area/engine/transit_tube)
-"bLM" = (
-/obj/effect/turf_decal/tile/neutral,
-/turf/open/floor/iron,
-/area/crew_quarters/heads/chief)
-"bLO" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/iron{
- heat_capacity = 1e+006
- },
-/area/crew_quarters/heads/chief)
"bLX" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 8
@@ -14368,6 +13363,17 @@
},
/turf/open/floor/wood,
/area/bridge/meeting_room/council)
+"bMx" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "Prisongate"
+ },
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced/prison,
+/turf/open/floor/plating,
+/area/security/prison)
"bMH" = (
/obj/structure/sign/nanotrasen{
pixel_x = -32;
@@ -14402,21 +13408,9 @@
},
/turf/open/floor/carpet/royalblue,
/area/crew_quarters/heads/captain)
-"bMO" = (
-/obj/machinery/airalarm/directional/east{
- pixel_x = 24
- },
-/turf/open/floor/wood,
-/area/crew_quarters/heads/captain)
"bMQ" = (
/turf/closed/wall,
/area/storage/tools)
-"bMT" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron,
-/area/storage/tools)
"bMU" = (
/obj/structure/closet/toolcloset,
/obj/effect/decal/cleanable/dirt,
@@ -14432,21 +13426,6 @@
"bMW" = (
/turf/closed/wall,
/area/security/detectives_office)
-"bNc" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/carpet/red,
-/area/security/detectives_office)
-"bNd" = (
-/obj/machinery/computer/med_data{
- dir = 8
- },
-/obj/machinery/requests_console{
- department = "Detective's Office";
- name = "Detective RC";
- pixel_x = 30
- },
-/turf/open/floor/carpet/red,
-/area/security/detectives_office)
"bNg" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -14462,15 +13441,6 @@
},
/turf/open/floor/iron/white,
/area/science/misc_lab/range)
-"bNj" = (
-/turf/closed/wall,
-/area/security/brig)
-"bNr" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/ai_monitored/security/armory)
"bNu" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -14501,17 +13471,6 @@
},
/turf/open/space,
/area/space/nearstation)
-"bNM" = (
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/warden)
-"bNU" = (
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/crew_quarters/heads/chief)
"bNV" = (
/obj/machinery/door/poddoor/preopen{
id = "ceblast";
@@ -14546,6 +13505,16 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/storage/primary)
+"bOq" = (
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/turf/open/floor/iron/white,
+/area/security/brig/medbay)
"bOs" = (
/obj/effect/turf_decal/tile/yellow{
dir = 8
@@ -14558,21 +13527,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/storage/primary)
-"bOv" = (
-/obj/structure/cable/white,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "councilblast";
- name = "Council Chambers Blast door"
- },
-/turf/open/floor/plating,
-/area/bridge/meeting_room/council)
"bOw" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -14617,27 +13571,11 @@
/obj/item/lighter,
/turf/open/floor/carpet/royalblue,
/area/bridge/meeting_room/council)
-"bOB" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/ai_monitored/security/armory)
"bOC" = (
/obj/structure/table/wood,
/obj/item/storage/fancy/donut_box,
/turf/open/floor/carpet/royalblue,
/area/bridge/meeting_room/council)
-"bOD" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/iron,
-/area/security/brig)
"bOU" = (
/obj/structure/chair/fancy/comfy{
dir = 4
@@ -14656,26 +13594,14 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/captain)
-"bPj" = (
-/obj/structure/chair/office{
- dir = 8
- },
-/obj/effect/landmark/start/detective,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/carpet/red,
-/area/security/detectives_office)
-"bPk" = (
-/obj/machinery/computer/secure_data{
- dir = 8
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/status_display/evac{
- pixel_x = 32
+"bOZ" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
},
-/turf/open/floor/carpet/red,
-/area/security/detectives_office)
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/space/basic,
+/area/quartermaster/storage)
"bPv" = (
/obj/item/kirbyplants/random,
/turf/open/floor/carpet/grimy,
@@ -14695,6 +13621,24 @@
/obj/machinery/status_display/evac,
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/aisat_interior)
+"bPJ" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 8
+ },
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/machinery/recharger{
+ pixel_x = -7
+ },
+/obj/item/assembly/flash/handheld{
+ pixel_x = 6;
+ pixel_y = 3
+ },
+/turf/open/floor/iron/dark,
+/area/ai_monitored/security/armory)
"bPK" = (
/obj/structure/window/reinforced{
dir = 8
@@ -14728,14 +13672,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/engine/break_room)
-"bQc" = (
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/checkpoint/engineering)
"bQg" = (
/turf/closed/wall/r_wall,
/area/security/checkpoint/engineering)
@@ -14821,15 +13757,6 @@
"bQv" = (
/turf/closed/wall,
/area/storage/primary)
-"bQx" = (
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "councilblast";
- name = "Council Chambers Blast door"
- },
-/turf/open/floor/plating,
-/area/bridge/meeting_room/council)
"bQy" = (
/obj/structure/table/wood,
/obj/item/folder/red,
@@ -14862,6 +13789,16 @@
"bQF" = (
/turf/open/floor/wood,
/area/bridge/meeting_room/council)
+"bQI" = (
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/textured,
+/area/security/brig)
"bQQ" = (
/obj/machinery/newscaster{
pixel_x = -32;
@@ -14880,28 +13817,12 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/wood,
/area/crew_quarters/heads/captain)
-"bQV" = (
-/obj/structure/cable/white,
-/obj/machinery/power/apc/auto_name/directional/south,
-/turf/open/floor/wood,
-/area/crew_quarters/heads/captain)
"bQW" = (
/obj/structure/sign/plaques/golden/captain{
pixel_x = 32
},
/turf/open/floor/wood,
/area/crew_quarters/heads/captain)
-"bQZ" = (
-/obj/structure/table,
-/obj/item/stack/sheet/iron/fifty,
-/obj/item/stack/rods/fifty,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/storage/tools)
"bRb" = (
/obj/structure/table,
/obj/item/stack/sheet/glass/fifty,
@@ -14909,52 +13830,18 @@
/obj/effect/turf_decal/tile/yellow,
/turf/open/floor/iron,
/area/storage/tools)
-"bRf" = (
-/obj/item/radio/intercom{
- pixel_y = 26
+"bRg" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
},
-/obj/effect/turf_decal/stripes/line{
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 4
},
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/turf/open/floor/iron,
-/area/security/brig)
-"bRj" = (
-/obj/structure/table/wood,
/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/item/toy/figure/detective,
-/turf/open/floor/carpet/red,
-/area/security/detectives_office)
-"bRk" = (
-/obj/structure/table/wood,
-/obj/machinery/button/door{
- id = "detectivewindows";
- name = "Privacy Shutters";
- pixel_x = 26;
- pixel_y = -26;
- req_access_txt = "4"
- },
-/obj/machinery/light_switch{
- pixel_x = 38;
- pixel_y = -26
- },
-/obj/structure/disposalpipe/segment,
-/obj/item/flashlight/lamp,
-/obj/item/reagent_containers/food/drinks/flask/det,
-/turf/open/floor/carpet/red,
-/area/security/detectives_office)
-"bRl" = (
-/obj/structure/table/wood,
-/obj/item/storage/secure/safe{
- pixel_x = 32
+ icon_state = "1-8"
},
-/obj/machinery/computer/security/wooden_tv,
-/turf/open/floor/carpet/red,
-/area/security/detectives_office)
+/turf/open/floor/iron/dark/smooth_large,
+/area/security/courtroom)
"bRp" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -15106,6 +13993,21 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/engine/transit_tube)
+"bRW" = (
+/obj/machinery/door/airlock/mining/glass{
+ name = "Mining Office";
+ req_access_txt = "31"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/quartermaster/miningoffice)
"bRZ" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/bot,
@@ -15299,6 +14201,26 @@
},
/turf/open/floor/wood,
/area/bridge/meeting_room/council)
+"bSB" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/door/window/southright{
+ name = "Weapons storage";
+ req_one_access_txt = "1;4"
+ },
+/obj/effect/loot_jobscale/armoury/energy_gun,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted,
+/obj/structure/rack,
+/turf/open/floor/iron/dark,
+/area/ai_monitored/security/armory)
"bSL" = (
/obj/structure/table/wood,
/obj/machinery/light{
@@ -15340,28 +14262,6 @@
},
/turf/open/floor/carpet/royalblue,
/area/crew_quarters/heads/captain)
-"bSO" = (
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/machinery/door/airlock/security{
- name = "Brig";
- req_access_txt = "63"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/turf/open/floor/iron,
-/area/security/brig)
"bSP" = (
/obj/structure/table/wood,
/obj/item/storage/secure/briefcase{
@@ -15393,22 +14293,30 @@
},
/turf/closed/wall,
/area/storage/tools)
+"bST" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/door/airlock/security/glass{
+ name = "Security Office";
+ req_one_access_txt = "1;4"
+ },
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/security/brig)
"bSV" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/storage/tools)
-"bSZ" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "detectivewindows";
- name = "Detective Privacy Blast door"
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/security/detectives_office)
"bTe" = (
/obj/machinery/light{
dir = 1
@@ -15422,22 +14330,6 @@
},
/turf/open/floor/iron/white,
/area/science/lab)
-"bTh" = (
-/obj/structure/rack,
-/obj/item/storage/toolbox/mechanical{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/storage/toolbox/electrical,
-/obj/item/screwdriver{
- pixel_y = 5
- },
-/obj/item/multitool,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/warden)
"bTl" = (
/turf/open/space,
/area/space)
@@ -15513,16 +14405,17 @@
},
/turf/open/floor/iron/white/corner,
/area/hallway/secondary/entry)
-"bTS" = (
-/obj/machinery/computer/shuttle_flight/labor,
+"bTV" = (
/obj/machinery/status_display/evac{
- pixel_y = 32
+ pixel_x = 32
},
-/obj/effect/turf_decal/tile/red/anticorner/contrasted{
- dir = 4
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/obj/machinery/camera/directional/east{
+ c_tag = "Interrogation room";
+ network = list("interrogation")
},
-/turf/open/floor/iron,
-/area/security/brig)
+/turf/open/floor/iron/dark,
+/area/security/main)
"bTW" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -15616,6 +14509,16 @@
/obj/item/paper/fluff/jobs/medical/hippocratic,
/turf/open/floor/iron/dark,
/area/medical/medbay/lobby)
+"bUz" = (
+/obj/item/kirbyplants{
+ icon_state = "plant-22";
+ name = "legally obbligatory mapper potted plant"
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"bUA" = (
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
@@ -15659,31 +14562,12 @@
"bUQ" = (
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/captain/private)
-"bUW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/firealarm{
- pixel_y = 26
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
-"bUY" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera/directional/north{
- c_tag = "Security Hallway - Port";
- name = "hallway camera"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
+"bVb" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
},
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
+/turf/open/floor/prison/dark,
+/area/security/prison)
"bVc" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -15740,6 +14624,21 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"bVE" = (
+/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/prison,
+/area/security/prison)
"bVJ" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -15815,11 +14714,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/heads/chief)
-"bWl" = (
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced/tinted,
-/turf/open/floor/plating,
-/area/crew_quarters/heads/chief)
"bWn" = (
/turf/open/floor/carpet/orange,
/area/crew_quarters/heads/chief)
@@ -15829,16 +14723,13 @@
},
/turf/open/floor/carpet/orange,
/area/crew_quarters/heads/chief)
-"bWp" = (
-/obj/machinery/suit_storage_unit/ce,
-/obj/machinery/airalarm/directional/east{
- pixel_x = 24
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
+"bWq" = (
+/obj/machinery/light,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
},
-/turf/open/floor/iron,
-/area/crew_quarters/heads/chief)
+/turf/open/floor/prison,
+/area/security/prison)
"bWs" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -15846,36 +14737,6 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/iron,
/area/engine/engineering)
-"bWt" = (
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/structure/cable/white,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bWy" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/machinery/door/airlock/external{
- name = "Gulag Shuttle Airlock";
- req_access_txt = "63"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/layer_manifold{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/brig)
"bWz" = (
/obj/machinery/light{
dir = 8
@@ -16014,11 +14875,15 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/hallway/primary/starboard)
-"bXr" = (
-/obj/structure/cable/white,
+"bXq" = (
+/obj/structure/cable/yellow,
/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "bridgewindows";
+ name = "Bridge View Blast door"
+ },
/turf/open/floor/plating,
-/area/security/warden)
+/area/bridge)
"bXu" = (
/obj/machinery/telecomms/server/presets/security,
/obj/effect/turf_decal/tile/red/anticorner/contrasted{
@@ -16039,6 +14904,54 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/hallway/primary/starboard)
+"bXA" = (
+/obj/effect/turf_decal/siding/wideplating_new/dark/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wideplating_new/dark/corner,
+/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/prison/dark,
+/area/security/prison)
+"bXE" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/door/airlock/command{
+ name = "Chief Engineer's Office";
+ req_access_txt = "56"
+ },
+/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
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/crew_quarters/heads/chief)
"bXF" = (
/obj/machinery/status_display/evac{
pixel_y = 32
@@ -16066,18 +14979,6 @@
/obj/structure/sign/warning/nosmoking,
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/aisat_interior)
-"bXX" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/landmark/blobstart,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/brig)
"bYb" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -16137,21 +15038,6 @@
},
/turf/open/floor/plating,
/area/crew_quarters/heads/chief)
-"bYy" = (
-/obj/structure/cable/white,
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "ceprivacy";
- name = "Chief's Privacy Shutters"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/heads/chief)
"bYz" = (
/obj/structure/closet/toolcloset,
/obj/machinery/light/small,
@@ -16182,17 +15068,23 @@
},
/turf/open/floor/iron,
/area/engine/engineering)
-"bYC" = (
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/engine/engineering)
"bYI" = (
/obj/effect/turf_decal/tile/yellow{
dir = 8
},
/turf/open/floor/iron,
/area/hallway/primary/port)
+"bYJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"bYK" = (
/obj/effect/turf_decal/tile/yellow,
/turf/open/floor/iron,
@@ -16270,6 +15162,20 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/carpet/royalblue,
/area/crew_quarters/heads/hop)
+"bZd" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted,
+/turf/open/floor/iron/dark,
+/area/security/main)
"bZe" = (
/obj/machinery/vending/job_disk,
/obj/machinery/computer/security/telescreen/entertainment{
@@ -16284,6 +15190,12 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/aft)
+"bZl" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/hallway/primary/central)
"bZn" = (
/obj/structure/sign/nanotrasen,
/turf/closed/wall/r_wall,
@@ -16318,14 +15230,6 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/hallway/primary/starboard)
-"bZx" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral,
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
"bZA" = (
/obj/machinery/light,
/obj/structure/disposalpipe/segment{
@@ -16363,18 +15267,6 @@
/obj/effect/turf_decal/tile/red,
/turf/open/floor/iron,
/area/hallway/primary/starboard)
-"bZF" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera/directional/south{
- c_tag = "Security Hallway - Center";
- name = "hallway camera"
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/red,
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
"bZG" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -16393,39 +15285,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/hallway/primary/starboard)
-"bZL" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/break_room)
-"bZN" = (
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/brig)
-"bZZ" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/sheet/iron/fifty,
-/obj/item/stack/sheet/glass/fifty,
-/obj/item/stack/sheet/mineral/plasma{
- amount = 20
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -26
- },
-/obj/structure/cable/white,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/power/apc/auto_name/directional/south,
-/turf/open/floor/iron/dark,
-/area/ai_monitored/turret_protected/aisat_interior)
"caa" = (
/obj/machinery/recharge_station,
/obj/machinery/status_display/ai{
@@ -16475,21 +15334,14 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat_interior)
-"cao" = (
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/structure/cable/white,
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "hosroom";
- name = "HoS Room Blast door"
+"cai" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/plating,
-/area/crew_quarters/heads/hos)
+/turf/open/floor/iron,
+/area/quartermaster/storage)
"cap" = (
/obj/structure/lattice,
/obj/structure/transit_tube/curved{
@@ -16530,11 +15382,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/aft)
-"caA" = (
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/checkpoint/engineering)
"caB" = (
/obj/item/kirbyplants{
icon_state = "plant-21"
@@ -16670,17 +15517,6 @@
"cbg" = (
/turf/closed/wall,
/area/crew_quarters/heads/captain/private)
-"cbj" = (
-/obj/structure/sign/directions/evac{
- pixel_y = -8
- },
-/obj/structure/sign/directions/medical,
-/obj/structure/sign/directions/security{
- dir = 4;
- pixel_y = 8
- },
-/turf/closed/wall,
-/area/security/courtroom)
"cbk" = (
/turf/closed/wall,
/area/security/courtroom)
@@ -16710,23 +15546,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"cbz" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/machinery/door/airlock/security/glass{
- name = "Brig";
- req_access_txt = "63"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/iron,
-/area/security/brig)
"cbA" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -16740,16 +15559,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/bridge)
-"cbG" = (
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/security/warden)
"cbH" = (
/obj/structure/table/reinforced,
/obj/item/electronics/firelock,
@@ -16943,6 +15752,16 @@
},
/turf/open/floor/iron/dark,
/area/library)
+"ccp" = (
+/obj/structure/table/wood,
+/obj/item/clipboard,
+/obj/item/toy/figure/curator,
+/obj/machinery/airalarm/directional/east,
+/obj/item/radio/intercom{
+ pixel_y = -26
+ },
+/turf/open/floor/carpet/grimy,
+/area/library)
"ccr" = (
/turf/open/floor/iron/dark,
/area/library)
@@ -16998,6 +15817,19 @@
},
/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/server)
+"ccL" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/siding/wood{
+ layer = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/turf/open/floor/wood/big,
+/area/lawoffice)
"ccM" = (
/obj/structure/table/wood,
/obj/item/pinpointer/nuke,
@@ -17029,56 +15861,15 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/security/courtroom)
-"cdg" = (
-/obj/structure/table/wood,
-/obj/item/book/manual/wiki/security_space_law,
-/obj/item/book/manual/wiki/security_space_law,
-/obj/item/taperecorder{
- pixel_x = 3
- },
-/obj/item/clothing/glasses/sunglasses/advanced,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -26
- },
-/obj/machinery/button/door{
- id = "lawyerprivacy";
- name = "Lawyer's Privacy Control";
- pixel_y = 24
- },
-/obj/item/computer_hardware/hard_drive/role/lawyer,
-/turf/open/floor/wood,
-/area/lawoffice)
-"cdh" = (
-/obj/structure/table/wood,
-/obj/item/clipboard,
-/obj/item/toy/figure/lawyer,
-/turf/open/floor/wood,
-/area/lawoffice)
-"cdj" = (
-/obj/machinery/light_switch{
- pixel_x = 26;
- pixel_y = 26
- },
-/turf/open/floor/wood,
-/area/lawoffice)
-"cdk" = (
-/obj/machinery/vending/wardrobe/law_wardrobe,
-/obj/machinery/firealarm{
+"cdc" = (
+/obj/structure/chair,
+/obj/structure/window/reinforced{
dir = 8;
- pixel_x = 24
- },
-/turf/open/floor/wood,
-/area/lawoffice)
-"cds" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/machinery/airalarm/directional/south,
-/obj/effect/turf_decal/tile/red/anticorner/contrasted{
- dir = 8
+ layer = 3
},
-/turf/open/floor/iron,
-/area/security/brig)
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark/textured_large,
+/area/security/courtroom)
"cdt" = (
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/ai_upload)
@@ -17096,13 +15887,6 @@
"cdC" = (
/turf/open/floor/plating/airless,
/area/space/nearstation)
-"cdD" = (
-/obj/structure/cable/white,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
"cdE" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -17153,14 +15937,6 @@
},
/turf/open/floor/iron,
/area/engine/engineering)
-"cdP" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/science/research)
"cdX" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light_switch{
@@ -17181,6 +15957,19 @@
},
/turf/open/floor/iron,
/area/engine/engineering)
+"cdY" = (
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/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/security/brig)
"cea" = (
/turf/open/floor/plating,
/area/maintenance/port)
@@ -17188,6 +15977,16 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/maintenance/port)
+"cec" = (
+/obj/machinery/hydroponics/constructable,
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 9
+ },
+/obj/structure/railing{
+ dir = 9
+ },
+/turf/open/floor/prison/dark,
+/area/security/prison)
"cef" = (
/obj/structure/chair/office{
dir = 8
@@ -17229,6 +16028,15 @@
},
/turf/open/floor/plating,
/area/maintenance/port/aft)
+"ceq" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/side,
+/area/ai_monitored/security/armory)
"cev" = (
/obj/machinery/telecomms/broadcaster/preset_left,
/obj/structure/cable/yellow{
@@ -17270,6 +16078,15 @@
},
/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
+"ceD" = (
+/obj/effect/turf_decal/siding/wideplating_new/dark/corner,
+/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/smooth_corner,
+/area/crew_quarters/heads/hos)
"ceE" = (
/obj/structure/table/wood,
/obj/item/folder/blue,
@@ -17279,53 +16096,39 @@
},
/turf/open/floor/carpet/royalblue,
/area/crew_quarters/heads/captain/private)
-"ceW" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+"ceH" = (
+/obj/structure/table/wood,
+/obj/item/clothing/mask/cigarette/cigar/cohiba{
+ pixel_x = 3
},
-/obj/structure/cable/yellow{
- icon_state = "2-4"
+/obj/item/clothing/mask/cigarette/cigar/havana{
+ pixel_x = -3
},
-/turf/open/floor/wood,
-/area/lawoffice)
-"ceX" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+/obj/item/clothing/mask/cigarette/cigar,
+/obj/item/clothing/glasses/hud/security/sunglasses,
+/obj/item/reagent_containers/food/drinks/flask/det,
+/obj/machinery/camera/directional/west{
+ c_tag = "Detective's Office"
},
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/carpet/green,
-/area/lawoffice)
-"ceY" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+/turf/open/floor/carpet/red,
+/area/security/detectives_office)
+"ceQ" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
-/area/security/courtroom)
-"ceZ" = (
+/area/quartermaster/miningoffice)
+"ceX" = (
/obj/structure/cable/yellow{
- icon_state = "2-8"
+ icon_state = "4-8"
},
-/obj/effect/landmark/start/lawyer,
+/obj/effect/landmark/event_spawn,
/turf/open/floor/carpet/green,
/area/lawoffice)
-"cfa" = (
-/obj/structure/filingcabinet/employment,
-/obj/machinery/airalarm/directional/east{
- pixel_x = 24
- },
-/turf/open/floor/wood,
-/area/lawoffice)
-"cfo" = (
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
"cfp" = (
/obj/structure/table/wood,
/obj/item/soap/nanotrasen,
@@ -17338,22 +16141,6 @@
"cfu" = (
/turf/open/floor/circuit/green,
/area/ai_monitored/turret_protected/ai_upload)
-"cfx" = (
-/obj/structure/table/reinforced,
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = -32
- },
-/obj/item/electropack,
-/obj/item/assembly/signaler,
-/obj/machinery/light{
- dir = 8
- },
-/obj/item/clothing/head/helmet/sec,
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 1
- },
-/turf/open/floor/iron/dark,
-/area/security/execution/transfer)
"cfB" = (
/obj/machinery/camera/emp_proof/directional/east{
c_tag = "Containment - Fore Starboard";
@@ -17437,17 +16224,6 @@
},
/turf/open/floor/iron,
/area/engine/engineering)
-"cfN" = (
-/obj/structure/cable/white,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"cfO" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
@@ -17553,6 +16329,14 @@
},
/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/server)
+"cgq" = (
+/obj/item/kirbyplants{
+ icon_state = "plant-22";
+ name = "legally obbligatory mapper potted plant"
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/hallway/secondary/entry)
"cgr" = (
/obj/structure/table/wood,
/obj/item/radio/intercom{
@@ -17597,16 +16381,6 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/captain/private)
-"cgw" = (
-/obj/structure/table/wood,
-/obj/machinery/recharger,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/cable/white,
-/obj/machinery/power/apc/auto_name/directional/south,
-/turf/open/floor/carpet/royalblue,
-/area/crew_quarters/heads/captain/private)
"cgx" = (
/obj/structure/filingcabinet/security,
/turf/open/floor/carpet/royalblue,
@@ -17620,18 +16394,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/fitness/recreation)
-"cgK" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/newscaster{
- pixel_x = -32
- },
-/turf/open/floor/wood,
-/area/lawoffice)
"cgL" = (
/obj/structure/table/wood,
/obj/item/folder/yellow,
@@ -17651,13 +16413,6 @@
},
/turf/open/floor/carpet/green,
/area/lawoffice)
-"cgO" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/disposal/bin,
-/turf/open/floor/wood,
-/area/lawoffice)
"cgU" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -17754,6 +16509,18 @@
},
/turf/open/floor/circuit/green,
/area/ai_monitored/turret_protected/ai_upload)
+"chq" = (
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/obj/structure/sign/poster/official/do_not_question{
+ pixel_y = -32
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"chr" = (
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -17795,14 +16562,13 @@
},
/turf/open/floor/iron,
/area/engine/engineering)
-"chE" = (
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+"chI" = (
+/obj/machinery/cryopod,
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 6
},
-/turf/open/floor/plating,
-/area/engine/engineering)
+/turf/open/floor/prison/dark,
+/area/security/prison)
"chM" = (
/obj/structure/table/wood,
/obj/item/paper_bin,
@@ -17898,53 +16664,6 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
-"cie" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/table/reinforced,
-/obj/machinery/button/ignition{
- id = "justicespark";
- pixel_x = 7;
- pixel_y = 26;
- req_access_txt = "63"
- },
-/obj/machinery/button/flasher{
- id = "justiceflash";
- pixel_x = 7;
- pixel_y = 38;
- req_access_txt = "63"
- },
-/obj/machinery/button/door{
- id = "justiceblast";
- name = "Justice Shutters Control";
- pixel_x = -7;
- pixel_y = 26;
- req_access_txt = "63"
- },
-/obj/machinery/button/door{
- id = "justicechamber";
- name = "Justice Chamber Control";
- pixel_x = -7;
- pixel_y = 38;
- req_access_txt = "3"
- },
-/obj/item/folder/red{
- pixel_x = 3
- },
-/obj/item/restraints/handcuffs,
-/obj/item/taperecorder,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron/dark,
-/area/security/execution/transfer)
"cij" = (
/obj/machinery/door/airlock/command{
name = "Emergency Escape";
@@ -17973,17 +16692,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/maintenance/port/aft)
-"ciu" = (
-/obj/structure/chair/office{
- dir = 4
- },
-/obj/structure/cable/white,
-/obj/effect/landmark/start/lawyer,
-/obj/machinery/power/apc/auto_name/directional/west{
- pixel_x = -24
- },
-/turf/open/floor/wood,
-/area/lawoffice)
"civ" = (
/obj/structure/table/wood,
/obj/machinery/requests_console{
@@ -18006,26 +16714,15 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/carpet/green,
/area/lawoffice)
-"ciy" = (
-/obj/machinery/photocopier,
-/obj/machinery/status_display/evac{
- pixel_x = 32
- },
-/obj/machinery/camera/directional/east{
- c_tag = "Lawyer's Office"
- },
-/turf/open/floor/wood,
-/area/lawoffice)
-"ciA" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
+"ciH" = (
+/obj/item/paper,
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/food/drinks/britcup{
+ pixel_x = -5;
+ pixel_y = 1
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/execution/transfer)
+/turf/open/floor/prison,
+/area/security/prison)
"ciR" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 9
@@ -18044,19 +16741,6 @@
dir = 1
},
/area/hallway/secondary/entry)
-"ciS" = (
-/obj/structure/table/reinforced,
-/obj/machinery/recharger,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/machinery/light_switch{
- pixel_x = -9;
- pixel_y = -25
- },
-/obj/machinery/camera/directional/south{
- c_tag = "Armory - Interior"
- },
-/turf/open/floor/iron/dark,
-/area/ai_monitored/security/armory)
"ciU" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -18268,60 +16952,30 @@
},
/turf/open/floor/iron,
/area/teleporter)
-"cjX" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Courtroom";
- req_access_txt = "42"
+"cjT" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
},
-/obj/effect/turf_decal/bot,
-/obj/effect/landmark/event_spawn,
-/obj/machinery/door/firedoor,
-/turf/open/floor/iron,
+/turf/open/floor/iron/dark,
/area/security/courtroom)
-"ckg" = (
-/obj/item/kirbyplants/random,
-/obj/structure/sign/poster/official/report_crimes{
- pixel_y = -32
- },
-/turf/open/floor/wood,
-/area/lawoffice)
-"ckh" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/wood,
-/area/lawoffice)
-"cki" = (
-/obj/structure/rack,
-/obj/item/storage/briefcase{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/storage/secure/briefcase,
-/turf/open/floor/wood,
-/area/lawoffice)
-"ckj" = (
-/obj/structure/cable/yellow{
- icon_state = "0-4"
+"ckd" = (
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
},
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/brig)
-"ckk" = (
-/obj/machinery/door/airlock{
- name = "Courtroom"
+/obj/machinery/firealarm{
+ pixel_y = 24
},
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/obj/machinery/camera/autoname{
+ dir = 9;
+ network = list("ss13","prison")
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/courtroom)
+/turf/open/floor/prison/dark,
+/area/security/prison)
"ckq" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -18410,17 +17064,6 @@
},
/turf/open/floor/iron,
/area/engine/engineering)
-"ckH" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/neutral,
-/turf/open/floor/iron,
-/area/hallway/primary/central)
"ckJ" = (
/obj/machinery/shieldgen,
/obj/effect/decal/cleanable/dirt,
@@ -18481,14 +17124,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/carpet/royalblue,
/area/crew_quarters/heads/hop)
-"ckY" = (
-/obj/structure/bed/dogbed/ian,
-/obj/machinery/airalarm/directional/east{
- pixel_x = 24
- },
-/mob/living/simple_animal/pet/dog/corgi/Ian,
-/turf/open/floor/wood,
-/area/crew_quarters/heads/hop)
"cla" = (
/obj/effect/turf_decal/tile/blue,
/obj/structure/cable/yellow{
@@ -18564,6 +17199,25 @@
/obj/machinery/holopad,
/turf/open/floor/carpet/grimy,
/area/hallway/secondary/entry)
+"clI" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/door/airlock/atmos{
+ name = "Atmospherics Access";
+ req_one_access_txt = "24;10"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"clO" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -18746,11 +17400,6 @@
/obj/item/kirbyplants/random,
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
-"cmD" = (
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/tcommsat/server)
"cmE" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/general/hidden{
@@ -18776,52 +17425,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/teleporter)
-"cmJ" = (
-/obj/structure/table,
-/obj/item/hand_tele,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/effect/turf_decal/bot,
-/obj/machinery/power/apc/auto_name/directional/north,
-/turf/open/floor/iron,
-/area/teleporter)
-"cmK" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high,
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron,
-/area/teleporter)
-"cmL" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/iron,
-/area/teleporter)
-"cmM" = (
-/obj/machinery/button/door{
- id = "teleporterhubshutters";
- name = "Teleporter Shutters";
- pixel_y = 26
- },
-/obj/machinery/bluespace_beacon,
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/teleporter)
"cmO" = (
/obj/machinery/door/poddoor/shutters{
id = "teleporterhubshutters";
@@ -18847,25 +17450,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"cmQ" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/security/brig)
"cnb" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -19039,36 +17623,6 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
/turf/open/floor/iron,
/area/medical/break_room)
-"cob" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/door/airlock/command{
- name = "Head of Security's Office";
- req_access_txt = "58"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/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/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/crew_quarters/heads/hos)
"cod" = (
/obj/structure/table/wood,
/obj/item/radio/intercom{
@@ -19120,39 +17674,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/teleporter)
-"con" = (
-/obj/machinery/holopad,
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron,
-/area/teleporter)
-"coq" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/teleporter)
-"cor" = (
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/machinery/light_switch{
- pixel_y = -23
- },
-/turf/open/floor/iron,
-/area/security/main)
"coB" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -19171,6 +17692,13 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
/turf/open/floor/iron,
/area/maintenance/department/science)
+"coW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron/dark,
+/area/crew_quarters/heads/hos)
"coZ" = (
/obj/structure/cable{
icon_state = "2-4"
@@ -19364,20 +17892,6 @@
/obj/item/kirbyplants/random,
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
-"cpI" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/components/unary/portables_connector{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/canister/plasma,
-/obj/effect/mapping_helpers/atmos_auto_connect,
-/obj/machinery/airalarm/server{
- pixel_x = -22;
- dir = 8
- },
-/turf/open/floor/iron,
-/area/tcommsat/server)
"cpL" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -19455,12 +17969,11 @@
},
/turf/open/floor/iron,
/area/teleporter)
-"cpX" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/red,
-/turf/open/floor/iron,
+"cpW" = (
+/obj/structure/closet/l3closet/security,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/smooth,
/area/security/main)
"cqc" = (
/obj/machinery/door/airlock/maintenance_hatch{
@@ -19687,15 +18200,6 @@
/obj/structure/sign/nanotrasen,
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/hop)
-"cqW" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "hopblast";
- name = "HoP Blast door"
- },
-/obj/structure/cable/white,
-/turf/open/floor/plating,
-/area/crew_quarters/heads/hop)
"cqY" = (
/turf/closed/wall/r_wall,
/area/hallway/secondary/command)
@@ -19751,11 +18255,6 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/teleporter)
-"crf" = (
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/teleporter)
"crg" = (
/obj/structure/sign/nanotrasen,
/turf/closed/wall/r_wall,
@@ -19794,6 +18293,14 @@
dir = 1
},
/area/crew_quarters/locker)
+"crx" = (
+/obj/machinery/portable_atmospherics/scrubber/huge,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow,
+/obj/effect/turf_decal/bot,
+/obj/machinery/power/apc/auto_name/directional/east,
+/turf/open/floor/iron,
+/area/science/storage)
"crI" = (
/obj/structure/cable{
icon_state = "0-8"
@@ -20068,6 +18575,27 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/hallway/primary/central)
+"csO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/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/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron{
+ heat_capacity = 1e+006
+ },
+/area/hallway/primary/central)
"csP" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -20115,13 +18643,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/locker)
-"cth" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/security/courtroom)
"ctk" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/segment{
@@ -20261,6 +18782,9 @@
},
/turf/open/floor/wood,
/area/library)
+"ctP" = (
+/turf/open/floor/carpet/red,
+/area/security/detectives_office)
"ctW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 9
@@ -20298,19 +18822,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/aft)
-"cuw" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/light_switch{
- pixel_x = -26
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/crew_quarters/locker)
"cuy" = (
/obj/structure/table/wood,
/obj/machinery/computer/med_data/laptop{
@@ -20322,6 +18833,21 @@
},
/turf/open/floor/wood,
/area/medical/exam_room)
+"cuB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/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-8"
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"cuL" = (
/turf/closed/wall,
/area/crew_quarters/fitness/recreation)
@@ -20516,11 +19042,6 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/ai_monitored/storage/eva)
-"cvr" = (
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/hallway/secondary/command)
"cvs" = (
/obj/machinery/light{
dir = 8
@@ -20602,13 +19123,6 @@
},
/turf/closed/wall/r_wall,
/area/gateway)
-"cvH" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/courtroom)
"cvJ" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -20640,48 +19154,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"cvR" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/crew_quarters/locker)
-"cvS" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/machinery/door/airlock/security/glass{
- name = "Brig";
- req_access_txt = "63"
- },
-/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
- },
-/obj/machinery/door/poddoor/preopen{
- id = "brigfront";
- name = "Brig Blast door"
- },
-/turf/open/floor/iron,
-/area/security/brig)
"cvZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -20751,18 +19223,6 @@
},
/turf/open/floor/iron/dark,
/area/library)
-"cwA" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/airalarm/directional/east{
- pixel_x = 24
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/hallway/primary/central)
"cwC" = (
/obj/machinery/light{
dir = 1
@@ -21007,18 +19467,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/engine/engineering)
-"cxH" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/airalarm/directional/east{
- pixel_x = 24
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/engine/engineering)
"cxI" = (
/obj/item/kirbyplants/random,
/obj/effect/decal/cleanable/dirt,
@@ -21131,18 +19579,6 @@
},
/turf/open/floor/iron,
/area/ai_monitored/storage/eva)
-"cyn" = (
-/obj/structure/table/wood,
-/obj/item/clipboard,
-/obj/item/toy/figure/curator,
-/obj/machinery/airalarm/directional/east{
- pixel_x = 24
- },
-/obj/item/radio/intercom{
- pixel_y = -26
- },
-/turf/open/floor/carpet/grimy,
-/area/library)
"cyo" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -21597,14 +20033,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/gateway)
-"cAh" = (
-/obj/structure/cable/white,
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/gateway)
"cAj" = (
/obj/machinery/gateway/centerstation,
/obj/structure/cable/yellow{
@@ -21647,19 +20075,19 @@
"cAw" = (
/turf/closed/wall,
/area/crew_quarters/dorms)
-"cAx" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Maintenance Hatch";
- req_access_txt = "12"
+"cAA" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
},
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
+/obj/machinery/door/poddoor/preopen{
+ id = "Prisongate"
},
-/turf/open/floor/iron,
-/area/crew_quarters/dorms)
+/obj/effect/spawner/structure/window/reinforced/prison,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/security/prison)
"cAB" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -21734,19 +20162,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/engine/storage)
-"cAU" = (
-/obj/structure/table/reinforced,
-/obj/item/clothing/shoes/magboots{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/clothing/shoes/magboots,
-/obj/machinery/airalarm/directional/east{
- pixel_x = 24
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/iron,
-/area/engine/storage)
"cAV" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -21824,12 +20239,6 @@
},
/turf/open/floor/wood,
/area/bridge/showroom/corporate)
-"cBr" = (
-/obj/structure/bed{
- dir = 4
- },
-/turf/open/floor/iron/dark,
-/area/security/prison)
"cBv" = (
/turf/open/floor/wood,
/area/bridge/showroom/corporate)
@@ -21938,16 +20347,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/crew_quarters/toilet/restrooms)
-"cBR" = (
-/obj/item/kirbyplants/random,
-/obj/machinery/airalarm/directional/east{
- pixel_x = 24
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/crew_quarters/toilet/restrooms)
"cBS" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -21962,30 +20361,6 @@
heat_capacity = 1e+006
},
/area/crew_quarters/locker)
-"cBV" = (
-/obj/machinery/vending/wardrobe/sec_wardrobe,
-/obj/structure/sign/poster/official/do_not_question{
- pixel_y = -32
- },
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/security/main)
-"cCa" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Fore Primary Hallway"
- },
-/obj/structure/disposalpipe/segment,
-/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/iron,
-/area/hallway/primary/fore)
"cCd" = (
/obj/structure/table_frame/wood,
/obj/item/crowbar/red,
@@ -22128,6 +20503,17 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/wood,
/area/quartermaster/exploration_prep)
+"cCt" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/starboard)
"cCB" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/sign/warning/nosmoking{
@@ -22281,18 +20667,6 @@
},
/turf/open/floor/wood,
/area/bridge/showroom/corporate)
-"cDe" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/airalarm/directional/east{
- pixel_x = 24
- },
-/turf/open/floor/wood,
-/area/bridge/showroom/corporate)
"cDh" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/corner{
@@ -22307,17 +20681,6 @@
},
/turf/open/floor/iron,
/area/gateway)
-"cDy" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/iron{
- heat_capacity = 1e+006
- },
-/area/crew_quarters/locker)
"cDE" = (
/obj/structure/table/wood,
/obj/item/folder,
@@ -22418,14 +20781,6 @@
},
/turf/open/floor/iron,
/area/engine/engineering)
-"cEd" = (
-/obj/structure/cable/white,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/engine/storage)
"cEe" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -22704,6 +21059,26 @@
heat_capacity = 1e+006
},
/area/crew_quarters/toilet/restrooms)
+"cFk" = (
+/obj/machinery/photocopier,
+/obj/machinery/button/door{
+ id = "HOSarmory";
+ name = "Armory Shutter";
+ pixel_x = 6;
+ pixel_y = 24;
+ req_access_txt = "3"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/machinery/button/door{
+ id = "hosspace";
+ name = "Privacy Shutters";
+ pixel_x = -6;
+ pixel_y = 24;
+ req_access_txt = "3"
+ },
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/iron/dark,
+/area/crew_quarters/heads/hos)
"cFl" = (
/obj/machinery/light,
/obj/machinery/status_display/evac{
@@ -22738,6 +21113,17 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/crew_quarters/toilet/restrooms)
+"cFo" = (
+/obj/structure/table/reinforced,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/lightreplacer,
+/obj/machinery/camera/autoname{
+ dir = 10;
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/plating,
+/area/janitor/custodian)
"cFp" = (
/obj/effect/turf_decal/tile/neutral{
dir = 8
@@ -22746,16 +21132,6 @@
heat_capacity = 1e+006
},
/area/crew_quarters/locker)
-"cFq" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron,
-/area/ai_monitored/security/armory)
"cFr" = (
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
@@ -22897,23 +21273,6 @@
},
/turf/open/floor/iron,
/area/engine/engineering)
-"cFP" = (
-/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/red,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -32;
- pixel_y = -64
- },
-/turf/open/floor/iron,
-/area/security/brig)
"cFT" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/kirbyplants/random,
@@ -22925,11 +21284,6 @@
},
/turf/open/floor/iron,
/area/engine/engineering)
-"cFU" = (
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/engine/storage)
"cFY" = (
/obj/structure/table/reinforced,
/obj/item/stack/sheet/plasteel/fifty,
@@ -22961,6 +21315,15 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/library)
+"cGe" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"cGf" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/obj/effect/turf_decal/stripes/line{
@@ -23070,11 +21433,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/gateway)
-"cGC" = (
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/gateway)
"cGD" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
@@ -23253,6 +21611,21 @@
},
/turf/open/floor/iron,
/area/engine/engineering)
+"cHn" = (
+/obj/machinery/door/airlock/mining/glass{
+ name = "Cargo Office";
+ req_one_access_txt = "31;48"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/quartermaster/office)
"cHo" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -23356,15 +21729,6 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/ai_monitored/storage/eva)
-"cHM" = (
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "corporatelounge";
- name = "Corporate Lounge Shutters"
- },
-/turf/open/floor/plating,
-/area/bridge/showroom/corporate)
"cHN" = (
/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
@@ -23647,6 +22011,47 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"cIU" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/armor/vest{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/clothing/suit/armor/vest,
+/obj/item/clothing/suit/armor/vest{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/clothing/head/helmet{
+ layer = 3.00001;
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/clothing/head/helmet{
+ layer = 3.00001
+ },
+/obj/item/clothing/head/helmet{
+ layer = 3.00001;
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/door/window/southright{
+ dir = 1;
+ name = "Armour storage";
+ req_one_access_txt = "1;4"
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/ai_monitored/security/armory)
"cIW" = (
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
@@ -23686,15 +22091,6 @@
dir = 1
},
/area/crew_quarters/dorms)
-"cJm" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/security/courtroom)
"cJo" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -23715,6 +22111,14 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/central)
+"cJs" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"cJC" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
@@ -23732,43 +22136,6 @@
/obj/machinery/status_display/evac,
/turf/closed/wall,
/area/crew_quarters/fitness/recreation)
-"cJF" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
-"cJQ" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/turf/open/floor/prison,
-/area/security/prison)
-"cJV" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/iron,
-/area/security/brig)
"cJX" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/machinery/light{
@@ -23782,17 +22149,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/heads/chief)
-"cKf" = (
-/obj/structure/disposalpipe/segment,
-/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/neutral,
-/turf/open/floor/iron,
-/area/hallway/primary/central)
"cKi" = (
/obj/structure/table/reinforced,
/obj/effect/spawner/lootdrop/aimodule_neutral{
@@ -23803,6 +22159,11 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai_upload)
+"cKq" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/security/checkpoint)
"cKx" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -23915,6 +22276,22 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"cLk" = (
+/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 = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/turf/open/floor/iron,
+/area/security/brig)
"cLl" = (
/obj/structure/sign/poster/official/cleanliness{
pixel_x = 32
@@ -23951,6 +22328,21 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/atmos)
+"cMb" = (
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "councilblast";
+ name = "Council Chambers Blast door"
+ },
+/turf/open/floor/plating,
+/area/bridge/meeting_room/council)
"cMk" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -24108,6 +22500,16 @@
},
/turf/open/floor/iron,
/area/crew_quarters/fitness/recreation)
+"cMG" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/effect/spawner/structure/window/reinforced/prison,
+/obj/machinery/door/poddoor/preopen{
+ id = "Prisongate"
+ },
+/turf/open/floor/plating,
+/area/security/prison)
"cMM" = (
/obj/effect/landmark/event_spawn,
/obj/effect/decal/cleanable/dirt,
@@ -24124,13 +22526,6 @@
/obj/structure/barricade/wooden,
/turf/open/floor/plating,
/area/maintenance/port)
-"cMR" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/science/lab)
"cMW" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/event_spawn,
@@ -24341,6 +22736,34 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/maintenance/port)
+"cOp" = (
+/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 = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/crew_quarters/heads/hor)
+"cOy" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/iron,
+/area/security/brig)
"cOB" = (
/obj/machinery/light{
dir = 4
@@ -24437,6 +22860,19 @@
"cOR" = (
/turf/closed/wall/r_wall,
/area/science/research)
+"cOS" = (
+/obj/machinery/gulag_item_reclaimer{
+ pixel_y = 24
+ },
+/obj/machinery/camera/autoname{
+ dir = 9;
+ network = list("ss13","security")
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"cOT" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -24467,14 +22903,6 @@
},
/turf/open/floor/iron/white,
/area/science/research)
-"cOX" = (
-/obj/structure/chair,
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"cOY" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/tile/purple{
@@ -24559,13 +22987,6 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/central)
-"cPv" = (
-/obj/item/kirbyplants/random,
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/courtroom)
"cPy" = (
/turf/closed/wall,
/area/medical/medbay/central)
@@ -24607,13 +23028,6 @@
},
/turf/open/floor/carpet/blue,
/area/crew_quarters/dorms)
-"cPU" = (
-/obj/structure/table,
-/obj/item/stack/package_wrap,
-/obj/item/hand_labeler,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/brig)
"cPX" = (
/obj/effect/spawner/randomvend/cola,
/obj/effect/turf_decal/delivery,
@@ -24905,26 +23319,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/security/checkpoint/science/research)
-"cSp" = (
-/obj/item/kirbyplants{
- icon_state = "plant-22"
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/science/research)
-"cSs" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "brigfront";
- name = "Brig Blast door"
- },
-/turf/open/floor/plating,
-/area/security/prison)
"cSv" = (
/obj/machinery/light/small{
dir = 8
@@ -24964,10 +23358,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/library)
-"cSH" = (
-/obj/effect/turf_decal/tile/red,
-/turf/open/floor/iron,
-/area/security/brig)
"cSI" = (
/turf/open/floor/iron/smooth,
/area/tcommsat/server)
@@ -25267,31 +23657,30 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/security/checkpoint/science/research)
-"cUd" = (
-/obj/structure/cable/white,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
+"cUb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
},
-/obj/structure/cable/yellow{
- icon_state = "0-8"
+/obj/structure/disposalpipe/junction{
+ dir = 1
},
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/checkpoint/science/research)
+/turf/open/floor/iron/white/corner,
+/area/hallway/primary/aft)
"cUe" = (
/obj/effect/turf_decal/tile/purple{
dir = 8
},
/turf/open/floor/iron/white,
/area/science/research)
-"cUj" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/landmark/event_spawn,
-/obj/effect/turf_decal/tile/purple{
- dir = 1
+"cUm" = (
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/turf/open/floor/iron/white,
-/area/science/research)
+/turf/open/floor/iron,
+/area/security/warden)
"cUn" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -25383,18 +23772,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/command)
-"cVC" = (
-/obj/structure/cable/white,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "xenosecure";
- name = "Secure Pen Shutters"
- },
-/turf/open/floor/plating,
-/area/science/xenobiology)
"cVD" = (
/obj/structure/table/reinforced,
/obj/structure/window/reinforced,
@@ -25470,11 +23847,6 @@
},
/turf/open/floor/catwalk_floor/iron,
/area/engine/atmospherics_engine)
-"cWa" = (
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/checkpoint/science/research)
"cWb" = (
/obj/item/kirbyplants{
icon_state = "plant-21"
@@ -25484,13 +23856,6 @@
},
/turf/open/floor/iron/white,
/area/science/research)
-"cWf" = (
-/obj/item/kirbyplants{
- icon_state = "plant-22"
- },
-/obj/effect/turf_decal/tile/purple,
-/turf/open/floor/iron/white,
-/area/science/research)
"cWm" = (
/obj/structure/bodycontainer/morgue,
/obj/machinery/firealarm{
@@ -25603,6 +23968,22 @@
},
/turf/open/floor/iron,
/area/science/xenobiology)
+"cXb" = (
+/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/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/quartermaster/storage)
"cXc" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -25687,22 +24068,6 @@
},
/turf/open/floor/iron/white,
/area/science/research)
-"cXt" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/turf/open/floor/iron/white,
-/area/science/research)
-"cXu" = (
-/obj/item/kirbyplants{
- icon_state = "plant-22"
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"cXv" = (
/obj/structure/table,
/obj/machinery/cell_charger,
@@ -25718,14 +24083,6 @@
},
/turf/open/floor/iron/white,
/area/science/research)
-"cXx" = (
-/obj/structure/table,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/tile/purple,
-/turf/open/floor/iron/white,
-/area/science/research)
"cXy" = (
/obj/item/kirbyplants{
icon_state = "plant-21"
@@ -25754,17 +24111,19 @@
/obj/effect/turf_decal/tile/purple,
/turf/open/floor/iron/white,
/area/science/research)
-"cYb" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 24
+"cYg" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27
},
-/obj/machinery/camera/directional/east{
- c_tag = "Security - Brig Center"
+/obj/machinery/camera/autoname{
+ dir = 5;
+ network = list("ss13","medbay")
},
-/obj/effect/turf_decal/tile/red/half/contrasted,
-/turf/open/floor/iron,
-/area/security/brig)
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/medical/surgery)
"cYk" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/blobstart,
@@ -25781,18 +24140,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/fitness/recreation)
-"cYv" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
"cYB" = (
/obj/effect/spawner/room/fivexthree,
/turf/open/floor/plating,
@@ -25843,24 +24190,6 @@
/obj/structure/girder,
/turf/open/floor/iron,
/area/maintenance/port)
-"cYL" = (
-/obj/structure/cable/white,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "xenosecure";
- name = "Secure Pen Shutters"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/science/xenobiology)
"cYP" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -25871,17 +24200,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/engineering)
-"cYT" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/effect/turf_decal/tile/neutral/opposingcorners,
-/turf/open/floor/iron,
-/area/crew_quarters/cryopods)
"cYU" = (
/obj/structure/chair,
/obj/effect/turf_decal/tile/blue{
@@ -25892,15 +24210,6 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/lobby)
-"cYW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 4
- },
-/turf/open/floor/carpet/grimy,
-/area/security/detectives_office)
"cYZ" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/bot,
@@ -25983,15 +24292,6 @@
"cZm" = (
/turf/closed/wall/r_wall,
/area/science/lab)
-"cZn" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "rndlab1";
- name = "Research and Development Shutter"
- },
-/turf/open/floor/plating,
-/area/science/lab)
"cZo" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -26014,16 +24314,11 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
-"cZN" = (
-/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/structure/cable/yellow{
- icon_state = "1-4"
+"cZJ" = (
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 1
},
+/obj/item/kirbyplants/random,
/turf/open/floor/iron,
/area/security/brig)
"cZX" = (
@@ -26058,16 +24353,6 @@
/obj/effect/mapping_helpers/airlock/abandoned,
/turf/open/floor/plating,
/area/maintenance/aft)
-"dah" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/chair/stool/directional/west,
-/turf/open/floor/prison,
-/area/security/prison)
"daj" = (
/obj/effect/turf_decal/tile/red{
dir = 8
@@ -26085,15 +24370,6 @@
},
/turf/open/floor/iron/white/corner,
/area/crew_quarters/fitness/recreation)
-"daq" = (
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "xenosecure";
- name = "Secure Pen Shutters"
- },
-/turf/open/floor/plating,
-/area/science/xenobiology)
"dar" = (
/obj/structure/table/reinforced,
/obj/machinery/cell_charger,
@@ -26236,6 +24512,17 @@
},
/turf/open/floor/iron,
/area/medical/morgue)
+"daI" = (
+/obj/structure/chair/fancy/bench,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/effect/landmark/prisonspawn,
+/turf/open/floor/prison/dark,
+/area/security/prison)
"daJ" = (
/obj/structure/cable/yellow{
icon_state = "0-8"
@@ -26279,15 +24566,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/science/lab)
-"daR" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/science/lab)
"daU" = (
/obj/structure/chair/office/light{
dir = 1
@@ -26310,39 +24588,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
-"daZ" = (
-/obj/machinery/door/airlock/security{
- name = "Evidence Storage";
- req_one_access_txt = "1;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/machinery/door/firedoor,
-/turf/open/floor/iron,
-/area/security/brig)
-"dbq" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Maintenance Hatch";
- req_one_access_txt = "12;5;6"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron,
-/area/maintenance/aft)
"dbu" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance/two,
@@ -26397,18 +24642,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/maintenance/port)
-"dbQ" = (
-/obj/effect/turf_decal/tile/red/half/contrasted,
-/obj/machinery/light_switch{
- pixel_x = 21
- },
-/obj/item/kirbyplants/random,
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/turf/open/floor/iron,
-/area/security/brig)
"dbV" = (
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -26817,17 +25050,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/science/xenobiology)
-"ddX" = (
-/obj/structure/cable/white,
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/checkpoint/science/research)
"ddY" = (
/obj/item/radio/intercom{
pixel_y = -32
@@ -26878,16 +25100,6 @@
/obj/item/book/manual/wiki/sopscience,
/turf/open/floor/iron,
/area/science/lab)
-"deg" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/effect/turf_decal/tile/red/anticorner/contrasted,
-/turf/open/floor/prison,
-/area/security/prison)
"deh" = (
/obj/machinery/computer/rdconsole/core{
dir = 4
@@ -26917,6 +25129,24 @@
/obj/item/toy/figure/dsquad,
/turf/open/floor/carpet/grimy,
/area/bridge/showroom/corporate)
+"deM" = (
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenosecure";
+ name = "Secure Pen Shutters"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/science/xenobiology)
"deS" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
@@ -26927,24 +25157,6 @@
/obj/effect/spawner/lootdrop/maintenance/two,
/turf/open/floor/plating,
/area/maintenance/port)
-"dfa" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/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/security/prison)
"dfc" = (
/obj/structure/sign/departments/minsky/research/xenobiology,
/turf/closed/wall/r_wall,
@@ -27056,19 +25268,6 @@
/obj/effect/turf_decal/tile/purple,
/turf/open/floor/iron/white,
/area/science/lab)
-"dfL" = (
-/obj/machinery/door/poddoor/preopen{
- id = "Prisongate"
- },
-/obj/effect/spawner/structure/window/reinforced/prison,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/security/prison)
"dfT" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/spawner/lootdrop/maintenance/two,
@@ -27159,15 +25358,18 @@
},
/turf/open/floor/plating,
/area/science/lab)
-"dhi" = (
-/obj/machinery/light/small,
-/obj/machinery/holopad,
-/obj/effect/turf_decal/tile/red/half/contrasted{
+"dhn" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 8
},
-/obj/machinery/iv_drip,
-/turf/open/floor/iron/white,
-/area/security/brig)
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/fore)
"dho" = (
/obj/effect/turf_decal/tile/yellow{
dir = 1
@@ -27181,19 +25383,6 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/central)
-"dht" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -27
- },
-/obj/machinery/camera/autoname{
- dir = 10;
- network = list("ss13","medbay")
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/turf/open/floor/iron/dark,
-/area/medical/surgery)
"dhw" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/atmospherics/components/binary/pump{
@@ -27212,6 +25401,17 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/maintenance/port)
+"dhR" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = -32
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/crew_quarters/heads/hos)
"dhU" = (
/obj/structure/sign/nanotrasen,
/turf/closed/wall/r_wall,
@@ -27229,6 +25429,16 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/science/research)
+"did" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/camera/autoname{
+ dir = 5;
+ network = list("ss13","prison")
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"die" = (
/obj/structure/table/reinforced,
/obj/item/clipboard,
@@ -27283,15 +25493,32 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/science/lab)
+"dio" = (
+/obj/structure/sign/nanotrasen{
+ pixel_x = -32;
+ pixel_y = -32
+ },
+/obj/machinery/light/small,
+/obj/item/kirbyplants{
+ icon_state = "plant-22";
+ name = "legally obbligatory mapper potted plant"
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/bridge)
"diu" = (
/obj/machinery/smartfridge/chemistry/preloaded,
/turf/closed/wall,
/area/medical/chemistry)
-"diK" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/structure/table/reinforced,
-/turf/open/floor/prison,
-/area/security/prison)
+"diL" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/maintenance/starboard)
"diR" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/spawner/lootdrop/maintenance/two,
@@ -27310,6 +25537,14 @@
heat_capacity = 1e+006
},
/area/maintenance/starboard/aft)
+"diX" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance/two,
+/turf/open/floor/iron{
+ heat_capacity = 1e+006
+ },
+/area/maintenance/starboard)
"dja" = (
/obj/machinery/vending/assist,
/obj/machinery/newscaster{
@@ -27510,19 +25745,6 @@
},
/turf/open/floor/iron,
/area/science/lab)
-"dkk" = (
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/departments/medbay/alt,
-/turf/open/floor/plating,
-/area/security/brig)
-"dkp" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/security/courtroom)
"dkO" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/space_heater,
@@ -27557,6 +25779,13 @@
/obj/structure/sign/warning/nosmoking,
/turf/closed/wall,
/area/science/research)
+"dlC" = (
+/obj/structure/chair/office{
+ dir = 1
+ },
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/carpet/grimy,
+/area/security/main)
"dlD" = (
/obj/structure/sign/nanotrasen,
/turf/closed/wall/r_wall,
@@ -27564,18 +25793,6 @@
"dlE" = (
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/hor)
-"dlF" = (
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "rdoffice";
- name = "Research Director's Shutters"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/crew_quarters/heads/hor)
"dlG" = (
/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
@@ -27658,16 +25875,25 @@
"dma" = (
/turf/closed/wall,
/area/medical/surgery)
-"dme" = (
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/security/warden)
"dmf" = (
/obj/structure/girder,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"dmg" = (
+/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/tile/red/opposingcorners,
+/turf/open/floor/iron/dark/textured,
+/area/security/prison)
"dmh" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -27675,13 +25901,6 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"dmj" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/crew_quarters/cryopods)
"dmm" = (
/obj/structure/chair/office,
/obj/structure/cable/yellow{
@@ -27704,19 +25923,16 @@
/obj/effect/turf_decal/tile/blue/anticorner/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint/customs)
+"dmD" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"dmF" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/science/nanite)
-"dmK" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/execution/transfer)
"dmL" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
@@ -27757,16 +25973,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/crew_quarters/heads/hor)
-"dmT" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/iron,
-/area/crew_quarters/heads/hor)
"dmU" = (
/obj/structure/displaycase/labcage,
/obj/machinery/light{
@@ -27788,18 +25994,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/crew_quarters/heads/hor)
-"dmX" = (
-/obj/structure/cable/white,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "rdoffice";
- name = "Research Director's Shutters"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/heads/hor)
"dmZ" = (
/obj/structure/table,
/obj/item/stock_parts/cell/high,
@@ -27892,6 +26086,19 @@
},
/turf/open/floor/carpet/grimy,
/area/library)
+"dnN" = (
+/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"
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"dnR" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -27965,36 +26172,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/crew_quarters/heads/hor)
-"doN" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/turf/open/floor/iron,
-/area/crew_quarters/heads/hor)
-"doO" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/disposalpipe/sorting/mail{
- dir = 4;
- name = "RD's Junction";
- sortType = 13
- },
-/turf/open/floor/iron,
-/area/crew_quarters/heads/hor)
-"doP" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/iron,
-/area/crew_quarters/heads/hor)
"doQ" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/effect/decal/cleanable/dirt,
@@ -28269,6 +26446,18 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/medical/storage)
+"drx" = (
+/obj/machinery/door/window/southleft{
+ name = "Court Cell";
+ req_access_txt = "2"
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ layer = 3
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark/textured_large,
+/area/security/courtroom)
"drz" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -28278,10 +26467,18 @@
"drA" = (
/turf/open/floor/iron,
/area/science/misc_lab/range)
-"drC" = (
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/iron/white,
-/area/science/misc_lab/range)
+"drF" = (
+/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/dark,
+/area/security/courtroom)
"drP" = (
/turf/closed/wall/r_wall,
/area/science/mixing)
@@ -28289,16 +26486,6 @@
/obj/structure/sign/warning/fire,
/turf/closed/wall/r_wall,
/area/science/mixing)
-"drR" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "rdtoxins";
- name = "Toxins Lab Shutters"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/science/mixing)
"drT" = (
/obj/structure/sign/warning/biohazard,
/turf/closed/wall/r_wall,
@@ -28312,16 +26499,6 @@
/obj/effect/turf_decal/tile/brown/half/contrasted,
/turf/open/floor/iron,
/area/quartermaster/storage)
-"drX" = (
-/obj/structure/cable/white,
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/bot,
-/obj/item/kirbyplants/dead,
-/obj/machinery/power/apc/auto_name/directional/west{
- pixel_x = -24
- },
-/turf/open/floor/iron,
-/area/crew_quarters/heads/hor)
"drY" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/tile/purple{
@@ -28366,15 +26543,6 @@
/obj/item/book/manual/wiki/sopscience,
/turf/open/floor/iron,
/area/crew_quarters/heads/hor)
-"dsc" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 8
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"dsf" = (
/obj/machinery/door/airlock/research{
name = "Mech Bay";
@@ -28480,24 +26648,6 @@
},
/turf/open/floor/iron/white,
/area/medical/surgery)
-"dsS" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/bot,
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/light_switch{
- pixel_x = -22;
- pixel_y = 26
- },
-/turf/open/floor/iron,
-/area/security/warden)
"dsZ" = (
/obj/item/kirbyplants/random,
/obj/machinery/status_display/ai{
@@ -28605,6 +26755,19 @@
/obj/item/flashlight/pen,
/turf/open/floor/plating,
/area/maintenance/department/medical/morgue)
+"dub" = (
+/obj/structure/chair/fancy/sofa/old/left{
+ color = "#742925"
+ },
+/obj/structure/noticeboard{
+ dir = 8;
+ pixel_x = 32
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/security/detectives_office)
"duc" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 8
@@ -28764,6 +26927,28 @@
"dvc" = (
/turf/closed/wall,
/area/medical/genetics)
+"dvy" = (
+/obj/machinery/door/airlock/research{
+ name = "Toxins Mixing Lab";
+ req_access_txt = "8"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "rdtoxins";
+ name = "Toxins Lab Shutters"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/science/mixing)
"dvz" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
@@ -28772,6 +26957,15 @@
heat_capacity = 1e+006
},
/area/maintenance/port/aft)
+"dvC" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"dvD" = (
/obj/structure/table/wood,
/obj/structure/cable/yellow{
@@ -28813,6 +27007,12 @@
},
/turf/open/floor/iron/dark/corner,
/area/engine/atmos)
+"dvZ" = (
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/obj/structure/table,
+/obj/item/toy/plush/carpplushie,
+/turf/open/floor/iron/dark,
+/area/security/prison)
"dwg" = (
/obj/machinery/camera/directional/west{
c_tag = "Science - Toxins Mixing Lab Fore";
@@ -28838,11 +27038,6 @@
},
/turf/open/floor/catwalk_floor/iron,
/area/engine/atmospherics_engine)
-"dwk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/courtroom)
"dwo" = (
/obj/structure/table/reinforced,
/obj/machinery/light,
@@ -28951,22 +27146,19 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/bridge)
-"dwP" = (
-/obj/machinery/computer/prisoner/gulag_teleporter_computer{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/brig)
"dxa" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/glass/reinforced,
/area/ai_monitored/storage/eva)
+"dxe" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white/corner,
+/area/hallway/primary/aft)
"dxf" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -29057,13 +27249,6 @@
"dxW" = (
/turf/closed/wall,
/area/crew_quarters/heads/hor)
-"dxX" = (
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/effect/spawner/structure/window/reinforced/tinted,
-/turf/open/floor/plating,
-/area/crew_quarters/heads/hor)
"dxZ" = (
/obj/structure/cable/yellow{
icon_state = "0-8"
@@ -29125,12 +27310,46 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/hallway/primary/aft)
+"dyi" = (
+/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"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/prison/dark,
+/area/security/prison)
"dyp" = (
/obj/structure/disposalpipe/segment,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/brown/half/contrasted,
/turf/open/floor/iron,
/area/maintenance/disposal)
+"dyB" = (
+/obj/machinery/holopad,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/teleporter)
+"dyP" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "hosspace";
+ name = "space shutters"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/crew_quarters/heads/hos)
"dyQ" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
@@ -29188,6 +27407,14 @@
/obj/machinery/atmospherics/components/trinary/filter,
/turf/open/floor/iron,
/area/science/mixing)
+"dzx" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 4
+ },
+/area/security/main)
"dzy" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -29334,6 +27561,18 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/engineering)
+"dzU" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/airalarm/directional/east,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/iron,
+/area/science/research)
"dAk" = (
/obj/structure/sign/departments/minsky/engineering/engineering,
/turf/closed/wall/r_wall,
@@ -29387,6 +27626,17 @@
},
/turf/open/space,
/area/space/nearstation)
+"dAu" = (
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/checkpoint/science/research)
"dAw" = (
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -29692,6 +27942,19 @@
},
/turf/open/floor/iron/telecomms,
/area/tcommsat/server)
+"dCR" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/box,
+/obj/machinery/rnd/production/techfab/department/security,
+/obj/item/radio/intercom{
+ freerange = 1;
+ name = "Common Channel";
+ pixel_x = -28
+ },
+/turf/open/floor/iron/dark,
+/area/security/warden)
"dDb" = (
/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
@@ -29709,6 +27972,29 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/heads/chief)
+"dDj" = (
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ freerange = 1;
+ name = "Common Channel";
+ pixel_x = 28
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/security/brig)
+"dDk" = (
+/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/smooth_large,
+/area/security/main)
"dDn" = (
/obj/item/assembly/prox_sensor{
pixel_x = -4;
@@ -29783,16 +28069,6 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/science/mixing)
-"dDv" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "idquarters";
- name = "Director's Quarters Shutters"
- },
-/obj/structure/cable/white,
-/turf/open/floor/plating,
-/area/crew_quarters/heads/hor)
"dDw" = (
/obj/machinery/light{
dir = 8
@@ -29805,13 +28081,6 @@
},
/turf/open/floor/iron/white,
/area/science/research)
-"dDx" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/effect/turf_decal/tile/purple,
-/turf/open/floor/iron/white,
-/area/science/research)
"dDB" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/rack,
@@ -29822,15 +28091,6 @@
},
/turf/open/floor/iron,
/area/maintenance/starboard/aft)
-"dDH" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/security/courtroom)
"dDM" = (
/obj/structure/bodycontainer/morgue{
dir = 2
@@ -29943,17 +28203,6 @@
/obj/structure/sign/warning/securearea,
/turf/closed/wall/r_wall,
/area/science/server)
-"dEF" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/junction/flip{
- dir = 4;
- pixel_x = -1
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/hallway/primary/central)
"dEG" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -29978,6 +28227,12 @@
},
/turf/open/floor/iron,
/area/science/robotics/lab)
+"dEU" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/security/detectives_office)
"dFe" = (
/turf/closed/wall,
/area/crew_quarters/heads/cmo)
@@ -30028,19 +28283,6 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron,
/area/science/misc_lab)
-"dFE" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/obj/machinery/airalarm/directional/east{
- pixel_x = 24
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/iron,
-/area/science/misc_lab)
"dFI" = (
/obj/item/assembly/signaler{
pixel_y = 8
@@ -30261,6 +28503,18 @@
},
/turf/open/floor/iron,
/area/science/misc_lab)
+"dHb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/machinery/airalarm/directional/north{
+ pixel_y = 23
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/central)
"dHc" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -30280,21 +28534,6 @@
heat_capacity = 1e+006
},
/area/maintenance/starboard/aft)
-"dHd" = (
-/obj/effect/turf_decal/stripes/line{
- 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,
-/area/security/brig)
"dHe" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
@@ -30446,6 +28685,18 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/medical/medbay/central)
+"dHX" = (
+/obj/structure/cable/yellow,
+/obj/machinery/power/smes{
+ charge = 5e+006
+ },
+/turf/open/floor/iron/smooth,
+/area/tcommsat/server)
+"dHZ" = (
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/checkpoint/supply)
"dIc" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -30545,20 +28796,6 @@
},
/turf/open/floor/iron/white,
/area/science/research)
-"dIJ" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/bot,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/effect/loot_jobscale/armoury/riot_shotgun,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/ai_monitored/security/armory)
"dIL" = (
/obj/structure/table,
/obj/item/stock_parts/cell/high,
@@ -30622,13 +28859,6 @@
},
/turf/open/floor/plating,
/area/medical/morgue)
-"dJn" = (
-/obj/structure/table,
-/obj/item/storage/box/bodybags,
-/obj/item/clothing/gloves/color/latex,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/detectives_office)
"dJr" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -30956,19 +29186,19 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
-"dKY" = (
-/obj/effect/spawner/structure/window/reinforced/prison,
-/obj/machinery/door/poddoor/preopen{
- id = "Prisongate"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
+"dLe" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/plasticflaps,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "cargodisposals"
},
-/obj/structure/cable/yellow{
- icon_state = "0-8"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/plating,
-/area/security/prison)
+/turf/open/floor/iron,
+/area/quartermaster/sorting)
"dLg" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -30984,21 +29214,6 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/customs/auxiliary)
-"dLm" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron,
-/area/security/main)
-"dLy" = (
-/turf/open/floor/iron,
-/area/security/prison)
"dLB" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable,
@@ -31088,6 +29303,21 @@
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating,
/area/maintenance/port/aft)
+"dLS" = (
+/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
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/security/main)
"dLT" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/crate{
@@ -31121,10 +29351,17 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/science/storage)
-"dMr" = (
-/obj/structure/chair/stool,
-/turf/open/floor/prison,
-/area/security/prison)
+"dMl" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger{
+ pixel_x = -7
+ },
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/obj/machinery/recharger{
+ pixel_x = 7
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"dMt" = (
/obj/structure/closet/firecloset,
/obj/machinery/light/small,
@@ -31150,6 +29387,26 @@
/obj/effect/spawner/lootdrop/maintenance/two,
/turf/open/floor/plating,
/area/maintenance/aft)
+"dMS" = (
+/obj/effect/decal/cleanable/oil,
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/quartermaster/warehouse)
"dMV" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -31175,17 +29432,16 @@
},
/turf/open/floor/catwalk_floor,
/area/maintenance/solars/port/fore)
-"dNd" = (
-/obj/structure/closet/secure_closet/courtroom,
-/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/courtroom)
"dNf" = (
/obj/effect/spawner/room/fivexfour,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"dNg" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"dNk" = (
/obj/effect/spawner/room/threexfive,
/turf/open/floor/plating,
@@ -31236,6 +29492,15 @@
/obj/effect/spawner/lootdrop/maintenance/two,
/turf/open/floor/plating,
/area/maintenance/port/aft)
+"dNB" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/security/execution/transfer)
"dNC" = (
/obj/machinery/portable_atmospherics/canister/plasma,
/obj/effect/decal/cleanable/dirt,
@@ -31404,6 +29669,30 @@
/obj/structure/table,
/turf/open/floor/iron/grid/steel,
/area/medical/patients_rooms)
+"dOC" = (
+/obj/machinery/door/window/brigdoor{
+ name = "Justice Chamber";
+ req_access_txt = "3"
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/window/brigdoor{
+ dir = 1;
+ name = "Justice Chamber";
+ req_access_txt = "3"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "executionfireblast"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/general/hidden,
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/turf/open/floor/iron/dark,
+/area/security/execution/transfer)
"dOD" = (
/obj/machinery/computer/security/telescreen/entertainment{
pixel_y = 32
@@ -31452,6 +29741,18 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/hallway/primary/aft)
+"dOJ" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/obj/structure/rack,
+/obj/item/storage/fancy/donut_box,
+/obj/effect/loot_jobscale/armoury/dragnet,
+/obj/item/beacon/nettingportal,
+/turf/open/floor/iron/dark,
+/area/ai_monitored/security/armory)
"dOK" = (
/obj/item/stack/cable_coil,
/obj/structure/lattice/catwalk,
@@ -31484,17 +29785,6 @@
},
/turf/open/floor/iron,
/area/science/research)
-"dPa" = (
-/obj/structure/cable/white,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/power/apc/auto_name/directional/south,
-/turf/open/floor/plating,
-/area/maintenance/solars/port/aft)
"dPe" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/bot,
@@ -31525,6 +29815,17 @@
"dPq" = (
/turf/closed/wall/r_wall,
/area/medical/virology)
+"dPu" = (
+/obj/machinery/flasher/portable,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/ai_monitored/security/armory)
"dPz" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -31633,11 +29934,6 @@
},
/turf/open/floor/plating,
/area/maintenance/port/aft)
-"dQO" = (
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/checkpoint/customs/auxiliary)
"dQP" = (
/obj/structure/closet/emcloset,
/obj/effect/turf_decal/bot,
@@ -31655,6 +29951,14 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/science/research)
+"dQV" = (
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/quartermaster/miningoffice)
"dRg" = (
/obj/machinery/door/airlock/grunge{
name = "Chapel Quarters";
@@ -31680,12 +29984,6 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/central)
-"dRp" = (
-/obj/structure/table/wood,
-/obj/item/folder/red,
-/obj/item/hand_labeler,
-/turf/open/floor/carpet/red,
-/area/security/detectives_office)
"dRr" = (
/obj/machinery/dna_scannernew,
/obj/effect/turf_decal/stripes/end{
@@ -31694,6 +29992,18 @@
/obj/machinery/airalarm/directional/south,
/turf/open/floor/iron/white,
/area/medical/genetics/cloning)
+"dRt" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/crew_quarters/locker)
"dRy" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral{
@@ -31728,24 +30038,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/hallway/primary/aft)
-"dRU" = (
-/obj/structure/disposalpipe/junction/flip{
- dir = 2
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/iron/white/corner,
-/area/hallway/primary/aft)
-"dRV" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/iron/white/corner,
-/area/hallway/primary/aft)
"dRX" = (
/obj/machinery/disposal/bin,
/obj/machinery/light{
@@ -31830,14 +30122,6 @@
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
/area/maintenance/port/aft)
-"dSM" = (
-/obj/structure/cable/white,
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/checkpoint/customs/auxiliary)
"dSN" = (
/obj/structure/cable/yellow{
icon_state = "0-8"
@@ -31905,6 +30189,23 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/hallway/secondary/exit/departure_lounge)
+"dSV" = (
+/obj/machinery/computer/holodeck/prison,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/iron/dark,
+/area/security/warden)
+"dSZ" = (
+/obj/structure/chair/fancy/bench{
+ dir = 8
+ },
+/turf/open/floor/iron/techmaint,
+/area/security/prison/shielded)
"dTm" = (
/obj/structure/table/reinforced,
/obj/effect/turf_decal/delivery,
@@ -31980,26 +30281,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/exit/departure_lounge)
-"dTT" = (
-/obj/effect/turf_decal/tile/neutral/half/contrasted,
-/obj/machinery/door/airlock/maintenance{
- name = "Medbay Maintenance";
- req_access_txt = "5";
- req_one_access_txt = null
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "quarantineshutters";
- name = "isolation shutters"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
"dTY" = (
/obj/structure/sign/warning/nosmoking,
/turf/closed/wall,
@@ -32009,6 +30290,12 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/maintenance/port/aft)
+"dUh" = (
+/obj/structure/table/wood,
+/obj/item/folder/red,
+/obj/item/pen,
+/turf/open/floor/iron,
+/area/security/courtroom)
"dUl" = (
/obj/structure/table/wood,
/obj/item/storage/fancy/candle_box{
@@ -32045,13 +30332,14 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/exit/departure_lounge)
-"dUB" = (
-/obj/effect/turf_decal/delivery,
-/obj/item/kirbyplants{
- icon_state = "plant-22"
+"dUH" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
+/turf/open/floor/iron/dark,
+/area/security/main)
"dUM" = (
/obj/effect/decal/cleanable/blood/old,
/obj/effect/spawner/lootdrop/trap/reusable,
@@ -32118,6 +30406,14 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/gateway)
+"dVv" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/hallway/primary/fore)
"dVz" = (
/obj/machinery/portable_atmospherics/scrubber,
/obj/machinery/atmospherics/components/unary/portables_connector/layer4{
@@ -32190,6 +30486,26 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/hallway/secondary/exit/departure_lounge)
+"dWv" = (
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/turf/open/floor/iron/dark/smooth_half{
+ dir = 1
+ },
+/area/crew_quarters/heads/hos)
"dWH" = (
/obj/machinery/light/small{
dir = 4
@@ -32237,6 +30553,18 @@
/obj/item/organ/ears/cat,
/turf/open/floor/plating,
/area/maintenance/aft)
+"dXm" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "hosspace";
+ name = "space shutters"
+ },
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/crew_quarters/heads/hos)
"dXE" = (
/obj/structure/chair/wood,
/turf/open/floor/iron{
@@ -32264,16 +30592,15 @@
icon_state = "chapel"
},
/area/chapel/main)
-"dXK" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/delivery,
-/obj/item/kirbyplants{
- icon_state = "plant-22"
+"dXJ" = (
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/light/small{
+ dir = 4
},
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
+/obj/machinery/advanced_airlock_controller/directional/east,
+/turf/open/floor/plating,
+/area/security/main)
"dXL" = (
/obj/structure/chair{
dir = 1
@@ -32460,16 +30787,6 @@
icon_state = "chapel"
},
/area/chapel/main)
-"dZn" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/turf_decal/delivery,
-/obj/item/kirbyplants{
- icon_state = "plant-22"
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/exit/departure_lounge)
"dZo" = (
/obj/structure/chair,
/obj/effect/turf_decal/bot,
@@ -32537,15 +30854,6 @@
icon_state = "chapel"
},
/area/chapel/main)
-"dZU" = (
-/obj/machinery/airalarm/directional/east{
- pixel_x = 24
- },
-/turf/open/floor/iron{
- dir = 4;
- icon_state = "chapel"
- },
-/area/chapel/main)
"dZV" = (
/obj/structure/closet/emcloset,
/obj/effect/turf_decal/delivery,
@@ -32696,6 +31004,11 @@
icon_state = "chapel"
},
/area/chapel/main)
+"ebi" = (
+/obj/effect/turf_decal/siding/wideplating_new/dark,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/security/main)
"ebk" = (
/obj/machinery/light{
dir = 8
@@ -32744,12 +31057,6 @@
},
/turf/open/space,
/area/solar/port/aft)
-"ebI" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/iron/dark,
-/area/security/detectives_office)
"ebU" = (
/obj/machinery/light{
dir = 8
@@ -32788,6 +31095,11 @@
},
/turf/open/floor/plating,
/area/hallway/secondary/exit/departure_lounge)
+"ecd" = (
+/obj/structure/table/reinforced,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/prison,
+/area/security/prison)
"ecn" = (
/obj/structure/sign/warning/electricshock,
/turf/closed/wall/r_wall,
@@ -32796,6 +31108,24 @@
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plating,
/area/maintenance/port/aft)
+"ecw" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/security/brig)
"ecF" = (
/obj/machinery/camera/directional/west{
c_tag = "Departures - Port";
@@ -32897,17 +31227,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/maintenance/port/aft)
-"edh" = (
-/obj/machinery/door/poddoor{
- id = "justiceblast";
- name = "Justice Blast door"
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/iron/dark,
-/area/security/execution/transfer)
"edi" = (
/obj/effect/spawner/room/fivexfour,
/turf/open/floor/plating,
@@ -32984,6 +31303,15 @@
},
/turf/open/floor/iron/dark,
/area/chapel/office)
+"edT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
"edY" = (
/turf/closed/wall,
/area/security/checkpoint/escape)
@@ -33053,6 +31381,40 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/security/checkpoint/escape)
+"eel" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/starboard)
+"eeo" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance/two,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"eew" = (
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 8
+ },
+/area/security/main)
"eeD" = (
/obj/structure/table/wood,
/obj/item/flashlight/lamp,
@@ -33069,13 +31431,6 @@
},
/turf/open/floor/carpet,
/area/chapel/office)
-"eeK" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Visitation"
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/iron,
-/area/security/prison)
"eeT" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/firealarm{
@@ -33087,14 +31442,6 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"eeW" = (
-/obj/structure/filingcabinet/security,
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/detectives_office)
"efb" = (
/obj/structure/chair/stool/directional/west,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -33152,6 +31499,33 @@
/obj/machinery/smartfridge/organ,
/turf/closed/wall,
/area/medical/surgery)
+"efM" = (
+/obj/structure/cable/yellow,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "detectivewindows";
+ name = "Detective Privacy Blast door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/detectives_office)
+"efP" = (
+/obj/structure/table/wood,
+/obj/item/phone{
+ desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in.";
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/clothing/mask/cigarette/cigar/cohiba{
+ pixel_x = 6
+ },
+/obj/item/clothing/mask/cigarette/cigar/havana{
+ pixel_x = 2
+ },
+/obj/item/clothing/mask/cigarette/cigar{
+ pixel_x = 4.5
+ },
+/turf/open/floor/carpet/red,
+/area/crew_quarters/heads/hos)
"efQ" = (
/obj/structure/cable{
icon_state = "2-4"
@@ -33212,6 +31586,17 @@
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/port/aft)
+"ega" = (
+/obj/machinery/advanced_airlock_controller/directional/west,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer4{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/science/shuttledock)
"egd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -33231,17 +31616,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/starboard)
-"egs" = (
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/structure/cable/white,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/checkpoint/escape)
"egt" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -33261,19 +31635,18 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/engine/break_room)
-"egE" = (
-/turf/closed/wall/r_wall,
-/area/security/checkpoint/escape)
-"egF" = (
-/obj/structure/cable/white,
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
+"egB" = (
/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/effect/spawner/structure/window/reinforced,
+/obj/effect/spawner/structure/window/reinforced/prison,
+/obj/machinery/door/poddoor/preopen{
+ id = "Prisongate"
+ },
/turf/open/floor/plating,
+/area/security/prison)
+"egE" = (
+/turf/closed/wall/r_wall,
/area/security/checkpoint/escape)
"egG" = (
/obj/structure/cable/yellow{
@@ -33282,11 +31655,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/security/checkpoint/escape)
-"egH" = (
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/checkpoint/escape)
"egK" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -33424,13 +31792,37 @@
},
/turf/open/floor/iron/dark,
/area/library)
-"eio" = (
-/obj/machinery/power/smes{
- charge = 5e+006
+"ehS" = (
+/obj/structure/table,
+/obj/item/folder/red{
+ pixel_x = 3
},
-/obj/structure/cable/white,
-/turf/open/floor/iron/dark/telecomms,
-/area/tcommsat/server)
+/obj/item/taperecorder{
+ pixel_x = -3
+ },
+/obj/item/storage/fancy/cigarettes,
+/obj/item/assembly/flash/handheld,
+/obj/item/reagent_containers/peppercloud_deployer,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 4
+ },
+/obj/machinery/airalarm/all_access{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark,
+/area/security/execution/transfer)
+"eid" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/security/main)
"eiu" = (
/obj/structure/table/reinforced,
/obj/item/stack/package_wrap,
@@ -33481,44 +31873,35 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai_upload)
-"ejb" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
+"eiR" = (
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/turf/open/floor/iron/white,
+/area/crew_quarters/cryopods)
+"ejc" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/bot,
+/obj/structure/window/reinforced{
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_txt = "47"
- },
-/turf/open/floor/iron,
-/area/science/shuttledock)
-"ejk" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/door/window/southright{
+ base_state = "left";
+ dir = 1;
+ icon_state = "left";
+ name = "Armour storage";
+ req_one_access_txt = "1;4"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 4
},
-/obj/effect/turf_decal/tile/brown/half/contrasted{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/hallway/primary/fore)
+/obj/effect/loot_jobscale/armoury/riot_suit,
+/obj/effect/loot_jobscale/armoury/riot_helmet,
+/obj/effect/loot_jobscale/armoury/riot_shield,
+/turf/open/floor/iron/dark,
+/area/ai_monitored/security/armory)
"ejl" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/stripes/line{
@@ -33578,6 +31961,21 @@
"ejL" = (
/turf/closed/wall,
/area/medical/medbay/aft)
+"ekb" = (
+/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
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"ekz" = (
/obj/item/kirbyplants/random,
/obj/machinery/camera/directional/north{
@@ -33634,6 +32032,14 @@
},
/turf/open/floor/engine,
/area/science/explab)
+"ekM" = (
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
"ekX" = (
/obj/structure/window/reinforced,
/obj/structure/cable/yellow{
@@ -33650,6 +32056,20 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
+"elA" = (
+/obj/structure/chair/stool/directional/west,
+/obj/item/radio/intercom{
+ desc = "Talk through this. It looks like it has been modified to not broadcast.";
+ name = "Prison Intercom (General)";
+ pixel_y = 24;
+ prison_radio = 1
+ },
+/obj/effect/landmark/prisonspawn,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"elE" = (
/obj/structure/table/reinforced,
/obj/item/storage/toolbox/mechanical,
@@ -33658,44 +32078,35 @@
},
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
-"elG" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
+"elM" = (
+/obj/structure/railing/corner{
+ dir = 1
},
-/turf/open/floor/iron,
-/area/security/brig)
-"elI" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
+/obj/effect/turf_decal/siding/wideplating_new/corner{
+ dir = 1
},
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
+/mob/living/simple_animal/kalo{
+ desc = "The Perma brig's cute grass snake.";
+ icon_dead = "snake_dead";
+ icon_living = "snake";
+ icon_state = "snake";
+ name = "Hugel"
},
-/turf/open/floor/iron{
- heat_capacity = 1e+006
+/obj/effect/turf_decal/tile/red{
+ dir = 1
},
-/area/crew_quarters/locker)
+/turf/open/floor/prison,
+/area/security/prison)
+"elQ" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
"elV" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/atmospherics_engine)
-"elY" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/brig)
"ema" = (
/obj/structure/table,
/obj/item/hemostat,
@@ -33709,24 +32120,6 @@
heat_capacity = 1e+006
},
/area/maintenance/aft)
-"emb" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/carpet/grimy,
-/area/security/detectives_office)
"emu" = (
/turf/closed/wall,
/area/engine/gravity_generator)
@@ -33739,6 +32132,22 @@
/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/medical/genetics)
+"emO" = (
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/hallway/primary/fore)
+"emR" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/ai_monitored/security/armory)
"emU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -33751,19 +32160,6 @@
},
/turf/open/floor/iron/white,
/area/science/research)
-"emW" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/carpet/red,
-/area/crew_quarters/heads/hos)
"ena" = (
/obj/structure/table/reinforced,
/obj/structure/cable/yellow{
@@ -33799,19 +32195,6 @@
/obj/structure/bookcase/random,
/turf/open/floor/iron,
/area/quartermaster/exploration_prep)
-"enB" = (
-/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/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/crew_quarters/heads/hos)
"enK" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -33849,51 +32232,21 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"enW" = (
-/obj/structure/closet/secure_closet/warden,
-/obj/effect/turf_decal/tile/red/anticorner/contrasted{
- dir = 1
- },
-/obj/machinery/light/small{
- dir = 8
+"enV" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
},
-/turf/open/floor/iron,
-/area/security/warden)
-"eof" = (
-/obj/item/storage/box/sec_barricades,
-/obj/structure/table/reinforced,
-/obj/item/radio/intercom{
- pixel_y = 26
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "rdoffice";
+ name = "Research Director's Shutters"
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/item/survivalcapsule/capsule_checkpoint,
-/turf/open/floor/iron/dark,
-/area/ai_monitored/security/armory)
+/turf/open/floor/plating,
+/area/crew_quarters/heads/hor)
"eoC" = (
/obj/effect/spawner/room/fivexfour,
/turf/open/floor/plating,
/area/maintenance/department/medical/central)
-"eoQ" = (
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/machinery/camera/directional/west{
- c_tag = "Cargo Bay - Aft Port";
- name = "cargo camera"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/power/apc/auto_name/directional/west{
- pixel_x = -24
- },
-/obj/effect/turf_decal/tile/brown/half/contrasted{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/quartermaster/storage)
"eoY" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -33915,21 +32268,6 @@
},
/turf/open/floor/iron,
/area/maintenance/port/fore)
-"epk" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-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/security/brig)
"epA" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -33949,6 +32287,16 @@
},
/turf/open/floor/iron/smooth,
/area/tcommsat/server)
+"epZ" = (
+/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,
+/area/hallway/primary/central)
"eql" = (
/obj/machinery/airalarm/directional/south{
pixel_y = -22
@@ -33971,38 +32319,20 @@
/obj/effect/turf_decal/tile/red,
/turf/open/floor/iron,
/area/hallway/primary/starboard)
-"eqw" = (
-/obj/machinery/vending/security,
-/obj/structure/sign/nanotrasen{
- pixel_y = -32
- },
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/security/main)
"eqG" = (
/obj/structure/bed/roller,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/iron/dark,
/area/maintenance/department/medical/morgue)
-"eqO" = (
-/obj/machinery/holopad,
+"eqN" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/effect/landmark/start/quartermaster,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment,
/turf/open/floor/iron,
-/area/quartermaster/storage)
+/area/hallway/primary/central)
"eqS" = (
/obj/machinery/modular_fabricator/autolathe,
/obj/machinery/door/window/southleft{
@@ -34068,6 +32398,29 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
/turf/open/floor/iron,
/area/vacant_room/commissary)
+"erl" = (
+/obj/structure/chair/fancy/comfy{
+ color = "#666666";
+ dir = 1
+ },
+/obj/effect/landmark/start/head_of_security,
+/turf/open/floor/carpet/red,
+/area/crew_quarters/heads/hos)
+"erq" = (
+/obj/structure/cable/yellow,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -22
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/fore)
"eru" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/delivery,
@@ -34096,6 +32449,13 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/bar)
+"erU" = (
+/obj/effect/turf_decal/siding/wideplating_new/dark,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"erZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -34105,19 +32465,6 @@
heat_capacity = 1e+006
},
/area/maintenance/aft)
-"esg" = (
-/obj/machinery/computer/secure_data,
-/obj/machinery/status_display/ai{
- pixel_y = 32
- },
-/obj/machinery/camera/directional/north{
- c_tag = "Security - Transfer Centre"
- },
-/obj/effect/turf_decal/tile/red/anticorner/contrasted{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/security/brig)
"esh" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -34145,17 +32492,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/bridge)
-"etd" = (
-/obj/structure/table/glass,
-/obj/item/storage/backpack/duffelbag/med/surgery,
-/obj/machinery/camera/autoname{
- dir = 10
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/iron/dark,
-/area/medical/morgue)
"etf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -34168,11 +32504,6 @@
},
/turf/open/floor/iron/white,
/area/science/research)
-"etl" = (
-/obj/structure/dresser,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/detectives_office)
"etm" = (
/obj/structure/chair/stool/bar,
/obj/effect/turf_decal/tile/red/opposingcorners,
@@ -34209,19 +32540,47 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/hallway/secondary/command)
-"etJ" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
+"etF" = (
+/obj/structure/table/reinforced,
+/obj/machinery/button/flasher{
+ id = "brigentry";
+ name = "Flash Control";
+ pixel_x = -6;
+ pixel_y = 8;
+ req_access_txt = "63"
+ },
+/obj/machinery/button/door{
+ id = "armory";
+ name = "Armory Shutters";
+ pixel_x = 6;
+ pixel_y = 8;
+ req_access_txt = "3"
+ },
+/obj/machinery/button/door{
+ id = "brigfront";
+ name = "Brig Access Control";
+ pixel_x = 6;
+ pixel_y = -2;
+ req_access_txt = "63"
+ },
+/obj/machinery/button/door{
+ id = "Prisongate";
+ name = "Prison Lockdown";
+ pixel_x = -6;
+ pixel_y = -2;
+ req_access_txt = "63"
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 8
},
/obj/structure/cable/yellow{
- icon_state = "1-8"
+ icon_state = "2-4"
},
/obj/structure/cable/yellow{
- icon_state = "1-2"
+ icon_state = "4-8"
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/hallway/primary/port)
+/turf/open/floor/iron/dark,
+/area/security/warden)
"etL" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -34244,14 +32603,6 @@
/obj/effect/turf_decal/tile/brown/half/contrasted,
/turf/open/floor/iron,
/area/quartermaster/warehouse)
-"etR" = (
-/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,
-/area/security/brig)
"etX" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -34296,6 +32647,15 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
+"eut" = (
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/obj/machinery/vending/wardrobe/sec_wardrobe,
+/obj/effect/turf_decal/bot,
+/obj/machinery/status_display/ai{
+ pixel_y = -32
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"euy" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -34309,15 +32669,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/library)
-"euE" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/prison,
-/area/security/prison)
"euJ" = (
/obj/machinery/computer/crew,
/obj/effect/turf_decal/tile/blue/half/contrasted{
@@ -34350,22 +32701,6 @@
},
/turf/open/floor/catwalk_floor/iron,
/area/engine/atmospherics_engine)
-"euY" = (
-/obj/machinery/light,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/iron{
- heat_capacity = 1e+006
- },
-/area/hallway/primary/central)
"evi" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -34418,6 +32753,19 @@
},
/turf/open/floor/iron,
/area/maintenance/port)
+"evC" = (
+/obj/structure/barricade/wooden,
+/obj/machinery/door/airlock/security{
+ name = "Storage Closet"
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/maintenance/starboard)
"evN" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -34456,6 +32804,11 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/janitor)
+"ewo" = (
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/turf/open/floor/plating,
+/area/crew_quarters/heads/hos)
"ews" = (
/obj/machinery/computer/security{
dir = 4
@@ -34541,22 +32894,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/service)
-"exc" = (
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/security/courtroom)
-"exm" = (
-/obj/structure/table/reinforced,
-/obj/item/stock_parts/cell/high,
-/obj/item/stock_parts/cell/high,
-/obj/machinery/cell_charger,
-/obj/effect/turf_decal/tile/yellow/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"exs" = (
/obj/structure/chair/office{
dir = 1
@@ -34614,32 +32951,19 @@
/obj/machinery/air_sensor/atmos/toxins_mixing_tank,
/turf/open/floor/engine/vacuum,
/area/science/mixing/chamber)
-"exK" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/sorting/mail{
- dir = 1;
- name = "Quartermaster Junction";
- sortType = 3
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/hallway/primary/fore)
-"exR" = (
+"exO" = (
+/turf/open/floor/iron/techmaint,
+/area/security/main)
+"exU" = (
+/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/catwalk_floor/iron,
/area/engine/atmos)
"exW" = (
@@ -34680,6 +33004,27 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/medical/medbay/central)
+"eyj" = (
+/obj/machinery/disposal/bin,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -38;
+ pixel_y = -8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/engine/atmos)
"eyw" = (
/obj/item/kirbyplants/random,
/obj/machinery/light_switch{
@@ -34734,6 +33079,17 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"ezA" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=hall10";
+ location = "hall9"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron,
+/area/hallway/primary/central)
"ezJ" = (
/obj/machinery/light{
dir = 1
@@ -34772,6 +33128,15 @@
/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/atmospherics_engine)
+"ezZ" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron/white,
+/area/science/lab)
"eAj" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet,
@@ -34810,6 +33175,11 @@
},
/turf/open/floor/plating,
/area/science/shuttledock)
+"eAH" = (
+/obj/machinery/airalarm/directional/east,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron,
+/area/hallway/primary/starboard)
"eAS" = (
/obj/structure/table/wood,
/obj/item/clipboard,
@@ -34876,23 +33246,20 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/science/nanite)
-"eBL" = (
-/obj/structure/sign/nanotrasen{
- pixel_x = 32;
- pixel_y = -32
+"eCe" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/flasher{
+ id = "brigentry";
+ pixel_y = -28
},
-/obj/machinery/light/small,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/item/kirbyplants{
- icon_state = "plant-22"
- },
-/obj/effect/turf_decal/tile/blue/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron/dark,
-/area/bridge)
+/obj/machinery/light,
+/turf/open/floor/iron,
+/area/security/brig)
"eCi" = (
/obj/effect/turf_decal/tile/red/half/contrasted{
dir = 8
@@ -34923,6 +33290,16 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron,
/area/medical/storage)
+"eCC" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/crew_quarters/heads/hos)
"eCD" = (
/obj/machinery/light/small{
dir = 4
@@ -34998,6 +33375,38 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
+"eDc" = (
+/obj/machinery/light,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron{
+ heat_capacity = 1e+006
+ },
+/area/hallway/primary/central)
+"eDN" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/science/research)
+"eDP" = (
+/obj/effect/spawner/randomvend/snack,
+/turf/open/floor/iron/dark,
+/area/security/courtroom)
"eDX" = (
/obj/effect/landmark/event_spawn,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
@@ -35063,6 +33472,12 @@
/obj/effect/turf_decal/tile/yellow,
/turf/open/floor/iron/white,
/area/medical/chemistry)
+"eFd" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/reagent_containers/glass/bucket,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
"eFj" = (
/obj/machinery/light_switch{
pixel_x = -26;
@@ -35089,22 +33504,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/maintenance/starboard/aft)
-"eFN" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Hydroponics Maintenance";
- req_access_txt = "35"
- },
-/obj/effect/turf_decal/stripes/line,
-/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,
-/area/maintenance/port/fore)
"eGa" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -35136,21 +33535,27 @@
heat_capacity = 1e+006
},
/area/maintenance/port/aft)
-"eGB" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
+"eGP" = (
+/obj/structure/table,
+/obj/item/folder/red{
+ pixel_x = 3
},
-/obj/structure/disposalpipe/junction/flip{
- dir = 8
+/obj/item/folder/white{
+ pixel_x = -4;
+ pixel_y = 2
},
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+/obj/machinery/camera{
+ c_tag = "Security - Medbay";
+ dir = 5
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/tile/neutral/opposingcorners,
-/turf/open/floor/iron,
-/area/crew_quarters/cryopods)
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/item/radio/intercom{
+ pixel_y = -26
+ },
+/obj/item/healthanalyzer,
+/turf/open/floor/iron/white,
+/area/security/brig/medbay)
"eGX" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -35161,6 +33566,16 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/maintenance/starboard)
+"eGY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/security/brig)
"eHg" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -35175,6 +33590,14 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/service)
+"eHo" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/machinery/computer/security/wooden_tv,
+/turf/open/floor/carpet/red,
+/area/security/detectives_office)
"eHp" = (
/obj/machinery/stasis{
dir = 8
@@ -35193,6 +33616,12 @@
"eHD" = (
/turf/closed/wall,
/area/quartermaster/exploration_prep)
+"eHH" = (
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 8
+ },
+/area/security/main)
"eHJ" = (
/obj/machinery/light,
/obj/item/kirbyplants{
@@ -35212,19 +33641,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/bridge)
-"eHS" = (
-/obj/structure/closet/emcloset,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/security/brig)
"eHV" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 4
@@ -35254,15 +33670,18 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/maintenance/port/aft)
-"eIn" = (
-/obj/structure/chair/office{
+"eIo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
dir = 8
},
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
},
-/turf/open/floor/carpet/green,
-/area/lawoffice)
+/turf/open/floor/iron/dark,
+/area/security/main)
"eIt" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -35288,6 +33707,13 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/aisat)
+"eIA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"eIL" = (
/obj/structure/window/reinforced,
/turf/open/space/basic,
@@ -35318,10 +33744,36 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/quartermaster/storage)
+"eJa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/turf/open/floor/iron,
+/area/security/brig)
"eJc" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/closed/wall/r_wall,
/area/science/mixing/chamber)
+"eJd" = (
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/turf/open/floor/plating,
+/area/security/detectives_office)
"eJj" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -35336,18 +33788,15 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/command)
-"eJu" = (
-/obj/structure/chair,
-/obj/effect/decal/cleanable/blood/splatter,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
+"eJB" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
+/obj/structure/chair/fancy/bench/left{
+ dir = 1
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
-/area/security/execution/transfer)
+/area/security/prison)
"eJT" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -35398,6 +33847,18 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
+"eKK" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"eKU" = (
/obj/machinery/atmospherics/components/trinary/filter{
dir = 8
@@ -35406,6 +33867,13 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/maintenance/port/aft)
+"eLb" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/engine/atmos)
"eLn" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -35436,17 +33904,44 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/security/main)
-"eLx" = (
-/obj/effect/spawner/structure/window/reinforced/prison,
-/obj/structure/cable/yellow{
- icon_state = "0-8"
+"eLv" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
},
-/obj/machinery/door/poddoor/preopen{
- id = "Prisongate"
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
},
-/obj/structure/curtain,
-/turf/open/floor/plating,
-/area/security/prison)
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "quarantineshutters";
+ name = "isolation shutters"
+ },
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Medbay Maintenance";
+ req_access_txt = "5"
+ },
+/turf/open/floor/iron/white,
+/area/maintenance/starboard/aft)
+"eLF" = (
+/obj/effect/decal/cleanable/oil,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/quartermaster/office)
"eLL" = (
/obj/effect/turf_decal/trimline/black/filled/line{
dir = 8
@@ -35487,6 +33982,15 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/maintenance/starboard/aft)
+"eML" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "brigfront";
+ name = "Brig Blast door"
+ },
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/brig)
"eNn" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -35517,12 +34021,6 @@
},
/turf/open/floor/iron,
/area/engine/storage_shared)
-"eNB" = (
-/obj/effect/spawner/randomarcade{
- dir = 4
- },
-/turf/open/floor/prison,
-/area/security/prison)
"eNP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
@@ -35611,6 +34109,28 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/gravity_generator)
+"ePh" = (
+/obj/structure/cable/yellow,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/machinery/power/apc/auto_name/directional/south,
+/turf/open/floor/plating,
+/area/maintenance/solars/port/aft)
+"ePj" = (
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Auxiliary Tool Storage";
+ req_access_txt = "12"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/storage/tools)
"ePq" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -35649,12 +34169,28 @@
/obj/machinery/firealarm/directional/north,
/turf/open/floor/iron,
/area/science/xenobiology)
-"ePP" = (
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+"ePH" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/rnd/production/techfab/department/service,
+/obj/effect/turf_decal/stripes/box,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
/turf/open/floor/iron,
-/area/storage/tools)
+/area/hallway/secondary/service)
+"ePM" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/quartermaster/miningoffice)
"ePQ" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -35668,6 +34204,29 @@
},
/turf/open/floor/iron,
/area/medical/patients_rooms)
+"ePY" = (
+/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/neutral{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/central)
+"eQj" = (
+/obj/effect/landmark/event_spawn,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/quartermaster/office)
"eQt" = (
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -35679,37 +34238,26 @@
/obj/structure/sign/warning/vacuum,
/turf/open/floor/plating,
/area/quartermaster/miningoffice)
-"eQF" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/turf/open/floor/iron,
-/area/security/main)
"eQK" = (
/obj/effect/turf_decal/tile/purple/half/contrasted{
dir = 1
},
/turf/open/floor/iron/white,
/area/crew_quarters/heads/hor)
-"eQQ" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
+"eQU" = (
+/obj/structure/table,
+/obj/item/storage/backpack/duffelbag/sec/surgery{
+ pixel_y = 5
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
+/obj/item/clothing/mask/balaclava,
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_x = 5
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
dir = 8
},
-/turf/open/floor/iron,
-/area/security/brig)
+/turf/open/floor/iron/dark,
+/area/security/execution/transfer)
"eRe" = (
/obj/machinery/door/airlock/security{
name = "Security Post - Medical";
@@ -35749,11 +34297,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"eRI" = (
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced/tinted,
-/turf/open/floor/plating,
-/area/crew_quarters/heads/hos)
"eRJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -35763,13 +34306,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/carpet/royalblue,
/area/crew_quarters/heads/captain/private)
-"eRT" = (
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/brig)
"eSj" = (
/obj/structure/chair/office{
dir = 8
@@ -35784,6 +34320,20 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/port/fore)
+"eSx" = (
+/obj/effect/landmark/event_spawn,
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron,
+/area/security/warden)
"eSz" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -35842,6 +34392,21 @@
/obj/effect/turf_decal/tile/brown/half/contrasted,
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
+"eUb" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/central)
+"eUq" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/security/brig)
"eUz" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 8
@@ -35863,6 +34428,27 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"eUF" = (
+/obj/structure/table/optable,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/item/storage/firstaid/regular,
+/turf/open/floor/iron/white,
+/area/security/brig/medbay)
+"eUW" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/quartermaster/miningoffice)
"eUY" = (
/obj/structure/table/reinforced,
/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
@@ -35874,10 +34460,14 @@
},
/turf/open/floor/iron/white,
/area/medical/surgery)
-"eVb" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/iron,
-/area/ai_monitored/security/armory)
+"eVz" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/security/brig)
"eVT" = (
/obj/structure/table,
/obj/item/folder,
@@ -35885,16 +34475,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/locker)
-"eVX" = (
-/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/turf_decal/tile/red/half/contrasted,
-/turf/open/floor/iron,
-/area/security/main)
"eWn" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -35909,6 +34489,17 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/hallway/secondary/command)
+"eWs" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/fluff/hedge/opaque,
+/turf/open/floor/grass/no_border,
+/area/security/main)
"eWx" = (
/obj/structure/table/reinforced,
/obj/machinery/light{
@@ -35940,16 +34531,16 @@
/obj/effect/turf_decal/tile/brown/half/contrasted,
/turf/open/floor/iron,
/area/quartermaster/office)
+"eWM" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/starboard)
"eWS" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating,
/area/maintenance/department/medical/central)
-"eXg" = (
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/security/brig)
"eXz" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -35973,6 +34564,18 @@
},
/turf/open/floor/iron,
/area/maintenance/department/medical/morgue)
+"eXK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/entry)
"eXQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -35982,6 +34585,13 @@
heat_capacity = 1e+006
},
/area/maintenance/port/aft)
+"eYm" = (
+/obj/structure/table,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/effect/turf_decal/tile/purple,
+/turf/open/floor/iron/white,
+/area/science/research)
"eYz" = (
/obj/structure/table/reinforced,
/obj/machinery/recharger,
@@ -36009,6 +34619,17 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/bar/atrium)
+"eYT" = (
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 1;
+ name = "HoS Junction";
+ sortType = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/starboard)
"eYY" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance/two,
@@ -36047,6 +34668,21 @@
/obj/effect/turf_decal/tile/red/anticorner/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint)
+"eZl" = (
+/obj/machinery/door/airlock/external{
+ name = "Labor Camp Shuttle Airlock";
+ req_access_txt = "2";
+ shuttledocked = 1
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/plating,
+/area/security/main)
"eZn" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 1
@@ -36059,6 +34695,21 @@
},
/turf/open/floor/iron,
/area/medical/chemistry)
+"eZt" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/food/condiment/flour,
+/obj/item/reagent_containers/food/condiment/flour{
+ pixel_x = 4
+ },
+/obj/item/reagent_containers/food/condiment/sugar,
+/obj/item/reagent_containers/food/condiment/enzyme{
+ pixel_y = 5
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"eZv" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -36093,24 +34744,20 @@
},
/turf/open/floor/iron/white,
/area/crew_quarters/heads/hor)
-"eZW" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/junction{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+"eZO" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+/obj/machinery/newscaster{
+ pixel_y = 32
},
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
+/obj/machinery/computer/secure_data,
+/obj/structure/sign/nanotrasen{
+ pixel_x = -32
},
+/obj/effect/turf_decal/bot_white,
/turf/open/floor/iron,
-/area/hallway/primary/fore)
+/area/crew_quarters/heads/hos)
"fab" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -36123,6 +34770,20 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/bar)
+"fak" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock{
+ name = "Law Office";
+ req_access_txt = "38"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/stripes/closeup,
+/turf/open/floor/iron/dark,
+/area/lawoffice)
"fau" = (
/obj/machinery/suit_storage_unit/standard_unit,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -36134,6 +34795,16 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/fitness/recreation)
+"faT" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/airalarm/directional/east,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/hallway/primary/aft)
"faX" = (
/obj/machinery/light_switch{
pixel_x = 26;
@@ -36164,6 +34835,18 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/central)
+"fbp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"fbw" = (
/obj/effect/landmark/event_spawn,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -36255,10 +34938,20 @@
},
/turf/open/floor/catwalk_floor/iron_smooth,
/area/tcommsat/server)
-"fcu" = (
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/brig)
+"fcx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 1
+ },
+/area/security/main)
"fdc" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
@@ -36285,6 +34978,11 @@
},
/turf/open/floor/iron,
/area/quartermaster/storage)
+"fee" = (
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/engine/break_room)
"fes" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -36361,6 +35059,19 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/heads/chief)
+"fff" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "Prisongate"
+ },
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced/prison,
+/turf/open/floor/plating,
+/area/security/prison)
+"ffl" = (
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/gateway)
"ffu" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 4
@@ -36374,29 +35085,27 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/medical/medbay/lobby)
-"ffE" = (
-/obj/structure/chair/office{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+"ffB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
},
-/obj/structure/cable/yellow{
- icon_state = "1-8"
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
},
-/obj/effect/landmark/start/security_officer,
-/obj/structure/disposalpipe/segment{
+/obj/effect/turf_decal/tile/green{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+ dir = 5
},
-/obj/effect/turf_decal/tile/red/half/contrasted,
/turf/open/floor/iron,
-/area/security/main)
+/area/hydroponics)
"ffH" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -36419,11 +35128,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/atmos)
-"fgb" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/storage)
"fgc" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -36469,6 +35173,16 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/engine/storage_shared)
+"fgW" = (
+/obj/structure/table,
+/obj/item/hand_tele,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/power/apc/auto_name/directional/north,
+/turf/open/floor/iron,
+/area/teleporter)
"fhb" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
@@ -36489,6 +35203,17 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
+"fhV" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/checkpoint/supply)
"fim" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -36522,16 +35247,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"fir" = (
-/obj/machinery/computer/security{
- dir = 8
- },
-/obj/machinery/status_display/evac{
- pixel_x = 32
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/main)
"fit" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/kirbyplants{
@@ -36561,13 +35276,14 @@
/obj/item/flashlight,
/turf/open/floor/iron,
/area/maintenance/aft)
-"fjd" = (
-/obj/structure/table/wood,
-/obj/item/clipboard,
-/obj/item/toy/figure/hos,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/crew_quarters/heads/hos)
+"fjc" = (
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/prison/dark,
+/area/security/prison)
"fjg" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
@@ -36592,6 +35308,14 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/science/research)
+"fjw" = (
+/obj/structure/cable/yellow,
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/bridge)
"fjy" = (
/obj/structure/table/reinforced,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -36672,17 +35396,6 @@
},
/turf/open/floor/iron,
/area/maintenance/port/aft)
-"fjW" = (
-/obj/structure/closet/secure_closet/security/sec,
-/obj/machinery/status_display/evac{
- pixel_y = -32
- },
-/obj/effect/turf_decal/bot,
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/security/main)
"fjZ" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -36704,6 +35417,22 @@
/obj/machinery/atmospherics/pipe/layer_manifold,
/turf/open/floor/catwalk_floor/iron_smooth,
/area/tcommsat/server)
+"fkr" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 8
+ },
+/obj/structure/sign/directions/engineering{
+ desc = "A sign that shows there are doors here. There are doors everywhere!";
+ icon_state = "doors";
+ name = "WARNING: BLAST DOORS";
+ pixel_y = -32
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/security/brig)
"fks" = (
/obj/machinery/vending/cigarette,
/obj/machinery/light{
@@ -36712,13 +35441,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/bridge/meeting_room/council)
-"fkt" = (
-/obj/machinery/computer/card/minor/hos{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/crew_quarters/heads/hos)
"fkA" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
@@ -36789,17 +35511,14 @@
},
/turf/open/floor/iron,
/area/science/xenobiology)
-"fkV" = (
-/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/half/contrasted{
- dir = 8
+"fkX" = (
+/obj/machinery/photocopier,
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/obj/item/radio/intercom{
+ pixel_y = -29
},
-/turf/open/floor/iron,
-/area/hallway/secondary/service)
+/turf/open/floor/iron/dark,
+/area/security/main)
"flj" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
@@ -36813,6 +35532,27 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/locker)
+"fln" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/iron/dark/smooth_edge,
+/area/security/main)
"flo" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -36830,6 +35570,15 @@
},
/turf/open/floor/carpet/royalblue,
/area/crew_quarters/heads/captain/private)
+"flT" = (
+/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,
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"flU" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -36852,6 +35601,19 @@
heat_capacity = 1e+006
},
/area/maintenance/port/aft)
+"fmn" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12
+ },
+/obj/structure/mirror{
+ pixel_x = -28
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/freezer,
+/area/security/prison)
"fmt" = (
/turf/open/floor/plating,
/area/maintenance/department/medical/central)
@@ -36861,104 +35623,6 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/storage)
-"fmO" = (
-/obj/structure/sign/nanotrasen{
- pixel_x = -32;
- pixel_y = -32
- },
-/obj/machinery/light/small,
-/obj/item/kirbyplants{
- icon_state = "plant-22"
- },
-/obj/effect/turf_decal/tile/blue/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron/dark,
-/area/bridge)
-"fmR" = (
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron,
-/area/security/main)
-"fmY" = (
-/obj/effect/spawner/structure/window/reinforced/prison,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "Prisongate"
- },
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/security/prison)
-"fnb" = (
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "hosprivacy";
- name = "HoS Privacy Blast door"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/heads/hos)
-"fnd" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -26
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/brown/half/contrasted{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/quartermaster/storage)
-"fnk" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=hall3";
- location = "hall2"
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/hallway/primary/central)
-"fnC" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red,
-/turf/open/floor/iron,
-/area/security/brig)
"fnR" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/stripes/line,
@@ -36970,27 +35634,18 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/science/research)
-"foh" = (
-/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,
-/area/security/prison)
-"fov" = (
-/obj/structure/cable/white,
-/obj/machinery/power/apc/auto_name/directional/south,
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/hydroponics)
"foD" = (
/obj/structure/sign/departments/minsky/medical/medical2,
/turf/closed/wall,
/area/medical/break_room)
+"foH" = (
+/obj/effect/turf_decal/stripes/closeup,
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Detective's Office Maintenance";
+ req_access_txt = "4"
+ },
+/turf/open/floor/iron,
+/area/maintenance/starboard)
"fpa" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -37007,16 +35662,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/maintenance/starboard/fore)
-"fpj" = (
-/obj/machinery/computer/secure_data{
- dir = 8
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 28
- },
-/turf/open/floor/iron,
-/area/security/warden)
"fpB" = (
/obj/machinery/status_display/evac{
pixel_x = -32;
@@ -37036,6 +35681,29 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"fqd" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/door/airlock/security{
+ name = "Evidence Storage";
+ req_one_access_txt = "1;4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/security/brig)
"fqi" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -37130,6 +35798,16 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/maintenance/port)
+"frF" = (
+/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/segment,
+/turf/open/floor/iron,
+/area/engine/break_room)
"frH" = (
/obj/item/kirbyplants/random,
/obj/machinery/status_display/evac{
@@ -37154,10 +35832,11 @@
},
/turf/open/floor/iron,
/area/maintenance/starboard/aft)
-"frY" = (
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/security/main)
+"frS" = (
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/turf/open/floor/plating,
+/area/crew_quarters/heads/chief)
"fsd" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -37176,24 +35855,6 @@
},
/turf/open/floor/iron/dark,
/area/crew_quarters/heads/cmo)
-"fsp" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/machinery/door/airlock/external{
- name = "Gulag Shuttle Airlock"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/layer_manifold{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
"fsz" = (
/obj/machinery/atmospherics/components/binary/valve,
/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_toxmix{
@@ -37218,23 +35879,6 @@
},
/turf/open/floor/iron,
/area/engine/storage)
-"fsO" = (
-/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/neutral/fourcorners/contrasted,
-/obj/machinery/light_switch{
- pixel_x = -20;
- pixel_y = -21
- },
-/turf/open/floor/iron/dark,
-/area/security/nuke_storage)
"ftd" = (
/obj/item/kirbyplants{
icon_state = "plant-21"
@@ -37250,20 +35894,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
-"ftk" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "brigfront";
- name = "Brig Blast door"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/security/warden)
"ftC" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
@@ -37293,22 +35923,6 @@
},
/turf/open/floor/catwalk_floor/iron,
/area/engine/atmospherics_engine)
-"ftO" = (
-/obj/machinery/door/airlock/security/glass{
- name = "Security Office";
- req_one_access_txt = "1;4"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/iron,
-/area/security/main)
"fue" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/event_spawn,
@@ -37344,12 +35958,6 @@
},
/turf/open/floor/iron/white,
/area/crew_quarters/heads/cmo)
-"fuM" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/miningoffice)
"fuX" = (
/obj/effect/turf_decal/tile/green/fourcorners/contrasted,
/obj/structure/disposalpipe/segment{
@@ -37379,6 +35987,13 @@
/obj/machinery/vending/wardrobe/viro_wardrobe,
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
+"fvq" = (
+/obj/structure/dresser,
+/obj/machinery/airalarm/directional/north{
+ pixel_y = 22
+ },
+/turf/open/floor/carpet/grimy,
+/area/security/detectives_office)
"fvV" = (
/obj/structure/disposalpipe/segment{
dir = 6
@@ -37401,27 +36016,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/atmospherics_engine)
-"fwp" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/effect/turf_decal/tile/purple/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron/white,
-/area/crew_quarters/heads/hor)
"fwv" = (
/obj/structure/sign/poster/official/help_others{
pixel_x = -32
@@ -37448,6 +36042,12 @@
/obj/effect/turf_decal/tile/purple,
/turf/open/floor/iron/white,
/area/science/shuttledock)
+"fwU" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
"fxd" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -37490,6 +36090,10 @@
},
/turf/open/floor/catwalk_floor/iron_smooth,
/area/tcommsat/server)
+"fxp" = (
+/obj/machinery/vending/coffee,
+/turf/open/floor/iron/dark,
+/area/security/courtroom)
"fxq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -37565,20 +36169,17 @@
},
/turf/open/floor/iron/dark,
/area/medical/medbay/lobby)
-"fyt" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/cobweb,
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
- dir = 1
+"fyz" = (
+/obj/machinery/door/airlock{
+ name = "Courtroom"
},
-/turf/open/floor/iron,
-/area/maintenance/starboard)
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/stripes/closeup,
+/turf/open/floor/iron/dark,
+/area/security/courtroom)
"fyE" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
@@ -37615,6 +36216,13 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
+"fzh" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "executionfireblast"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/execution/transfer)
"fzo" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -37623,13 +36231,13 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/plating,
/area/maintenance/port)
-"fzt" = (
-/obj/structure/chair/office{
- dir = 1
+"fzL" = (
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
},
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/iron,
-/area/security/brig)
+/turf/open/floor/iron/dark,
+/area/security/courtroom)
"fAv" = (
/obj/machinery/firealarm{
dir = 8;
@@ -37705,6 +36313,17 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/aisat)
+"fBE" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/nuke_storage)
"fBF" = (
/obj/effect/turf_decal/tile/purple,
/obj/machinery/light_switch/tcomms{
@@ -37731,9 +36350,15 @@
},
/turf/open/floor/iron,
/area/science/research)
-"fCH" = (
-/obj/effect/turf_decal/tile/black/fourcorners,
-/turf/open/floor/iron,
+"fCr" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/iron/freezer,
/area/security/prison)
"fCL" = (
/obj/item/kirbyplants{
@@ -37742,6 +36367,12 @@
/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/aft)
+"fCN" = (
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/security/courtroom)
"fDi" = (
/obj/structure/chair/stool/bar/directional/south,
/obj/effect/turf_decal/tile/red/opposingcorners,
@@ -37778,6 +36409,12 @@
},
/turf/open/floor/iron,
/area/engine/storage_shared)
+"fDk" = (
+/obj/structure/sign/warning/pods{
+ name = "MINING POD"
+ },
+/turf/closed/wall,
+/area/quartermaster/miningoffice)
"fDm" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -37861,11 +36498,49 @@
},
/turf/open/floor/iron,
/area/maintenance/port)
-"fEk" = (
-/obj/effect/landmark/start/security_officer,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
+"fEb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/machinery/computer/cargo/request{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 1
+ },
/area/security/main)
+"fEe" = (
+/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/prison,
+/area/security/prison)
+"fEq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/disposal/deliveryChute{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/quartermaster/sorting)
"fEL" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/spawner/lootdrop/grille_or_trash,
@@ -37874,23 +36549,17 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"fFa" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 64;
- pixel_y = 32
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+"fFn" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
-/turf/open/floor/carpet/grimy,
-/area/security/detectives_office)
+/turf/open/floor/plating,
+/area/maintenance/starboard)
"fFE" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -37917,15 +36586,6 @@
/obj/effect/turf_decal/tile/purple,
/turf/open/floor/iron/white,
/area/science/research)
-"fGB" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/brown/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/hallway/primary/fore)
"fGD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -37996,6 +36656,19 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/catwalk_floor/flat_white,
/area/science/mixing)
+"fHN" = (
+/obj/machinery/computer/med_data{
+ dir = 4
+ },
+/obj/machinery/status_display/evac{
+ pixel_x = -32
+ },
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark,
+/area/security/detectives_office)
"fHO" = (
/obj/machinery/camera/directional/north{
c_tag = "Departures - Fore";
@@ -38048,44 +36721,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"fIR" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/landmark/event_spawn,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/office)
-"fIU" = (
-/obj/effect/spawner/structure/window/reinforced/prison,
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "Prisongate"
- },
-/turf/open/floor/plating,
-/area/security/prison)
-"fJf" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron,
-/area/maintenance/department/medical/central)
"fJi" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -38094,15 +36729,13 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/plating,
/area/maintenance/department/medical/morgue)
-"fJo" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Justice gas pump"
+"fJl" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
},
-/obj/machinery/door/window/westleft,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/execution/transfer)
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/science/research)
"fJE" = (
/obj/machinery/light/small{
dir = 1
@@ -38153,14 +36786,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/storage)
-"fJZ" = (
-/obj/machinery/atmospherics/pipe/simple/general/hidden,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/execution/transfer)
"fKm" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -38178,29 +36803,6 @@
},
/turf/open/floor/iron,
/area/storage/primary)
-"fKJ" = (
-/obj/structure/closet/crate{
- opened = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 4
- },
-/obj/structure/sign/nanotrasen{
- pixel_x = 32
- },
-/obj/item/tank/internals/oxygen/red{
- pixel_x = 3
- },
-/obj/item/tank/internals/oxygen/red{
- pixel_x = -3
- },
-/obj/item/wrench,
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/execution/transfer)
"fKN" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
@@ -38222,20 +36824,6 @@
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/turf/open/floor/iron,
/area/science/research)
-"fLc" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/storage)
"fLo" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -38283,11 +36871,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/break_room)
-"fLQ" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/hallway/primary/fore)
"fMh" = (
/obj/item/kirbyplants/random,
/obj/machinery/camera/directional/north{
@@ -38302,6 +36885,16 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/heads/captain)
+"fMm" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/central)
"fMq" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -38328,32 +36921,22 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
/turf/open/floor/carpet/blue,
/area/crew_quarters/heads/cmo)
-"fMC" = (
-/obj/machinery/airalarm/directional/east{
- pixel_x = 24
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/chapel/office)
"fMH" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 8
},
/turf/open/floor/wood,
/area/crew_quarters/heads/captain/private)
-"fMJ" = (
-/obj/structure/chair/fancy/comfy{
- color = "#666666";
- dir = 8
+"fMK" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
},
-/obj/effect/turf_decal/tile/red/half/contrasted,
/turf/open/floor/iron,
-/area/security/main)
+/area/hallway/primary/starboard)
"fMQ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 8
@@ -38379,21 +36962,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/qm)
-"fNb" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/carpet/red,
-/area/crew_quarters/heads/hos)
"fNr" = (
/obj/machinery/light{
dir = 8
@@ -38408,23 +36976,18 @@
},
/turf/open/floor/iron,
/area/crew_quarters/bar/atrium)
-"fNG" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+"fNx" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/machinery/door/airlock/security{
- aiControlDisabled = 1;
- id_tag = "prisonereducation";
- name = "Interrogation room";
- req_access_txt = "63"
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
},
-/turf/open/floor/iron/dark,
-/area/security/brig)
+/turf/open/floor/iron/dark/smooth_large,
+/area/security/main)
"fNZ" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -38441,11 +37004,46 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/storage/tech)
+"fOb" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/hallway/primary/fore)
"fOi" = (
/obj/machinery/vending/clothing,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/locker)
+"fOj" = (
+/obj/structure/closet/secure_closet/genpop,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/turf_decal/bot_white,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/security/prison)
+"fOk" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 4
+ },
+/area/security/main)
"fOl" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -38515,33 +37113,6 @@
},
/turf/open/floor/plating,
/area/maintenance/port/aft)
-"fOF" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "quarantineshutters";
- name = "isolation shutters"
- },
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Medbay Maintenance";
- req_access_txt = "5"
- },
-/turf/open/floor/iron/white,
-/area/maintenance/starboard/aft)
"fOK" = (
/obj/machinery/door/airlock/public/glass{
name = "Holodeck Access"
@@ -38579,6 +37150,14 @@
},
/turf/open/space,
/area/engine/atmos)
+"fPc" = (
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/engine/storage)
"fPh" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -38628,6 +37207,29 @@
/obj/effect/turf_decal/tile/yellow,
/turf/open/floor/iron,
/area/hallway/primary/aft)
+"fPx" = (
+/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_txt = "47"
+ },
+/turf/open/floor/iron,
+/area/science/shuttledock)
"fPA" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -38651,12 +37253,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai_upload)
-"fPS" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/landmark/start/detective,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/detectives_office)
"fQd" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -38684,21 +37280,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint/escape)
-"fQr" = (
-/obj/structure/disposalpipe/junction{
- 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/tile/yellow{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
"fQC" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 1
@@ -38715,15 +37296,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/atmos)
-"fQP" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/security/courtroom)
"fQT" = (
/obj/machinery/disposal/bin,
/obj/structure/sign/warning/deathsposal{
@@ -38734,6 +37306,15 @@
},
/turf/open/floor/iron/dark/textured,
/area/maintenance/disposal/incinerator)
+"fQV" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/security/brig)
"fRm" = (
/obj/effect/landmark/start/scientist,
/obj/structure/cable/yellow{
@@ -38757,17 +37338,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"fRZ" = (
-/obj/structure/closet/secure_closet/contraband/armory,
-/obj/effect/spawner/lootdrop/maintenance/three,
-/obj/effect/spawner/lootdrop/armory_contraband,
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/turf_decal/bot,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/ai_monitored/security/armory)
"fSj" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -38776,6 +37346,11 @@
/obj/machinery/firealarm/directional/south,
/turf/open/floor/iron,
/area/engine/gravity_generator)
+"fSn" = (
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/security/courtroom)
"fSs" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/delivery,
@@ -38792,6 +37367,13 @@
},
/turf/open/floor/iron,
/area/medical/patients_rooms)
+"fSA" = (
+/obj/effect/turf_decal/stripes/corner,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/turf/open/floor/iron/textured,
+/area/ai_monitored/security/armory)
"fSE" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -38895,6 +37477,13 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
+"fTN" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/turf/open/floor/plating,
+/area/security/main)
"fTU" = (
/obj/machinery/camera/directional/south{
c_tag = "Bridge - Starboard";
@@ -38905,6 +37494,17 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
+"fTY" = (
+/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/red/half/contrasted,
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 8
+ },
+/area/security/main)
"fUd" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
@@ -38935,6 +37535,16 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/science/research)
+"fUs" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/carpet/red,
+/area/crew_quarters/heads/hos)
"fUu" = (
/obj/machinery/power/smes{
charge = 1e+006
@@ -38971,16 +37581,22 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/catwalk_floor/iron,
/area/engine/atmos)
-"fVf" = (
-/obj/structure/table/wood,
-/obj/machinery/light{
+"fUW" = (
+/obj/effect/turf_decal/tile/blue{
dir = 8
},
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/courtroom)
+/obj/machinery/light,
+/obj/item/kirbyplants{
+ icon_state = "plant-21"
+ },
+/obj/machinery/camera/autoname{
+ dir = 10;
+ network = list("ss13","medbay")
+ },
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/cable/yellow,
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"fVj" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -38995,6 +37611,22 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/gateway)
+"fVm" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/fore)
"fVu" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -39006,19 +37638,21 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/command)
-"fVM" = (
-/obj/structure/chair{
- name = "Prosecution"
+"fVL" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
},
-/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/tile/red{
dir = 4
},
+/obj/structure/sign/warning/electricshock{
+ pixel_x = 32
+ },
/turf/open/floor/iron,
-/area/security/courtroom)
-"fVZ" = (
-/obj/machinery/holopad,
-/turf/open/floor/carpet/grimy,
-/area/security/detectives_office)
+/area/hallway/primary/starboard)
"fWb" = (
/obj/item/kirbyplants/random,
/obj/effect/turf_decal/tile/purple/half/contrasted{
@@ -39026,6 +37660,18 @@
},
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
+"fWe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/starboard)
"fWh" = (
/obj/structure/cable/yellow{
icon_state = "0-8"
@@ -39034,6 +37680,13 @@
/obj/effect/turf_decal/tile/red/half/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint)
+"fWk" = (
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/obj/structure/chair/office{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/security/warden)
"fWl" = (
/obj/structure/disposalpipe/segment,
/obj/structure/extinguisher_cabinet{
@@ -39067,26 +37720,41 @@
},
/turf/open/floor/catwalk_floor/iron_smooth,
/area/tcommsat/server)
+"fWI" = (
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/checkpoint/customs/auxiliary)
+"fWS" = (
+/obj/structure/sign/poster/official/safety_report{
+ pixel_y = -32
+ },
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark/side,
+/area/security/brig)
"fWT" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/event_spawn,
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/maintenance/port)
-"fXc" = (
+"fWV" = (
/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "detectivewindows";
+ name = "Detective Privacy Blast door"
},
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/detectives_office)
"fXg" = (
/obj/structure/table,
/obj/item/stack/package_wrap,
@@ -39105,27 +37773,17 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"fXl" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/obj/effect/turf_decal/tile/brown/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/quartermaster/office)
-"fXC" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
+"fXH" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 6
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/obj/structure/disposalpipe/segment{
+ dir = 10
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/brig)
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/iron,
+/area/storage/tools)
"fXP" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -39137,19 +37795,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/storage_shared)
-"fXR" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security{
- aiControlDisabled = 1;
- id_tag = "prisonereducation";
- name = "Solitary Confinement";
- req_one_access_txt = "1;4"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/prison,
-/area/security/prison)
"fXU" = (
/obj/machinery/door/morgue{
name = "Confession Booth"
@@ -39157,20 +37802,26 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/chapel/main)
+"fYa" = (
+/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 = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"fYb" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 8
},
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
-"fYf" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/effect/turf_decal/tile/blue/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/courtroom)
"fYi" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -39188,6 +37839,13 @@
},
/turf/open/floor/iron,
/area/maintenance/port/aft)
+"fYn" = (
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/quartermaster/office)
"fYy" = (
/obj/effect/turf_decal/tile/blue{
dir = 4
@@ -39206,6 +37864,16 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/service)
+"fYG" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/teleporter)
"fYO" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -39261,17 +37929,6 @@
heat_capacity = 1e+006
},
/area/maintenance/starboard/aft)
-"fZA" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/item/storage/pod{
- pixel_x = 32;
- pixel_y = -32
- },
-/obj/effect/turf_decal/tile/purple/anticorner/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/storage)
"fZF" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -39288,19 +37945,16 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat_interior)
-"fZN" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4
+"fZU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
},
-/obj/effect/turf_decal/tile/red{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
},
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
-/area/hallway/primary/starboard)
+/area/science/research)
"fZX" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -39313,6 +37967,14 @@
},
/turf/open/floor/iron,
/area/maintenance/port/fore)
+"gaz" = (
+/obj/structure/closet/firecloset,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/iron/dark,
+/area/security/main)
"gaT" = (
/obj/machinery/door/airlock/public/glass{
name = "Library Access"
@@ -39339,6 +38001,24 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
+"gbe" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
+"gbh" = (
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 1
+ },
+/obj/machinery/computer/secure_data{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/dark/smooth_half,
+/area/crew_quarters/heads/hos)
"gbj" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -39357,14 +38037,14 @@
heat_capacity = 1e+006
},
/area/maintenance/port/fore)
-"gby" = (
-/obj/structure/cable/white,
-/obj/machinery/power/apc/auto_name/directional/south,
-/obj/effect/turf_decal/tile/blue/half/contrasted{
- dir = 8
+"gbI" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
},
-/turf/open/floor/iron/dark,
-/area/bridge)
+/obj/machinery/fax/service,
+/obj/structure/table,
+/turf/open/floor/iron,
+/area/hallway/secondary/service)
"gbQ" = (
/obj/effect/decal/cleanable/oil,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -39380,6 +38060,24 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
+"gbU" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_y = 32
+ },
+/turf/open/floor/iron/dark/smooth_edge,
+/area/security/main)
"gbV" = (
/obj/machinery/atmospherics/components/binary/pump/on{
dir = 1
@@ -39420,6 +38118,20 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/medical/medbay/central)
+"gcb" = (
+/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,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/quartermaster/storage)
"gcf" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -39430,6 +38142,18 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai_upload)
+"gcg" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/carpet/red,
+/area/crew_quarters/heads/hos)
"gcm" = (
/obj/machinery/mineral/stacking_unit_console{
machinedir = 8;
@@ -39440,6 +38164,14 @@
/obj/effect/turf_decal/tile/brown/half/contrasted,
/turf/open/floor/iron,
/area/maintenance/disposal)
+"gcu" = (
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/quartermaster/storage)
"gcE" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
@@ -39461,6 +38193,12 @@
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
/turf/open/floor/iron,
/area/engine/storage_shared)
+"gcL" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 10
+ },
+/turf/open/floor/wood,
+/area/security/detectives_office)
"gcM" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -39510,22 +38248,6 @@
},
/turf/open/floor/carpet/royalblue,
/area/bridge)
-"gdC" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/hallway/primary/fore)
"gdE" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -39536,17 +38258,30 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/plating,
/area/quartermaster/warehouse)
-"gdN" = (
-/obj/structure/disposalpipe/segment{
+"gdZ" = (
+/obj/effect/turf_decal/stripes/line{
dir = 4
},
-/obj/effect/turf_decal/tile/brown/half/contrasted,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/iron,
-/area/quartermaster/office)
+/area/hallway/primary/starboard)
"geg" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/medical/morgue)
+"gel" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 8
+ },
+/area/security/courtroom)
"geG" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -39554,21 +38289,20 @@
/obj/machinery/atmospherics/components/unary/cryo_cell,
/turf/open/floor/iron,
/area/medical/patients_rooms)
-"gfN" = (
-/obj/structure/chair/office{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+"gfu" = (
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = 32
},
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+/obj/effect/turf_decal/stripes/openup{
+ dir = 5
+ },
+/turf/open/floor/iron/dark/side{
dir = 4
},
-/turf/open/floor/carpet/grimy,
-/area/security/detectives_office)
+/area/ai_monitored/security/armory)
"ggf" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -39602,27 +38336,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/bridge)
-"ggn" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/closet/crate/silvercrate,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/nuke_storage)
-"ggo" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/red,
-/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/security/brig)
"ggu" = (
/obj/effect/turf_decal/tile/red/anticorner/contrasted,
/obj/structure/chair/fancy/bench,
@@ -39660,6 +38373,18 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/heads/chief)
+"ghe" = (
+/obj/structure/rack,
+/obj/item/storage/briefcase{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/storage/secure/briefcase,
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 1
+ },
+/turf/open/floor/wood/big,
+/area/lawoffice)
"ghE" = (
/obj/machinery/computer/upload/ai{
dir = 1
@@ -39706,30 +38431,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/command)
-"git" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/junction/flip{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/teleporter)
-"giA" = (
-/obj/machinery/light_switch{
- pixel_x = -26;
- pixel_y = 26
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/iron,
-/area/hydroponics)
"giD" = (
/obj/structure/chair/wood,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -39761,6 +38462,9 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/science/nanite)
+"giL" = (
+/turf/open/floor/iron,
+/area/security/courtroom)
"gjg" = (
/obj/structure/disposalpipe/segment,
/obj/item/radio/intercom{
@@ -39786,6 +38490,48 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/atmospherics_engine)
+"gjO" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/port)
+"gjQ" = (
+/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,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/science/research)
+"gko" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/airalarm/directional/east,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/service)
"gkv" = (
/obj/machinery/computer/bank_machine,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -39804,6 +38550,14 @@
},
/turf/open/space,
/area/space/nearstation)
+"gkx" = (
+/obj/machinery/suit_storage_unit/ce,
+/obj/machinery/airalarm/directional/east,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/crew_quarters/heads/chief)
"glF" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -39822,6 +38576,14 @@
"glX" = (
/turf/open/indestructible/sound/pool/end,
/area/crew_quarters/fitness/recreation)
+"gmk" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/light/small,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark,
+/area/security/execution/transfer)
"gmp" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/requests_console{
@@ -39832,20 +38594,6 @@
},
/turf/open/floor/plating,
/area/janitor/custodian)
-"gmt" = (
-/obj/effect/turf_decal{
- dir = 1
- },
-/turf/open/floor/prison,
-/area/security/prison)
-"gmH" = (
-/obj/docking_port/stationary/random{
- dir = 4;
- id = "pod_lavaland2";
- name = "lavaland"
- },
-/turf/open/space/basic,
-/area/space)
"gmL" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/machinery/atmospherics/components/unary/portables_connector/layer2{
@@ -39860,6 +38608,13 @@
},
/turf/open/floor/plating,
/area/security/checkpoint/medical)
+"gne" = (
+/obj/structure/chair/foldable,
+/obj/machinery/airalarm/directional/north{
+ pixel_y = 23
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"gnF" = (
/obj/machinery/light_switch{
pixel_x = 26;
@@ -39919,6 +38674,16 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/heads/chief)
+"gok" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/turf/open/floor/iron,
+/area/engine/break_room)
"gon" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -39935,12 +38700,6 @@
},
/turf/open/floor/iron,
/area/maintenance/port/fore)
-"goo" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/brig)
"gor" = (
/obj/effect/turf_decal/tile/blue{
dir = 1
@@ -39948,6 +38707,25 @@
/obj/item/kirbyplants/random,
/turf/open/floor/iron/white,
/area/medical/medbay/central)
+"goz" = (
+/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/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/security/brig)
"goL" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -39955,6 +38733,20 @@
},
/turf/open/floor/iron,
/area/maintenance/aft)
+"goR" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/chair/office{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 8
+ },
+/area/ai_monitored/security/armory)
"goT" = (
/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{
filter_type = "n2";
@@ -39963,6 +38755,20 @@
/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/atmospherics_engine)
+"gpk" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_x = -26
+ },
+/turf/open/floor/iron{
+ heat_capacity = 1e+006
+ },
+/area/crew_quarters/locker)
"gpu" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -39973,6 +38779,22 @@
},
/turf/open/floor/iron,
/area/science/robotics/mechbay)
+"gpv" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/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
+ },
+/turf/open/floor/iron,
+/area/quartermaster/storage)
"gpK" = (
/obj/structure/table/glass,
/obj/effect/turf_decal/trimline/black/filled/line{
@@ -39980,6 +38802,18 @@
},
/turf/open/floor/iron,
/area/maintenance/department/science)
+"gpR" = (
+/obj/effect/turf_decal/tile/red/anticorner/contrasted,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/item/radio/intercom{
+ broadcasting = 1;
+ frequency = 1423;
+ listening = 0;
+ name = "Interrogation Intercom";
+ pixel_y = -24
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"gqc" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -39993,17 +38827,26 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/hallway/secondary/command)
-"gqn" = (
+"gqe" = (
+/obj/machinery/airalarm/directional/south{
+ pixel_y = -22
+ },
+/turf/closed/wall/r_wall,
+/area/security/prison/shielded)
+"gqp" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "brigfront";
+ name = "Brig Blast door"
+ },
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
},
-/turf/open/floor/iron,
-/area/hallway/primary/port)
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/warden)
"gqv" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -40017,6 +38860,19 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/security/nuke_storage)
+"gqD" = (
+/obj/structure/table/reinforced,
+/obj/item/stock_parts/cell/high,
+/obj/item/stock_parts/cell/high,
+/obj/machinery/cell_charger,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"gqL" = (
/obj/machinery/atmospherics/components/binary/pump{
name = "Port Mix to Engine"
@@ -40024,6 +38880,15 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/atmos)
+"gqY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/security/detectives_office)
"gqZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -40033,6 +38898,27 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat_interior)
+"grf" = (
+/obj/effect/spawner/structure/window/reinforced/prison,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "Prisongate"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/security/prison)
+"gri" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/effect/turf_decal/tile/blue/half{
+ dir = 1
+ },
+/turf/open/floor/iron/large,
+/area/security/courtroom)
"grk" = (
/obj/machinery/button/door{
id = "bridgedoors";
@@ -40101,6 +38987,34 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"grC" = (
+/obj/structure/safe,
+/obj/item/clothing/neck/stethoscope,
+/obj/item/book{
+ desc = "An undeniably handy book.";
+ icon_state = "bookknock";
+ name = "A Simpleton's Guide to Safe-cracking with Stethoscopes"
+ },
+/obj/item/stack/sheet/mineral/diamond,
+/obj/item/stack/spacecash/c1000,
+/obj/item/stack/spacecash/c1000,
+/obj/item/stack/spacecash/c1000,
+/obj/item/stack/spacecash/c1000,
+/obj/item/stack/spacecash/c1000,
+/obj/item/stack/spacecash/c500,
+/obj/item/stack/spacecash/c500,
+/obj/item/stack/spacecash/c500,
+/obj/item/stack/spacecash/c500,
+/obj/item/stack/spacecash/c500,
+/obj/machinery/light/small,
+/obj/item/gun/ballistic/automatic/pistol/deagle,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/machinery/status_display/evac{
+ pixel_y = -32
+ },
+/obj/structure/closet/crate/goldcrate,
+/turf/open/floor/iron/dark,
+/area/security/nuke_storage)
"grG" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -40110,6 +39024,10 @@
heat_capacity = 1e+006
},
/area/maintenance/port/aft)
+"grN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/iron/techmaint,
+/area/security/main)
"grZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/start/cargo_technician,
@@ -40119,21 +39037,21 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/quartermaster/warehouse)
-"gsi" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/brown/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/quartermaster/miningoffice)
"gsp" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 4
},
/turf/open/floor/iron,
/area/medical/patients_rooms)
+"gsP" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/structure/chair/fancy/bench/right{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/security/prison)
"gsS" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
@@ -40164,6 +39082,17 @@
/obj/machinery/computer/nanite_chamber_control,
/turf/open/floor/iron/dark,
/area/science/nanite)
+"gtt" = (
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/checkpoint/escape)
"gtv" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -40253,15 +39182,6 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/science/misc_lab)
-"guD" = (
-/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/opposingcorners,
-/turf/open/floor/iron/white,
-/area/crew_quarters/cryopods)
"guL" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -40312,6 +39232,36 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/science/research)
+"gvH" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/bag/tray,
+/obj/item/storage/box/donkpockets{
+ pixel_x = 2;
+ pixel_y = 1
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/prison,
+/area/security/prison)
+"gvO" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ 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/iron{
+ heat_capacity = 1e+006
+ },
+/area/maintenance/starboard)
"gvP" = (
/obj/structure/table/reinforced,
/obj/structure/cable/yellow{
@@ -40349,6 +39299,16 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/white,
/area/crew_quarters/heads/hor)
+"gwp" = (
+/obj/structure/chair/fancy/sofa/old/right{
+ color = "#742925"
+ },
+/obj/effect/landmark/start/detective,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/wood,
+/area/security/detectives_office)
"gwt" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -40367,6 +39327,14 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/aisat)
+"gwv" = (
+/obj/item/soap/nanotrasen,
+/obj/machinery/shower{
+ dir = 8
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/noslip/standard,
+/area/security/prison)
"gwy" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -40414,21 +39382,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/science/research)
-"gwR" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/hallway/primary/fore)
"gwW" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -40454,6 +39407,25 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/turf/open/floor/wood,
/area/bridge/showroom/corporate)
+"gxh" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "garbage"
+ },
+/obj/structure/sign/warning/vacuum{
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"gxr" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/security/checkpoint/customs)
"gxK" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 1
@@ -40477,14 +39449,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/office)
-"gxZ" = (
-/obj/structure/bodycontainer/morgue,
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/detectives_office)
"gyj" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -40527,6 +39491,12 @@
},
/turf/open/floor/iron,
/area/engine/storage)
+"gyK" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/security/courtroom)
"gyM" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -40573,15 +39543,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/maintenance/port/fore)
-"gzi" = (
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/vehicle/ridden/secway,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -24
- },
-/turf/open/floor/iron/dark,
-/area/ai_monitored/security/armory)
"gzF" = (
/obj/effect/turf_decal/delivery,
/obj/structure/disposalpipe/segment{
@@ -40633,15 +39594,6 @@
/obj/effect/turf_decal/tile/red/half/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint/escape)
-"gAD" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Central Access"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/turf/open/floor/prison,
-/area/security/prison)
"gAG" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -26
@@ -40682,19 +39634,6 @@
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/turf/open/floor/iron,
/area/science/research)
-"gAR" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/sign/directions/engineering{
- desc = "A sign that shows there are doors here. There are doors everywhere!";
- icon_state = "doors";
- name = "WARNING: EXTERNAL AIRLOCK";
- pixel_x = 32
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/execution/transfer)
"gBf" = (
/obj/effect/turf_decal/tile/brown/half/contrasted{
dir = 8
@@ -40721,19 +39660,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/wood,
/area/crew_quarters/heads/captain)
-"gBR" = (
-/obj/structure/disposalpipe/segment,
-/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/neutral{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/hallway/primary/central)
"gBU" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/mapping_helpers/dead_body_placer,
@@ -40758,48 +39684,10 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/science/xenobiology)
-"gCA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/hallway/secondary/entry)
-"gCG" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/iron,
-/area/security/brig)
"gCP" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron/dark,
/area/crew_quarters/heads/cmo)
-"gCR" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/iron/white/corner,
-/area/hallway/primary/aft)
"gCZ" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -40819,16 +39707,18 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/locker)
-"gDm" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+"gDt" = (
+/obj/structure/table,
+/obj/item/storage/firstaid/regular,
+/obj/item/radio/intercom{
+ dir = 8;
+ pixel_x = 28
},
-/obj/structure/disposalpipe/segment{
- dir = 6
+/obj/machinery/light/small{
+ dir = 4
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
-/area/hallway/primary/fore)
+/area/medical/medbay/lobby)
"gDy" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -40861,6 +39751,31 @@
},
/turf/open/floor/catwalk_floor/iron_dark,
/area/maintenance/disposal/incinerator)
+"gEf" = (
+/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{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/prison/dark,
+/area/security/prison)
+"gEn" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/quartermaster/sorting)
"gEC" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -40878,6 +39793,15 @@
"gEX" = (
/turf/closed/wall,
/area/medical/exam_room)
+"gEY" = (
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/quartermaster/storage)
"gFa" = (
/obj/machinery/light_switch{
pixel_x = 26;
@@ -40905,25 +39829,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint/customs/auxiliary)
-"gFv" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/service)
"gFA" = (
/obj/machinery/door/airlock/science{
name = "exploration preperation room";
@@ -40947,31 +39852,6 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
-"gFD" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/sorting/wrap{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown/half/contrasted{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/quartermaster/warehouse)
-"gGf" = (
-/obj/machinery/suit_storage_unit/security,
-/obj/machinery/light/small,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/brig)
"gGj" = (
/obj/machinery/food_cart/coffee,
/obj/machinery/light/small{
@@ -40993,19 +39873,41 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/maintenance/port)
-"gGN" = (
-/obj/item/radio/intercom{
- pixel_y = -28
+"gGU" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
},
-/turf/open/floor/prison,
-/area/security/prison)
-"gHl" = (
-/obj/structure/chair/office{
+/turf/open/floor/carpet/red,
+/area/security/detectives_office)
+"gGZ" = (
+/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
},
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 2;
+ name = "RD's Junction";
+ sortType = 13
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
+"gHq" = (
+/obj/machinery/disposal/bin,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 32
+ },
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/trunk,
/turf/open/floor/iron/dark,
-/area/security/brig)
+/area/crew_quarters/heads/chief)
"gHw" = (
/obj/structure/chair/office{
dir = 4
@@ -41022,21 +39924,36 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/bridge)
-"gHZ" = (
-/obj/effect/spawner/structure/window/reinforced,
+"gHE" = (
+/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
- icon_state = "1-2"
+ icon_state = "4-8"
},
/obj/structure/cable/yellow{
- icon_state = "0-2"
+ icon_state = "1-8"
},
-/turf/open/floor/plating,
-/area/quartermaster/miningoffice)
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron,
+/area/quartermaster/warehouse)
"gIg" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/turf/open/floor/iron,
/area/medical/medbay/central)
+"gIo" = (
+/obj/machinery/airalarm/directional/south{
+ pixel_y = -22
+ },
+/obj/structure/closet/crate/goldcrate,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron/dark,
+/area/security/nuke_storage)
"gIq" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -41064,6 +39981,22 @@
broken = 1
},
/area/crew_quarters/dorms)
+"gIE" = (
+/obj/structure/bed/double,
+/obj/item/bedsheet/double/hos,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/carpet/red,
+/area/crew_quarters/heads/hos)
+"gIM" = (
+/obj/structure/lattice,
+/obj/machinery/camera/motion{
+ c_tag = "Armory - External";
+ dir = 10
+ },
+/turf/open/space,
+/area/space/nearstation)
"gIR" = (
/obj/structure/flora/ausbushes/fullgrass,
/obj/structure/flora/ausbushes/grassybush,
@@ -41154,6 +40087,29 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/gateway)
+"gIZ" = (
+/obj/effect/turf_decal/delivery/red,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/security{
+ aiControlDisabled = 1;
+ id_tag = "prisonereducation";
+ name = "Prison access";
+ req_one_access_txt = "1;4"
+ },
+/turf/open/floor/iron/dark,
+/area/security/prison)
"gJa" = (
/obj/machinery/light/small{
dir = 4
@@ -41189,25 +40145,6 @@
},
/turf/open/floor/iron,
/area/medical/genetics)
-"gJy" = (
-/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/half/contrasted,
-/turf/open/floor/iron,
-/area/engine/break_room)
-"gJE" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/security/warden)
"gJO" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
@@ -41222,13 +40159,6 @@
/obj/effect/turf_decal/tile/blue,
/turf/open/floor/iron/white,
/area/medical/medbay/aft)
-"gJS" = (
-/obj/effect/turf_decal/delivery,
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/iron,
-/area/security/brig)
"gJU" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -41247,6 +40177,26 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/starboard/aft)
+"gJV" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/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/quartermaster/miningoffice)
+"gJW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/effect/turf_decal/tile/neutral,
+/obj/structure/cable/yellow,
+/turf/open/floor/iron,
+/area/hallway/primary/starboard)
"gJZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -41265,6 +40215,13 @@
heat_capacity = 1e+006
},
/area/maintenance/port/aft)
+"gKq" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron/dark,
+/area/security/main)
"gKA" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
@@ -41303,6 +40260,18 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/quartermaster/sorting)
+"gLG" = (
+/obj/effect/turf_decal/stripes/openup{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted,
+/obj/machinery/airalarm/directional/east{
+ pixel_x = 23
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/ai_monitored/security/armory)
"gLW" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -41316,19 +40285,6 @@
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plating,
/area/maintenance/department/medical/central)
-"gMa" = (
-/obj/effect/spawner/structure/window/reinforced/prison,
-/obj/machinery/door/poddoor/preopen{
- id = "Prisongate"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/space/nearstation)
"gMg" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/obj/machinery/power/apc/auto_name/directional/west{
@@ -41342,6 +40298,30 @@
heat_capacity = 1e+006
},
/area/medical/storage)
+"gMm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/starboard)
+"gNg" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"gNm" = (
/obj/machinery/light,
/obj/machinery/firealarm/directional/south,
@@ -41356,6 +40336,13 @@
/obj/effect/turf_decal/siding/white,
/turf/open/floor/glass/reinforced,
/area/hallway/secondary/entry)
+"gNF" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/quartermaster/storage)
"gNG" = (
/obj/structure/table,
/obj/item/camera,
@@ -41380,46 +40367,82 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
+"gNS" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "idquarters";
+ name = "Director's Quarters Shutters"
+ },
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/crew_quarters/heads/hor)
"gNU" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/atmospherics_engine)
-"gOj" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
+"gOk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
},
-/obj/machinery/door/airlock/security/glass{
- name = "Security Office";
- req_one_access_txt = "1;4"
+/turf/open/floor/iron,
+/area/hallway/primary/starboard)
+"gOp" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/firealarm/directional/east,
+/obj/machinery/light{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/turf/open/floor/iron/smooth,
+/area/security/main)
+"gOq" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Maintenance Hatch";
+ req_one_access_txt = "12;5;6"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/iron,
-/area/security/main)
-"gOk" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/maintenance/aft)
+"gOs" = (
+/obj/effect/turf_decal/delivery,
+/obj/item/kirbyplants{
+ icon_state = "plant-22";
+ name = "legally obbligatory mapper potted plant"
},
-/obj/effect/turf_decal/tile/red/half/contrasted{
+/turf/open/floor/iron,
+/area/hallway/secondary/entry)
+"gOB" = (
+/obj/machinery/disposal/bin,
+/obj/machinery/light,
+/obj/machinery/newscaster{
+ pixel_y = -32
+ },
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/trunk{
dir = 8
},
/turf/open/floor/iron,
-/area/hallway/primary/starboard)
+/area/quartermaster/storage)
+"gOI" = (
+/obj/structure/cable/yellow,
+/obj/machinery/power/apc/auto_name/directional/south,
+/turf/open/floor/wood,
+/area/crew_quarters/heads/captain)
"gOU" = (
/obj/structure/table,
/obj/item/reagent_containers/glass/beaker/cryoxadone{
@@ -41447,6 +40470,25 @@
/obj/machinery/light,
/turf/open/floor/iron,
/area/medical/patients_rooms)
+"gPb" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/starboard)
"gPj" = (
/obj/structure/chair/office/light{
dir = 8
@@ -41599,9 +40641,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/atmos)
-"gPU" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/starboard)
"gPX" = (
/obj/machinery/door/window/brigdoor/northleft{
name = "Captain's Desk";
@@ -41668,19 +40707,41 @@
},
/turf/open/floor/iron,
/area/medical/medbay/aft)
-"gRu" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
+"gRj" = (
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/tcommsat/server)
+"gRk" = (
+/obj/structure/table/reinforced,
+/obj/machinery/reagentgrinder{
+ pixel_x = -1;
+ pixel_y = 12
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+/obj/item/reagent_containers/glass/bucket{
+ pixel_x = 9;
+ pixel_y = 3
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/obj/item/cultivator{
+ pixel_x = -2;
+ pixel_y = -1
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/hallway/primary/fore)
+/obj/item/shovel/spade{
+ pixel_x = -5;
+ pixel_y = -4
+ },
+/obj/effect/turf_decal/bot,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 10
+ },
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 8
+ },
+/turf/open/floor/prison/dark,
+/area/security/prison)
"gRy" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/mob/living/simple_animal/bot/medbot{
@@ -41702,6 +40763,21 @@
/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/storage)
+"gSh" = (
+/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 = 8
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"gSi" = (
/turf/closed/wall/r_wall,
/area/science/misc_lab)
@@ -41719,24 +40795,15 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/ai_monitored/storage/eva)
-"gSx" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/door/airlock/atmos{
- name = "Atmospherics Access";
- req_one_access_txt = "24;10"
+"gSB" = (
+/obj/structure/railing{
+ dir = 8
},
-/obj/effect/turf_decal/stripes/line{
- dir = 1
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 8
},
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/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,
-/area/engine/atmos)
+/turf/open/floor/prison/dark,
+/area/security/prison)
"gST" = (
/obj/structure/bodycontainer/morgue,
/obj/structure/sign/poster/official/ian{
@@ -41745,15 +40812,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/chapel/office)
-"gSU" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/security/brig)
"gTm" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 6
@@ -41795,33 +40853,15 @@
},
/turf/open/floor/iron/white,
/area/crew_quarters/heads/hor)
-"gTK" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/door/airlock/security/glass{
- id_tag = "cardoor";
- name = "Cargo Cell";
- req_access_txt = "63"
- },
+"gTV" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/bot,
+/obj/machinery/fax/eng,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
-/area/security/checkpoint/supply)
+/area/engine/break_room)
"gUb" = (
/obj/effect/turf_decal/tile/brown/half/contrasted{
dir = 4
@@ -41895,19 +40935,35 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/aisat)
-"gVN" = (
-/obj/structure/cable/yellow{
- icon_state = "0-4"
+"gVw" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/power/apc/auto_name/directional/west{
- pixel_x = -24
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
},
-/obj/effect/turf_decal/tile/red/half/contrasted{
+/obj/effect/turf_decal/stripes/openup{
dir = 1
},
/turf/open/floor/iron,
-/area/security/main)
+/area/ai_monitored/security/armory)
+"gVS" = (
+/obj/item/kirbyplants/random,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/camera/directional/west{
+ c_tag = "Engineering - Foyer";
+ name = "engineering camera"
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/obj/structure/disposalpipe/junction/flip{
+ dir = 2
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"gVV" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -41989,31 +41045,35 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/service)
-"gWE" = (
-/obj/structure/closet/l3closet/virology,
-/obj/effect/turf_decal/box,
-/obj/machinery/airalarm/directional/east,
-/turf/open/floor/iron/grid/steel,
-/area/medical/virology)
-"gXl" = (
-/obj/machinery/button/door{
- id = "brigprison";
- name = "Prison Lockdown";
- pixel_x = 26;
- pixel_y = 26;
- req_access_txt = "63"
+"gWz" = (
+/obj/machinery/door/airlock/atmos/glass{
+ name = "Atmospherics Desk";
+ req_access_txt = "24"
},
/obj/structure/cable/yellow{
icon_state = "4-8"
},
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/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/atmospherics/pipe/simple/supply/hidden/layer2{
+/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/iron,
-/area/security/brig)
+/area/engine/atmos)
+"gWE" = (
+/obj/structure/closet/l3closet/virology,
+/obj/effect/turf_decal/box,
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/iron/grid/steel,
+/area/medical/virology)
"gXJ" = (
/obj/effect/landmark/event_spawn,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -42035,12 +41095,6 @@
},
/turf/open/floor/iron,
/area/science/misc_lab)
-"gYm" = (
-/obj/structure/table/wood,
-/obj/machinery/recharger,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/crew_quarters/heads/hos)
"gYn" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -42061,6 +41115,16 @@
/obj/effect/turf_decal/tile/purple,
/turf/open/floor/iron/white,
/area/science/shuttledock)
+"gYy" = (
+/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/dark/smooth_large,
+/area/security/main)
"gYN" = (
/turf/open/floor/carpet/blue,
/area/crew_quarters/dorms)
@@ -42112,6 +41176,29 @@
},
/turf/open/floor/glass/reinforced,
/area/hallway/secondary/entry)
+"gZt" = (
+/obj/machinery/sparker{
+ id = "executionflash";
+ pixel_x = -25
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/flasher{
+ id = "justiceflash";
+ name = "mounted justice flash";
+ pixel_x = -28;
+ pixel_y = -10
+ },
+/turf/open/floor/prison/dark,
+/area/security/execution/transfer)
+"gZC" = (
+/obj/machinery/airalarm/directional/east,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/fore)
"gZL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -42127,11 +41214,6 @@
},
/turf/open/floor/iron,
/area/maintenance/port/fore)
-"gZO" = (
-/obj/structure/closet/secure_closet/evidence,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/brig)
"gZT" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -42191,9 +41273,22 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/bridge)
-"hba" = (
-/obj/structure/curtain,
-/turf/open/floor/iron/freezer,
+"haw" = (
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "atmoslock";
+ name = "Atmospherics Lockdown Blast door"
+ },
+/turf/open/floor/plating,
+/area/engine/atmos)
+"hbp" = (
+/obj/structure/easel,
+/obj/item/canvas/twentythree_twentythree,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/prison,
/area/security/prison)
"hby" = (
/obj/effect/turf_decal/stripes/line{
@@ -42218,6 +41313,26 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/transit_tube)
+"hbN" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/door/window/southright{
+ base_state = "left";
+ dir = 1;
+ icon_state = "left";
+ name = "Disabler storage";
+ req_one_access_txt = "1;4"
+ },
+/obj/effect/loot_jobscale/armoury/disabler,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/structure/rack,
+/turf/open/floor/iron/dark,
+/area/ai_monitored/security/armory)
"hbR" = (
/obj/structure/table/reinforced,
/obj/item/stack/sheet/iron/fifty,
@@ -42272,6 +41387,14 @@
/obj/machinery/holopad,
/turf/open/floor/iron,
/area/medical/genetics)
+"hcJ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/nanotrasen{
+ pixel_x = 32;
+ pixel_y = -32
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"hcP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -42288,33 +41411,19 @@
/obj/effect/spawner/structure/window/plasma/reinforced,
/turf/open/floor/plating,
/area/engine/engineering)
-"hcX" = (
-/obj/structure/table/reinforced,
-/obj/item/book/manual/wiki/security_space_law,
-/obj/item/flashlight/seclite,
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/main)
-"hdh" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/turf/open/floor/prison,
-/area/security/prison)
"hdm" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating{
broken = 1
},
/area/maintenance/starboard)
+"hdq" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/prison,
+/area/security/prison)
"hdv" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -42348,20 +41457,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat_interior)
-"hfk" = (
-/obj/machinery/door/window/brigdoor/northright{
- dir = 2;
- name = "Warden's Desk";
- req_access_txt = "3"
- },
-/obj/machinery/door/window/southright{
- dir = 1;
- name = "Warden's Desk"
- },
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/turf/open/floor/iron,
-/area/security/warden)
"hfG" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/obj/effect/turf_decal/tile/neutral{
@@ -42369,6 +41464,24 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/command)
+"hfH" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/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/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/prison/dark,
+/area/security/prison)
"hfI" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -42406,6 +41519,46 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/aisat)
+"hfP" = (
+/obj/structure/closet/secure_closet/lethalshots,
+/obj/item/storage/box/breacherslug,
+/obj/item/storage/box/breacherslug,
+/obj/item/storage/box/breacherslug,
+/obj/effect/turf_decal/bot,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/ammo_box/magazine/wt550m9{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/obj/item/ammo_box/magazine/wt550m9{
+ pixel_x = 4
+ },
+/obj/item/ammo_box/magazine/wt550m9{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/ammo_box/magazine/wt550m9{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/obj/item/ammo_box/magazine/wt550m9{
+ pixel_x = 4
+ },
+/obj/item/ammo_box/magazine/wt550m9{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/machinery/light,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/ai_monitored/security/armory)
"hfT" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden{
dir = 9
@@ -42427,6 +41580,11 @@
},
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai)
+"hge" = (
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/checkpoint/science/research)
"hgl" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -42466,6 +41624,15 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"hgR" = (
+/obj/effect/turf_decal/tile/red,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/iron/dark/smooth_corner,
+/area/security/main)
"hgU" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/general/hidden{
@@ -42473,6 +41640,17 @@
},
/turf/open/floor/plating,
/area/tcommsat/server)
+"hgY" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ initial_gas_mix = "o2=0.01;n2=0.01;TEMP=2.7";
+ initial_temperature = 2.7;
+ luminosity = 2
+ },
+/area/security/main)
"hha" = (
/obj/machinery/vending/coffee,
/obj/machinery/firealarm/directional/west,
@@ -42483,6 +41661,11 @@
heat_capacity = 1e+006
},
/area/science/research)
+"hhb" = (
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/warden)
"hhd" = (
/obj/machinery/light{
dir = 4
@@ -42586,13 +41769,6 @@
},
/turf/open/floor/catwalk_floor/iron_dark,
/area/maintenance/disposal/incinerator)
-"hir" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/security/brig)
"hiA" = (
/obj/effect/landmark/start/station_engineer,
/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted,
@@ -42648,36 +41824,28 @@
},
/turf/open/floor/iron,
/area/maintenance/starboard/aft)
-"hjn" = (
-/obj/structure/table/glass,
-/obj/machinery/door/window/eastleft{
- dir = 1;
- name = "First-Aid Supplies";
- red_alert_access = 1;
- req_access_txt = "5"
+"hjk" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
+/obj/machinery/airalarm/directional/east,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral{
dir = 4
},
-/obj/effect/loot_jobscale/medical/medkits{
- pixel_x = -6;
- pixel_y = 2
- },
-/obj/effect/loot_jobscale/medical/medkits{
- pixel_x = 5
- },
-/obj/machinery/camera/autoname{
- dir = 5;
- network = list("ss13","medbay")
- },
/turf/open/floor/iron,
-/area/medical/storage)
-"hjy" = (
+/area/hallway/secondary/service)
+"hjF" = (
/obj/structure/cable/yellow{
- icon_state = "1-2"
+ icon_state = "4-8"
},
-/turf/open/floor/iron,
-/area/security/brig)
+/obj/machinery/airalarm/directional/north,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/prison/dark,
+/area/security/prison)
"hjP" = (
/obj/effect/turf_decal/tile/yellow/anticorner/contrasted,
/turf/open/floor/iron,
@@ -42731,10 +41899,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/bar/atrium)
-"hll" = (
-/obj/structure/closet/crate/bin,
-/turf/open/floor/prison,
-/area/security/prison)
"hlo" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -42749,15 +41913,21 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"hlV" = (
-/obj/structure/table/wood,
-/obj/item/radio/intercom{
- pixel_x = -26
+"hlM" = (
+/obj/structure/chair{
+ dir = 1
},
-/obj/item/paper_bin,
-/obj/item/flashlight/lamp,
-/turf/open/floor/wood,
-/area/lawoffice)
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/dark,
+/area/security/courtroom)
"hlY" = (
/obj/structure/table/wood,
/obj/item/folder,
@@ -42883,6 +42053,32 @@
},
/turf/open/floor/catwalk_floor/iron,
/area/engine/atmospherics_engine)
+"hno" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced/prison,
+/turf/open/floor/plating,
+/area/quartermaster/miningoffice)
+"hnF" = (
+/obj/structure/sign/nanotrasen{
+ pixel_x = 32;
+ pixel_y = -32
+ },
+/obj/machinery/light/small,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/kirbyplants{
+ icon_state = "plant-22";
+ name = "legally obbligatory mapper potted plant"
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/bridge)
"hnI" = (
/obj/structure/table/wood,
/obj/item/food/grown/flower/harebell{
@@ -43018,21 +42214,35 @@
/obj/effect/turf_decal/tile/purple/half/contrasted,
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
+"hpj" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/security/main)
"hpl" = (
/obj/machinery/telecomms/processor/preset_one,
/obj/effect/turf_decal/tile/purple/anticorner/contrasted,
/turf/open/floor/iron/white/telecomms,
/area/tcommsat/server)
-"hpn" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
+"hpo" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
},
-/obj/effect/turf_decal/tile/red{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
+/turf/open/floor/iron/dark,
+/area/crew_quarters/heads/chief)
"hpt" = (
/obj/structure/tank_dispenser/oxygen,
/obj/effect/decal/cleanable/cobweb,
@@ -43049,16 +42259,22 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"hpL" = (
+"hpY" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/tile/purple/half/contrasted{
- dir = 8
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/turf/open/floor/iron,
-/area/quartermaster/miningoffice)
+/area/crew_quarters/cryopods)
"hqf" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
@@ -43068,6 +42284,15 @@
},
/turf/open/floor/iron/dark/textured_half,
/area/maintenance/disposal/incinerator)
+"hqo" = (
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/quartermaster/miningoffice)
"hqP" = (
/obj/structure/table,
/obj/structure/cable/yellow{
@@ -43141,31 +42366,6 @@
},
/turf/open/floor/iron,
/area/maintenance/aft)
-"hrI" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/shower,
-/turf/open/floor/noslip/standard,
-/area/security/prison)
-"hss" = (
-/obj/structure/chair/fancy/comfy{
- color = "#666666";
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/landmark/start/head_of_security,
-/obj/structure/disposalpipe/segment{
- 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/carpet/red,
-/area/crew_quarters/heads/hos)
"hst" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -43194,39 +42394,24 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/catwalk_floor/iron_smooth,
/area/engine/atmos)
-"htg" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/engineering{
- name = "Engineering Foyer";
- req_one_access_txt = "32"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
+"hsE" = (
+/obj/machinery/power/apc/auto_name/directional/east,
/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
+ icon_state = "0-8"
},
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
+/turf/open/floor/circuit/green,
+/area/security/nuke_storage)
+"hta" = (
+/obj/machinery/door/airlock{
+ name = "Courtroom"
},
/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/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
},
-/turf/open/floor/iron,
-/area/engine/break_room)
+/turf/open/floor/iron/dark,
+/area/security/courtroom)
"htI" = (
/obj/structure/window/reinforced{
dir = 8
@@ -43278,6 +42463,17 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/quartermaster/storage)
+"huM" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "Prisongate"
+ },
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced/prison,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/security/prison)
"huU" = (
/obj/structure/chair{
dir = 4
@@ -43287,37 +42483,10 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/engineering)
-"huX" = (
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
+"hvi" = (
+/obj/effect/spawner/structure/window/reinforced/tinted,
/turf/open/floor/plating,
-/area/engine/storage_shared)
-"huY" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/door/airlock/atmos{
- name = "Atmospherics Access";
- req_one_access_txt = "24;10"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- 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,
-/area/engine/break_room)
+/area/hallway/primary/starboard)
"hvj" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -43350,17 +42519,6 @@
},
/turf/open/floor/iron/dark/telecomms,
/area/tcommsat/server)
-"hvn" = (
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "brigfront";
- name = "Brig Blast door"
- },
-/turf/open/floor/plating,
-/area/security/brig)
"hvE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -43375,24 +42533,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/atmos)
-"hwq" = (
-/obj/structure/table/wood,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/crew_quarters/heads/hos)
-"hwA" = (
-/obj/effect/spawner/structure/window/reinforced/prison,
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "Prisongate"
- },
-/turf/open/floor/plating,
-/area/security/prison)
"hxc" = (
/obj/structure/chair{
dir = 4
@@ -43425,6 +42565,55 @@
},
/turf/open/floor/iron/dark,
/area/medical/morgue)
+"hxk" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/structure/table/reinforced,
+/obj/item/stack/package_wrap,
+/obj/item/storage/secure/briefcase,
+/turf/open/floor/iron/dark/side,
+/area/security/main)
+"hxv" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/obj/item/storage/secure/safe{
+ name = "evidence safe";
+ pixel_x = 6;
+ pixel_y = 28
+ },
+/obj/item/storage/box/sec_barricades,
+/obj/item/storage/box/teargas{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/clothing/head/helmet/toggleable/justice,
+/turf/open/floor/iron/dark,
+/area/ai_monitored/security/armory)
+"hxz" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/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,
+/area/security/brig)
"hxB" = (
/obj/structure/table,
/obj/item/camera_film{
@@ -43461,6 +42650,24 @@
},
/turf/open/floor/iron,
/area/crew_quarters/toilet/restrooms)
+"hyj" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/starboard)
"hyp" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -43513,15 +42720,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/science/robotics/lab)
-"hzF" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/kirbyplants/random,
-/obj/machinery/airalarm/directional/east{
- pixel_x = 24
- },
-/obj/effect/turf_decal/tile/brown/anticorner/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/sorting)
"hzJ" = (
/obj/structure/table/reinforced,
/obj/item/folder/yellow,
@@ -43622,16 +42820,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/atmos)
-"hBO" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/space/nearstation)
-"hCo" = (
-/obj/machinery/computer/cryopod{
- pixel_x = 32
- },
-/obj/machinery/cryopod,
-/turf/open/floor/prison,
-/area/security/prison)
"hCt" = (
/obj/item/kirbyplants/random,
/obj/effect/turf_decal/stripes/line{
@@ -43645,6 +42833,11 @@
},
/turf/open/floor/catwalk_floor/iron,
/area/engine/atmospherics_engine)
+"hCv" = (
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/engine/engineering)
"hCG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -43686,6 +42879,16 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/locker)
+"hDm" = (
+/obj/machinery/cryopod,
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/prison/dark,
+/area/security/prison)
"hDn" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -43697,15 +42900,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"hDH" = (
-/obj/effect/turf_decal/tile/red/anticorner/contrasted{
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/security/prison)
"hDK" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -43748,6 +42942,24 @@
},
/turf/open/floor/iron,
/area/medical/patients_rooms)
+"hEk" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/disposaloutlet{
+ name = "Evidence Chute Output"
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 2
+ },
+/obj/machinery/airalarm/directional/north{
+ pixel_y = 22
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/security/brig)
"hEl" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -43779,6 +42991,16 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/engine/engineering)
+"hEF" = (
+/obj/item/kirbyplants{
+ icon_state = "plant-22";
+ name = "legally obbligatory mapper potted plant"
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
"hEN" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -43788,6 +43010,19 @@
},
/turf/open/floor/catwalk_floor/iron_smooth,
/area/tcommsat/server)
+"hFh" = (
+/obj/effect/turf_decal/tile/neutral/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
+ },
+/turf/open/floor/iron,
+/area/crew_quarters/locker)
"hFo" = (
/obj/structure/lattice,
/obj/structure/disposalpipe/segment{
@@ -43815,6 +43050,18 @@
},
/turf/open/floor/iron,
/area/maintenance/port/fore)
+"hFC" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/item/radio/intercom{
+ dir = 8;
+ pixel_y = -26
+ },
+/obj/machinery/camera/autoname/directional/south{
+ network = list("ss13","security")
+ },
+/turf/open/floor/iron/smooth,
+/area/security/main)
"hFD" = (
/obj/effect/turf_decal/tile/green/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -43875,6 +43122,21 @@
},
/turf/open/floor/iron/white,
/area/medical/virology)
+"hGJ" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/security/main)
"hGU" = (
/obj/effect/turf_decal/tile/blue{
dir = 8
@@ -43896,14 +43158,6 @@
},
/turf/open/floor/catwalk_floor/iron_smooth,
/area/tcommsat/server)
-"hHx" = (
-/obj/structure/chair/office,
-/obj/effect/landmark/start/security_officer,
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/security/main)
"hHG" = (
/obj/structure/chair/office{
dir = 1
@@ -43911,6 +43165,17 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/bridge)
+"hHN" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Security Maintenance";
+ req_access_txt = "63"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/security/brig)
"hHV" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 8
@@ -43924,6 +43189,34 @@
},
/turf/open/floor/iron/white/corner,
/area/engine/atmospherics_engine)
+"hIb" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/obj/item/kirbyplants/random,
+/obj/machinery/camera/autoname/directional/east{
+ network = list("ss13","rd")
+ },
+/turf/open/floor/iron/dark,
+/area/security/prison)
+"hIg" = (
+/obj/structure/cable/yellow,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/directional/south{
+ c_tag = "Dormitories - Center";
+ name = "dormitories camera"
+ },
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron{
+ heat_capacity = 1e+006
+ },
+/area/crew_quarters/dorms)
"hIi" = (
/obj/machinery/button/crematorium{
id = "cremawheat";
@@ -43964,19 +43257,6 @@
},
/turf/open/floor/iron,
/area/medical/genetics)
-"hJb" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/iron,
-/area/security/brig)
"hJg" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
@@ -44001,6 +43281,13 @@
},
/turf/open/floor/iron,
/area/medical/genetics)
+"hJo" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/prison/dark,
+/area/security/execution/transfer)
"hJs" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -44018,20 +43305,19 @@
},
/turf/open/floor/iron/white,
/area/science/mixing)
-"hJN" = (
-/obj/machinery/airalarm/directional/north{
- pixel_y = 22
- },
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/courtroom)
"hKe" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
/turf/open/floor/iron/grid/steel,
/area/medical/patients_rooms)
+"hKf" = (
+/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/dark/smooth_large,
+/area/security/courtroom)
"hKg" = (
/obj/machinery/light/small{
dir = 4
@@ -44082,15 +43368,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/chapel/office)
-"hKs" = (
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "hosprivacy";
- name = "HoS Privacy Blast door"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/heads/hos)
"hKz" = (
/obj/structure/closet/crate/freezer/blood,
/obj/machinery/vending/wallmed{
@@ -44209,12 +43486,37 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/heads/chief)
+"hLP" = (
+/obj/machinery/door/airlock/public/glass{
+ name = "Visitation"
+ },
+/obj/effect/turf_decal/stripes/closeup,
+/turf/open/floor/iron/dark,
+/area/hallway/primary/starboard)
+"hLY" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron,
+/area/quartermaster/storage)
"hMb" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/engine/gravity_generator)
+"hMg" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/security/main)
"hMo" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 1
@@ -44225,13 +43527,6 @@
/obj/effect/turf_decal/tile/purple,
/turf/open/floor/iron/white,
/area/science/shuttledock)
-"hMI" = (
-/obj/structure/chair/office{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/turf/open/floor/carpet/red,
-/area/crew_quarters/heads/hos)
"hMK" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -44288,56 +43583,14 @@
},
/turf/open/floor/iron,
/area/crew_quarters/bar/atrium)
-"hNa" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/qm)
-"hNe" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 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/tile/neutral,
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
-"hNm" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/security/brig)
-"hNx" = (
+"hNs" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/warning/pods{
- pixel_x = -32
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/security/brig)
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/turf/open/floor/iron/white,
+/area/crew_quarters/cryopods)
"hND" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -44386,6 +43639,23 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
+"hNU" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig Medical outpost";
+ req_one_access_txt = "1;4"
+ },
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/security/brig/medbay)
"hNX" = (
/obj/effect/landmark/start/chaplain,
/obj/structure/chair/wood/wings{
@@ -44406,29 +43676,6 @@
},
/turf/open/floor/plating,
/area/maintenance/department/medical/central)
-"hOo" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/security/brig)
"hOx" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/firealarm{
@@ -44477,6 +43724,16 @@
},
/turf/open/floor/iron/white,
/area/science/lab)
+"hOU" = (
+/obj/machinery/airalarm/directional/east,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron/dark,
+/area/chapel/office)
"hOV" = (
/obj/machinery/ore_silo,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -44571,17 +43828,12 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/maintenance/port/fore)
-"hPY" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
+"hPQ" = (
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 6
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
+/turf/open/floor/prison/dark,
+/area/security/prison)
"hQb" = (
/obj/machinery/firealarm/directional/east,
/turf/open/floor/iron/smooth,
@@ -44596,38 +43848,46 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/tcommsat/computer)
-"hQj" = (
-/obj/structure/chair{
- dir = 1;
- name = "Jury"
+"hQo" = (
+/obj/effect/turf_decal/tile/red/anticorner/contrasted,
+/turf/open/floor/iron,
+/area/security/checkpoint/engineering)
+"hQA" = (
+/obj/structure/closet/secure_closet/security/sec,
+/obj/effect/turf_decal/bot,
+/obj/item/clothing/mask/balaclava,
+/turf/open/floor/iron/techmaint,
+/area/security/main)
+"hQI" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
},
-/obj/machinery/status_display/ai{
- pixel_y = -32
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/courtroom)
-"hQm" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
+/obj/machinery/door/window/brigdoor/southright{
+ name = "evidence chute";
+ req_access_txt = "1";
+ dir = 1
},
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
-"hQn" = (
-/obj/structure/rack,
-/obj/item/prison_scanner,
-/obj/item/prison_scanner,
-/obj/item/prison_scanner,
-/obj/item/prison_scanner,
-/obj/structure/railing{
+/obj/machinery/disposal/deliveryChute{
dir = 1
},
-/turf/open/floor/prison,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark,
/area/security/prison)
-"hQo" = (
-/obj/effect/turf_decal/tile/red/anticorner/contrasted,
-/turf/open/floor/iron,
-/area/security/checkpoint/engineering)
+"hQN" = (
+/obj/structure/reagent_dispensers/water_cooler,
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/obj/machinery/camera/autoname{
+ dir = 9;
+ network = list("ss13","security")
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"hQV" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -44640,6 +43900,19 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/lobby)
+"hRa" = (
+/obj/structure/bed/dogbed/cayenne,
+/mob/living/simple_animal/hostile/carp/lia,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/machinery/airalarm/directional/south{
+ pixel_y = -22
+ },
+/turf/open/floor/iron/dark,
+/area/crew_quarters/heads/hos)
+"hRk" = (
+/obj/effect/decal/cleanable/ash,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
"hRx" = (
/obj/item/storage/belt/medical{
pixel_y = 2
@@ -44655,16 +43928,6 @@
},
/turf/open/floor/iron,
/area/medical/storage)
-"hRC" = (
-/obj/structure/disposalpipe/segment,
-/obj/item/kirbyplants{
- icon_state = "plant-21"
- },
-/obj/effect/turf_decal/tile/brown/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/hallway/primary/fore)
"hRR" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
@@ -44673,28 +43936,64 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"hRS" = (
+/obj/structure/chair/office{
+ dir = 4
+ },
+/obj/structure/cable/yellow,
+/obj/effect/landmark/start/lawyer,
+/obj/machinery/power/apc/auto_name/directional/west{
+ pixel_x = -24
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/wood/big,
+/area/lawoffice)
+"hSa" = (
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/wood,
+/area/crew_quarters/heads/captain)
+"hSc" = (
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
+/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 1;
+ name = "Research Junction";
+ sortType = 12
+ },
+/turf/open/floor/iron,
+/area/science/research)
"hSg" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 4
},
/turf/open/floor/circuit/green,
/area/science/xenobiology)
-"hSh" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+"hSq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
},
-/obj/machinery/atmospherics/pipe/simple/general/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
+/turf/open/floor/iron/dark/side{
+ dir = 4
},
-/obj/effect/turf_decal/tile/red/half/contrasted{
+/area/security/brig)
+"hSw" = (
+/obj/effect/turf_decal/tile/purple{
dir = 4
},
-/turf/open/floor/iron/dark,
-/area/security/execution/transfer)
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron/white,
+/area/science/mixing)
"hSE" = (
/obj/machinery/light/small{
dir = 1
@@ -44809,11 +44108,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/quartermaster/qm)
-"hTy" = (
-/obj/structure/chair/office,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/detectives_office)
"hTA" = (
/obj/structure/chair/fancy/comfy{
buildstackamount = 0;
@@ -44842,6 +44136,19 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/bar)
+"hTN" = (
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 4
+ },
+/obj/item/bedsheet/brown,
+/obj/structure/bed{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/security/prison)
"hTQ" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -44851,6 +44158,18 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"hUb" = (
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/security/execution/transfer)
"hUi" = (
/obj/structure/chair/office{
dir = 8
@@ -44872,45 +44191,42 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/quartermaster/storage)
-"hUp" = (
-/obj/structure/disposalpipe/segment{
- dir = 1
- },
+"hUq" = (
/obj/structure/cable/yellow{
- icon_state = "1-2"
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 1
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/red/half/contrasted{
+/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/iron,
-/area/security/prison)
-"hUG" = (
-/obj/structure/disposalpipe/segment{
+/area/engine/break_room)
+"hUv" = (
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
dir = 4
},
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/iron,
-/area/hallway/primary/port)
-"hUV" = (
-/obj/machinery/newscaster{
- pixel_x = 32
+/turf/open/floor/iron/dark,
+/area/security/main)
+"hUA" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Maintenance Hatch";
+ req_access_txt = "12"
},
-/obj/effect/turf_decal/tile/red/half/contrasted,
/turf/open/floor/iron,
-/area/security/brig)
-"hVe" = (
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/nuke_storage)
+/area/maintenance/starboard)
"hVg" = (
/obj/structure/table/wood/fancy,
/obj/item/organ/heart,
@@ -44943,6 +44259,12 @@
},
/turf/open/floor/catwalk_floor/iron,
/area/tcommsat/server)
+"hVJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/space)
"hVM" = (
/obj/effect/turf_decal/tile/purple{
dir = 1
@@ -44989,6 +44311,41 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/fitness/recreation)
+"hWD" = (
+/obj/effect/turf_decal/delivery/red,
+/obj/machinery/door/firedoor,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 8
+ },
+/obj/machinery/turnstile{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "Prisongate"
+ },
+/turf/open/floor/iron/dark,
+/area/security/prison)
+"hWF" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/security/main)
"hWO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -45028,6 +44385,12 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/tcommsat/computer)
+"hXc" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/maintenance/starboard)
"hXy" = (
/obj/item/kirbyplants/random,
/obj/machinery/airalarm/directional/west{
@@ -45087,35 +44450,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/security/nuke_storage)
-"hYa" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/holopad,
-/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/science/research)
-"hYq" = (
-/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/directional/west{
- pixel_x = -24
- },
-/obj/effect/turf_decal/trimline/black/filled/line{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/maintenance/department/science)
"hYu" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
@@ -45128,21 +44462,41 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/maintenance/starboard)
-"hYG" = (
+"hYx" = (
/obj/structure/cable/yellow{
- icon_state = "4-8"
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
},
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/sorting/mail{
+ name = "Atmospherics Junction";
+ sortType = 6;
dir = 8
},
/turf/open/floor/iron,
-/area/security/brig)
+/area/engine/break_room)
+"hYS" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"hZf" = (
/obj/structure/sign/warning/vacuum{
pixel_x = -32
@@ -45186,19 +44540,26 @@
},
/turf/open/floor/iron,
/area/maintenance/department/science)
-"hZJ" = (
-/obj/structure/table/wood,
-/obj/machinery/computer/med_data/laptop,
-/obj/machinery/newscaster{
- pixel_x = 32
+"hZB" = (
+/obj/machinery/airalarm/directional/east,
+/obj/machinery/light{
+ dir = 4
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = 26;
- pixel_y = -32
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/effect/turf_decal/tile/yellow/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/crew_quarters/bar/atrium)
+"hZQ" = (
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 8
+ },
+/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/crew_quarters/heads/hos)
+/area/security/prison)
"hZY" = (
/obj/effect/turf_decal/tile/blue/opposingcorners{
dir = 1
@@ -45209,28 +44570,6 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/central)
-"iab" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/machinery/door/airlock/external{
- name = "Gulag Shuttle Airlock";
- req_access_txt = "63"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- 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/iron,
-/area/security/brig)
"iam" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/stripes/white/line{
@@ -45243,17 +44582,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/atmos)
-"ian" = (
-/obj/structure/table/wood,
-/obj/machinery/fax/law,
-/turf/open/floor/wood,
-/area/lawoffice)
-"iaw" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/turf/open/floor/iron,
-/area/hallway/primary/fore)
"iaF" = (
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
@@ -45276,6 +44604,18 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat_interior)
+"iaR" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/iron,
+/area/hallway/primary/starboard)
"iba" = (
/obj/item/radio/intercom{
pixel_y = 26
@@ -45309,21 +44649,6 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"ibm" = (
-/obj/structure/sign/nanotrasen{
- pixel_x = 32
- },
-/obj/effect/turf_decal/tile/blue/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/security/courtroom)
-"ibp" = (
-/obj/effect/turf_decal/tile/red/anticorner/contrasted{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/security/prison)
"ibu" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -45372,41 +44697,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
-"icb" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/item/kirbyplants/random,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
-"icf" = (
-/obj/machinery/door/airlock/research{
- name = "Toxins Mixing Lab";
- req_access_txt = "8"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "rdtoxins";
- name = "Toxins Lab Shutters"
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/iron,
-/area/science/mixing)
"ich" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -45430,6 +44720,12 @@
},
/turf/open/floor/iron,
/area/medical/genetics)
+"icm" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/carpet/red,
+/area/security/detectives_office)
"icn" = (
/obj/structure/table/reinforced,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -45531,6 +44827,12 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"idl" = (
+/obj/machinery/status_display/evac{
+ pixel_y = 32
+ },
+/turf/closed/wall/r_wall,
+/area/security/main)
"idn" = (
/obj/effect/spawner/lootdrop/maintenance/two,
/obj/structure/rack,
@@ -45543,17 +44845,6 @@
/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/kitchen)
-"idR" = (
-/obj/structure/table/reinforced,
-/obj/machinery/recharger,
-/obj/machinery/light_switch{
- pixel_y = 24
- },
-/obj/effect/turf_decal/tile/red/anticorner/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/brig)
"ies" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -45641,18 +44932,25 @@
},
/turf/open/floor/iron/dark/corner,
/area/engine/atmos)
-"ifm" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+"ifp" = (
+/obj/machinery/airalarm/directional/east,
+/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)
+"ifq" = (
/obj/structure/cable/yellow{
- icon_state = "2-8"
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/turf/open/floor/iron,
-/area/security/brig)
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"ifw" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -45709,24 +45007,21 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron,
/area/engine/gravity_generator)
-"igL" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/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
+"igK" = (
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/crew_quarters/heads/chief)
+"igR" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/curtain/directional{
+ color = "#ACD1E9";
+ dir = 8;
+ icon_state = "bathroom-open";
+ icon_type = "bathroom"
},
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
+/turf/open/floor/plating,
+/area/security/brig/medbay)
"ihp" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
@@ -45766,11 +45061,12 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/catwalk_floor/iron,
/area/engine/atmospherics_engine)
-"iit" = (
-/obj/item/kirbyplants/random,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/detectives_office)
+"ihZ" = (
+/obj/structure/cable/yellow,
+/obj/effect/turf_decal/bot,
+/obj/machinery/power/apc/auto_name/directional/south,
+/turf/open/floor/iron,
+/area/crew_quarters/kitchen)
"iiu" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -45798,6 +45094,32 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/engineering)
+"ijk" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ 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 = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 1;
+ name = "Security Junction";
+ sortType = 7
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/starboard)
"ijm" = (
/turf/closed/wall/r_wall,
/area/maintenance/department/medical/morgue)
@@ -45815,6 +45137,23 @@
},
/turf/open/floor/engine,
/area/science/mixing/chamber)
+"ijz" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/disposal/bin,
+/turf/open/floor/iron,
+/area/storage/tools)
"ijC" = (
/obj/machinery/computer/security/mining,
/obj/effect/turf_decal/tile/purple/half/contrasted{
@@ -45834,13 +45173,6 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/hallway/primary/aft)
-"ijS" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/execution/transfer)
"ijT" = (
/obj/machinery/door/airlock/command{
name = "Chief Medical Officer's Office";
@@ -45930,6 +45262,26 @@
},
/turf/open/floor/iron,
/area/maintenance/disposal)
+"ikZ" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/effect/turf_decal/stripes/closeup,
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/machinery/door/airlock/security{
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/security/prison)
"ilf" = (
/obj/structure/table/reinforced,
/obj/item/analyzer{
@@ -45992,6 +45344,40 @@
/obj/machinery/digital_clock/directional/south,
/turf/open/floor/carpet/grimy,
/area/chapel/main)
+"imd" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot,
+/mob/living/simple_animal/bot/secbot{
+ arrest_type = 1;
+ health = 45;
+ icon_state = "secbot1";
+ idcheck = 1;
+ name = "Sergeant-at-Armsky";
+ weaponscheck = 1
+ },
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/iron/textured,
+/area/ai_monitored/security/armory)
+"imf" = (
+/obj/structure/rack,
+/obj/item/clothing/shoes/sneakers/orange,
+/obj/item/clothing/shoes/sneakers/orange,
+/obj/item/clothing/shoes/sneakers/orange,
+/obj/item/clothing/shoes/sneakers/orange,
+/obj/item/clothing/shoes/sneakers/orange,
+/obj/item/clothing/under/rank/prisoner,
+/obj/item/clothing/under/rank/prisoner,
+/obj/item/clothing/under/rank/prisoner,
+/obj/item/clothing/under/rank/prisoner,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/security/prison)
"imj" = (
/obj/machinery/gravity_generator/main/station,
/obj/effect/turf_decal/bot_white,
@@ -46009,6 +45395,21 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/ai_monitored/storage/eva)
+"imy" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/airalarm/directional/west,
+/obj/machinery/camera/directional/west{
+ c_tag = "Security Hallway - Fore";
+ name = "hallway camera"
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/starboard)
"ine" = (
/obj/effect/turf_decal/tile/blue/anticorner/contrasted,
/turf/open/floor/iron/white,
@@ -46036,20 +45437,11 @@
},
/turf/open/floor/iron,
/area/engine/break_room)
-"inR" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/white,
-/obj/machinery/status_display/evac{
- pixel_y = -32
- },
-/obj/machinery/modular_computer/console/preset/engineering{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/engine/atmospherics_engine)
+"inD" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
"inT" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -46065,17 +45457,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/starboard)
-"inW" = (
-/obj/structure/table/wood,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/item/taperecorder,
-/obj/item/restraints/handcuffs,
-/obj/machinery/power/apc/auto_name/directional/north,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/detectives_office)
"ioj" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/green/visible,
@@ -46094,18 +45475,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"ioy" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/airalarm/directional/north{
- pixel_y = 23
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/hallway/primary/central)
"ioz" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/space_heater,
@@ -46114,31 +45483,41 @@
},
/turf/open/floor/iron,
/area/maintenance/port)
+"ioE" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/security/main)
+"ioI" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/teleporter)
"ioZ" = (
/obj/item/kirbyplants/random,
/obj/effect/turf_decal/tile/neutral/opposingcorners,
/turf/open/floor/iron,
/area/crew_quarters/cryopods)
-"ipf" = (
-/obj/machinery/camera/directional/east{
- c_tag = "Security - Brig Fore"
- },
-/obj/effect/turf_decal/tile/red/half/contrasted,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 26
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
+"ipl" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
},
-/turf/open/floor/iron,
-/area/security/brig)
-"ipD" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/open/floor/iron{
+ heat_capacity = 1e+006
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/storage)
+/area/maintenance/starboard)
"ipY" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/structure/closet/l3closet,
@@ -46151,12 +45530,6 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/dorms)
-"iqj" = (
-/obj/effect/turf_decal/tile/black/fourcorners,
-/obj/structure/punching_bag,
-/obj/effect/turf_decal/bot_white,
-/turf/open/floor/iron,
-/area/security/prison)
"iql" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -46187,20 +45560,21 @@
},
/turf/open/floor/iron/white,
/area/science/robotics/lab)
+"iqv" = (
+/obj/structure/sign/warning/securearea,
+/turf/closed/wall/r_wall,
+/area/security/prison)
+"iqz" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/crew_quarters/heads/chief)
"iqI" = (
/obj/effect/turf_decal/delivery,
/turf/open/floor/plating,
/area/maintenance/aft)
-"iqL" = (
-/obj/machinery/computer/cargo{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/storage)
"iqN" = (
/obj/effect/turf_decal/tile/blue/opposingcorners{
dir = 1
@@ -46211,6 +45585,20 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
/turf/open/floor/iron/white,
/area/medical/medbay/lobby)
+"iqS" = (
+/obj/machinery/flasher/portable,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/ai_monitored/security/armory)
"iqY" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -46258,17 +45646,12 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"irJ" = (
-/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/brown/half/contrasted{
- dir = 8
+"irK" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
},
-/turf/open/floor/iron,
-/area/quartermaster/sorting)
+/turf/open/floor/iron/dark,
+/area/security/main)
"isk" = (
/obj/structure/table/reinforced,
/obj/effect/turf_decal/delivery,
@@ -46343,16 +45726,6 @@
},
/turf/open/floor/iron/dark/textured,
/area/maintenance/disposal/incinerator)
-"isN" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/engine/break_room)
"isZ" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -46382,15 +45755,6 @@
/obj/effect/turf_decal/tile/purple,
/turf/open/floor/iron/white,
/area/science/research)
-"itt" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron,
-/area/security/brig)
"itG" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
@@ -46407,19 +45771,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/toilet/auxiliary)
-"iuG" = (
-/obj/effect/spawner/structure/window/reinforced/prison,
-/obj/machinery/door/poddoor/preopen{
- id = "Prisongate"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/security/prison)
"iuP" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -46470,27 +45821,11 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai)
-"ivy" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/machinery/door/airlock/external{
- name = "Gulag Shuttle Airlock"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- 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/iron,
-/area/hallway/primary/starboard)
+"ivB" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/security/brig)
"ivH" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/table,
@@ -46520,6 +45855,17 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/supply)
+"iwh" = (
+/obj/structure/bodycontainer/morgue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/machinery/camera/autoname{
+ dir = 10;
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/iron/dark,
+/area/medical/morgue)
"iwl" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/general/visible{
@@ -46557,6 +45903,18 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/locker)
+"iwT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/security/courtroom)
"ixd" = (
/obj/structure/filingcabinet/security,
/obj/machinery/firealarm{
@@ -46715,6 +46073,15 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
+"izi" = (
+/obj/structure/table,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/newscaster{
+ pixel_y = -32
+ },
+/turf/open/floor/iron/dark,
+/area/security/courtroom)
"izn" = (
/obj/machinery/status_display/ai{
pixel_y = -32
@@ -46763,16 +46130,18 @@
},
/turf/open/floor/grass,
/area/medical/patients_rooms)
-"izL" = (
-/obj/effect/spawner/structure/window/reinforced/prison,
-/obj/machinery/door/poddoor/preopen{
- id = "Prisongate"
+"izS" = (
+/obj/structure/table/wood,
+/obj/item/folder/yellow{
+ pixel_x = 3;
+ pixel_y = 3
},
-/obj/structure/cable/yellow{
- icon_state = "0-8"
+/obj/item/folder/blue,
+/obj/effect/turf_decal/tile/blue/half{
+ dir = 8
},
-/turf/open/floor/plating,
-/area/security/prison)
+/turf/open/floor/iron/large,
+/area/security/courtroom)
"iAV" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/blobstart,
@@ -46835,6 +46204,22 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/break_room)
+"iBE" = (
+/obj/effect/turf_decal/siding/wideplating_new{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 4
+ },
+/obj/machinery/camera/autoname{
+ dir = 6;
+ network = list("ss13","prison")
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"iBI" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/machinery/light/small{
@@ -46854,12 +46239,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/science/robotics/mechbay)
-"iCE" = (
-/obj/effect/turf_decal/tile/blue/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/courtroom)
"iCJ" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -46872,46 +46251,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/port)
-"iCO" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/door/airlock/command{
- name = "Chief Engineer's Office";
- req_access_txt = "56"
- },
-/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/iron,
-/area/crew_quarters/heads/chief)
-"iCW" = (
-/obj/structure/bodycontainer/morgue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/machinery/camera/autoname{
- dir = 5;
- network = list("ss13","medbay")
- },
-/turf/open/floor/iron/dark,
-/area/medical/morgue)
"iDi" = (
/obj/structure/sign/plaques/kiddie/library{
pixel_x = -32
@@ -46950,6 +46289,23 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"iDG" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
"iDL" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -47013,6 +46369,15 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"iEL" = (
+/obj/item/stack/rods{
+ amount = 25
+ },
+/obj/machinery/airalarm/directional/east,
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron/dark,
+/area/ai_monitored/storage/eva)
"iEN" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -47032,14 +46397,6 @@
},
/turf/open/floor/grass,
/area/medical/patients_rooms)
-"iET" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/table/reinforced,
-/obj/effect/loot_jobscale/armoury/dragnet,
-/obj/item/gun/grenadelauncher/security,
-/obj/item/beacon/nettingportal,
-/turf/open/floor/iron,
-/area/ai_monitored/security/armory)
"iFa" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -47143,6 +46500,37 @@
dir = 1
},
/area/hallway/secondary/entry)
+"iGS" = (
+/obj/structure/table,
+/obj/item/food/canned/beefbroth{
+ pixel_x = -4
+ },
+/obj/item/food/canned/peaches{
+ pixel_x = 4
+ },
+/turf/open/floor/iron/techmaint,
+/area/security/prison/shielded)
+"iGY" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/structure/sign/warning/electricshock{
+ pixel_x = 32
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/starboard)
"iHz" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -47158,12 +46546,12 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/turf/open/floor/iron,
/area/security/checkpoint/medical)
-"iHS" = (
-/obj/item/kirbyplants/random,
-/obj/effect/turf_decal/tile/red/anticorner/contrasted{
- dir = 1
- },
-/turf/open/floor/iron,
+"iHY" = (
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/open/floor/iron/dark,
/area/security/main)
"iHZ" = (
/obj/structure/cable/yellow{
@@ -47209,23 +46597,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/gravity_generator)
-"iIN" = (
-/obj/item/kirbyplants/random,
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 24
- },
-/obj/machinery/light_switch{
- pixel_y = 26
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"iIV" = (
/obj/structure/table/wood,
/obj/item/storage/fancy/donut_box,
@@ -47321,19 +46692,14 @@
/obj/machinery/firealarm/directional/west,
/turf/open/floor/iron/smooth,
/area/tcommsat/server)
-"iKg" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+"iJQ" = (
+/obj/machinery/hydroponics/constructable,
+/obj/structure/railing,
+/obj/machinery/light{
dir = 4
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/security/main)
+/turf/open/floor/prison/dark,
+/area/security/prison)
"iKH" = (
/obj/machinery/computer/card{
dir = 1
@@ -47344,12 +46710,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/heads/hop)
-"iKI" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/ai_monitored/security/armory)
"iKQ" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -47386,14 +46746,12 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"iLx" = (
-/obj/structure/tank_dispenser/oxygen,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/brig)
+"iLE" = (
+/obj/structure/table/wood,
+/obj/item/folder/blue,
+/obj/item/pen,
+/turf/open/floor/iron,
+/area/security/courtroom)
"iLK" = (
/obj/structure/cable{
icon_state = "2-8"
@@ -47427,21 +46785,6 @@
},
/turf/open/floor/iron,
/area/science/research)
-"iLT" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -24
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
"iMb" = (
/obj/structure/table/reinforced,
/obj/item/paper_bin,
@@ -47454,6 +46797,13 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/science/robotics/lab)
+"iMk" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/storage/tools)
"iMC" = (
/obj/item/kirbyplants/random,
/obj/machinery/light{
@@ -47467,27 +46817,22 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/lobby)
-"iMM" = (
-/obj/machinery/vending/coffee,
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/courtroom)
-"iMP" = (
-/obj/machinery/door/airlock/external{
- name = "Escape Pod 3"
+"iMX" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/closet/secure_closet/brig_physician,
+/obj/item/clothing/under/rank/medical/doctor/purple{
+ pixel_y = -4
},
-/obj/effect/turf_decal/stripes/line{
- dir = 8
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/structure/sign/poster/official/cleanliness{
+ pixel_y = 32
},
-/obj/effect/turf_decal/stripes/line{
- dir = 4
+/obj/item/storage/box/bodybags,
+/obj/machinery/light{
+ dir = 1
},
-/turf/open/floor/iron,
-/area/security/brig)
+/turf/open/floor/iron/white,
+/area/security/brig/medbay)
"iMZ" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -47513,19 +46858,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/crew_quarters/heads/cmo)
-"iNN" = (
-/obj/structure/table/wood,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/item/taperecorder{
- pixel_x = 3
- },
-/obj/item/storage/box/deputy,
-/obj/item/flashlight/seclite,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/crew_quarters/heads/hos)
"iOj" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -47559,25 +46891,56 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/wood,
/area/crew_quarters/dorms)
-"iOM" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
+"iPd" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
},
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/iron,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
/area/crew_quarters/heads/hor)
+"iPe" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/iron,
+/area/security/courtroom)
+"iPi" = (
+/obj/structure/table,
+/obj/item/book/manual/wiki/security_space_law{
+ pixel_x = 10;
+ pixel_y = 3
+ },
+/obj/machinery/recharger{
+ pixel_x = -7
+ },
+/obj/item/restraints/handcuffs{
+ pixel_x = 3;
+ pixel_y = 8
+ },
+/obj/machinery/airalarm/all_access{
+ pixel_y = 26;
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron/smooth,
+/area/security/main)
"iPl" = (
/obj/effect/landmark/event_spawn,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -47638,17 +47001,16 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"iQE" = (
-/obj/machinery/airalarm/directional/east{
- pixel_x = 24
- },
+"iQF" = (
/obj/structure/cable/yellow{
- icon_state = "1-8"
+ icon_state = "0-2"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral/anticorner/contrasted,
-/turf/open/floor/iron,
-/area/crew_quarters/toilet/auxiliary)
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "Prisongate"
+ },
+/turf/open/floor/plating,
+/area/security/prison)
"iQL" = (
/obj/structure/showcase/cyborg/old{
dir = 8;
@@ -47668,15 +47030,6 @@
/obj/machinery/digital_clock/directional/north,
/turf/open/floor/iron,
/area/engine/break_room)
-"iRR" = (
-/obj/machinery/airalarm/directional/south{
- pixel_y = -22
- },
-/obj/machinery/light/small,
-/obj/structure/closet/crate/goldcrate,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/nuke_storage)
"iSb" = (
/obj/machinery/holopad,
/obj/structure/cable/yellow{
@@ -47697,14 +47050,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/fitness/recreation)
-"iSh" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/security/brig)
"iSq" = (
/obj/structure/cable{
icon_state = "0-2"
@@ -47715,13 +47060,6 @@
},
/turf/open/floor/iron/solarpanel/airless,
/area/solar/starboard/aft)
-"iSu" = (
-/obj/structure/cable/white,
-/obj/machinery/power/apc/auto_name/directional/west{
- pixel_x = -24
- },
-/turf/open/floor/iron/smooth,
-/area/tcommsat/server)
"iSR" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
@@ -47733,13 +47071,13 @@
},
/turf/open/floor/catwalk_floor/iron,
/area/engine/atmospherics_engine)
-"iSV" = (
-/obj/structure/table/wood,
-/obj/item/clipboard,
-/obj/item/folder,
+"iSZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/courtroom)
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/hallway/primary/fore)
"iTF" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -47780,23 +47118,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/starboard)
-"iUk" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/brig)
-"iUl" = (
-/obj/structure/cable/white,
-/obj/item/kirbyplants/random,
-/obj/machinery/light,
-/obj/machinery/power/apc/auto_name/directional/south,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/ai_monitored/turret_protected/ai_upload)
"iUO" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -47825,6 +47146,23 @@
},
/turf/open/floor/iron/white,
/area/science/shuttledock)
+"iUV" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/security/prison)
+"iUW" = (
+/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"
+ },
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/prison,
+/area/security/prison)
"iVj" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -47851,13 +47189,6 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/engine/storage_shared)
-"iVq" = (
-/obj/machinery/door/airlock{
- id_tag = "Cell";
- name = "Cell 1"
- },
-/turf/open/floor/prison,
-/area/security/prison)
"iVz" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -47870,6 +47201,18 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/maintenance/department/science)
+"iWC" = (
+/obj/machinery/airalarm/directional/east,
+/obj/structure/mirror{
+ pixel_x = 26;
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/turf/open/floor/iron/white,
+/area/medical/surgery)
"iWK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -47937,24 +47280,6 @@
},
/turf/open/floor/carpet/red,
/area/medical/exam_room)
-"iXQ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Virology Maintenance";
- req_access_txt = "39"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "quarantineshutters";
- name = "isolation shutters"
- },
-/turf/open/floor/iron,
-/area/maintenance/aft)
"iXX" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -47990,16 +47315,6 @@
},
/turf/open/floor/iron/white,
/area/crew_quarters/heads/cmo)
-"iYk" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/bot,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/effect/loot_jobscale/armoury/disabler,
-/turf/open/floor/iron/dark,
-/area/ai_monitored/security/armory)
"iYt" = (
/obj/structure/table/reinforced,
/obj/item/book/manual/wiki/surgery,
@@ -48024,6 +47339,16 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/science/xenobiology)
+"iYH" = (
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 4
+ },
+/obj/item/kirbyplants/random,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/prison/dark,
+/area/security/prison)
"iYS" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -48033,19 +47358,6 @@
},
/turf/open/floor/iron/white,
/area/science/research)
-"iZg" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/airalarm/directional/north{
- pixel_y = 22
- },
-/obj/machinery/computer/cargo/request,
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/main)
"iZi" = (
/obj/effect/turf_decal/tile/blue/opposingcorners{
dir = 1
@@ -48100,14 +47412,19 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/aisat)
-"jad" = (
-/obj/structure/sign/poster/official/report_crimes{
- pixel_y = 32
+"jaj" = (
+/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/machinery/vending/wardrobe/det_wardrobe,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/detectives_office)
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/grass/no_border,
+/area/security/prison)
"jan" = (
/obj/structure/chair/wood,
/obj/structure/disposalpipe/segment,
@@ -48122,18 +47439,40 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/storage/tech)
-"jaG" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/camera/directional/west{
- c_tag = "Security Hallway - Fore";
- name = "hallway camera"
+"jaE" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/tile/red{
+/obj/item/paper/fluff{
+ default_raw_text = "I used the shotgun. You know why? Cause the shot gun doesn't miss, and unlike the shitty hybrid taser it stops a criminal in their tracks in two hits. Bang, bang, and they're fucking done. I use four shots just to make damn sure. Because, once again, I'm not there to coddle a buncha criminal scum sucking f------, I'm there to 1) Survive the fucking round. 2) Guard the armory. So you can absolutely get fucked. If I get unbanned, which I won't, you can guarantee I will continue to use the shotgun to apprehend criminals. Because it's quick, clean and effective as fuck. Why in the seven hells would I fuck around with the disabler shots, which take half a clip just to bring someone down, or with the tazer bolts which are slow as balls, impossible to aim and do about next to jack shit, fuck all. The shotgun is the superior law enforcement weapon. Because it stops crime. And it stops crime by reducing the number of criminals roaming the fucking halls.";
+ name = "Shotgun manifesto"
+ },
+/obj/machinery/door/window/southright{
+ base_state = "left";
+ icon_state = "left";
+ name = "Balistic Weapons storage";
+ req_one_access_txt = "1;4"
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/obj/effect/loot_jobscale/armoury/riot_shotgun,
+/obj/structure/window/reinforced{
dir = 1
},
+/obj/structure/rack,
+/turf/open/floor/iron/dark,
+/area/ai_monitored/security/armory)
+"jaN" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
/turf/open/floor/iron,
/area/hallway/primary/starboard)
"jaP" = (
@@ -48148,6 +47487,32 @@
/obj/effect/turf_decal/tile/yellow/anticorner/contrasted,
/turf/open/floor/iron,
/area/engine/break_room)
+"jbl" = (
+/obj/structure/chair/office{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/carpet/green,
+/area/lawoffice)
+"jbo" = (
+/obj/structure/table/reinforced,
+/obj/item/kitchen/rollingpin,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/prison,
+/area/security/prison)
+"jbr" = (
+/obj/machinery/flasher/portable,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark,
+/area/ai_monitored/security/armory)
"jbu" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
@@ -48166,11 +47531,14 @@
},
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
-"jbW" = (
-/obj/machinery/holopad,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+"jbO" = (
+/obj/machinery/airalarm/directional/north,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
/turf/open/floor/iron/dark,
-/area/security/brig)
+/area/security/main)
"jbZ" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 1
@@ -48185,15 +47553,6 @@
},
/turf/open/floor/iron,
/area/medical/morgue)
-"jch" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
"jci" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 9
@@ -48226,12 +47585,6 @@
dir = 1
},
/area/hallway/secondary/entry)
-"jcD" = (
-/obj/structure/bed{
- dir = 4
- },
-/turf/open/floor/prison,
-/area/security/prison)
"jcG" = (
/obj/structure/table/reinforced,
/obj/item/paper_bin,
@@ -48248,6 +47601,24 @@
/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/aft)
+"jda" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/entry)
+"jdd" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/hallway/primary/starboard)
"jdl" = (
/obj/structure/table/wood,
/obj/item/folder,
@@ -48258,23 +47629,19 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/library)
-"jdC" = (
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/brig)
-"jdO" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
+"jdD" = (
+/obj/machinery/airalarm/directional/east,
+/obj/machinery/light{
+ dir = 4
},
-/obj/effect/turf_decal/tile/purple{
- dir = 8
+/obj/item/kirbyplants/random,
+/obj/machinery/camera/directional/east{
+ c_tag = "Security Post - Science";
+ network = list("ss13","rd")
},
-/turf/open/floor/iron/white,
-/area/science/research)
+/obj/effect/turf_decal/tile/red/anticorner/contrasted,
+/turf/open/floor/iron,
+/area/security/checkpoint/science/research)
"jdT" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
@@ -48285,16 +47652,6 @@
},
/turf/open/floor/plating/airless,
/area/space/nearstation)
-"jeh" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/bot,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/effect/loot_jobscale/armoury/laser_gun,
-/turf/open/floor/iron/dark,
-/area/ai_monitored/security/armory)
"jei" = (
/obj/machinery/newscaster{
pixel_x = 32
@@ -48307,26 +47664,25 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/science/explab)
+"jep" = (
+/obj/structure/closet/crate/bin,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 8
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/prison,
+/area/security/prison)
+"jeq" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/security/detectives_office)
"jeu" = (
/obj/structure/bed/roller,
/obj/machinery/iv_drip,
/turf/open/floor/iron/dark,
/area/maintenance/department/medical/morgue)
-"jeB" = (
-/obj/machinery/airalarm/directional/east{
- pixel_x = 24
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/item/kirbyplants/random,
-/obj/machinery/camera/directional/east{
- c_tag = "Security Post - Science";
- network = list("ss13","rd")
- },
-/obj/effect/turf_decal/tile/red/anticorner/contrasted,
-/turf/open/floor/iron,
-/area/security/checkpoint/science/research)
"jeK" = (
/obj/effect/turf_decal/tile/blue{
dir = 4
@@ -48385,6 +47741,20 @@
/obj/machinery/iv_drip,
/turf/open/floor/iron/dark,
/area/maintenance/department/medical/morgue)
+"jfL" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/crew_quarters/bar)
"jfX" = (
/obj/effect/turf_decal/tile/blue,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -48429,6 +47799,12 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"jgA" = (
+/obj/machinery/computer/prisoner/gulag_teleporter_computer{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"jgF" = (
/obj/machinery/telecomms/processor/preset_two,
/obj/effect/turf_decal/tile/brown/anticorner/contrasted{
@@ -48436,6 +47812,12 @@
},
/turf/open/floor/iron/telecomms,
/area/tcommsat/server)
+"jgM" = (
+/obj/machinery/computer/security/labor{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"jgN" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -48452,6 +47834,33 @@
},
/turf/open/floor/iron,
/area/maintenance/port/aft)
+"jgX" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/quartermaster/office)
+"jhc" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/freezer,
+/area/security/prison)
+"jhk" = (
+/obj/structure/closet/secure_closet/security/sec,
+/obj/effect/turf_decal/bot,
+/obj/item/clothing/mask/balaclava,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/iron/techmaint,
+/area/security/main)
"jhl" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -48475,12 +47884,13 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plating,
/area/maintenance/port)
-"jhG" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
+"jhp" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
},
-/turf/open/floor/iron,
-/area/ai_monitored/security/armory)
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/main)
"jhI" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -48511,18 +47921,6 @@
},
/turf/open/floor/iron,
/area/hydroponics)
-"jhO" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/sorting/mail{
- dir = 1;
- name = "Cargo Junction";
- sortType = 2
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/hallway/primary/fore)
"jhQ" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -48533,16 +47931,28 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"jie" = (
+"jhX" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
+ dir = 5
},
-/obj/structure/table/reinforced,
-/turf/open/floor/prison,
-/area/security/prison)
+/turf/open/floor/iron,
+/area/crew_quarters/locker)
+"jio" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 8
+ },
+/area/security/courtroom)
"jip" = (
/obj/machinery/light/small{
dir = 1
@@ -48583,22 +47993,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/library)
-"jjc" = (
-/obj/structure/table/reinforced,
-/obj/item/folder/red{
- pixel_x = -2;
- pixel_y = -2
- },
-/obj/item/folder/blue{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/lighter,
-/obj/effect/turf_decal/tile/red/anticorner/contrasted{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/security/main)
"jje" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
@@ -48620,16 +48014,36 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/locker)
+"jjz" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/kirbyplants/random,
+/obj/machinery/airalarm/directional/east,
+/obj/effect/turf_decal/tile/brown/anticorner/contrasted,
+/turf/open/floor/iron,
+/area/quartermaster/sorting)
"jjF" = (
/obj/structure/table/wood,
/obj/machinery/chem_dispenser/drinks/beer,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/bar)
+"jjG" = (
+/obj/effect/turf_decal/siding/wideplating_new/dark,
+/turf/open/floor/iron/dark,
+/area/security/main)
"jjM" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/chapel/main)
+"jjP" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/item/folder/red{
+ pixel_x = 3
+ },
+/turf/open/floor/carpet/red,
+/area/security/detectives_office)
"jka" = (
/obj/structure/table,
/obj/item/stack/medical/gauze,
@@ -48710,21 +48124,13 @@
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
/turf/open/floor/iron,
/area/medical/surgery)
-"jlH" = (
-/obj/item/soap/nanotrasen,
-/obj/machinery/shower,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/noslip/standard,
-/area/security/prison)
-"jlI" = (
-/obj/item/kirbyplants{
- icon_state = "plant-22"
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
+"jlM" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
},
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/prison/dark,
+/area/security/execution/transfer)
"jmd" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -48767,31 +48173,45 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/heads/chief)
-"jna" = (
-/obj/structure/cable/yellow{
- icon_state = "0-4"
+"jnb" = (
+/obj/machinery/computer/card/minor/hos{
+ dir = 4
},
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/warden)
-"jno" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/tile/red{
- dir = 1
+/turf/open/floor/carpet/red,
+/area/crew_quarters/heads/hos)
+"jnB" = (
+/obj/structure/table/wood,
+/obj/item/taperecorder{
+ pixel_x = 3
+ },
+/obj/item/storage/box/deputy,
+/obj/item/flashlight/seclite,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Head of Security's Desk";
+ departmentType = 5;
+ name = "Head of Security RC";
+ pixel_y = 32
+ },
+/turf/open/floor/iron/dark,
+/area/crew_quarters/heads/hos)
+"jnE" = (
+/obj/machinery/light,
+/obj/machinery/light_switch{
+ pixel_y = -26
+ },
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
},
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
-"jnu" = (
-/obj/effect/decal/cleanable/oil,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
-/area/quartermaster/storage)
+/area/engine/break_room)
"jnP" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
@@ -48878,6 +48298,14 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/atmos)
+"jpu" = (
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 4
+ },
+/obj/structure/weightmachine,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/prison/dark,
+/area/security/prison)
"jpx" = (
/obj/machinery/button/door{
id = "evastorage";
@@ -48925,15 +48353,17 @@
},
/turf/open/floor/iron,
/area/maintenance/port/fore)
-"jpM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+"jqc" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
},
-/turf/open/floor/prison,
-/area/security/prison)
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/quartermaster/qm)
"jqk" = (
/obj/structure/disposalpipe/sorting/mail{
name = "Chapel Junction";
@@ -48948,6 +48378,24 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/secondary/exit/departure_lounge)
+"jqq" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/loading_area{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/security/prison)
"jqC" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -48975,6 +48423,34 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"jqR" = (
+/obj/structure/chair/office{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ broadcasting = 1;
+ frequency = 1423;
+ listening = 0;
+ name = "Interrogation Intercom";
+ pixel_x = -28
+ },
+/turf/open/floor/carpet/grimy,
+/area/security/main)
+"jqU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/starboard)
"jqZ" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -49026,17 +48502,6 @@
},
/turf/open/floor/iron,
/area/maintenance/starboard/aft)
-"jrP" = (
-/obj/structure/chair/stool/bar,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/engine/break_room)
"jrT" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
@@ -49074,6 +48539,19 @@
/obj/structure/chair/stool/directional/west,
/turf/open/floor/prison,
/area/security/prison)
+"jsO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/central)
"jsR" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -49102,35 +48580,55 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
-"jtE" = (
+"jta" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/machinery/airalarm/directional/east{
- pixel_x = 24
+/obj/machinery/light{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/tile/neutral{
+/turf/open/floor/iron/tech,
+/area/security/prison/shielded)
+"jtf" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=hall3";
+ location = "hall2"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/junction/yjunction{
dir = 4
},
/turf/open/floor/iron,
-/area/hallway/secondary/service)
+/area/hallway/primary/central)
"jtK" = (
/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
dir = 4
},
/turf/open/floor/iron,
/area/maintenance/port/aft)
-"juN" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+"juO" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/closeup,
+/obj/machinery/door/airlock/security{
+ name = "Interrogation";
+ req_access_txt = "63"
},
-/obj/structure/railing{
- dir = 1
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/turf/open/floor/prison,
-/area/security/prison)
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/security/main)
"juQ" = (
/obj/effect/landmark/event_spawn,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
@@ -49195,48 +48693,10 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
-"jvS" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/effect/mapping_helpers/airlock/locked,
-/obj/machinery/door/airlock/vault{
- name = "Vault Door";
- req_access_txt = "53"
- },
-/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/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/hallway/primary/central)
"jvX" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint/science/research)
-"jwk" = (
-/obj/structure/closet/secure_closet/hos,
-/obj/item/clothing/head/hats/hos/beret,
-/obj/item/clothing/suit/armor/hos/trenchcoat,
-/obj/item/clothing/shoes/sneakers/white,
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/iron,
-/area/crew_quarters/heads/hos)
"jwp" = (
/obj/machinery/airalarm/directional/north,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -49244,6 +48704,17 @@
},
/turf/open/floor/iron,
/area/maintenance/port/aft)
+"jwz" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 8
+ },
+/area/security/courtroom)
"jwJ" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -49261,17 +48732,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
-"jxe" = (
-/obj/structure/chair/office{
- dir = 1
- },
-/obj/effect/landmark/start/cargo_technician,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/office)
"jxg" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -49296,23 +48756,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"jxS" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/caution/stand_clear,
-/obj/machinery/advanced_airlock_controller{
- pixel_y = 26
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/security/brig)
"jyh" = (
/obj/structure/table/wood,
/obj/item/folder/red,
@@ -49354,17 +48797,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai_upload)
-"jzM" = (
-/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/effect/turf_decal/tile/brown/half/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/miningoffice)
"jzO" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 8
@@ -49388,6 +48820,16 @@
},
/turf/open/floor/catwalk_floor,
/area/maintenance/port)
+"jzY" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/space_heater,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/turf/open/floor/iron/dark,
+/area/security/execution/transfer)
"jAa" = (
/obj/effect/turf_decal/tile/brown/half/contrasted{
dir = 4
@@ -49431,6 +48873,11 @@
},
/turf/open/floor/plating,
/area/maintenance/port/fore)
+"jAt" = (
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/ai_monitored/security/armory)
"jAC" = (
/obj/machinery/newscaster{
pixel_x = -5;
@@ -49472,16 +48919,6 @@
},
/turf/open/floor/iron,
/area/medical/patients_rooms)
-"jBh" = (
-/obj/structure/chair/office{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/turf/open/floor/carpet/green,
-/area/lawoffice)
"jBi" = (
/obj/machinery/light{
dir = 1
@@ -49550,6 +48987,18 @@
/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint/escape)
+"jBo" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wideplating_new{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"jBq" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
/obj/structure/disposalpipe/segment{
@@ -49577,6 +49026,18 @@
},
/turf/open/floor/iron,
/area/maintenance/starboard)
+"jBJ" = (
+/obj/structure/table,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/camera/autoname{
+ dir = 9;
+ network = list("ss13","security")
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 9
+ },
+/area/security/brig)
"jBK" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -49596,6 +49057,30 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
+"jBV" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/window/southright{
+ base_state = "left";
+ icon_state = "left";
+ name = "Weapons storage";
+ req_one_access_txt = "1;4"
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/obj/effect/loot_jobscale/armoury/laser_gun,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/rack,
+/turf/open/floor/iron/dark,
+/area/ai_monitored/security/armory)
"jBX" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 4
@@ -49631,15 +49116,12 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/lobby)
-"jCz" = (
-/obj/structure/table,
-/obj/machinery/status_display/ai{
- pixel_x = -32
- },
-/obj/item/storage/box/donkpockets,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/courtroom)
+"jCO" = (
+/obj/structure/table/wood,
+/obj/item/folder/red,
+/obj/item/pen,
+/turf/open/floor/carpet/red,
+/area/crew_quarters/heads/hos)
"jCR" = (
/obj/machinery/disposal/bin,
/obj/effect/turf_decal/delivery,
@@ -49648,15 +49130,21 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"jCZ" = (
+"jCY" = (
+/obj/structure/chair{
+ dir = 1
+ },
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
+ dir = 4
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
},
-/turf/open/floor/iron,
-/area/security/brig)
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/dark,
+/area/security/courtroom)
"jDc" = (
/obj/structure/table/reinforced,
/obj/item/stack/package_wrap,
@@ -49671,6 +49159,26 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/atmospherics_engine)
+"jDk" = (
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ dir = 10
+ },
+/obj/structure/chair/office{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark,
+/area/security/execution/transfer)
+"jDo" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
"jDp" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -49680,6 +49188,13 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/bridge)
+"jDr" = (
+/obj/structure/table/wood,
+/obj/item/taperecorder,
+/obj/item/restraints/handcuffs,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron/dark,
+/area/security/detectives_office)
"jDt" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -49728,30 +49243,6 @@
},
/turf/open/floor/iron,
/area/medical/medbay/central)
-"jDA" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/mob/living/simple_animal/bot/secbot{
- arrest_type = 1;
- health = 45;
- icon_state = "secbot1";
- idcheck = 1;
- name = "Sergeant-at-Armsky";
- weaponscheck = 1
- },
-/turf/open/floor/iron,
-/area/ai_monitored/security/armory)
-"jDV" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
"jEb" = (
/obj/structure/table/wood,
/obj/machinery/light{
@@ -49796,10 +49287,23 @@
},
/turf/open/floor/iron/white,
/area/science/research)
+"jEp" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/turf/open/floor/plating,
+/area/security/main)
"jEv" = (
/obj/structure/girder,
/turf/open/floor/plating,
/area/maintenance/department/medical/central)
+"jEE" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/security/main)
"jEN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -49831,6 +49335,21 @@
},
/turf/open/floor/catwalk_floor/iron,
/area/engine/atmospherics_engine)
+"jFF" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"jFJ" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/maintenance/starboard)
"jFR" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -49843,13 +49362,6 @@
},
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"jGc" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/prison,
-/area/security/prison)
"jGA" = (
/obj/machinery/computer/secure_data{
dir = 1
@@ -49879,26 +49391,6 @@
},
/turf/open/floor/iron,
/area/maintenance/port)
-"jGT" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/iron{
- heat_capacity = 1e+006
- },
-/area/crew_quarters/locker)
"jHd" = (
/obj/structure/chair/stool/directional/west,
/obj/effect/turf_decal/tile/neutral{
@@ -49939,25 +49431,13 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/aft)
-"jIs" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/junction/flip{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+"jIF" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
dir = 4
},
-/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/maintenance/port/fore)
+/obj/structure/closet/crate/bin,
+/turf/open/floor/iron/dark,
+/area/security/prison)
"jIP" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -49965,16 +49445,6 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/turf/open/floor/iron,
/area/hallway/secondary/command)
-"jJa" = (
-/obj/effect/landmark/event_spawn,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
"jJg" = (
/obj/machinery/door/airlock/command{
name = "Corporate Lounge";
@@ -49991,6 +49461,17 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/wood,
/area/bridge/showroom/corporate)
+"jJu" = (
+/obj/machinery/hydroponics/constructable,
+/obj/item/seeds/soya,
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/prison/dark,
+/area/security/prison)
"jJA" = (
/obj/machinery/light/small{
dir = 1
@@ -50003,6 +49484,11 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark/telecomms,
/area/science/xenobiology)
+"jJN" = (
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/teleporter)
"jJT" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/brigdoor{
@@ -50087,23 +49573,6 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
-"jKW" = (
-/obj/effect/decal/cleanable/dirt,
-/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/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/office)
"jLj" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -50187,6 +49656,22 @@
},
/turf/open/floor/iron,
/area/maintenance/port/fore)
+"jMX" = (
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/siding/wideplating_new/dark/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/obj/machinery/camera/autoname{
+ dir = 5;
+ network = list("ss13","security")
+ },
+/turf/open/floor/iron/dark/smooth_corner{
+ dir = 4
+ },
+/area/crew_quarters/heads/hos)
"jNa" = (
/obj/structure/table/reinforced,
/obj/structure/cable/yellow{
@@ -50212,24 +49697,72 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/service)
-"jNs" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/engine/break_room)
"jNx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/catwalk_floor/flat_white,
/area/science/mixing)
+"jNA" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Security E.V.A. Storage";
+ req_access_txt = "3"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"jNE" = (
/obj/effect/landmark/event_spawn,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/quartermaster/storage)
+"jOd" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Cryogenic Lounge"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wideplating_new/dark,
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 1
+ },
+/turf/open/floor/prison/dark,
+/area/security/prison)
+"jOu" = (
+/obj/machinery/airalarm/directional/east,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/security/courtroom)
+"jOx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"jOQ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/engine/atmos)
"jPb" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/event_spawn,
@@ -50252,6 +49785,25 @@
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/aft)
+"jPs" = (
+/obj/structure/sign/nanotrasen,
+/turf/closed/wall/r_wall,
+/area/ai_monitored/security/armory)
+"jPw" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/turf/open/floor/prison/dark,
+/area/security/prison)
"jPx" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -50288,6 +49840,18 @@
/obj/item/pen,
/turf/open/floor/carpet/grimy,
/area/bridge)
+"jPT" = (
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"jQx" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -50349,14 +49913,6 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/turf/open/floor/iron/white,
/area/medical/surgery)
-"jRh" = (
-/obj/machinery/gulag_teleporter,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/brig)
"jRv" = (
/obj/effect/landmark/event_spawn,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -50409,6 +49965,12 @@
},
/turf/open/floor/iron,
/area/quartermaster/qm)
+"jRZ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/prison/dark,
+/area/security/execution/transfer)
"jSe" = (
/obj/machinery/door/firedoor/heavy,
/obj/effect/spawner/structure/window/reinforced,
@@ -50434,16 +49996,6 @@
},
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"jSw" = (
-/obj/structure/table,
-/obj/machinery/status_display/evac{
- pixel_x = -32
- },
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/courtroom)
"jSy" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
@@ -50487,35 +50039,34 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
-"jTh" = (
-/obj/effect/decal/cleanable/oil,
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/quartermaster/warehouse)
"jTk" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/medical/patients_rooms)
+"jTo" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "Prisongate"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/effect/spawner/structure/window/reinforced/prison,
+/turf/open/floor/plating,
+/area/security/prison)
"jTq" = (
/obj/structure/chair/office/light,
/turf/open/floor/carpet/blue,
/area/crew_quarters/heads/cmo)
+"jTG" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "garbage"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
"jTK" = (
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -50603,23 +50154,16 @@
/obj/effect/mapping_helpers/dead_body_placer,
/turf/open/floor/iron,
/area/medical/morgue)
-"jVf" = (
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
+"jVg" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
},
/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "hosspace";
- name = "HoS Space Blast door"
+ icon_state = "1-8"
},
-/turf/open/floor/plating,
-/area/crew_quarters/heads/hos)
+/turf/open/floor/iron,
+/area/quartermaster/qm)
"jVv" = (
/obj/item/kirbyplants/random,
/obj/machinery/firealarm{
@@ -50657,18 +50201,48 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/hallway/secondary/service)
-"jVJ" = (
-/obj/structure/easel,
-/obj/item/canvas/twentythree_twentythree,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/prison,
-/area/security/prison)
"jVL" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible,
/turf/open/floor/iron,
/area/medical/patients_rooms)
+"jVM" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/security/glass{
+ name = "Warden's Office";
+ req_access_txt = "3"
+ },
+/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/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/iron/dark,
+/area/security/warden)
+"jVW" = (
+/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/brown{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/fore)
"jWe" = (
/obj/machinery/computer/upload/borg{
dir = 1
@@ -50720,6 +50294,12 @@
},
/turf/open/floor/catwalk_floor/iron,
/area/engine/atmos)
+"jWY" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"jXa" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -50727,18 +50307,19 @@
},
/turf/open/floor/iron,
/area/maintenance/port)
-"jXn" = (
-/obj/structure/table/reinforced,
-/obj/item/folder/red,
-/obj/item/restraints/handcuffs,
-/obj/structure/disposalpipe/segment{
+"jXf" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/trunk{
dir = 4
},
-/obj/item/storage/box/prisoner,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/effect/turf_decal/bot,
/turf/open/floor/iron/dark,
-/area/security/brig)
+/area/crew_quarters/heads/hos)
+"jXo" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron/white,
+/area/science/misc_lab/range)
"jXs" = (
/obj/machinery/gateway,
/obj/structure/cable/yellow{
@@ -50752,14 +50333,17 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/gateway)
-"jXJ" = (
-/obj/structure/chair{
- dir = 4
+"jXx" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/courtroom)
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/turf/open/floor/iron/dark/textured,
+/area/security/prison)
"jXQ" = (
/obj/machinery/door/airlock/external,
/obj/effect/turf_decal/stripes/closeup,
@@ -50826,6 +50410,28 @@
},
/turf/open/floor/iron,
/area/science/xenobiology)
+"jYR" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
+"jYT" = (
+/obj/effect/turf_decal/stripes/openup{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron,
+/area/ai_monitored/security/armory)
"jZj" = (
/obj/effect/landmark/blobstart,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -50842,6 +50448,28 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/aft)
+"jZp" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/main)
+"jZD" = (
+/obj/structure/chair{
+ pixel_y = -2
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/prison/dark,
+/area/security/prison)
"jZE" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -50855,29 +50483,6 @@
},
/turf/open/floor/iron,
/area/maintenance/starboard/aft)
-"jZH" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/red,
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/iron,
-/area/security/brig)
-"jZK" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/iron,
-/area/quartermaster/sorting)
"jZP" = (
/obj/machinery/door/poddoor/preopen{
id = "bridgedoors";
@@ -50889,17 +50494,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/bridge)
-"jZR" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/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,
-/area/quartermaster/miningoffice)
"jZS" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -50909,30 +50503,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/catwalk_floor/iron,
/area/engine/atmos)
-"jZX" = (
-/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/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/red,
-/turf/open/floor/iron,
-/area/security/brig)
-"kaf" = (
-/obj/machinery/light,
-/obj/item/radio/intercom{
- pixel_y = -26
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/security/brig)
"kaj" = (
/obj/structure/window/reinforced{
dir = 4
@@ -50987,31 +50557,39 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
-"kaR" = (
-/obj/structure/chair/office{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/turf/open/floor/carpet/red,
-/area/crew_quarters/heads/hos)
"kbc" = (
/obj/machinery/status_display/evac,
/turf/closed/wall,
/area/medical/medbay/lobby)
-"kbg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
+"kbf" = (
+/obj/machinery/airalarm/directional/east,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
},
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted,
+/turf/open/floor/iron,
+/area/crew_quarters/toilet/auxiliary)
+"kbp" = (
/obj/effect/turf_decal/tile/red/half/contrasted{
dir = 1
},
-/turf/open/floor/iron,
-/area/security/brig)
+/obj/structure/rack,
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/storage/toolbox/emergency{
+ pixel_x = 2;
+ pixel_y = -3
+ },
+/obj/item/radio/off,
+/obj/item/wirecutters{
+ pixel_y = 2
+ },
+/obj/item/multitool,
+/turf/open/floor/iron/dark,
+/area/security/warden)
"kbv" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
@@ -51071,34 +50649,6 @@
},
/turf/open/floor/carpet/royalblue,
/area/crew_quarters/heads/hop)
-"kcz" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
-/turf/open/floor/iron,
-/area/maintenance/port/fore)
-"kcF" = (
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/science/shuttledock)
"kcL" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -51127,6 +50677,27 @@
},
/turf/open/floor/carpet/grimy,
/area/chapel/office)
+"kcQ" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/iron/dark/smooth_large,
+/area/security/courtroom)
+"kcR" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/prison/dark,
+/area/security/prison)
"kcZ" = (
/obj/effect/turf_decal/tile/blue{
dir = 4
@@ -51141,6 +50712,15 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/aft)
+"kdd" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/window/reinforced,
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/turf/open/floor/iron/dark,
+/area/security/brig/medbay)
"kdh" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/half/contrasted,
@@ -51155,6 +50735,19 @@
},
/turf/open/floor/iron,
/area/maintenance/starboard/aft)
+"kdk" = (
+/obj/machinery/door/airlock/public/glass{
+ name = "Fore Primary Hallway"
+ },
+/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/iron,
+/area/hallway/primary/fore)
"kdo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -51220,6 +50813,28 @@
/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/open/floor/catwalk_floor/iron_dark,
/area/maintenance/disposal/incinerator)
+"kdY" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/plasticflaps/opaque,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "atmoslock";
+ name = "Atmospherics Lockdown Blast door"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=8";
+ dir = 8;
+ freq = 1400;
+ location = "Atmospherics"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/engine/atmos)
"kdZ" = (
/obj/structure/table/reinforced,
/obj/item/bodypart/chest/robot,
@@ -51241,14 +50856,6 @@
heat_capacity = 1e+006
},
/area/maintenance/starboard/fore)
-"keB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/brown/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/quartermaster/miningoffice)
"keP" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -51316,6 +50923,28 @@
},
/turf/open/floor/iron,
/area/maintenance/port)
+"kfQ" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/preopen{
+ id = "brigfront";
+ name = "Brig Blast door"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "outerbrig";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/security/brig)
"kfR" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -51341,6 +50970,12 @@
/obj/machinery/firealarm/directional/south,
/turf/open/floor/iron/dark,
/area/medical/morgue)
+"kgi" = (
+/obj/structure/chair/foldable{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"kgl" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/effect/landmark/start/geneticist,
@@ -51364,22 +50999,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/atmospherics_engine)
-"kgw" = (
-/obj/machinery/airalarm/directional/south{
- pixel_y = -22
- },
-/obj/effect/landmark/event_spawn,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/security/brig)
-"kgz" = (
-/obj/effect/turf_decal/tile/brown/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/quartermaster/qm)
"kgD" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -51417,29 +51036,16 @@
},
/turf/open/floor/iron,
/area/science/xenobiology)
-"kgR" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
+"kgK" = (
+/obj/machinery/computer/warrant{
+ dir = 4
},
+/obj/machinery/firealarm/directional/west,
/obj/effect/turf_decal/tile/red{
dir = 1
},
/turf/open/floor/iron,
/area/hallway/primary/starboard)
-"kgT" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/prison,
-/area/security/prison)
"khh" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 8
@@ -51472,6 +51078,30 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/science/robotics/mechbay)
+"khv" = (
+/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"
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/prison,
+/area/security/prison)
+"khN" = (
+/obj/structure/table,
+/obj/item/clothing/gloves/color/latex,
+/obj/item/clothing/mask/surgical,
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_x = 5;
+ pixel_y = -1
+ },
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/item/reagent_containers/syringe,
+/turf/open/floor/iron/white,
+/area/security/brig/medbay)
"khR" = (
/obj/structure/window/reinforced{
dir = 8
@@ -51493,6 +51123,24 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/science/explab)
+"kib" = (
+/obj/structure/punching_bag,
+/obj/effect/turf_decal/bot_white,
+/obj/effect/turf_decal/siding/wideplating_new/dark,
+/turf/open/floor/prison/dark,
+/area/security/prison)
+"kic" = (
+/obj/structure/table,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/computer/security/telescreen/interrogation{
+ pixel_y = 28
+ },
+/turf/open/floor/carpet/grimy,
+/area/security/main)
"kih" = (
/obj/structure/chair/stool/directional/west,
/obj/effect/turf_decal/tile/red/opposingcorners,
@@ -51534,31 +51182,37 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/maintenance/starboard/fore)
-"kiJ" = (
-/obj/effect/turf_decal/tile/blue,
-/obj/item/kirbyplants{
- icon_state = "plant-22"
+"kiC" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
},
-/obj/machinery/firealarm/directional/south,
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
+/turf/open/floor/iron/techmaint,
+/area/security/main)
"kiV" = (
/obj/structure/filingcabinet/medical,
/turf/open/floor/carpet/grimy,
/area/tcommsat/computer)
-"kjG" = (
+"kjF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
/obj/structure/cable/yellow{
- icon_state = "1-8"
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/techmaint,
+/area/security/prison/shielded)
+"kjM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
},
/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/bot,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/detectives_office)
+/turf/open/floor/iron/techmaint,
+/area/security/prison/shielded)
"kjN" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -51578,6 +51232,11 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/central)
+"kjP" = (
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/quartermaster/qm)
"kke" = (
/obj/structure/table/reinforced,
/obj/item/electronics/airalarm,
@@ -51592,26 +51251,6 @@
"kko" = (
/turf/open/floor/iron,
/area/security/brig)
-"kkr" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/brigdoor/northright{
- name = "Warden's Desk";
- req_access_txt = "3"
- },
-/obj/machinery/door/window/southright{
- name = "Warden's Desk"
- },
-/obj/item/folder/red,
-/obj/item/pen,
-/obj/item/poster/random_official{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/poster/random_official,
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/firedoor,
-/turf/open/floor/iron,
-/area/security/warden)
"kkw" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -51633,15 +51272,6 @@
},
/turf/open/floor/iron/white,
/area/medical/genetics)
-"kkx" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"kkz" = (
/mob/living/simple_animal/bot/cleanbot/medbay,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
@@ -51672,6 +51302,36 @@
},
/turf/open/floor/iron,
/area/science/nanite)
+"kkE" = (
+/obj/machinery/door/airlock/command{
+ name = "Head of Security's Office";
+ req_access_txt = "58"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron/dark,
+/area/crew_quarters/heads/hos)
"kkG" = (
/obj/structure/table/wood,
/obj/item/flashlight/lamp,
@@ -51683,26 +51343,6 @@
"kkL" = (
/turf/closed/wall,
/area/medical/break_room)
-"kkM" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/iron,
-/area/maintenance/starboard)
-"kkT" = (
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/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/security/main)
"kkX" = (
/obj/effect/landmark/event_spawn,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -51748,37 +51388,22 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/wood,
/area/crew_quarters/heads/captain)
-"kly" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/science/mixing)
-"klC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/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/security/brig)
-"klU" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+"klv" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 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/iron{
+ heat_capacity = 1e+006
},
+/area/crew_quarters/heads/chief)
+"kly" = (
+/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/engine/break_room)
+/turf/open/floor/iron/dark,
+/area/science/mixing)
"kme" = (
/obj/machinery/holopad,
/obj/structure/cable/yellow{
@@ -51791,29 +51416,11 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/janitor)
-"kmj" = (
-/obj/effect/turf_decal/stripes/line{
+"kmF" = (
+/turf/open/floor/iron/dark/side{
dir = 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/security/brig)
-"kmJ" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/item/kirbyplants/random,
-/obj/effect/turf_decal/tile/red/anticorner/contrasted,
-/turf/open/floor/iron,
-/area/security/prison)
+/area/security/courtroom)
"kmN" = (
/obj/machinery/light{
dir = 8
@@ -51826,6 +51433,18 @@
},
/turf/open/floor/iron/white,
/area/science/research)
+"kmP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/directional/south{
+ c_tag = "Security Hallway - Center";
+ name = "hallway camera";
+ network = list("ss13","security")
+ },
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron,
+/area/hallway/primary/starboard)
"kmU" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Engineering Maintenance";
@@ -51872,6 +51491,21 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"knr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/hydroponics)
"knB" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -51938,20 +51572,6 @@
heat_capacity = 1e+006
},
/area/crew_quarters/locker)
-"koE" = (
-/obj/machinery/airalarm/directional/east{
- pixel_x = 24
- },
-/obj/structure/mirror{
- pixel_x = 26;
- pixel_y = 32
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/turf/open/floor/iron/white,
-/area/medical/surgery)
"koM" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -52072,20 +51692,6 @@
},
/turf/open/floor/iron,
/area/science/xenobiology)
-"krq" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/iron/white/side{
- dir = 4
- },
-/area/hallway/secondary/service)
"krA" = (
/obj/machinery/chem_master/condimaster{
name = "HoochMaster 2000"
@@ -52109,6 +51715,31 @@
/obj/machinery/light/small,
/turf/open/floor/iron,
/area/medical/break_room)
+"krI" = (
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/hallway/secondary/command)
+"ksc" = (
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/machinery/firealarm/directional/west,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/white,
+/area/security/brig/medbay)
+"ksd" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance/two,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron{
+ heat_capacity = 1e+006
+ },
+/area/maintenance/starboard)
"ksf" = (
/obj/structure/table/reinforced,
/obj/item/healthanalyzer,
@@ -52144,17 +51775,6 @@
},
/turf/open/floor/catwalk_floor/iron,
/area/engine/atmos)
-"kss" = (
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/machinery/flasher/portable,
-/obj/machinery/power/apc/auto_name/directional/west{
- pixel_x = -24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/iron/dark,
-/area/ai_monitored/security/armory)
"ksy" = (
/mob/living/simple_animal/pet/dog/pug{
density = 0;
@@ -52185,13 +51805,35 @@
},
/turf/open/floor/engine,
/area/science/explab)
-"ksZ" = (
+"ktc" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "Prisongate"
+ },
+/obj/effect/spawner/structure/window/reinforced/prison,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/security/prison)
+"ktd" = (
/obj/structure/chair{
- dir = 1;
- name = "Jury"
+ dir = 1
+ },
+/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/dark/smooth_edge{
+ dir = 4
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
/area/security/courtroom)
"ktR" = (
/obj/effect/decal/cleanable/dirt,
@@ -52205,6 +51847,12 @@
},
/turf/open/floor/iron,
/area/maintenance/port)
+"ktZ" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"kue" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -52223,6 +51871,10 @@
},
/turf/open/floor/iron,
/area/science/mixing)
+"kul" = (
+/obj/machinery/vending/hydroseeds,
+/turf/open/floor/prison/dark,
+/area/security/prison)
"kum" = (
/obj/item/kirbyplants/random,
/obj/effect/turf_decal/tile/red/half/contrasted{
@@ -52240,16 +51892,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/quartermaster/storage)
-"kuG" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/closet/secure_closet/genpop,
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/security/prison)
"kuO" = (
/obj/machinery/atmospherics/components/trinary/mixer/airmix{
dir = 1
@@ -52286,12 +51928,6 @@
/obj/machinery/light,
/turf/open/floor/iron/white,
/area/medical/medbay/central)
-"kvy" = (
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/brig)
"kvB" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet,
@@ -52313,17 +51949,6 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/central)
-"kvN" = (
-/obj/structure/bed/dogbed/cayenne,
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = 32
- },
-/obj/machinery/camera/directional/north{
- c_tag = "Security - Head of Security's Office"
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/crew_quarters/heads/hos)
"kvU" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
@@ -52347,24 +51972,6 @@
},
/turf/open/floor/catwalk_floor/iron,
/area/engine/atmospherics_engine)
-"kwc" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/brig)
"kwM" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -52384,18 +51991,28 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/hallway/primary/central)
+"kwW" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/crew_quarters/toilet/restrooms)
"kxm" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
/turf/open/floor/iron,
/area/medical/medbay/lobby)
-"kxq" = (
-/obj/effect/spawner/structure/window/reinforced/prison,
-/obj/machinery/door/poddoor/preopen{
- id = "Prisongate"
- },
-/obj/structure/cable/yellow,
-/turf/open/floor/plating,
-/area/security/prison)
+"kxG" = (
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/obj/machinery/vending/security,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark,
+/area/security/main)
"kxN" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/decal/cleanable/dirt,
@@ -52404,28 +52021,6 @@
},
/turf/open/floor/iron,
/area/storage/tools)
-"kxP" = (
-/obj/structure/chair{
- dir = 1;
- name = "Defense"
- },
-/obj/effect/turf_decal/tile/green/anticorner/contrasted{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/security/courtroom)
-"kxQ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/red/half/contrasted,
-/turf/open/floor/iron,
-/area/security/main)
-"kxT" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/stripes/corner,
-/turf/open/floor/iron,
-/area/ai_monitored/security/armory)
"kxZ" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -52469,22 +52064,6 @@
},
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"kza" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-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/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/engine/break_room)
"kzr" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -52543,24 +52122,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
-"kzR" = (
-/obj/machinery/computer/med_data{
- dir = 1
- },
-/obj/effect/turf_decal/tile/dark_blue/opposingcorners,
-/obj/effect/turf_decal/tile/blue/opposingcorners{
- dir = 1
- },
-/obj/machinery/status_display/evac{
- pixel_y = -32
- },
-/obj/effect/turf_decal/bot,
-/obj/machinery/camera/autoname{
- dir = 5;
- network = list("ss13","medbay")
- },
-/turf/open/floor/iron/white,
-/area/medical/medbay/central)
"kAf" = (
/obj/structure/table,
/obj/item/paper_bin,
@@ -52583,6 +52144,29 @@
},
/turf/open/floor/iron,
/area/maintenance/port/fore)
+"kAs" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 4
+ },
+/area/security/main)
+"kAN" = (
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
+ },
+/obj/machinery/camera/autoname{
+ dir = 9
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/quartermaster/exploration_prep)
"kAZ" = (
/obj/structure/table/reinforced,
/obj/item/aiModule/supplied/quarantine,
@@ -52612,6 +52196,14 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai_upload)
+"kBN" = (
+/obj/structure/table/wood,
+/obj/machinery/fax/law,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/wood/big,
+/area/lawoffice)
"kCi" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -52627,6 +52219,16 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/atmospherics_engine)
+"kCw" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/conveyor{
+ id = "cargodisposals"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/quartermaster/sorting)
"kCN" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -52677,22 +52279,6 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/aft)
-"kCZ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-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{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/detectives_office)
"kDw" = (
/obj/structure/cable{
icon_state = "2-8"
@@ -52749,13 +52335,6 @@
/obj/effect/turf_decal/tile/neutral/opposingcorners,
/turf/open/floor/iron,
/area/vacant_room/commissary)
-"kDW" = (
-/obj/structure/closet/secure_closet/brig_physician,
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron/white,
-/area/security/brig)
"kDX" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
@@ -52763,6 +52342,13 @@
},
/turf/open/floor/iron,
/area/science/xenobiology)
+"kEk" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green,
+/turf/open/floor/iron,
+/area/security/courtroom)
"kEq" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -52790,14 +52376,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/science/lab)
-"kEv" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple,
-/turf/open/floor/iron/white,
-/area/science/research)
"kEw" = (
/obj/structure/closet/secure_closet/hop,
/obj/item/clothing/suit/costume/ianshirt,
@@ -52807,6 +52385,13 @@
},
/turf/open/floor/carpet/royalblue,
/area/crew_quarters/heads/hop)
+"kEz" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/fore)
"kED" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -52825,6 +52410,20 @@
},
/turf/open/floor/iron,
/area/crew_quarters/theatre)
+"kEI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 1
+ },
+/area/security/main)
"kEN" = (
/obj/effect/decal/cleanable/dirt,
/turf/closed/wall,
@@ -52836,20 +52435,24 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/atmospherics_engine)
-"kFG" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+"kFs" = (
+/obj/structure/table/wood,
+/obj/item/folder/blue,
+/obj/item/pen,
+/obj/effect/turf_decal/tile/green/fourcorners/contrasted,
+/turf/open/floor/iron{
+ heat_capacity = 1e+006
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/office)
-"kFK" = (
-/obj/machinery/power/apc/auto_name/directional/north,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
+/area/security/courtroom)
+"kFC" = (
+/obj/effect/turf_decal/tile/red/anticorner/contrasted,
+/obj/item/bedsheet/brown,
+/obj/structure/bed{
+ dir = 8
},
-/turf/open/floor/iron/white,
-/area/science/misc_lab/range)
+/obj/effect/landmark/prisonspawn,
+/turf/open/floor/iron/dark,
+/area/security/prison)
"kFO" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -52912,19 +52515,6 @@
},
/turf/open/floor/iron/telecomms,
/area/tcommsat/server)
-"kGl" = (
-/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/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/security/courtroom)
"kGA" = (
/obj/effect/landmark/xeno_spawn,
/obj/machinery/computer/pandemic,
@@ -52946,15 +52536,6 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/escape)
-"kGQ" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/landmark/start/assistant,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/courtroom)
"kGS" = (
/obj/structure/table/reinforced,
/obj/machinery/recharger{
@@ -53035,15 +52616,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/carpet/grimy,
/area/library)
-"kIk" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/office)
"kIu" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -53082,13 +52654,6 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/maintenance/port)
-"kIY" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/turf/open/floor/iron,
-/area/ai_monitored/security/armory)
"kJi" = (
/obj/structure/easel,
/obj/item/canvas/twentythree_nineteen,
@@ -53143,6 +52708,16 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"kJx" = (
+/obj/structure/table/wood,
+/obj/item/book/manual/wiki/security_space_law,
+/obj/item/camera/detective,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/dark,
+/area/security/detectives_office)
"kJB" = (
/obj/machinery/airalarm/directional/south{
pixel_y = -22
@@ -53156,6 +52731,27 @@
},
/turf/open/floor/iron,
/area/quartermaster/qm)
+"kJV" = (
+/obj/structure/closet/crate/bin,
+/obj/item/food/donut/chaos,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted,
+/turf/open/floor/prison,
+/area/security/prison)
+"kKE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/security/brig)
"kKK" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -53171,6 +52767,14 @@
},
/turf/open/floor/circuit/green,
/area/ai_monitored/turret_protected/ai)
+"kKQ" = (
+/obj/structure/chair/stool/bar,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron,
+/area/engine/break_room)
"kLj" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -53199,24 +52803,6 @@
},
/turf/open/floor/iron/white,
/area/science/mixing)
-"kLB" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/brig)
"kLG" = (
/obj/structure/chair/office{
dir = 4
@@ -53242,32 +52828,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/gateway)
-"kMe" = (
-/obj/machinery/computer/secure_data{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/main)
-"kMh" = (
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/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
- },
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/security/prison)
-"kMB" = (
+"kMj" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
},
@@ -53277,12 +52838,14 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
-/obj/effect/turf_decal/tile/red,
-/obj/machinery/light{
+/obj/effect/turf_decal/tile/brown/half/contrasted{
dir = 1
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/open/floor/iron,
-/area/security/brig)
+/area/quartermaster/qm)
"kMI" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -53311,19 +52874,19 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron/dark/textured,
/area/maintenance/disposal/incinerator)
-"kNm" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+"kNE" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 4;
+ sortType = 30
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/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/red/half/contrasted,
/turf/open/floor/iron,
-/area/security/brig)
+/area/hallway/primary/starboard)
"kNI" = (
/obj/structure/disposalpipe/sorting/mail{
dir = 4;
@@ -53334,23 +52897,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/medical/medbay/aft)
-"kNN" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/sorting/mail/flip{
- dir = 8;
- name = "Hydroponics Junction";
- sortType = 21
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
"kOn" = (
/obj/machinery/iv_drip,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -53386,18 +52932,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/transit_tube)
-"kOF" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/security/brig)
"kOG" = (
/obj/machinery/computer/rdconsole/robotics{
dir = 8
@@ -53450,35 +52984,21 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/port)
-"kPH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/obj/effect/turf_decal/tile/red/anticorner/contrasted{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/security/main)
-"kPM" = (
+"kPB" = (
+/obj/structure/cable/yellow,
/obj/structure/cable/yellow{
- icon_state = "1-2"
+ icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/iron,
-/area/security/brig)
-"kQb" = (
/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+ icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "ceprivacy";
+ name = "Chief's Privacy Shutters"
},
-/obj/effect/turf_decal/tile/red,
-/turf/open/floor/iron,
-/area/security/brig)
+/turf/open/floor/plating,
+/area/crew_quarters/heads/chief)
"kQk" = (
/obj/machinery/computer/crew,
/obj/machinery/requests_console{
@@ -53493,15 +53013,14 @@
},
/turf/open/floor/carpet/blue,
/area/crew_quarters/heads/cmo)
-"kQK" = (
+"kQG" = (
+/obj/structure/cable/yellow,
/obj/structure/cable/yellow{
- icon_state = "1-4"
+ icon_state = "0-2"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/storage/tools)
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/engine/gravity_generator)
"kQN" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -53540,14 +53059,6 @@
},
/turf/open/floor/catwalk_floor/iron_dark,
/area/maintenance/disposal/incinerator)
-"kRr" = (
-/obj/structure/table/reinforced,
-/obj/item/clipboard,
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/security/main)
"kRu" = (
/obj/machinery/light{
dir = 1
@@ -53574,19 +53085,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/chapel/office)
-"kRR" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/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,
-/turf/open/floor/iron/white,
-/area/science/research)
"kSf" = (
/obj/structure/table/reinforced,
/obj/structure/reagent_dispensers/peppertank{
@@ -53618,27 +53116,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/exploration_prep)
-"kSI" = (
-/obj/structure/chair{
- name = "Prosecution"
- },
-/obj/effect/turf_decal/tile/red/anticorner/contrasted{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/security/courtroom)
-"kSJ" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/reagent_dispensers/peppertank{
- pixel_y = 32
- },
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/courtroom)
"kSL" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/structure/table,
@@ -53664,19 +53141,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat_interior)
-"kTa" = (
-/obj/machinery/camera/directional/east{
- c_tag = "Detective's Interrogation"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/detectives_office)
"kTs" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -53695,16 +53159,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron/white,
/area/medical/virology)
-"kTJ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown/half/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/storage)
"kTN" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -53827,26 +53281,6 @@
},
/turf/open/floor/iron/telecomms,
/area/tcommsat/server)
-"kVN" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/security/brig)
-"kVR" = (
-/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/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/storage)
"kWF" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -53863,28 +53297,40 @@
},
/turf/open/floor/iron,
/area/maintenance/port/aft)
-"kWO" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+"kWK" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/obj/machinery/camera/autoname{
- dir = 5;
- network = list("ss13","medbay")
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Maintenance Hatch";
+ req_access_txt = "12"
},
-/turf/open/floor/prison,
-/area/security/prison)
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/iron,
+/area/maintenance/starboard)
+"kXk" = (
+/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 = 8
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"kXs" = (
/obj/structure/chair/office{
dir = 8
},
/turf/open/floor/carpet/purple,
/area/vacant_room/office)
-"kXU" = (
-/obj/structure/table/reinforced,
-/obj/item/paper,
-/obj/item/pen,
-/turf/open/floor/prison,
-/area/security/prison)
"kXY" = (
/obj/structure/disposalpipe/segment,
/obj/structure/sign/departments/minsky/research/robotics{
@@ -53896,6 +53342,25 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
+"kYq" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/red,
+/obj/item/flashlight/seclite,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/item/assembly/timer,
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/security/main)
+"kYH" = (
+/obj/structure/chair/fancy/comfy{
+ color = "#666666";
+ dir = 1
+ },
+/turf/open/floor/carpet/red,
+/area/security/detectives_office)
"kYX" = (
/obj/effect/turf_decal/tile/blue/half/contrasted{
dir = 8
@@ -53918,6 +53383,16 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/library)
+"kZa" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/door/poddoor{
+ id = "SecJusticeChamber";
+ name = "Justice Vent"
+ },
+/turf/open/floor/plating,
+/area/security/execution/transfer)
"kZb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 6
@@ -53930,21 +53405,20 @@
},
/turf/open/floor/iron,
/area/crew_quarters/locker)
-"kZt" = (
-/obj/machinery/light_switch{
- pixel_x = 26;
- pixel_y = 26
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+"kZj" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/delivery,
+/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,
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
+/obj/machinery/portable_atmospherics/canister/plasma,
+/obj/effect/mapping_helpers/atmos_auto_connect,
+/obj/machinery/airalarm/server{
+ pixel_x = -22;
dir = 4
},
/turf/open/floor/iron,
-/area/security/courtroom)
+/area/tcommsat/server)
"kZP" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -53957,22 +53431,30 @@
},
/turf/open/floor/iron,
/area/science/xenobiology)
-"kZW" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
+"kZT" = (
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/obj/structure/table,
+/obj/item/toy/plush/beeplushie,
+/turf/open/floor/iron/dark,
+/area/security/prison)
+"laM" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
+/obj/machinery/light,
+/obj/machinery/status_display/evac{
+ pixel_y = -32
},
-/turf/open/floor/iron/dark/corner{
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
dir = 1
},
-/area/engine/break_room)
+/obj/machinery/camera/autoname{
+ dir = 10;
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/iron/white,
+/area/medical/surgery)
"laY" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/structure/bodycontainer/morgue{
@@ -53987,6 +53469,13 @@
},
/turf/open/floor/iron/dark,
/area/medical/morgue)
+"laZ" = (
+/obj/effect/landmark/event_spawn,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/iron,
+/area/hallway/primary/central)
"lbb" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -54014,6 +53503,21 @@
},
/turf/open/floor/iron,
/area/medical/morgue)
+"lbl" = (
+/obj/item/radio/intercom{
+ pixel_x = 26
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/camera/directional/east{
+ c_tag = "Auxiliary Tool Storage";
+ name = "engineering camera"
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/storage/tools)
"lbI" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -54046,17 +53550,6 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/maintenance/starboard/aft)
-"lcd" = (
-/obj/structure/sign/warning/pods{
- dir = 8;
- pixel_y = -32
- },
-/turf/open/floor/iron,
-/area/security/brig)
-"lco" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/turf/open/floor/iron,
-/area/ai_monitored/security/armory)
"lcB" = (
/obj/machinery/atmospherics/pipe/manifold/supply/visible{
dir = 1
@@ -54117,6 +53610,15 @@
},
/turf/open/floor/iron,
/area/quartermaster/storage)
+"ldx" = (
+/obj/structure/cable/yellow,
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/hydroponics)
"ldB" = (
/obj/structure/window/reinforced{
dir = 8
@@ -54155,22 +53657,15 @@
},
/turf/open/floor/plating,
/area/maintenance/port/aft)
-"ldJ" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+"ldQ" = (
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/advanced_airlock_controller/directional/west,
+/obj/machinery/light/small{
dir = 4
},
-/obj/effect/turf_decal/tile/red,
-/turf/open/floor/iron,
-/area/security/brig)
+/turf/open/floor/plating,
+/area/security/main)
"ldW" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -54216,12 +53711,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/bridge)
-"leN" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/brig)
"leQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock{
@@ -54277,6 +53766,12 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/science/xenobiology)
+"lfo" = (
+/obj/structure/chair/fancy/bench/right{
+ dir = 4
+ },
+/turf/open/floor/iron/techmaint,
+/area/security/prison/shielded)
"lfv" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -54320,35 +53815,6 @@
},
/turf/open/floor/iron,
/area/storage/primary)
-"lfV" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/crew_quarters/toilet/restrooms)
-"lfW" = (
-/obj/machinery/holopad,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/turf/open/floor/carpet/red,
-/area/crew_quarters/heads/hos)
"lgv" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
@@ -54370,6 +53836,12 @@
},
/turf/open/floor/iron,
/area/maintenance/starboard/aft)
+"lgP" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/starboard)
"lgV" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -54498,6 +53970,15 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/storage/tech)
+"liY" = (
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"ljc" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -54523,6 +54004,29 @@
},
/turf/open/floor/iron,
/area/maintenance/port/fore)
+"ljy" = (
+/obj/item/kirbyplants/random,
+/obj/structure/sign/poster/official/report_crimes{
+ pixel_y = -32
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/wood/big,
+/area/lawoffice)
+"ljF" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/curtain/directional{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/heads/hos)
"ljP" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
@@ -54549,6 +54053,20 @@
},
/turf/open/floor/plating,
/area/maintenance/disposal)
+"lkg" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/red/corner{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/auto_name/directional/west,
+/turf/open/floor/iron/dark,
+/area/security/brig/medbay)
"lkj" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -54576,24 +54094,21 @@
},
/turf/open/floor/iron/dark,
/area/aisat)
-"lkL" = (
-/obj/structure/rack,
-/obj/item/crowbar,
-/obj/item/storage/toolbox/mechanical,
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = 32
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/crew_quarters/heads/chief)
"lkM" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/science/server)
+"lkU" = (
+/obj/structure/closet/secure_closet/evidence,
+/obj/effect/turf_decal/bot,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/security/brig)
"lle" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -54604,31 +54119,6 @@
"llj" = (
/turf/open/floor/glass/reinforced,
/area/storage/primary)
-"llm" = (
-/obj/machinery/vending/cigarette,
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/camera/directional/east{
- c_tag = "Courtroom - Aft"
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/courtroom)
-"lln" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/structure/sign/warning/electricshock{
- pixel_x = 32;
- pixel_y = -32
- },
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
"llq" = (
/obj/machinery/computer/holodeck{
dir = 4
@@ -54640,6 +54130,18 @@
heat_capacity = 1e+006
},
/area/crew_quarters/fitness/recreation)
+"llz" = (
+/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 = 4
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"llK" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -54670,6 +54172,24 @@
},
/turf/open/floor/iron,
/area/quartermaster/office)
+"lmr" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/quartermaster/storage)
"lmz" = (
/obj/structure/chair/fancy/sofa/old/right{
color = "#596479"
@@ -54731,39 +54251,25 @@
/obj/effect/decal/cleanable/dirt,
/turf/closed/wall,
/area/maintenance/aft)
-"lnm" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+"lnP" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security{
+ aiControlDisabled = 1;
+ id_tag = "prisonereducation";
+ name = "Solitary Confinement";
+ req_one_access_txt = "1;4"
},
-/obj/structure/cable/yellow{
- icon_state = "1-8"
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/security/courtroom)
-"lnV" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/mining/glass{
- name = "Delivery Office";
- req_access_txt = "50"
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
+ dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/iron,
-/area/quartermaster/sorting)
+/turf/open/floor/iron/dark,
+/area/security/main)
"lnY" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/purple/half/contrasted{
@@ -54783,6 +54289,14 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/atmos)
+"lpi" = (
+/obj/structure/chair/office{
+ dir = 4
+ },
+/obj/effect/landmark/start/security_officer,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron/dark,
+/area/security/main)
"lpo" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -54816,30 +54330,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/engine/engineering)
-"lpz" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/crew_quarters/cryopods)
-"lpD" = (
-/obj/machinery/power/apc/auto_name/directional/north,
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/turf/open/floor/plating{
- broken = 1
- },
-/area/maintenance/starboard)
"lpX" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -54856,6 +54346,31 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/bridge)
+"lqr" = (
+/obj/structure/rack,
+/obj/item/stack/package_wrap,
+/obj/item/stack/package_wrap{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/stack/package_wrap{
+ pixel_x = -1;
+ pixel_y = 10
+ },
+/obj/item/stack/package_wrap{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/item/prison_scanner,
+/obj/item/prison_scanner,
+/obj/item/prison_scanner,
+/obj/item/prison_scanner,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"lqt" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
@@ -54924,13 +54439,6 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/customs/auxiliary)
-"lrb" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/qm)
"lrd" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
@@ -54957,28 +54465,77 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"lrV" = (
+"lrx" = (
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable/yellow,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark,
+/area/security/execution/transfer)
+"lrF" = (
+/obj/structure/bodycontainer/morgue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron/dark,
+/area/security/detectives_office)
+"lrM" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/item/storage/crayons,
/obj/structure/table/reinforced,
-/obj/item/restraints/handcuffs,
-/obj/item/assembly/flash/handheld,
-/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/security/main)
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/siding/wideplating_new{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"lsf" = (
/obj/effect/decal/cleanable/oil,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/quartermaster/storage)
-"lsi" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/security/brig)
-"lss" = (
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = -32;
- pixel_y = 32
+"lsg" = (
+/obj/structure/chair/office{
+ dir = 4
},
-/turf/open/floor/carpet/red,
-/area/crew_quarters/heads/hos)
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron,
+/area/quartermaster/qm)
+"lsH" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wideplating_new{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/prison,
+/area/security/prison)
+"lsJ" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/brown,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/quartermaster/miningoffice)
"lsO" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -54998,21 +54555,6 @@
/obj/item/crowbar,
/turf/open/floor/iron,
/area/science/xenobiology)
-"lsY" = (
-/obj/structure/cable/white,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/machinery/power/apc/auto_name/directional/south,
-/obj/machinery/light_switch{
- pixel_x = -11;
- pixel_y = -22
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port/fore)
"lto" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -55037,17 +54579,36 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai)
-"ltx" = (
-/obj/effect/spawner/randomvend/snack,
-/obj/machinery/light{
- dir = 8
+"lty" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
},
-/obj/structure/extinguisher_cabinet{
- pixel_y = 32
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/iron/edge,
/area/security/courtroom)
+"ltF" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 4
+ },
+/area/security/courtroom)
+"ltJ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"ltL" = (
/obj/machinery/airalarm/directional/south{
pixel_y = -22
@@ -55077,27 +54638,22 @@
},
/turf/open/floor/iron,
/area/maintenance/starboard/aft)
+"ltU" = (
+/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
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"ltW" = (
/obj/effect/spawner/structure/window/reinforced/tinted,
/turf/open/floor/plating,
/area/medical/break_room)
-"ltX" = (
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/obj/structure/filingcabinet/chestdrawer,
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/courtroom)
-"lue" = (
-/obj/effect/turf_decal/tile/red/half/contrasted,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron,
-/area/security/brig)
"luv" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -55118,12 +54674,37 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/medical/chemistry)
+"luQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/chair/office,
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 1
+ },
+/area/security/main)
"lvd" = (
/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/science/research)
+"lve" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/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/hallway/primary/starboard)
"lvk" = (
/obj/structure/cable,
/obj/machinery/power/solar{
@@ -55139,6 +54720,21 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
+"lvF" = (
+/obj/structure/cable/yellow,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -22
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/starboard/aft)
"lvI" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -55216,24 +54812,6 @@
dir = 1
},
/area/engine/atmos)
-"lwO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/computer/bounty{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/storage)
-"lwQ" = (
-/obj/machinery/portable_atmospherics/scrubber/huge,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white,
-/obj/effect/turf_decal/bot,
-/obj/machinery/power/apc/auto_name/directional/east,
-/turf/open/floor/iron,
-/area/science/storage)
"lwT" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -55255,6 +54833,15 @@
dir = 1
},
/area/engine/atmos)
+"lxp" = (
+/obj/structure/table/reinforced,
+/obj/item/book/manual/wiki/security_space_law,
+/obj/item/taperecorder,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/side,
+/area/security/main)
"lxE" = (
/obj/structure/showcase/cyborg/old{
dir = 4;
@@ -55283,25 +54870,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/science/lab)
-"lxS" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/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/red{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
"lxX" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -55324,19 +54892,15 @@
},
/turf/open/floor/catwalk_floor,
/area/maintenance/solars/port/aft)
-"lyc" = (
-/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
+"lyx" = (
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 1
},
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+/obj/machinery/computer/prisoner/management{
+ dir = 1
},
-/turf/open/floor/iron,
-/area/security/warden)
+/turf/open/floor/iron/dark/smooth_half,
+/area/crew_quarters/heads/hos)
"lyD" = (
/obj/item/kirbyplants/random,
/obj/effect/turf_decal/tile/blue/half/contrasted{
@@ -55353,22 +54917,17 @@
},
/turf/open/floor/iron,
/area/quartermaster/qm)
-"lyK" = (
+"lyS" = (
/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "atmoslock";
- name = "Atmospherics Lockdown Blast door"
+ icon_state = "0-2"
},
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/iron,
-/area/engine/break_room)
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/checkpoint/supply)
"lzj" = (
/obj/structure/cable/yellow{
icon_state = "2-4"
@@ -55392,6 +54951,9 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/storage/tech)
+"lzq" = (
+/turf/open/floor/prison/dark,
+/area/security/prison)
"lzw" = (
/obj/structure/plasticflaps/opaque,
/obj/machinery/conveyor{
@@ -55461,6 +55023,22 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/supply)
+"lzQ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron,
+/area/quartermaster/storage)
+"lzU" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron,
+/area/teleporter)
"lzX" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -55482,6 +55060,15 @@
},
/turf/open/floor/iron,
/area/storage/primary)
+"lAn" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/crew_quarters/heads/hor)
"lAo" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -55548,32 +55135,6 @@
"lBG" = (
/turf/open/floor/carpet/grimy,
/area/chapel/main)
-"lBK" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/door/poddoor/preopen{
- id = "brigfront";
- name = "Brig Blast door"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/turnstile{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/security/prison)
"lCt" = (
/obj/effect/turf_decal/tile/red/opposingcorners,
/obj/effect/turf_decal/tile/blue/opposingcorners{
@@ -55620,27 +55181,6 @@
},
/turf/open/floor/iron,
/area/science/misc_lab)
-"lDF" = (
-/obj/machinery/door/airlock/security{
- name = "Armory";
- req_access_txt = "3";
- security_level = 6
- },
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line,
-/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/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/iron,
-/area/ai_monitored/security/armory)
"lDW" = (
/obj/machinery/computer/operating{
dir = 4
@@ -55713,14 +55253,12 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/escape)
-"lES" = (
-/obj/structure/chair{
- dir = 4
+"lEW" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
},
-/obj/effect/landmark/start/assistant,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/courtroom)
+/turf/open/floor/iron,
+/area/engine/break_room)
"lFb" = (
/obj/structure/table/reinforced,
/obj/item/folder/blue,
@@ -55751,14 +55289,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"lFk" = (
-/obj/structure/chair{
- dir = 1;
- name = "Defense"
- },
-/obj/effect/turf_decal/tile/green/anticorner/contrasted,
-/turf/open/floor/iron,
-/area/security/courtroom)
"lFm" = (
/obj/effect/turf_decal/siding/wood{
dir = 4
@@ -55778,15 +55308,6 @@
},
/turf/open/floor/iron,
/area/medical/genetics)
-"lFB" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 5
- },
-/obj/machinery/meter,
-/obj/machinery/door/window/westright,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/execution/transfer)
"lFH" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/delivery,
@@ -55799,6 +55320,33 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/engine/atmos)
+"lFY" = (
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/effect/turf_decal/bot,
+/obj/structure/tank_dispenser/oxygen,
+/turf/open/floor/iron/smooth,
+/area/security/main)
+"lGb" = (
+/obj/item/tank/internals/oxygen/red{
+ pixel_x = -4;
+ pixel_y = -1
+ },
+/obj/item/tank/internals/oxygen/red{
+ pixel_x = 4;
+ pixel_y = -1
+ },
+/obj/item/tank/internals/anesthetic{
+ pixel_x = 2
+ },
+/obj/item/storage/toolbox/mechanical,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/structure/closet/crate{
+ opened = 1
+ },
+/obj/item/wrench,
+/turf/open/floor/iron/dark,
+/area/security/execution/transfer)
"lGi" = (
/obj/structure/table/wood/fancy,
/turf/open/floor/carpet/grimy,
@@ -55813,6 +55361,17 @@
},
/turf/open/floor/iron,
/area/maintenance/port)
+"lGC" = (
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/obj/item/kirbyplants/random,
+/turf/open/floor/prison/dark,
+/area/security/prison)
"lGS" = (
/obj/structure/table,
/obj/item/gps,
@@ -55870,6 +55429,35 @@
},
/turf/open/floor/iron/white,
/area/crew_quarters/heads/cmo)
+"lHS" = (
+/obj/item/clothing/under/rank/security/detective{
+ icon_state = "curator"
+ },
+/obj/item/clothing/head/fedora/det_hat{
+ icon_state = "curator"
+ },
+/obj/structure/closet/secure_closet/detective,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/machinery/light/small,
+/obj/item/clothing/suit/jacket/det_suit{
+ icon_state = "curator"
+ },
+/turf/open/floor/iron/dark,
+/area/security/detectives_office)
+"lHU" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron{
+ heat_capacity = 1e+006
+ },
+/area/maintenance/starboard)
"lId" = (
/obj/machinery/nanite_program_hub,
/obj/effect/turf_decal/bot,
@@ -55880,21 +55468,6 @@
/obj/machinery/airalarm/directional/west,
/turf/open/floor/iron/dark,
/area/science/nanite)
-"lIi" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/brig)
"lIk" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 4
@@ -55925,6 +55498,13 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"lIA" = (
+/obj/effect/landmark/event_spawn,
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"lII" = (
/obj/machinery/light/small{
dir = 1
@@ -55932,16 +55512,23 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/maintenance/department/medical/morgue)
-"lIS" = (
+"lIP" = (
+/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
- icon_state = "0-8"
+ icon_state = "1-4"
},
-/obj/machinery/power/apc/auto_name/directional/east,
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
+/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/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
/turf/open/floor/iron,
-/area/security/courtroom)
+/area/quartermaster/office)
"lIX" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -55977,14 +55564,31 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/central)
-"lJk" = (
-/obj/structure/cable/white,
+"lJy" = (
+/obj/item/radio/intercom{
+ pixel_y = -26
+ },
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
+"lJH" = (
+/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
- icon_state = "0-2"
+ icon_state = "1-2"
},
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/brig)
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/quartermaster/warehouse)
"lJK" = (
/obj/machinery/firealarm/directional/north,
/obj/effect/turf_decal/tile/neutral{
@@ -56036,17 +55640,11 @@
},
/turf/open/floor/iron/white,
/area/science/shuttledock)
-"lJY" = (
-/obj/machinery/disposal/bin,
-/obj/structure/extinguisher_cabinet{
- pixel_y = 32
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/crew_quarters/heads/chief)
+"lKh" = (
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/security/brig/medbay)
"lKj" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -56083,16 +55681,6 @@
},
/turf/open/floor/iron,
/area/maintenance/port/aft)
-"lKU" = (
-/obj/structure/rack,
-/obj/item/gun/energy/ionrifle,
-/obj/item/clothing/suit/armor/laserproof,
-/obj/item/gun/energy/temperature/security,
-/obj/structure/window/reinforced,
-/obj/effect/turf_decal/bot,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/ai_monitored/security/armory)
"lLa" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -56120,6 +55708,20 @@
},
/turf/open/floor/plating,
/area/medical/morgue)
+"lLw" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Detective's Office";
+ network = list("ss13","security")
+ },
+/obj/machinery/button/door{
+ id = "detectivewindows";
+ name = "Detective's Privacy shutters";
+ pixel_x = -24;
+ pixel_y = 6;
+ req_access_txt = "3"
+ },
+/turf/open/floor/carpet/red,
+/area/security/detectives_office)
"lLz" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -56146,6 +55748,17 @@
},
/turf/open/floor/iron,
/area/medical/genetics/cloning)
+"lLS" = (
+/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/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"lMb" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/bot,
@@ -56157,14 +55770,6 @@
},
/turf/open/floor/iron,
/area/engine/atmospherics_engine)
-"lMm" = (
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/corner,
-/turf/open/floor/iron,
-/area/ai_monitored/security/armory)
"lMr" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -56205,33 +55810,11 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/atmospherics_engine)
-"lMG" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/effect/turf_decal/tile/red,
-/turf/open/floor/iron,
-/area/security/brig)
-"lMP" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/junction{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/hallway/primary/fore)
+"lMT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
"lNi" = (
/obj/machinery/meter,
/obj/effect/decal/cleanable/dirt,
@@ -56290,22 +55873,6 @@
heat_capacity = 1e+006
},
/area/crew_quarters/toilet/restrooms)
-"lNC" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/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/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/sorting)
"lNI" = (
/obj/structure/table/wood,
/obj/machinery/status_display/evac{
@@ -56344,19 +55911,6 @@
},
/turf/open/floor/iron/white,
/area/janitor)
-"lOo" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
"lOr" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -56391,6 +55945,15 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/bridge)
+"lON" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"lOY" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
@@ -56401,33 +55964,23 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/iron,
/area/science/misc_lab/range)
-"lPf" = (
-/obj/machinery/shower,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/noslip/standard,
-/area/security/prison)
"lPo" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/machinery/anesthetic_machine,
/turf/open/floor/iron/dark,
/area/medical/surgery)
-"lPD" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
+"lPw" = (
+/obj/structure/girder,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"lPz" = (
/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/brown/half/contrasted{
- dir = 1
+ icon_state = "1-2"
},
-/turf/open/floor/iron,
-/area/quartermaster/storage)
+/turf/open/floor/iron/dark,
+/area/security/main)
"lPE" = (
/obj/structure/table/reinforced,
/obj/structure/cable/yellow{
@@ -56470,6 +56023,23 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
+"lQb" = (
+/obj/machinery/door/airlock/mining{
+ name = "Cargo Bay";
+ req_access_txt = "31"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/quartermaster/office)
"lQf" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -56495,14 +56065,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint/customs/auxiliary)
-"lQD" = (
-/obj/structure/chair/office{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/effect/turf_decal/stripes/corner,
-/turf/open/floor/iron/dark,
-/area/security/brig)
"lQP" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -56526,14 +56088,6 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/patients_rooms)
-"lRp" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating{
- burnt = 1
- },
-/area/security/brig)
"lRs" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -56549,6 +56103,14 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
+"lRN" = (
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/cable/yellow,
+/obj/machinery/camera/autoname/directional/south{
+ network = list("ss13","prison")
+ },
+/turf/open/floor/iron/techmaint,
+/area/security/prison/shielded)
"lRP" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -56569,6 +56131,14 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint)
+"lRY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 8
+ },
+/area/security/courtroom)
"lSa" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/machinery/light/small,
@@ -56589,6 +56159,18 @@
},
/turf/open/floor/iron,
/area/quartermaster/storage)
+"lSe" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/machinery/airalarm/directional/south{
+ pixel_y = -22
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/camera/directional/south{
+ c_tag = "Cargo - Mining Dock";
+ name = "cargo camera"
+ },
+/turf/open/floor/iron,
+/area/quartermaster/miningoffice)
"lSh" = (
/obj/item/crowbar,
/obj/item/wrench,
@@ -56610,28 +56192,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/heads/chief)
-"lSp" = (
-/obj/structure/table/wood,
-/obj/item/storage/briefcase,
-/obj/structure/sign/poster/official/help_others{
- pixel_x = 32
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/courtroom)
-"lSr" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
"lSu" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -56658,23 +56218,6 @@
},
/turf/open/floor/iron,
/area/engine/gravity_generator)
-"lSL" = (
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 8
- },
-/obj/effect/landmark/start/warden,
-/obj/structure/chair/office{
- dir = 8
- },
-/obj/machinery/button/door{
- id = "armory";
- name = "Armory Shutters";
- pixel_x = -26;
- pixel_y = 8;
- req_access_txt = "3"
- },
-/turf/open/floor/iron,
-/area/security/warden)
"lST" = (
/obj/structure/chair/office{
dir = 1
@@ -56748,19 +56291,6 @@
},
/turf/open/floor/iron/white,
/area/science/mixing)
-"lTL" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/hallway/primary/port)
"lTV" = (
/obj/effect/turf_decal/tile/red/half/contrasted{
dir = 1
@@ -56813,11 +56343,45 @@
},
/turf/open/floor/iron,
/area/quartermaster/office)
+"lUj" = (
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/structure/bed/roller,
+/obj/item/clothing/suit/jacket/straight_jacket,
+/obj/item/clothing/mask/muzzle,
+/obj/item/clothing/glasses/blindfold,
+/obj/machinery/airalarm/directional/south{
+ pixel_y = -22
+ },
+/turf/open/floor/iron/white,
+/area/security/brig/medbay)
"lUu" = (
/obj/structure/window/reinforced,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/aisat)
+"lUE" = (
+/obj/machinery/door/window/brigdoor/northright{
+ name = "Warden's Desk";
+ req_access_txt = "3";
+ dir = 2
+ },
+/obj/machinery/door/window/southright{
+ name = "Warden's Desk";
+ dir = 1
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/structure/desk_bell{
+ pixel_x = 8
+ },
+/obj/item/folder/red{
+ pixel_x = -6
+ },
+/obj/item/pen{
+ pixel_x = -3
+ },
+/turf/open/floor/iron/dark,
+/area/security/warden)
"lUI" = (
/obj/structure/cable/yellow{
icon_state = "2-4"
@@ -56890,19 +56454,32 @@
icon_state = "chapel"
},
/area/chapel/main)
-"lWg" = (
-/obj/machinery/light,
-/obj/machinery/light_switch{
- pixel_y = -26
+"lWc" = (
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 1
},
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/effect/turf_decal/tile/yellow/half/contrasted{
- dir = 8
+/obj/effect/turf_decal/tile/neutral,
+/obj/item/kirbyplants/random,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
},
-/turf/open/floor/iron,
-/area/engine/break_room)
+/obj/machinery/button/door{
+ id = "armoryaccess";
+ name = "Armory front Desk";
+ pixel_x = -24;
+ pixel_y = 6;
+ req_access_txt = "3"
+ },
+/obj/machinery/button/door{
+ id = "armoryaccess_side";
+ name = "Armory Access";
+ pixel_x = -24;
+ pixel_y = -6;
+ req_access_txt = "3"
+ },
+/turf/open/floor/iron/dark,
+/area/ai_monitored/security/armory)
"lWt" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -56919,26 +56496,30 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/aisat)
-"lWE" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+"lXf" = (
+/obj/item/kirbyplants{
+ icon_state = "plant-22";
+ name = "legally obbligatory mapper potted plant"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/prison,
-/area/security/prison)
-"lXl" = (
-/obj/structure/cable/yellow{
- icon_state = "0-2"
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
},
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/engine/storage_shared)
-"lXo" = (
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/iron/dark,
+/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/iron/white,
+/area/medical/medbay/lobby)
+"lXi" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron,
/area/security/brig)
"lXF" = (
/obj/effect/turf_decal/stripes/line{
@@ -56973,14 +56554,43 @@
},
/turf/open/floor/iron,
/area/science/misc_lab/range)
-"lYa" = (
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+"lXR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/brig)
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/quartermaster/miningoffice)
+"lXT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 1
+ },
+/area/security/main)
+"lYp" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "Prisongate"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/security/warden)
+"lYq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/iron/dark/smooth_large,
+/area/security/courtroom)
"lYA" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -57014,6 +56624,18 @@
},
/turf/open/floor/iron,
/area/science/robotics/lab)
+"lYJ" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "brigfront";
+ name = "Brig Blast door"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/warden)
"lZe" = (
/obj/machinery/computer/objective,
/obj/effect/turf_decal/stripes/line,
@@ -57037,15 +56659,6 @@
/obj/item/book/manual/wiki/sopcommand,
/turf/open/floor/iron/white,
/area/crew_quarters/heads/hor)
-"lZP" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/science/research)
"lZU" = (
/obj/structure/cable/yellow{
icon_state = "0-8"
@@ -57073,34 +56686,20 @@
/obj/structure/desk_bell/speed_demon,
/turf/open/floor/carpet/royalblue,
/area/crew_quarters/heads/captain)
-"man" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/bot,
-/obj/machinery/fax/eng,
-/turf/open/floor/iron,
-/area/engine/break_room)
+"maz" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark,
+/area/security/execution/transfer)
"maQ" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"mbg" = (
-/obj/effect/landmark/start/security_officer,
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/main)
-"mbB" = (
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 8
- },
-/obj/structure/chair/fancy/bench/left{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/security/prison)
"mbL" = (
/obj/machinery/light,
/obj/effect/turf_decal/bot,
@@ -57117,6 +56716,23 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/port)
+"mbR" = (
+/obj/structure/table/wood,
+/obj/machinery/recharger,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/cable/yellow,
+/obj/machinery/power/apc/auto_name/directional/south,
+/turf/open/floor/carpet/royalblue,
+/area/crew_quarters/heads/captain/private)
+"mbT" = (
+/obj/effect/landmark/secequipment,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/machinery/light,
+/turf/open/floor/iron/dark,
+/area/security/main)
"mcc" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -57137,35 +56753,32 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/science/research)
+"mck" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"mcw" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/science/explab)
-"mcA" = (
-/obj/effect/decal/cleanable/oil,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/miningoffice)
-"mcC" = (
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 32
- },
-/obj/structure/table/reinforced,
-/obj/item/clothing/mask/gas/sechailer{
- pixel_x = -3;
- pixel_y = 3
+"mcH" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/bot,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
},
-/obj/item/clothing/mask/gas/sechailer,
-/obj/item/clothing/mask/gas/sechailer{
- pixel_x = 3;
- pixel_y = -3
+/obj/structure/rack,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
},
-/obj/item/flashlight/seclite,
-/obj/item/flashlight/seclite,
-/obj/item/flashlight/seclite,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/ai_monitored/security/armory)
+/obj/item/clothing/gloves/color/fyellow,
+/obj/item/multitool,
+/obj/item/clothing/suit/hazardvest,
+/turf/open/floor/iron,
+/area/storage/tools)
"mcL" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/structure/disposalpipe/segment,
@@ -57200,6 +56813,12 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint/customs)
+"mdL" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/science/lab)
"mdN" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -57214,22 +56833,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/locker)
-"mdW" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/crew_quarters/bar)
"meh" = (
/obj/machinery/firealarm{
dir = 4;
@@ -57246,20 +56849,12 @@
/obj/effect/turf_decal/tile/red/half/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/kitchen)
-"mex" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
+"meo" = (
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
"meE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -57268,6 +56863,26 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/patients_rooms)
+"meF" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/delivery,
+/obj/item/kirbyplants{
+ icon_state = "plant-22";
+ name = "legally obbligatory mapper potted plant"
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/entry)
+"meG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
"meH" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -57334,6 +56949,16 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/quartermaster/storage)
+"mfL" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/yellow,
+/obj/item/lightreplacer,
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"mfO" = (
/turf/open/floor/carpet/grimy,
/area/bridge/showroom/corporate)
@@ -57355,6 +56980,39 @@
},
/turf/open/floor/iron,
/area/maintenance/port/aft)
+"mgo" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/crew_quarters/heads/hor)
+"mgC" = (
+/obj/machinery/door/airlock/command{
+ name = "Head of Security's Quarters";
+ req_access_txt = "58"
+ },
+/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/tile/neutral/fourcorners/contrasted,
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/iron/dark,
+/area/crew_quarters/heads/hos)
"mgO" = (
/obj/machinery/firealarm{
dir = 1;
@@ -57390,6 +57048,16 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/bridge)
+"mgU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/turf/open/floor/iron,
+/area/hallway/primary/central)
"mgZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -57399,22 +57067,14 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
-"mhn" = (
-/obj/structure/cable/white,
-/obj/machinery/light/small,
-/obj/machinery/power/apc/auto_name/directional/south,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/aisat)
-"mhE" = (
+"mho" = (
+/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
+ icon_state = "4-8"
},
+/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
-/area/security/brig)
+/area/quartermaster/warehouse)
"mhZ" = (
/obj/item/kirbyplants/random,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -57437,13 +57097,6 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/central)
-"miq" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/security/main)
"mit" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -57470,6 +57123,21 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"miG" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/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 = 4
+ },
+/turf/open/floor/iron/dark/smooth_edge,
+/area/security/main)
"miL" = (
/obj/structure/cable/yellow{
icon_state = "2-4"
@@ -57514,13 +57182,6 @@
},
/turf/open/floor/iron,
/area/engine/atmospherics_engine)
-"mjj" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/table/reinforced,
-/turf/open/floor/prison,
-/area/security/prison)
"mjp" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -57533,10 +57194,6 @@
/obj/machinery/atmospherics/components/unary/tank/air,
/turf/open/floor/iron,
/area/science/xenobiology)
-"mjt" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/iron,
-/area/security/brig)
"mjz" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/bodycontainer/morgue{
@@ -57551,6 +57208,12 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/lobby)
+"mkm" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/starboard)
"mkn" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -57559,26 +57222,14 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"mkq" = (
-/obj/item/kirbyplants/random,
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
- },
-/turf/open/floor/prison,
-/area/security/prison)
-"mkC" = (
-/obj/structure/rack,
-/obj/structure/sign/nanotrasen{
- pixel_x = 32
+"mkM" = (
+/obj/item/storage/pod{
+ pixel_x = 32;
+ pixel_y = -32
},
-/obj/effect/turf_decal/bot,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/effect/loot_jobscale/armoury/riot_suit,
-/obj/effect/loot_jobscale/armoury/riot_helmet,
-/obj/effect/loot_jobscale/armoury/riot_shield,
-/turf/open/floor/iron/dark,
-/area/ai_monitored/security/armory)
+/obj/effect/turf_decal/tile/purple/anticorner/contrasted,
+/turf/open/floor/iron,
+/area/quartermaster/storage)
"mlc" = (
/obj/structure/table/reinforced,
/obj/machinery/airalarm/directional/west{
@@ -57615,6 +57266,21 @@
},
/turf/open/floor/iron,
/area/quartermaster/warehouse)
+"mlq" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "hosroom";
+ name = "space shutters"
+ },
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/crew_quarters/heads/hos)
"mlD" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
@@ -57653,13 +57319,6 @@
/obj/structure/chair/office,
/turf/open/floor/carpet/grimy,
/area/vacant_room/office)
-"mmy" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
"mmS" = (
/obj/structure/table/wood,
/obj/machinery/firealarm{
@@ -57717,6 +57376,20 @@
},
/turf/open/floor/iron,
/area/medical/medbay/aft)
+"mnx" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/turf/open/floor/prison/dark,
+/area/security/prison)
"mny" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/insectguts,
@@ -57726,6 +57399,16 @@
},
/turf/open/floor/iron,
/area/quartermaster/warehouse)
+"mnz" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "executionfireblast"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/turf/open/floor/plating,
+/area/security/execution/transfer)
"mnK" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
@@ -57739,17 +57422,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/catwalk_floor/iron_smooth,
/area/engine/atmos)
-"mnQ" = (
-/obj/effect/decal/cleanable/oil,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/office)
"mnX" = (
/obj/structure/table/reinforced,
/obj/item/analyzer{
@@ -57782,6 +57454,26 @@
heat_capacity = 1e+006
},
/area/maintenance/port)
+"moo" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor/northright{
+ dir = 4;
+ name = "Warden's Desk";
+ req_access_txt = "3"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/window/westleft{
+ name = "Warden's Desk"
+ },
+/obj/structure/desk_bell{
+ pixel_x = -8
+ },
+/obj/item/clipboard{
+ pixel_x = 6;
+ pixel_y = 5
+ },
+/turf/open/floor/iron/dark,
+/area/security/warden)
"mou" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -57798,20 +57490,40 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"moA" = (
+"moN" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 4
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/security/main)
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "brigfront";
+ name = "Brig Blast door"
+ },
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "outerbrig";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/iron/dark,
+/area/security/brig)
"moX" = (
/obj/machinery/light{
dir = 1
@@ -57844,26 +57556,10 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/turf/open/floor/iron,
/area/science/misc_lab)
-"mpl" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron,
-/area/ai_monitored/security/armory)
"mpo" = (
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
/area/maintenance/department/medical/central)
-"mpr" = (
-/turf/open/floor/holofloor/plating,
-/area/holodeck/prison)
"mpw" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -57881,6 +57577,22 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
+"mpG" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction/flip,
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"mpU" = (
/obj/machinery/status_display/evac{
pixel_x = 32;
@@ -57959,22 +57671,24 @@
},
/turf/open/floor/catwalk_floor/iron,
/area/engine/atmospherics_engine)
-"mqI" = (
+"mqT" = (
/obj/structure/cable/yellow{
- icon_state = "1-8"
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
},
/obj/structure/disposalpipe/segment{
- dir = 9
+ dir = 4
},
-/obj/effect/turf_decal/tile/red/half/contrasted,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
+ dir = 4
},
/turf/open/floor/iron,
-/area/security/main)
+/area/crew_quarters/locker)
"mrr" = (
/obj/structure/cable/white,
/obj/effect/turf_decal/bot,
@@ -57991,6 +57705,24 @@
},
/turf/open/floor/iron/dark,
/area/science/explab)
+"mru" = (
+/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/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/security/brig)
"mrJ" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -58099,6 +57831,17 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/hallway/secondary/exit/departure_lounge)
+"msI" = (
+/obj/structure/closet/crate,
+/obj/item/storage/box/donkpockets,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron{
+ heat_capacity = 1e+006
+ },
+/area/maintenance/starboard/fore)
"msL" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -58114,15 +57857,9 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/bridge)
-"mtp" = (
-/obj/effect/turf_decal/tile/red/anticorner/contrasted{
- dir = 8
- },
-/obj/machinery/digital_clock/directional/south,
-/obj/structure/chair/fancy/bench/right{
- dir = 1
- },
-/turf/open/floor/iron,
+"mtr" = (
+/obj/effect/turf_decal/siding/wideplating_new/dark,
+/turf/open/floor/prison/dark,
/area/security/prison)
"mtF" = (
/obj/structure/disposalpipe/segment,
@@ -58155,6 +57892,11 @@
/obj/machinery/light,
/turf/open/floor/carpet/grimy,
/area/bridge/showroom/corporate)
+"mub" = (
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/textured,
+/area/security/brig)
"muE" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -58200,19 +57942,6 @@
},
/turf/open/floor/iron,
/area/maintenance/department/science)
-"mvu" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/iron,
-/area/security/brig)
"mwf" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -58238,6 +57967,10 @@
/obj/machinery/firealarm/directional/west,
/turf/open/floor/iron,
/area/quartermaster/exploration_prep)
+"mwi" = (
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron,
+/area/hallway/secondary/service)
"mwJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -58262,22 +57995,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"mwU" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/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,
-/area/quartermaster/storage)
"mxx" = (
/obj/structure/table/wood,
/obj/item/folder,
@@ -58298,6 +58015,17 @@
},
/turf/open/floor/glass/reinforced,
/area/hallway/secondary/exit/departure_lounge)
+"myC" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/delivery,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/iron,
+/area/maintenance/department/medical/central)
"myL" = (
/obj/machinery/door/poddoor/shutters/preopen{
id = "rndlab1";
@@ -58327,6 +58055,12 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/crew_quarters/locker)
+"mzb" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/girder,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
"mze" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/firealarm{
@@ -58362,23 +58096,6 @@
/obj/effect/turf_decal/tile/red/anticorner/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint/science/research)
-"mzN" = (
-/obj/effect/turf_decal/tile/red/half/contrasted,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/brig)
-"mzO" = (
-/obj/effect/turf_decal/tile/red/half/contrasted,
-/obj/machinery/status_display/ai{
- pixel_y = -32
- },
-/turf/open/floor/iron,
-/area/security/main)
"mzR" = (
/obj/structure/disposaloutlet{
dir = 1
@@ -58428,6 +58145,14 @@
},
/turf/open/floor/iron,
/area/maintenance/aft)
+"mBe" = (
+/obj/structure/filingcabinet/employment,
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/wood/big,
+/area/lawoffice)
"mBo" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -58483,13 +58208,13 @@
/obj/machinery/airalarm/directional/south,
/turf/open/floor/iron,
/area/medical/genetics)
-"mBV" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 26
+"mBZ" = (
+/obj/structure/cable/yellow,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
},
-/obj/effect/turf_decal/tile/neutral/half/contrasted,
-/turf/open/floor/iron,
-/area/security/courtroom)
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
"mCl" = (
/obj/structure/sign/departments/minsky/supply/hydroponics,
/turf/closed/wall,
@@ -58509,36 +58234,6 @@
"mCL" = (
/turf/closed/wall,
/area/engine/storage_shared)
-"mCQ" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- 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/carpet/red,
-/area/crew_quarters/heads/hos)
-"mCY" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/iron,
-/area/ai_monitored/security/armory)
-"mCZ" = (
-/obj/effect/turf_decal/tile/red/anticorner/contrasted{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/security/main)
"mDn" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow{
@@ -58578,12 +58273,6 @@
/obj/effect/turf_decal/tile/blue/half/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint/customs)
-"mDJ" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/iron/dark,
-/area/security/prison)
"mDK" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -58644,13 +58333,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/engine,
/area/science/mixing/chamber)
-"mEt" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/miningoffice)
"mEw" = (
/obj/structure/chair/office,
/turf/open/floor/carpet/grimy,
@@ -58667,6 +58349,11 @@
},
/turf/open/floor/carpet,
/area/chapel/office)
+"mED" = (
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance/two,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
"mEN" = (
/obj/machinery/door/window/northleft{
dir = 4;
@@ -58688,28 +58375,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/storage/eva)
-"mEW" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/door/airlock/medical/glass{
- name = "Infirmary"
- },
-/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/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/iron/white,
-/area/security/brig)
"mFc" = (
/obj/structure/table,
/obj/item/book/manual/wiki/infections{
@@ -58729,15 +58394,6 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
-"mFe" = (
-/obj/structure/table,
-/obj/machinery/airalarm/directional/west{
- pixel_x = -23
- },
-/obj/item/storage/fancy/donut_box,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/courtroom)
"mFi" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -58900,6 +58556,16 @@
heat_capacity = 1e+006
},
/area/maintenance/port)
+"mGH" = (
+/obj/effect/turf_decal/stripes/closeup,
+/obj/machinery/door/airlock/security/glass{
+ name = "Equipment Room";
+ req_access_txt = "1"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/turf/open/floor/iron/dark,
+/area/security/main)
"mGL" = (
/obj/machinery/light/small,
/obj/effect/turf_decal/tile/yellow{
@@ -58917,22 +58583,13 @@
},
/turf/open/floor/iron/white,
/area/science/shuttledock)
-"mHk" = (
-/obj/structure/rack,
-/obj/item/book/manual/wiki/engineering_hacking{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/book/manual/wiki/engineering_guide,
-/obj/item/book/manual/wiki/engineering_construction{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/effect/turf_decal/tile/yellow/half/contrasted{
+"mGZ" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 8
},
/turf/open/floor/iron,
-/area/engine/break_room)
+/area/hallway/primary/starboard)
"mHo" = (
/obj/machinery/telecomms/server/presets/command,
/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
@@ -58986,6 +58643,13 @@
/obj/machinery/power/apc/auto_name/directional/east,
/turf/open/floor/iron,
/area/engine/engineering)
+"mHR" = (
+/obj/structure/cable/yellow,
+/obj/item/kirbyplants/random,
+/obj/machinery/light,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron/dark,
+/area/ai_monitored/turret_protected/aisat_interior)
"mHY" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -59001,30 +58665,32 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/central)
-"mIf" = (
+"mIl" = (
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light,
+/obj/item/radio/intercom{
+ pixel_y = -26
+ },
+/obj/structure/chair/stool/directional/north,
+/turf/open/floor/iron,
+/area/security/brig)
+"mIr" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/cable/yellow{
+ icon_state = "1-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/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/turf/open/floor/iron/dark/smooth_edge,
/area/security/main)
-"mIj" = (
-/obj/machinery/door/airlock{
- name = "Courtroom"
- },
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/courtroom)
"mIs" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
@@ -59091,6 +58757,15 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/central)
+"mJl" = (
+/obj/machinery/suit_storage_unit/security,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/effect/turf_decal/bot,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/iron/smooth,
+/area/security/main)
"mJy" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/atmospherics/pipe/simple/general/visible{
@@ -59124,6 +58799,11 @@
},
/turf/open/floor/plating,
/area/medical/chemistry)
+"mJK" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small,
+/turf/open/floor/iron,
+/area/maintenance/starboard)
"mJV" = (
/obj/structure/cable/yellow{
icon_state = "2-4"
@@ -59172,13 +58852,6 @@
},
/turf/open/floor/iron,
/area/medical/morgue)
-"mKc" = (
-/obj/structure/table/wood,
-/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/security/courtroom)
"mKl" = (
/obj/structure/disposalpipe/segment,
/obj/item/radio/intercom{
@@ -59192,20 +58865,18 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
-"mKK" = (
-/obj/machinery/holopad,
-/obj/effect/turf_decal/bot,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+"mKm" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Maintenance Hatch";
+ req_access_txt = "12"
},
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- icon_state = "2-4"
+/obj/effect/turf_decal/stripes/line,
+/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,
-/area/security/brig)
+/area/maintenance/starboard)
"mKL" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
@@ -59217,12 +58888,19 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/secondary/exit/departure_lounge)
-"mLB" = (
-/obj/structure/table/reinforced,
-/obj/item/folder/red,
-/obj/item/pen,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
+"mLp" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/turf/open/floor/iron,
/area/security/brig)
"mLH" = (
/obj/effect/decal/cleanable/dirt,
@@ -59293,6 +58971,11 @@
},
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
+"mMV" = (
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/checkpoint/customs/auxiliary)
"mMW" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -59309,6 +58992,28 @@
/obj/effect/spawner/randomvend/snack,
/turf/open/floor/iron,
/area/hallway/primary/central)
+"mNf" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/delivery,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/window/westright{
+ name = "Cargo Office Delivery";
+ req_access_txt = "31"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/quartermaster/office)
+"mNn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"mNo" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/general/hidden{
@@ -59316,21 +59021,18 @@
},
/turf/open/floor/plating,
/area/tcommsat/server)
-"mNr" = (
-/obj/effect/landmark/event_spawn,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/hallway/primary/central)
-"mNG" = (
-/obj/structure/filingcabinet/chestdrawer,
+"mNy" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/turf_decal/tile/brown/half/contrasted{
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/machinery/light{
dir = 1
},
/turf/open/floor/iron,
-/area/quartermaster/office)
+/area/hallway/primary/starboard)
"mNH" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -59339,22 +59041,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/engineering)
-"mNK" = (
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 4
- },
-/obj/machinery/fax/sec,
-/obj/structure/table/reinforced,
-/turf/open/floor/iron,
-/area/security/main)
-"mOq" = (
-/obj/structure/table/wood,
-/obj/item/radio/intercom,
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/courtroom)
"mOy" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
dir = 8
@@ -59377,22 +59063,6 @@
},
/turf/open/floor/carpet/royalblue,
/area/bridge/meeting_room/council)
-"mOK" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/turnstile,
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/prison,
-/area/security/prison)
"mOL" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 26
@@ -59428,6 +59098,22 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/service)
+"mPo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/iron,
+/area/security/brig)
"mPt" = (
/obj/machinery/status_display/evac{
pixel_x = 32
@@ -59484,23 +59170,18 @@
/obj/machinery/firealarm/directional/east,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"mPI" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/security/brig)
"mPN" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -27
},
/turf/open/floor/carpet/red,
/area/medical/exam_room)
-"mPS" = (
-/obj/structure/table/wood,
-/obj/item/folder/blue,
-/obj/item/pen,
-/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
- dir = 8
- },
-/turf/open/floor/iron{
- heat_capacity = 1e+006
- },
-/area/security/courtroom)
"mQh" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -59513,6 +59194,10 @@
},
/turf/open/floor/iron,
/area/storage/primary)
+"mQm" = (
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/turf/open/floor/iron/smooth,
+/area/security/main)
"mQt" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 4
@@ -59528,19 +59213,6 @@
/obj/item/pen,
/turf/open/floor/carpet/grimy,
/area/chapel/office)
-"mQO" = (
-/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/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/security/courtroom)
"mQQ" = (
/obj/structure/chair/office{
dir = 8
@@ -59600,37 +59272,20 @@
broken = 1
},
/area/quartermaster/exploration_prep)
-"mSc" = (
-/turf/open/floor/iron,
-/area/quartermaster/exploration_prep)
-"mSn" = (
-/obj/effect/landmark/event_spawn,
-/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/security/detectives_office)
-"mSt" = (
-/obj/structure/closet/secure_closet/medical2,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/machinery/light_switch{
- pixel_x = -35;
- pixel_y = 2
- },
-/obj/machinery/status_display/ai{
- pixel_y = -32
- },
-/obj/machinery/power/apc/auto_name/directional/west{
- pixel_x = -24
+"mRX" = (
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
},
-/obj/structure/cable/yellow,
-/obj/machinery/camera/autoname{
- dir = 5;
- network = list("ss13","medbay")
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
+/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/dark,
-/area/medical/surgery)
+/area/security/execution/transfer)
+"mSc" = (
+/turf/open/floor/iron,
+/area/quartermaster/exploration_prep)
"mSG" = (
/obj/structure/table/reinforced,
/obj/item/plant_analyzer,
@@ -59655,13 +59310,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
-"mSW" = (
-/obj/structure/closet/secure_closet/genpop,
-/obj/effect/turf_decal/tile/red/anticorner/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/prison)
"mTm" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -59680,11 +59328,33 @@
},
/turf/open/floor/iron,
/area/engine/break_room)
+"mTn" = (
+/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 = 10
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"mTw" = (
/obj/structure/closet/wardrobe/grey,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/locker)
+"mTC" = (
+/obj/effect/turf_decal/stripes/box,
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/obj/machinery/rnd/production/techfab/department/security,
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/iron/dark,
+/area/security/main)
"mUf" = (
/obj/effect/turf_decal/tile/green/half/contrasted{
dir = 1
@@ -59714,30 +59384,27 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/tcommsat/computer)
-"mUu" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
+"mUA" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/engine/break_room)
-"mUQ" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/item/kirbyplants/random,
-/obj/effect/turf_decal/tile/red/anticorner/contrasted,
/turf/open/floor/iron,
-/area/security/brig)
+/area/hallway/primary/fore)
"mVd" = (
/obj/effect/turf_decal/loading_area,
/turf/open/floor/iron,
/area/quartermaster/exploration_prep)
+"mVm" = (
+/obj/machinery/keycard_auth{
+ pixel_x = 26;
+ pixel_y = 26
+ },
+/obj/machinery/computer/med_data{
+ dir = 8
+ },
+/turf/open/floor/carpet/red,
+/area/crew_quarters/heads/hos)
"mVn" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 8
@@ -59796,6 +59463,12 @@
/obj/machinery/firealarm/directional/west,
/turf/open/floor/wood,
/area/crew_quarters/dorms)
+"mWn" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/dark/textured,
+/area/security/main)
"mWD" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -59822,6 +59495,13 @@
/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/engineering)
+"mWN" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/tech,
+/area/security/prison/shielded)
"mWT" = (
/obj/effect/turf_decal/tile/blue/opposingcorners{
dir = 1
@@ -59856,6 +59536,32 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"mXi" = (
+/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/tile/neutral{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/fore)
+"mXn" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/checkpoint/engineering)
"mXp" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 8
@@ -59879,6 +59585,19 @@
},
/turf/open/floor/iron,
/area/maintenance/port/aft)
+"mXr" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 8
+ },
+/area/security/main)
"mXP" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -59945,6 +59664,20 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
+"mYB" = (
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/bridge)
+"mYF" = (
+/obj/effect/turf_decal/tile/green/half/contrasted,
+/turf/open/floor/iron/edge{
+ dir = 8
+ },
+/area/security/courtroom)
"mYK" = (
/obj/structure/chair,
/obj/effect/turf_decal/tile/red/anticorner/contrasted{
@@ -59958,43 +59691,19 @@
},
/turf/open/floor/iron/white,
/area/medical/genetics)
-"mYX" = (
-/obj/structure/safe,
-/obj/item/clothing/neck/stethoscope,
-/obj/item/book{
- desc = "An undeniably handy book.";
- icon_state = "bookknock";
- name = "A Simpleton's Guide to Safe-cracking with Stethoscopes"
- },
-/obj/item/stack/sheet/mineral/diamond,
-/obj/item/stack/spacecash/c1000,
-/obj/item/stack/spacecash/c1000,
-/obj/item/stack/spacecash/c1000,
-/obj/item/stack/spacecash/c1000,
-/obj/item/stack/spacecash/c1000,
-/obj/item/stack/spacecash/c500,
-/obj/item/stack/spacecash/c500,
-/obj/item/stack/spacecash/c500,
-/obj/item/stack/spacecash/c500,
-/obj/item/stack/spacecash/c500,
-/obj/machinery/light/small,
-/obj/item/gun/ballistic/automatic/pistol/deagle,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/nuke_storage)
-"mZt" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+"mZr" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig Medical outpost";
+ req_one_access_txt = "1;34"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+/obj/effect/turf_decal/stripes/closeup,
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/red/half/contrasted{
dir = 4
},
-/obj/effect/turf_decal/tile/red,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/security/brig)
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/iron/white/side,
+/area/security/brig/medbay)
"mZu" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/maintenance_hatch{
@@ -60074,22 +59783,23 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/library)
+"naj" = (
+/obj/machinery/light,
+/obj/effect/turf_decal/tile/dark_blue/opposingcorners,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/obj/structure/filingcabinet/chestdrawer,
+/obj/structure/sign/poster/official/ian{
+ pixel_y = -32
+ },
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/iron/white,
+/area/medical/medbay/central)
"nbk" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/quartermaster/qm)
-"nbp" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/sign/warning/electricshock{
- pixel_x = -32
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
"nbz" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Office Maintenance";
@@ -60114,6 +59824,26 @@
},
/turf/open/floor/iron,
/area/vacant_room/office)
+"nbA" = (
+/obj/structure/closet/secure_closet/medical2,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/machinery/light_switch{
+ pixel_x = -35;
+ pixel_y = 2
+ },
+/obj/machinery/status_display/ai{
+ pixel_y = -32
+ },
+/obj/machinery/power/apc/auto_name/directional/west{
+ pixel_x = -24
+ },
+/obj/structure/cable/yellow,
+/obj/machinery/camera/autoname{
+ dir = 10;
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/iron/dark,
+/area/medical/surgery)
"nbB" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -60124,6 +59854,34 @@
},
/turf/open/floor/catwalk_floor/iron_smooth,
/area/tcommsat/server)
+"nbL" = (
+/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/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/security/brig)
+"nbM" = (
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/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/dark,
+/area/security/warden)
"nbY" = (
/obj/structure/bed/roller,
/obj/machinery/light,
@@ -60197,22 +59955,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/medical/medbay/aft)
-"ndf" = (
-/obj/structure/disposalpipe/junction/flip{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "2-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/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/science/research)
"ndj" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -60247,17 +59989,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/exploration_prep)
-"ndZ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/office)
"nea" = (
/obj/machinery/door/airlock/public/glass{
name = "Starboard Auxiliary Hallway"
@@ -60307,21 +60038,6 @@
dir = 1
},
/area/engine/atmos)
-"net" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/airalarm/directional/east{
- pixel_x = 24
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/hallway/secondary/service)
"neA" = (
/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted,
/turf/open/floor/iron,
@@ -60372,6 +60088,18 @@
},
/turf/open/floor/carpet/royalblue,
/area/ai_monitored/turret_protected/aisat_interior)
+"neQ" = (
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/prison,
+/area/security/prison)
+"neT" = (
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 4
+ },
+/area/security/courtroom)
"neW" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -60393,19 +60121,6 @@
},
/turf/open/floor/iron,
/area/engine/atmospherics_engine)
-"nfi" = (
-/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/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/crew_quarters/heads/chief)
"nfl" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/segment{
@@ -60424,6 +60139,21 @@
},
/turf/open/floor/iron,
/area/construction/mining/aux_base)
+"nfB" = (
+/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/neutral{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/central)
"nfZ" = (
/obj/effect/turf_decal/tile/brown/half/contrasted{
dir = 4
@@ -60552,29 +60282,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
-"nhr" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/mining{
- name = "Quartermaster's Office";
- req_access_txt = "41"
- },
-/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/iron,
-/area/quartermaster/qm)
"nhs" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -60587,6 +60294,16 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/turf/open/floor/iron/white,
/area/science/xenobiology)
+"nhw" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/east,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/central)
"nhX" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -60613,31 +60330,6 @@
},
/turf/open/floor/iron,
/area/maintenance/port)
-"nid" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/storage/tools)
-"nig" = (
-/obj/machinery/door/window/eastright{
- name = "Detective's Morgue"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/turf/open/floor/iron/dark,
-/area/security/detectives_office)
-"nir" = (
-/obj/structure/table/glass,
-/obj/item/reagent_containers/syringe,
-/obj/effect/turf_decal/tile/red/anticorner/contrasted{
- dir = 8
- },
-/obj/item/storage/firstaid/regular,
-/turf/open/floor/iron/white,
-/area/security/brig)
"niu" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
@@ -60650,6 +60342,19 @@
},
/turf/open/floor/catwalk_floor/iron,
/area/engine/atmospherics_engine)
+"nix" = (
+/obj/structure/closet/secure_closet/contraband/armory,
+/obj/effect/spawner/lootdrop/maintenance/three,
+/obj/effect/spawner/lootdrop/armory_contraband,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/ai_monitored/security/armory)
"niy" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -60713,6 +60418,24 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
+"njr" = (
+/obj/machinery/door/airlock/security{
+ name = "Detective's Office";
+ req_access_txt = "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,
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/effect/turf_decal/stripes/closeup,
+/turf/open/floor/iron/dark,
+/area/security/detectives_office)
"njs" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -60740,6 +60463,12 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint/customs/auxiliary)
+"njX" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 32
+ },
+/turf/open/floor/iron/dark,
+/area/security/courtroom)
"nko" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -60753,12 +60482,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/quartermaster/storage)
-"nkp" = (
-/obj/effect/turf_decal/tile/brown/half/contrasted{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/quartermaster/miningoffice)
"nkr" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -60772,22 +60495,11 @@
},
/turf/open/floor/iron,
/area/ai_monitored/storage/eva)
-"nky" = (
-/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/red,
-/obj/machinery/firealarm{
- pixel_y = 24
- },
-/turf/open/floor/iron,
-/area/security/brig)
+"nkE" = (
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/hallway/primary/central)
"nkH" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -60832,6 +60544,16 @@
},
/turf/open/floor/carpet/grimy,
/area/library)
+"nlM" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "Prisongate"
+ },
+/obj/effect/spawner/structure/window/reinforced/prison,
+/turf/open/floor/plating,
+/area/security/prison/shielded)
"nlW" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/corner{
@@ -60912,6 +60634,34 @@
},
/turf/open/floor/iron,
/area/maintenance/port/fore)
+"nmV" = (
+/obj/item/storage/secure/safe/HoS{
+ pixel_x = -24
+ },
+/obj/effect/landmark/start/head_of_security,
+/obj/structure/chair/office{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/machinery/camera/autoname{
+ dir = 10;
+ network = list("ss13","security")
+ },
+/turf/open/floor/carpet/red,
+/area/crew_quarters/heads/hos)
+"nmW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/iron,
+/area/security/brig)
"nnq" = (
/obj/structure/closet/boxinggloves,
/obj/item/pool/pool_noodle,
@@ -60939,17 +60689,13 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/starboard/aft)
-"nnD" = (
-/obj/machinery/recharger,
-/obj/structure/table/reinforced,
-/obj/structure/reagent_dispensers/peppertank{
- pixel_y = 32
- },
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 4
+"nnH" = (
+/obj/machinery/computer/cargo{
+ dir = 8
},
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
-/area/security/main)
+/area/quartermaster/storage)
"nnL" = (
/obj/machinery/light{
dir = 4
@@ -61000,6 +60746,13 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/bar)
+"noz" = (
+/obj/machinery/airalarm/directional/east,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron/checker,
+/area/engine/break_room)
"noE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -61013,14 +60766,6 @@
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/turf/open/floor/iron,
/area/science/research)
-"noI" = (
-/obj/structure/chair/stool/bar,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/engine/break_room)
"noW" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -61051,6 +60796,34 @@
/obj/effect/turf_decal/tile/blue/half/contrasted,
/turf/open/floor/iron,
/area/engine/atmos)
+"npn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/iron/white,
+/area/science/mixing)
+"npv" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1;
+ name = "Connector Port (Air Supply)"
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/status_display/evac{
+ pixel_y = -32
+ },
+/obj/machinery/camera/autoname{
+ dir = 10;
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/iron,
+/area/medical/patients_rooms)
"npA" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/sign/warning/securearea{
@@ -61069,12 +60842,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/catwalk_floor/iron,
/area/engine/atmospherics_engine)
-"npE" = (
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/main)
"npW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -61115,31 +60882,6 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/lobby)
-"nqB" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/prison,
-/area/security/prison)
-"nqD" = (
-/obj/machinery/holopad,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/crew_quarters/locker)
"nqS" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -61150,6 +60892,11 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
+"nqU" = (
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/security/brig/medbay)
"nrf" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -61160,6 +60907,31 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/storage/tech)
+"nrh" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/security/detectives_office)
+"nri" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/table/reinforced,
+/obj/item/flashlight/seclite{
+ pixel_y = 11
+ },
+/obj/item/toy/figure/warden{
+ pixel_y = 8;
+ pixel_x = -8
+ },
+/obj/item/clothing/mask/gas/sechailer,
+/obj/machinery/recharger,
+/turf/open/floor/iron/dark,
+/area/security/warden)
"nrk" = (
/obj/structure/table,
/obj/item/paper_bin,
@@ -61189,17 +60961,6 @@
},
/turf/open/floor/catwalk_floor/iron,
/area/tcommsat/server)
-"nrU" = (
-/obj/structure/table/reinforced,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/lightreplacer,
-/obj/machinery/camera/autoname{
- dir = 5;
- network = list("ss13","medbay")
- },
-/turf/open/floor/plating,
-/area/janitor/custodian)
"nrX" = (
/obj/structure/table/reinforced,
/obj/item/computer_hardware/hard_drive/role/quartermaster{
@@ -61242,17 +61003,6 @@
/obj/effect/turf_decal/tile/blue,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"nsC" = (
-/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/red/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron/dark,
-/area/security/execution/transfer)
"nsJ" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -61272,10 +61022,29 @@
},
/turf/open/floor/catwalk_floor/iron_smooth,
/area/tcommsat/server)
-"nsQ" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/brig)
+"nsM" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/structure/window/reinforced,
+/obj/machinery/door/window/eastright{
+ name = "Atmospherics Delivery";
+ req_access_txt = "24"
+ },
+/turf/open/floor/iron,
+/area/engine/atmos)
+"nsR" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/iron,
+/area/hydroponics)
"nsW" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -61355,6 +61124,18 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
+"ntQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"nub" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/structure/sign/warning/securearea{
@@ -61387,6 +61168,20 @@
broken = 1
},
/area/maintenance/port/fore)
+"nuq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 1
+ },
+/area/security/main)
"nuG" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -61403,6 +61198,13 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/catwalk_floor/iron,
/area/tcommsat/server)
+"nuU" = (
+/obj/structure/reagent_dispensers/watertank/high,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"nvg" = (
/obj/machinery/telecomms/server/presets/medical,
/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
@@ -61420,33 +61222,12 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/lobby)
-"nvp" = (
-/obj/structure/table/reinforced,
-/obj/machinery/airalarm/directional/west{
- pixel_x = -23
- },
-/obj/machinery/status_display/evac{
- pixel_y = 32
- },
-/obj/item/reagent_containers/glass/bottle/morphine{
- pixel_x = 7;
- pixel_y = 7
- },
-/obj/item/reagent_containers/glass/bottle/morphine{
- pixel_x = -7;
- pixel_y = 7
- },
-/obj/item/reagent_containers/glass/bottle/chloralhydrate{
- pixel_x = -7
- },
-/obj/item/reagent_containers/glass/bottle/facid{
- pixel_x = 7
- },
-/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+"nvs" = (
+/obj/machinery/computer/warrant{
dir = 1
},
/turf/open/floor/iron/dark,
-/area/security/execution/transfer)
+/area/security/courtroom)
"nvx" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -61482,16 +61263,6 @@
/obj/machinery/holopad,
/turf/open/floor/iron,
/area/vacant_room/commissary)
-"nvI" = (
-/obj/effect/spawner/structure/window/reinforced/prison,
-/obj/machinery/door/poddoor/preopen{
- id = "Prisongate"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/security/prison)
"nvP" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Chemistry Maintenance";
@@ -61515,28 +61286,16 @@
},
/turf/open/floor/carpet/grimy,
/area/vacant_room/office)
-"nwu" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Detective's Office Maintenance";
- req_access_txt = "4"
- },
+"nwg" = (
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
/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/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
},
/turf/open/floor/iron,
-/area/maintenance/starboard)
+/area/security/warden)
"nwv" = (
/obj/machinery/light/small{
dir = 8
@@ -61621,6 +61380,19 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/central)
+"nxk" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
+"nxD" = (
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/iron/white,
+/area/science/misc_lab/range)
"nxM" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -61643,17 +61415,6 @@
/obj/item/flashlight/lamp,
/turf/open/floor/carpet/blue,
/area/crew_quarters/heads/cmo)
-"nxZ" = (
-/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/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/detectives_office)
"nyl" = (
/obj/machinery/camera/directional/north{
c_tag = "Supermatter Engine - Fore";
@@ -61663,13 +61424,21 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/atmospherics_engine)
-"nyp" = (
-/obj/item/beacon,
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 1
+"nyn" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/turf/open/floor/iron,
-/area/security/courtroom)
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/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,
+/area/security/main)
"nyr" = (
/obj/machinery/computer/security{
dir = 8
@@ -61690,24 +61459,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/atmospherics_engine)
-"nyw" = (
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/security/prison)
"nyB" = (
/turf/closed/wall/r_wall,
/area/engine/gravity_generator)
@@ -61804,6 +61555,16 @@
},
/turf/open/floor/iron,
/area/engine/break_room)
+"nAq" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/pen,
+/obj/item/storage/box/handcuffs{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/turf/open/floor/iron,
+/area/security/main)
"nAB" = (
/obj/machinery/door/airlock{
name = "Lockerroom"
@@ -61826,6 +61587,15 @@
},
/turf/open/floor/iron,
/area/crew_quarters/locker)
+"nAF" = (
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "hosprivacy";
+ name = "HoS Privacy Blast door"
+ },
+/turf/open/floor/plating,
+/area/security/main)
"nAG" = (
/obj/machinery/airalarm/directional/north{
pixel_y = 22
@@ -61847,17 +61617,12 @@
},
/turf/open/floor/iron,
/area/maintenance/port)
-"nAZ" = (
-/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/red/half/contrasted{
- dir = 8
+"nAX" = (
+/obj/structure/sign/poster/official/do_not_question{
+ pixel_y = 32
},
-/turf/open/floor/iron,
-/area/security/prison)
+/turf/closed/wall,
+/area/security/brig/medbay)
"nBg" = (
/obj/machinery/light{
dir = 1
@@ -61910,6 +61675,14 @@
"nBr" = (
/turf/closed/wall/r_wall,
/area/engine/storage_shared)
+"nBv" = (
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/quartermaster/storage)
"nBB" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -62012,6 +61785,15 @@
},
/turf/open/floor/iron/white,
/area/medical/genetics/cloning)
+"nCT" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/security/execution/transfer)
"nCU" = (
/obj/machinery/teleport/hub,
/obj/structure/disposalpipe/segment{
@@ -62042,33 +61824,27 @@
},
/turf/open/floor/iron,
/area/maintenance/port/fore)
-"nDq" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/courtroom)
"nDM" = (
/obj/structure/bed,
/obj/item/bedsheet/dorms,
/turf/open/floor/carpet/grimy,
/area/crew_quarters/dorms)
-"nDU" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+"nDV" = (
+/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
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/effect/turf_decal/tile/red{
dir = 4
},
-/turf/open/floor/iron,
-/area/security/brig)
+/turf/open/floor/prison,
+/area/security/prison)
"nDZ" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
@@ -62094,29 +61870,49 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/catwalk_floor/flat_white,
/area/science/mixing)
-"nEE" = (
-/obj/item/kirbyplants/random,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
+"nEA" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/engine/atmos)
-"nES" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+/turf/open/floor/iron,
+/area/quartermaster/office)
+"nEC" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
/turf/open/floor/iron,
-/area/security/main)
+/area/security/brig)
+"nEE" = (
+/obj/item/kirbyplants/random,
+/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/engine/atmos)
+"nEL" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green,
+/obj/item/hand_labeler,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/carpet/red,
+/area/security/detectives_office)
+"nEX" = (
+/obj/structure/table/wood,
+/obj/item/radio/intercom,
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/turf/open/floor/iron,
+/area/security/courtroom)
"nEZ" = (
/obj/effect/turf_decal/tile/red/anticorner/contrasted{
dir = 1
@@ -62131,6 +61927,18 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/security/checkpoint/medical)
+"nFf" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/service)
"nFu" = (
/obj/structure/table/reinforced,
/obj/effect/turf_decal/tile/yellow/half/contrasted{
@@ -62194,6 +62002,23 @@
/obj/effect/turf_decal/tile/purple,
/turf/open/floor/iron/white,
/area/science/shuttledock)
+"nGr" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/status_display/ai{
+ pixel_y = 32
+ },
+/obj/machinery/requests_console{
+ department = "Detective's Office";
+ name = "Detective RC";
+ pixel_x = -30
+ },
+/turf/open/floor/iron/dark,
+/area/security/detectives_office)
"nGw" = (
/obj/effect/turf_decal/delivery,
/obj/structure/cable/yellow{
@@ -62212,6 +62037,26 @@
},
/turf/open/floor/iron/white,
/area/science/xenobiology)
+"nGZ" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wideplating_new{
+ dir = 9
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/prison,
+/area/security/prison)
+"nHv" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/tech,
+/area/security/prison/shielded)
"nHy" = (
/obj/effect/landmark/event_spawn,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -62239,13 +62084,6 @@
heat_capacity = 1e+006
},
/area/maintenance/aft)
-"nIa" = (
-/obj/item/kirbyplants/random,
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/security/courtroom)
"nIb" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -62264,20 +62102,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/medical/morgue)
-"nIr" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/miningoffice)
"nIs" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -62310,6 +62134,15 @@
},
/turf/open/floor/plating,
/area/medical/exam_room)
+"nIR" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/prison/dark,
+/area/security/prison)
"nIT" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -62360,12 +62193,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/science/mixing)
-"nJf" = (
-/obj/structure/sign/warning/securearea{
- pixel_x = -32
- },
-/turf/closed/wall,
-/area/security/brig)
"nJu" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -62447,24 +62274,6 @@
},
/turf/open/floor/carpet/royalblue,
/area/crew_quarters/heads/hop)
-"nKP" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/security/main)
"nLk" = (
/obj/structure/chair/stool/bar,
/obj/structure/disposalpipe/segment{
@@ -62498,6 +62307,24 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/turf/open/floor/catwalk_floor/iron,
/area/engine/atmos)
+"nLN" = (
+/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 = 8
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"nLS" = (
/obj/effect/turf_decal/tile/brown/half/contrasted{
dir = 8
@@ -62516,21 +62343,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/bar)
-"nMm" = (
-/obj/item/radio/intercom{
- pixel_y = 26
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/landmark/blobstart,
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/turf/open/floor/iron,
-/area/security/brig)
"nMu" = (
/obj/structure/cable/yellow{
icon_state = "2-4"
@@ -62548,6 +62360,33 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/turf/open/floor/carpet/blue,
/area/crew_quarters/heads/cmo)
+"nMN" = (
+/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/genpop_interface{
+ pixel_x = -32;
+ pixel_y = -32
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/security/prison)
+"nNa" = (
+/obj/machinery/shower{
+ dir = 8
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/noslip/standard,
+/area/security/prison)
"nNu" = (
/turf/closed/wall,
/area/maintenance/department/science)
@@ -62561,6 +62400,42 @@
},
/turf/open/floor/carpet/royalblue,
/area/bridge/meeting_room/council)
+"nNP" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/engineering{
+ name = "Engineering Foyer";
+ req_one_access_txt = "32"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 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/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"nOg" = (
/obj/structure/lattice,
/turf/open/space,
@@ -62583,6 +62458,21 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"nOt" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/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 = 6
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"nOF" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -62603,30 +62493,6 @@
heat_capacity = 1e+006
},
/area/maintenance/port)
-"nOX" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard)
-"nOZ" = (
-/obj/item/radio/intercom{
- pixel_y = 26
- },
-/obj/machinery/computer/security/labor,
-/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/security/brig)
"nPi" = (
/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
dir = 4
@@ -62663,6 +62529,23 @@
heat_capacity = 1e+006
},
/area/maintenance/port)
+"nQl" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/delivery,
+/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/iron,
+/area/engine/break_room)
"nQz" = (
/obj/structure/reflector/box/anchored{
dir = 4
@@ -62684,6 +62567,12 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/science/research)
+"nQQ" = (
+/obj/structure/chair/stool,
+/obj/machinery/airalarm/directional/east,
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron,
+/area/science/research)
"nRb" = (
/obj/machinery/door/window{
base_state = "rightsecure";
@@ -62695,6 +62584,11 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai)
+"nRh" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark,
+/area/security/prison)
"nRk" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -62771,6 +62665,18 @@
},
/turf/open/floor/circuit/green,
/area/ai_monitored/turret_protected/ai)
+"nRF" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/security/detectives_office)
"nSh" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -62833,6 +62739,11 @@
},
/turf/open/floor/carpet/royalblue,
/area/crew_quarters/heads/captain/private)
+"nSZ" = (
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/quartermaster/miningoffice)
"nTr" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -62846,14 +62757,6 @@
},
/turf/open/floor/plating,
/area/maintenance/port/aft)
-"nTt" = (
-/obj/effect/landmark/start/security_officer,
-/obj/machinery/light,
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/main)
"nTv" = (
/obj/machinery/cryopod{
dir = 8
@@ -62910,23 +62813,31 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"nUi" = (
-/obj/structure/table/reinforced,
-/obj/item/radio/intercom{
- pixel_x = -30
+"nUn" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
},
-/obj/item/flashlight/seclite{
- pixel_y = 11
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/item/flashlight/seclite{
- pixel_y = 11
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/turf/open/floor/prison/dark,
+/area/security/prison)
+"nUs" = (
+/obj/machinery/camera{
+ c_tag = "Courtroom - Center";
+ dir = 9;
+ network = list("ss13","security")
},
-/obj/effect/turf_decal/tile/red/half/contrasted{
+/obj/machinery/light{
dir = 1
},
-/obj/machinery/recharger,
-/turf/open/floor/iron,
-/area/security/warden)
+/obj/machinery/status_display/evac{
+ pixel_y = 32
+ },
+/turf/open/floor/iron/large,
+/area/security/courtroom)
"nUw" = (
/obj/structure/table,
/obj/item/paper_bin,
@@ -63068,15 +62979,6 @@
heat_capacity = 1e+006
},
/area/maintenance/port/fore)
-"nWE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/prison,
-/area/security/prison)
"nWQ" = (
/obj/structure/window/reinforced{
dir = 8
@@ -63089,14 +62991,9 @@
},
/turf/open/floor/iron/dark,
/area/aisat)
-"nWW" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/turf/open/floor/circuit/green,
-/area/security/nuke_storage)
-"nXl" = (
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/ai_monitored/security/armory)
+"nWU" = (
+/turf/open/floor/iron/dark/textured,
+/area/security/main)
"nXr" = (
/obj/effect/spawner/randomvend/snack,
/obj/effect/turf_decal/tile/blue/half/contrasted{
@@ -63112,10 +63009,27 @@
/obj/item/pool/pool_noodle,
/turf/open/indestructible/sound/pool,
/area/crew_quarters/fitness/recreation)
+"nXJ" = (
+/obj/structure/filingcabinet/security,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -32
+ },
+/turf/open/floor/carpet/red,
+/area/security/detectives_office)
"nXO" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plating,
/area/maintenance/department/medical/central)
+"nXU" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/curtain/directional{
+ color = "#ACD1E9";
+ dir = 4;
+ icon_state = "bathroom-open";
+ icon_type = "bathroom"
+ },
+/turf/open/floor/plating,
+/area/security/brig/medbay)
"nYb" = (
/obj/machinery/computer/security{
dir = 4
@@ -63132,6 +63046,25 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
+"nYq" = (
+/obj/item/kirbyplants{
+ icon_state = "plant-22";
+ name = "legally obbligatory mapper potted plant"
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
+"nYt" = (
+/obj/structure/closet/secure_closet/security/sec,
+/obj/effect/turf_decal/bot,
+/obj/item/clothing/mask/balaclava,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/iron/techmaint,
+/area/security/main)
"nYu" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/vending/wardrobe/medi_wardrobe,
@@ -63150,6 +63083,11 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat_interior)
+"nYx" = (
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/turf/open/floor/iron,
+/area/security/warden)
"nYy" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -63203,6 +63141,18 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/atmos)
+"nZC" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/gps/engineering{
+ gpstag = "CE0"
+ },
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron/dark,
+/area/crew_quarters/heads/chief)
"nZK" = (
/obj/item/beacon,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
@@ -63266,6 +63216,16 @@
},
/turf/open/floor/iron,
/area/medical/genetics/cloning)
+"oaI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/conveyor{
+ id = "cargodisposals"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/quartermaster/sorting)
"obd" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -63349,73 +63309,23 @@
/obj/effect/turf_decal/tile/brown/half/contrasted,
/turf/open/floor/iron,
/area/quartermaster/storage)
-"ocU" = (
-/obj/machinery/status_display/evac{
- pixel_y = -32
- },
+"oes" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
-/area/security/nuke_storage)
-"odF" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+/area/chapel/office)
+"oeE" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/machinery/light/small{
dir = 1
},
-/obj/machinery/door/airlock/external{
- name = "Security External Airlock";
- req_access_txt = "63"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/sign/directions/engineering{
- desc = "A sign that shows there are doors here. There are doors everywhere!";
- icon_state = "doors";
- name = "WARNING: EXTERNAL AIRLOCK";
- pixel_x = 32
- },
-/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/plating,
-/area/security/brig)
-"odG" = (
-/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
-/obj/machinery/computer/security{
dir = 8
},
-/turf/open/floor/iron,
-/area/security/warden)
-"odL" = (
-/obj/structure/rack,
-/obj/item/storage/briefcase{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/storage/secure/briefcase,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/detectives_office)
-"odT" = (
-/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{
+/obj/effect/turf_decal/stripes/red/line{
dir = 8
},
-/turf/open/floor/plating,
-/area/science/shuttledock)
-"oeg" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/turf/open/floor/iron,
-/area/security/warden)
-"oes" = (
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
-/area/chapel/office)
+/area/security/brig/medbay)
"oeH" = (
/obj/structure/table/wood,
/obj/machinery/status_display/evac{
@@ -63450,21 +63360,13 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"ofj" = (
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/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{
+"oeX" = (
+/obj/machinery/vending/wardrobe/det_wardrobe,
+/obj/effect/turf_decal/siding/wideplating_new/dark{
dir = 8
},
-/turf/open/floor/iron,
-/area/security/prison)
+/turf/open/floor/iron/dark,
+/area/security/detectives_office)
"ofn" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/brown/half/contrasted{
@@ -63494,24 +63396,6 @@
/obj/effect/turf_decal/tile/neutral/anticorner/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/fitness/recreation)
-"ofC" = (
-/obj/item/kirbyplants/random,
-/obj/machinery/firealarm{
- pixel_y = 24
- },
-/obj/machinery/button/door{
- id = "ceblast";
- name = "Lockdown Control";
- pixel_x = 26;
- pixel_y = 26;
- req_access_txt = "56"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/crew_quarters/heads/chief)
"ofS" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -63528,6 +63412,17 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"ofT" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
+"ogk" = (
+/obj/structure/sign/poster/contraband/random,
+/turf/closed/wall,
+/area/maintenance/starboard)
"ogn" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
@@ -63536,6 +63431,15 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/atmos)
+"ogo" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"ogs" = (
/obj/structure/table/wood,
/obj/item/storage/fancy/cigarettes/cigars{
@@ -63583,6 +63487,15 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/command)
+"ogT" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"ohm" = (
/obj/structure/table/wood,
/obj/item/reagent_containers/food/drinks/soda_cans/cola,
@@ -63592,6 +63505,16 @@
},
/turf/open/floor/iron,
/area/crew_quarters/bar/atrium)
+"ohx" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "Prisongate"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/effect/spawner/structure/window/reinforced/prison,
+/turf/open/floor/plating,
+/area/security/prison)
"ohF" = (
/obj/machinery/light_switch{
pixel_x = 26;
@@ -63640,17 +63563,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/catwalk_floor/iron,
/area/engine/atmospherics_engine)
-"oiu" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/junction,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/catwalk_floor/iron,
-/area/hallway/primary/port)
"oiA" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
@@ -63660,6 +63572,38 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/catwalk_floor/iron_smooth,
/area/engine/atmos)
+"oiE" = (
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/turf/open/floor/plating,
+/area/security/brig)
+"oiK" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/junction/flip{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/science/research)
+"oiU" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/item/kirbyplants{
+ icon_state = "plant-22";
+ name = "legally obbligatory mapper potted plant"
+ },
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron/white,
+/area/medical/medbay/lobby)
+"oja" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/obj/machinery/camera/motion/directional/west{
+ c_tag = "Vault";
+ network = list("vault")
+ },
+/turf/open/floor/circuit/green,
+/area/security/nuke_storage)
"ojn" = (
/obj/structure/sign/nanotrasen,
/turf/closed/wall/r_wall,
@@ -63682,6 +63626,29 @@
/obj/machinery/fax/sci,
/turf/open/floor/iron,
/area/science/lab)
+"ojF" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Surgery Maintenance";
+ req_access_txt = "45"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "quarantineshutters";
+ name = "isolation shutters"
+ },
+/turf/open/floor/iron,
+/area/maintenance/starboard/aft)
"ojH" = (
/obj/machinery/light{
dir = 8
@@ -63693,6 +63660,14 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"ojR" = (
+/obj/structure/closet/emcloset,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/iron/dark,
+/area/security/main)
"okK" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -63728,6 +63703,17 @@
},
/turf/open/floor/iron,
/area/quartermaster/warehouse)
+"okM" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron{
+ heat_capacity = 1e+006
+ },
+/area/maintenance/starboard)
"okT" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
@@ -63736,19 +63722,6 @@
/obj/structure/bed/roller,
/turf/open/floor/plating,
/area/maintenance/department/medical/central)
-"olH" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/effect/turf_decal/tile/brown/half/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/sorting)
"olS" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/effect/decal/cleanable/dirt,
@@ -63788,16 +63761,6 @@
},
/turf/open/floor/wood,
/area/quartermaster/exploration_prep)
-"omK" = (
-/obj/structure/table/wood,
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/item/book/manual/wiki/security_space_law,
-/obj/item/camera/detective,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/detectives_office)
"omQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -63825,34 +63788,20 @@
},
/turf/open/floor/iron,
/area/quartermaster/office)
-"omU" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/door/airlock/security/glass{
- name = "Warden's Office";
- req_access_txt = "3"
- },
-/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/security/warden)
"onm" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron,
/area/medical/medbay/lobby)
+"ono" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/hallway/primary/starboard)
"onq" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
@@ -63861,6 +63810,48 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/atmos)
+"onD" = (
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26;
+ pixel_y = 1
+ },
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron/dark,
+/area/security/main)
+"onI" = (
+/obj/structure/railing{
+ dir = 10;
+ layer = 3.2
+ },
+/obj/machinery/biogenerator,
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 10
+ },
+/turf/open/floor/prison/dark,
+/area/security/prison)
+"onW" = (
+/obj/structure/table/reinforced,
+/obj/machinery/microwave{
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"oob" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -63892,6 +63883,14 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/medical/morgue)
+"ooz" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ burnt = 1
+ },
+/area/security/main)
"ooQ" = (
/obj/item/radio/intercom{
pixel_y = -26
@@ -63912,39 +63911,6 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"opf" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/chair{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red/half/contrasted,
-/turf/open/floor/prison,
-/area/security/prison)
-"opg" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/turf/open/floor/iron,
-/area/engine/break_room)
-"opi" = (
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc/auto_name/directional/north,
-/obj/effect/turf_decal/tile/brown/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/quartermaster/qm)
"opj" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 1
@@ -63976,14 +63942,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/closed/wall,
/area/medical/genetics/cloning)
-"opD" = (
-/obj/structure/table/reinforced,
-/obj/item/reagent_containers/glass/bowl,
-/obj/effect/turf_decal{
- dir = 1
- },
-/turf/open/floor/prison,
-/area/security/prison)
"opM" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -64049,6 +64007,18 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/command)
+"oqH" = (
+/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/iron/dark,
+/area/security/main)
"oqL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -64087,17 +64057,6 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/aft)
-"orb" = (
-/obj/structure/rack,
-/obj/effect/turf_decal/bot,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/effect/loot_jobscale/armoury/energy_gun,
-/turf/open/floor/iron/dark,
-/area/ai_monitored/security/armory)
"ore" = (
/obj/machinery/door/airlock/public/glass{
name = "Atrium"
@@ -64132,24 +64091,6 @@
heat_capacity = 1e+006
},
/area/maintenance/aft)
-"orB" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/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/button/door{
- id = "armory";
- name = "Armory Shutters";
- pixel_x = -25;
- pixel_y = -26;
- req_access_txt = "3"
- },
-/turf/open/floor/iron,
-/area/ai_monitored/security/armory)
"orI" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/radio/intercom{
@@ -64194,6 +64135,24 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard)
+"ose" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/starboard)
+"osf" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "Prisongate"
+ },
+/obj/effect/spawner/structure/window/reinforced/prison,
+/turf/open/floor/plating,
+/area/security/prison)
"osj" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -64250,14 +64209,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/fitness/recreation)
-"ote" = (
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/machinery/camera/autoname{
- dir = 5;
- network = list("ss13","medbay")
- },
-/turf/open/floor/iron,
-/area/medical/genetics/cloning)
"ott" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -64281,16 +64232,13 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/atmospherics_engine)
-"otN" = (
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+"otP" = (
+/obj/machinery/computer/operating{
+ dir = 8
},
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/hallway/primary/starboard)
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/turf/open/floor/iron/white,
+/area/security/brig/medbay)
"otY" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -64300,6 +64248,34 @@
/obj/effect/turf_decal/tile/blue,
/turf/open/floor/iron,
/area/hallway/primary/aft)
+"ouf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ 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
+ },
+/turf/open/floor/iron,
+/area/hydroponics)
+"oul" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/engine/break_room)
"ouq" = (
/obj/machinery/door/airlock{
name = "Auxiliary Restroom"
@@ -64331,26 +64307,6 @@
},
/turf/open/floor/iron,
/area/maintenance/port/fore)
-"ouA" = (
-/obj/machinery/door/airlock/atmos/glass{
- name = "Atmospherics Desk";
- req_access_txt = "24"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/door/firedoor,
-/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)
"ouJ" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -64397,21 +64353,19 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"ovv" = (
-/obj/machinery/door/airlock/security{
- name = "Detective's Office";
- req_access_txt = "4"
+"ovF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
},
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/red/half/contrasted{
+/obj/effect/turf_decal/tile/purple/half/contrasted,
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/iron,
-/area/security/detectives_office)
+/turf/open/floor/iron/white,
+/area/science/research)
"ovG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 6
@@ -64467,19 +64421,29 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/aft)
-"ows" = (
-/obj/item/kirbyplants/random,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+"owu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/prison,
-/area/security/prison)
-"oxa" = (
-/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
dir = 4
},
/turf/open/floor/iron,
-/area/security/warden)
+/area/hallway/primary/starboard)
+"owZ" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron/dark,
+/area/security/prison)
"oxl" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -64540,6 +64504,17 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"oxL" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/obj/machinery/airalarm/directional/east,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/science/misc_lab)
"oxV" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -64561,19 +64536,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/locker)
-"oyu" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/camera/autoname{
- dir = 5;
- network = list("ss13","medbay")
- },
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 8
- },
-/turf/open/floor/prison,
-/area/security/prison)
"oyy" = (
/obj/effect/landmark/event_spawn,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
@@ -64594,51 +64556,40 @@
},
/turf/open/floor/catwalk_floor/iron,
/area/engine/atmos)
-"oyK" = (
-/obj/machinery/suit_storage_unit/security,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/brig)
"oyR" = (
/obj/effect/landmark/start/medical_doctor,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/medical/surgery)
-"oyV" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
+"oyY" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/turf/open/floor/iron/dark,
+/area/security/main)
+"ozi" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26;
+ pixel_y = 1
+ },
+/obj/machinery/camera/autoname{
+ network = list("ss13","security");
+ dir = 10
+ },
+/turf/open/floor/iron/dark/smooth_edge{
dir = 4
},
-/obj/effect/turf_decal/tile/neutral,
-/turf/open/floor/iron,
-/area/hallway/primary/central)
-"oyX" = (
-/obj/item/kirbyplants/random,
-/turf/open/floor/iron,
-/area/security/brig)
+/area/security/main)
"ozE" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 4
},
/turf/open/floor/iron/dark,
/area/library)
-"ozZ" = (
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/obj/effect/turf_decal/bot,
-/obj/machinery/power/apc/auto_name/directional/north,
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/storage/tools)
"oAc" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 1
@@ -64646,21 +64597,47 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat_interior)
+"oAg" = (
+/obj/effect/turf_decal/siding/wideplating_new/dark,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_half,
+/area/crew_quarters/heads/hos)
"oAh" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/carpet/grimy,
/area/crew_quarters/bar)
-"oAi" = (
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "hosroom";
- name = "HoS Room Blast door"
+"oAB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
},
-/turf/open/floor/plating,
-/area/crew_quarters/heads/hos)
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/turf/open/floor/iron/dark/smooth_corner{
+ dir = 8
+ },
+/area/security/main)
+"oAF" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/start/detective,
+/obj/structure/chair/office{
+ dir = 8
+ },
+/turf/open/floor/carpet/grimy,
+/area/security/detectives_office)
+"oAH" = (
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"oAN" = (
/obj/structure/chair/fancy/comfy{
color = "#596479";
@@ -64674,8 +64651,12 @@
},
/turf/open/floor/carpet/royalblue,
/area/bridge)
-"oAW" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+"oBk" = (
+/obj/structure/dresser,
+/obj/machinery/light_switch{
+ pixel_x = -26;
+ pixel_y = -26
+ },
/turf/open/floor/carpet/red,
/area/crew_quarters/heads/hos)
"oBo" = (
@@ -64723,14 +64704,17 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/maintenance/port)
-"oBE" = (
-/obj/structure/cable/white,
-/obj/machinery/power/apc/auto_name/directional/south,
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 8
+"oBJ" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/item/kirbyplants{
+ icon_state = "plant-22";
+ name = "legally obbligatory mapper potted plant"
},
/turf/open/floor/iron,
-/area/security/brig)
+/area/hallway/secondary/exit/departure_lounge)
"oBU" = (
/obj/machinery/computer/atmos_control/tank/plasma_tank{
dir = 4
@@ -64778,24 +64762,40 @@
},
/turf/open/floor/iron,
/area/engine/break_room)
-"oCD" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
+"oCl" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
+/obj/structure/window/reinforced{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
+/obj/structure/rack,
+/obj/item/gun/energy/ionrifle{
+ pixel_y = 4
},
-/obj/effect/turf_decal/tile/blue{
- dir = 1
+/obj/item/gun/energy/temperature/security{
+ pixel_y = -2
},
-/obj/effect/turf_decal/tile/green{
+/obj/item/clothing/suit/armor/laserproof,
+/obj/machinery/door/window/southright{
+ name = "EMP storage";
+ req_one_access_txt = "1;4"
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
dir = 4
},
-/turf/open/floor/iron,
-/area/hydroponics)
+/turf/open/floor/iron/dark,
+/area/ai_monitored/security/armory)
+"oCp" = (
+/obj/machinery/holopad,
+/obj/effect/landmark/event_spawn,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark,
+/area/security/detectives_office)
"oCP" = (
/obj/structure/sign/departments/minsky/supply/janitorial,
/turf/closed/wall,
@@ -64813,6 +64813,17 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"oDM" = (
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/structure/sign/poster/official/cleanliness{
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/white,
+/area/security/brig/medbay)
"oDO" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
@@ -64823,6 +64834,14 @@
},
/turf/open/floor/iron,
/area/maintenance/starboard/aft)
+"oDS" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/iron,
+/area/hallway/primary/port)
"oDX" = (
/obj/structure/chair,
/obj/effect/turf_decal/tile/blue{
@@ -64861,17 +64880,6 @@
},
/turf/open/floor/plating,
/area/maintenance/port/aft)
-"oEh" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
"oEi" = (
/obj/machinery/door/airlock/engineering/glass{
name = "Shared Engineering Storage";
@@ -64926,15 +64934,27 @@
heat_capacity = 1e+006
},
/area/maintenance/port)
-"oFg" = (
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 8
+"oES" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/machinery/computer/crew{
- 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/tile/yellow/half/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/open/floor/iron,
-/area/security/warden)
+/area/engine/break_room)
+"oFh" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/turf/open/floor/iron/white,
+/area/science/misc_lab/range)
"oFD" = (
/obj/effect/turf_decal/tile/blue{
dir = 4
@@ -64964,15 +64984,6 @@
heat_capacity = 1e+006
},
/area/science/misc_lab)
-"oFP" = (
-/obj/structure/chair{
- pixel_y = -2
- },
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/security/prison)
"oFU" = (
/obj/structure/girder,
/obj/machinery/light/small{
@@ -65003,6 +65014,25 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai_upload)
+"oGq" = (
+/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/half/contrasted{
+ dir = 1
+ },
+/obj/structure/disposalpipe/sorting/mail{
+ name = "CE's Junction";
+ sortType = 5
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"oGs" = (
/obj/structure/chair/office{
dir = 1
@@ -65020,18 +65050,18 @@
"oHc" = (
/turf/open/floor/iron/dark,
/area/maintenance/department/medical/morgue)
-"oHD" = (
-/obj/structure/table/wood,
-/obj/item/clothing/mask/cigarette/cigar/cohiba{
- pixel_x = 3
+"oHM" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/obj/item/clothing/mask/cigarette/cigar/havana{
- pixel_x = -3
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
},
-/obj/item/clothing/mask/cigarette/cigar,
-/obj/item/clothing/glasses/hud/security/sunglasses,
-/turf/open/floor/carpet/red,
-/area/security/detectives_office)
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/security/main)
"oHX" = (
/obj/effect/turf_decal/siding/wideplating/dark{
dir = 1
@@ -65055,15 +65085,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/bar)
-"oIr" = (
-/obj/machinery/light{
- light_color = "#7AC3FF"
- },
-/obj/structure/sign/warning/electricshock{
- pixel_y = -32
- },
-/turf/open/floor/prison,
-/area/security/prison)
"oIE" = (
/obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior,
/obj/effect/mapping_helpers/airlock/locked,
@@ -65110,6 +65131,13 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
+"oIY" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark/side,
+/area/security/brig)
"oJc" = (
/obj/structure/filingcabinet/security,
/obj/machinery/firealarm{
@@ -65148,6 +65176,66 @@
},
/turf/open/floor/catwalk_floor/iron_smooth,
/area/engine/atmos)
+"oJL" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Dormitory Block"
+ },
+/obj/effect/turf_decal/delivery,
+/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 = 8
+ },
+/turf/open/floor/prison/dark,
+/area/security/prison)
+"oJW" = (
+/obj/structure/chair,
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
+"oJZ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security{
+ aiControlDisabled = 1;
+ id_tag = "interrogationacess";
+ name = "Solitary Confinement";
+ req_one_access_txt = "1;4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/effect/turf_decal/tile/techfloorgrid{
+ dir = 9
+ },
+/turf/open/floor/iron/dark,
+/area/security/prison/shielded)
+"oKf" = (
+/obj/structure/rack,
+/obj/item/book/manual/wiki/engineering_hacking{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/book/manual/wiki/engineering_guide,
+/obj/item/book/manual/wiki/engineering_construction{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"oKE" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -65189,34 +65277,37 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"oLa" = (
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/bridge)
"oLg" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/carpet/grimy,
/area/tcommsat/computer)
-"oLD" = (
-/obj/item/kirbyplants/random,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/engine/atmos)
-"oLK" = (
+"oLl" = (
/obj/structure/cable/yellow{
- icon_state = "1-4"
+ icon_state = "4-8"
},
-/obj/structure/cable/yellow{
- icon_state = "1-8"
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
},
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
},
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=hall10";
- location = "hall9"
+/obj/machinery/camera/directional/north{
+ network = list("ss13","prison")
},
+/turf/open/floor/prison,
+/area/security/prison)
+"oLD" = (
+/obj/item/kirbyplants/random,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/hallway/primary/central)
+/turf/open/floor/iron/dark,
+/area/engine/atmos)
"oMb" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -65230,60 +65321,47 @@
},
/turf/open/floor/iron,
/area/medical/medbay/central)
-"oMd" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/armor/vest{
- pixel_x = -3;
- pixel_y = 3
+"oMk" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/obj/item/clothing/suit/armor/vest,
-/obj/item/clothing/suit/armor/vest{
- pixel_x = 3;
- pixel_y = -3
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/door/airlock/atmos{
+ name = "Atmospherics Access";
+ req_one_access_txt = "24;10"
},
-/obj/item/clothing/head/helmet{
- layer = 3.00001;
- pixel_x = -3;
- pixel_y = 3
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
},
-/obj/item/clothing/head/helmet{
- layer = 3.00001
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
},
-/obj/item/clothing/head/helmet{
- layer = 3.00001;
- pixel_x = 3;
- pixel_y = -3
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/break_room)
+"oMl" = (
+/obj/item/kirbyplants/random,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 24
},
-/obj/structure/window/reinforced{
- dir = 1
+/obj/machinery/light_switch{
+ pixel_y = 26
},
-/obj/effect/turf_decal/bot,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/ai_monitored/security/armory)
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"oMw" = (
/obj/docking_port/stationary/public_mining_dock{
dir = 4
},
/turf/open/floor/plating,
/area/construction/mining/aux_base)
-"oMz" = (
-/obj/structure/rack,
-/obj/item/clothing/shoes/sneakers/orange,
-/obj/item/clothing/shoes/sneakers/orange,
-/obj/item/clothing/shoes/sneakers/orange,
-/obj/item/clothing/shoes/sneakers/orange,
-/obj/item/clothing/shoes/sneakers/orange,
-/obj/item/clothing/under/rank/prisoner,
-/obj/item/clothing/under/rank/prisoner,
-/obj/item/clothing/under/rank/prisoner,
-/obj/item/clothing/under/rank/prisoner,
-/obj/item/clothing/under/rank/prisoner,
-/obj/effect/turf_decal/tile/red/anticorner/contrasted{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/security/prison)
"oMC" = (
/obj/structure/rack,
/obj/item/storage/toolbox/mechanical{
@@ -65330,24 +65408,6 @@
},
/turf/open/floor/iron,
/area/engine/gravity_generator)
-"oMU" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/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 = 4
- },
-/turf/open/floor/iron/white,
-/area/crew_quarters/heads/hor)
"oNf" = (
/obj/machinery/light{
dir = 4
@@ -65383,6 +65443,21 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint/supply)
+"oOe" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 4
+ },
+/obj/machinery/computer/arcade{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"oOg" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
@@ -65391,13 +65466,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
-"oOp" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/ai_monitored/security/armory)
"oOt" = (
/obj/machinery/light/small,
/obj/machinery/power/apc{
@@ -65439,21 +65507,6 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/central)
-"oOQ" = (
-/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/effect/turf_decal/tile/brown{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/hallway/primary/fore)
"oPi" = (
/obj/machinery/computer/camera_advanced/base_construction{
dir = 8
@@ -65461,12 +65514,6 @@
/obj/effect/turf_decal/tile/yellow/half/contrasted,
/turf/open/floor/iron,
/area/construction/mining/aux_base)
-"oPp" = (
-/obj/structure/closet/secure_closet/security/sec,
-/obj/effect/turf_decal/bot,
-/obj/effect/turf_decal/tile/red/anticorner/contrasted,
-/turf/open/floor/iron,
-/area/security/main)
"oPq" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -65503,6 +65550,10 @@
},
/turf/open/floor/iron,
/area/maintenance/port)
+"oPV" = (
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/turf/open/floor/iron,
+/area/security/brig)
"oPW" = (
/obj/effect/turf_decal/tile/blue,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -65523,19 +65574,6 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/turf/open/floor/iron/white,
/area/medical/medbay/lobby)
-"oPZ" = (
-/obj/structure/chair/office{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/brig)
"oQi" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -65599,6 +65637,14 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
+"oQW" = (
+/obj/structure/chair/office{
+ dir = 1
+ },
+/obj/effect/landmark/start/cargo_technician,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron,
+/area/quartermaster/office)
"oQZ" = (
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -65615,17 +65661,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/bridge)
-"oRo" = (
-/obj/structure/chair{
- dir = 8;
- name = "Judge"
- },
-/obj/machinery/newscaster{
- pixel_x = 32
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/security/courtroom)
"oRq" = (
/obj/structure/table/reinforced,
/obj/item/folder/blue,
@@ -65659,18 +65694,21 @@
},
/turf/open/floor/iron,
/area/engine/gravity_generator)
-"oRG" = (
-/obj/structure/sign/poster/official/random{
- pixel_x = 32
- },
-/obj/machinery/camera/autoname{
- dir = 6
+"oRH" = (
+/obj/structure/table/wood,
+/obj/item/clipboard,
+/obj/item/toy/figure/hos,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/machinery/camera/directional/north{
+ c_tag = "Security - Head of Security's Office";
+ network = list("ss13","security")
},
-/obj/effect/turf_decal/siding/wood{
- dir = 4
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
},
-/turf/open/floor/wood,
-/area/quartermaster/exploration_prep)
+/turf/open/floor/iron/dark,
+/area/crew_quarters/heads/hos)
"oRI" = (
/obj/effect/turf_decal/delivery,
/obj/structure/closet/secure_closet/engineering_personal,
@@ -65731,15 +65769,6 @@
},
/turf/open/floor/iron,
/area/medical/surgery)
-"oTU" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown/half/contrasted{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/quartermaster/qm)
"oTV" = (
/obj/machinery/gateway{
dir = 4
@@ -65749,14 +65778,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/gateway)
-"oUa" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/purple/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron/white,
-/area/science/mixing)
"oUc" = (
/obj/effect/landmark/event_spawn,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -65770,6 +65791,12 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/locker)
+"oUj" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/tech,
+/area/security/prison/shielded)
"oUH" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -65791,6 +65818,15 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat_interior)
+"oUR" = (
+/obj/item/beacon,
+/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/large,
+/area/security/courtroom)
"oUW" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -65800,6 +65836,24 @@
},
/turf/open/floor/iron/white,
/area/science/research)
+"oUY" = (
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/sign/warning/electricshock{
+ pixel_y = -32
+ },
+/turf/open/floor/plating,
+/area/engine/gravity_generator)
+"oVb" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "Prisongate"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/warden)
"oVf" = (
/obj/machinery/power/solar_control{
dir = 4;
@@ -65816,6 +65870,16 @@
/obj/machinery/firealarm/directional/south,
/turf/open/floor/plating,
/area/maintenance/solars/port/fore)
+"oVj" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/starboard)
"oVm" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -65824,21 +65888,18 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"oVM" = (
+"oVS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
+ dir = 4
},
-/turf/open/floor/iron,
-/area/security/brig)
+/turf/open/floor/iron/dark,
+/area/security/main)
"oVU" = (
/obj/structure/table/wood,
/obj/item/camera_film{
@@ -65866,6 +65927,13 @@
},
/turf/open/floor/carpet/grimy,
/area/bridge/showroom/corporate)
+"oWF" = (
+/obj/structure/table/wood,
+/obj/item/folder/red,
+/obj/item/pen,
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/turf/open/floor/iron,
+/area/security/courtroom)
"oWP" = (
/obj/effect/turf_decal/pool{
dir = 8
@@ -65873,6 +65941,20 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/fitness/recreation)
+"oWQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 4
+ },
+/area/security/main)
"oWT" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -65926,6 +66008,16 @@
},
/turf/open/floor/iron,
/area/medical/chemistry)
+"oXU" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/obj/structure/sign/departments/medbay/alt2{
+ pixel_y = -32;
+ pixel_x = -32
+ },
+/turf/open/floor/iron,
+/area/security/brig)
"oYi" = (
/obj/machinery/vending/wardrobe/sec_wardrobe,
/obj/effect/turf_decal/tile/red/anticorner/contrasted{
@@ -65985,6 +66077,28 @@
},
/turf/open/floor/iron,
/area/crew_quarters/toilet/auxiliary)
+"oYT" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/bot,
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/item/storage/box/flashbangs{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/storage/box/teargas,
+/obj/item/gun/grenadelauncher{
+ pixel_y = 4
+ },
+/turf/open/floor/iron/dark,
+/area/ai_monitored/security/armory)
"oZg" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -66008,6 +66122,13 @@
/obj/structure/curtain,
/turf/open/floor/iron,
/area/medical/surgery)
+"oZs" = (
+/obj/machinery/computer/shuttle_flight/labor,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"oZu" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -66019,28 +66140,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/wood,
/area/crew_quarters/heads/captain)
-"oZR" = (
-/obj/structure/sign/poster/official/work_for_a_future{
- pixel_y = -32
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/courtroom)
-"oZS" = (
-/obj/structure/cable/white,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/machinery/power/apc/auto_name/directional/south,
-/obj/machinery/light_switch{
- pixel_x = 12;
- pixel_y = -22
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/starboard/fore)
"oZW" = (
/obj/structure/table/wood,
/obj/item/clothing/mask/fakemoustache,
@@ -66092,23 +66191,6 @@
},
/turf/open/floor/iron,
/area/medical/morgue)
-"paY" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/newscaster{
- pixel_x = -32
- },
-/obj/machinery/camera/directional/west{
- c_tag = "Detective's Office"
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/detectives_office)
-"pbc" = (
-/obj/machinery/genpop_interface,
-/turf/closed/wall/r_wall,
-/area/security/warden)
"pbk" = (
/obj/machinery/button/door{
desc = "A remote control switch.";
@@ -66153,43 +66235,16 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/science/research)
-"pcb" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/engineering{
- name = "Engineering Foyer";
- req_one_access_txt = "32"
- },
-/obj/effect/turf_decal/stripes/line{
+"pci" = (
+/obj/structure/disposalpipe/trunk{
dir = 8
},
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- 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/iron,
-/area/engine/break_room)
-"pcf" = (
-/obj/machinery/door/airlock/security{
- aiControlDisabled = 1;
- id_tag = "prisonereducation";
- name = "Prison access";
- req_one_access_txt = "1;4"
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
},
-/obj/effect/turf_decal/delivery/red,
-/turf/open/floor/iron/dark,
-/area/security/prison)
+/turf/open/floor/wood/big,
+/area/lawoffice)
"pcu" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -66266,72 +66321,21 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/gravity_generator)
-"per" = (
-/obj/machinery/light{
- light_color = "#7AC3FF"
- },
-/obj/effect/turf_decal/tile/dark_blue/opposingcorners,
-/obj/effect/turf_decal/tile/blue/opposingcorners{
- dir = 1
- },
-/obj/structure/filingcabinet/chestdrawer,
-/obj/structure/sign/poster/official/ian{
- pixel_y = -32
- },
-/obj/machinery/firealarm/directional/east,
-/turf/open/floor/iron/white,
-/area/medical/medbay/central)
-"peB" = (
-/obj/structure/table/reinforced,
-/obj/item/tank/internals/emergency_oxygen/engi{
- pixel_x = -5
- },
-/obj/item/tank/internals/emergency_oxygen/engi{
- pixel_x = 5
- },
-/obj/item/geiger_counter,
-/obj/item/geiger_counter,
-/obj/machinery/airalarm/directional/east{
- pixel_x = 24
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/atmospherics_engine)
-"peM" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/door/airlock/security/glass{
- name = "Security Transferring Control";
- req_one_access_txt = "1;4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/brig)
"peN" = (
/mob/living/basic/cockroach,
/turf/open/floor/plating,
/area/maintenance/port)
+"peP" = (
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/obj/effect/turf_decal/stripes/openup{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/prison/dark,
+/area/security/prison)
"peY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/door/firedoor,
@@ -66378,6 +66382,24 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
+"pfM" = (
+/obj/machinery/door/airlock/public/glass{
+ name = "Service Foyer";
+ req_one_access_txt = "22;25;26;28;35;37;38;46"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/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/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/hallway/secondary/service)
"pgj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -66387,6 +66409,25 @@
icon_state = "chapel"
},
/area/chapel/main)
+"pgl" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/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 = 4
+ },
+/obj/machinery/camera/autoname{
+ dir = 9;
+ network = list("ss13","prison")
+ },
+/turf/open/floor/prison/dark,
+/area/security/prison)
"pgQ" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -66396,21 +66437,15 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/medical/medbay/lobby)
-"pgV" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/advanced_airlock_controller{
- pixel_x = 26;
- pixel_y = 2
+"phg" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{
- dir = 1
+/obj/machinery/light/small{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/plating,
-/area/security/brig)
+/turf/open/floor/iron/dark,
+/area/security/main)
"phn" = (
/obj/structure/chair,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
@@ -66419,18 +66454,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/aisat)
-"pho" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
- },
-/turf/open/floor/circuit/green,
-/area/security/nuke_storage)
"phu" = (
/obj/machinery/disposal/bin,
/obj/structure/extinguisher_cabinet{
@@ -66475,14 +66498,11 @@
/obj/structure/chair/office,
/turf/open/floor/carpet/grimy,
/area/library)
-"pix" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/storage)
+"pij" = (
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/checkpoint/engineering)
"pjy" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -66546,6 +66566,19 @@
dir = 1
},
/area/engine/atmos)
+"pkj" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/closed/wall,
+/area/crew_quarters/cryopods)
+"pkl" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/carpet/grimy,
+/area/security/detectives_office)
"pkr" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -66555,18 +66588,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"pks" = (
-/obj/machinery/holopad,
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/carpet/green,
-/area/lawoffice)
"pkH" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -66582,10 +66603,56 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/fitness/recreation)
+"pkL" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Hydroponics Maintenance";
+ req_access_txt = "35"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/maintenance/port/fore)
+"pkM" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/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 = "2-4"
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"pkR" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plating,
/area/maintenance/aft)
+"pkT" = (
+/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
+ },
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/hallway/secondary/service)
"pkW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -66660,6 +66727,12 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/bridge)
+"plq" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/carpet/green,
+/area/lawoffice)
"plH" = (
/obj/machinery/gateway{
dir = 6
@@ -66673,6 +66746,31 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/gateway)
+"plW" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron,
+/area/security/prison)
+"pmh" = (
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/dark,
+/area/security/execution/transfer)
"pmx" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -66732,26 +66830,21 @@
/obj/effect/turf_decal/tile/purple,
/turf/open/floor/iron/white,
/area/science/research)
-"pnf" = (
-/obj/structure/chair/office{
- dir = 8
- },
+"pne" = (
/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/effect/landmark/start/quartermaster,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 2
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/qm)
+/turf/open/floor/iron/goonplaque,
+/area/security/brig)
+"pnn" = (
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/turf/open/floor/plating,
+/area/security/brig/medbay)
"pnq" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -66768,6 +66861,23 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/security/checkpoint/customs/auxiliary)
+"pnE" = (
+/obj/machinery/shower{
+ dir = 8
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/noslip/standard,
+/area/security/prison)
+"pnF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/security/brig)
"pnJ" = (
/obj/machinery/door/airlock/public/glass{
name = "Library Access"
@@ -66782,6 +66892,9 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/library)
+"pnP" = (
+/turf/open/floor/iron/dark,
+/area/security/main)
"pnV" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -66809,6 +66922,18 @@
},
/turf/open/floor/iron,
/area/crew_quarters/fitness/recreation)
+"pog" = (
+/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/half/contrasted{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/hallway/secondary/service)
"poq" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -66848,6 +66973,15 @@
},
/turf/open/floor/iron,
/area/quartermaster/office)
+"ppg" = (
+/obj/structure/disposaloutlet,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plating,
+/area/quartermaster/sorting)
+"ppG" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/maintenance/starboard)
"ppP" = (
/obj/machinery/door/airlock/hatch{
name = "MiniSat Transit Tube Access";
@@ -66914,15 +67048,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/quartermaster/sorting)
-"psn" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Visitation"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/prison,
-/area/security/prison)
"psF" = (
/obj/machinery/door/airlock/engineering{
name = "Port Quarter Solar Access";
@@ -66995,6 +67120,15 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/library)
+"ptp" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/iron/freezer,
+/area/security/prison)
"ptw" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -67051,6 +67185,30 @@
},
/turf/open/floor/iron,
/area/maintenance/port)
+"puh" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "cardoor";
+ name = "Cargo Cell";
+ 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/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/iron,
+/area/security/checkpoint/supply)
"pun" = (
/obj/structure/disposalpipe/segment{
dir = 6
@@ -67083,6 +67241,21 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/heads/chief)
+"puw" = (
+/obj/machinery/door/airlock/security{
+ name = "Brig";
+ req_access_txt = "63; 42";
+ aiControlDisabled = 1;
+ id_tag = "testimonyacess"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/closeup,
+/obj/machinery/door/poddoor/preopen{
+ id = "Prisongate"
+ },
+/obj/effect/mapping_helpers/airlock/locked,
+/turf/open/floor/iron/dark,
+/area/security/prison)
"puy" = (
/obj/structure/window/reinforced{
dir = 8
@@ -67103,9 +67276,15 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/transit_tube)
-"puC" = (
-/turf/closed/wall/r_wall,
-/area/lawoffice)
+"puF" = (
+/obj/structure/table/wood,
+/obj/item/gavelblock,
+/obj/item/gavelhammer,
+/obj/effect/turf_decal/tile/blue/anticorner{
+ dir = 8
+ },
+/turf/open/floor/iron/large,
+/area/security/courtroom)
"puV" = (
/turf/closed/wall,
/area/maintenance/solars/starboard/aft)
@@ -67118,6 +67297,17 @@
/obj/effect/turf_decal/tile/brown/half/contrasted,
/turf/open/floor/iron,
/area/quartermaster/sorting)
+"pvd" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/turf_decal/delivery,
+/obj/item/kirbyplants{
+ icon_state = "plant-22";
+ name = "legally obbligatory mapper potted plant"
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"pvf" = (
/obj/item/radio/intercom{
pixel_x = 26
@@ -67152,20 +67342,24 @@
},
/turf/open/floor/iron,
/area/science/research)
-"pvy" = (
-/obj/structure/chair/office{
+"pvL" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 1
},
-/obj/effect/landmark/start/cargo_technician,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/storage)
-"pvF" = (
-/turf/closed/wall,
-/area/security/execution/transfer)
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/holopad,
+/turf/open/floor/iron/dark,
+/area/crew_quarters/heads/hos)
"pvO" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -67219,12 +67413,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/science/research)
-"pwe" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/prison,
-/area/security/prison)
"pwi" = (
/obj/effect/turf_decal/bot_white/right,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -67261,36 +67449,6 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/starboard/fore)
-"pwW" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/sorting/mail{
- name = "Atmospherics Junction";
- sortType = 6
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/catwalk_floor/iron,
-/area/hallway/primary/port)
-"pxf" = (
-/obj/structure/sign/nanotrasen,
-/turf/closed/wall,
-/area/security/courtroom)
-"pxh" = (
-/obj/structure/disposalpipe/sorting/mail{
- dir = 8;
- name = "HoS Junction";
- sortType = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
"pxr" = (
/obj/effect/turf_decal/tile/blue{
dir = 4
@@ -67300,6 +67458,14 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/aft)
+"pxu" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -23
+ },
+/turf/open/floor/iron/dark,
+/area/crew_quarters/heads/hos)
"pxA" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/obj/effect/turf_decal/tile/purple/anticorner/contrasted{
@@ -67343,13 +67509,6 @@
},
/turf/open/floor/catwalk_floor/iron,
/area/science/xenobiology)
-"pxZ" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/prison,
-/area/security/prison)
"pyc" = (
/obj/structure/table/wood,
/obj/item/food/chips,
@@ -67368,16 +67527,6 @@
heat_capacity = 1e+006
},
/area/maintenance/starboard/aft)
-"pyY" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/junction/flip{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/teleporter)
"pzk" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -67418,6 +67567,17 @@
},
/turf/open/floor/iron,
/area/maintenance/starboard/fore)
+"pzZ" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "hosspace";
+ name = "space shutters"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/crew_quarters/heads/hos)
"pAf" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/maintenance_hatch{
@@ -67453,21 +67613,17 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/starboard)
-"pAt" = (
-/obj/item/kirbyplants/random,
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/camera/directional/west{
- c_tag = "Engineering - Foyer";
- name = "engineering camera"
+"pAK" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/effect/turf_decal/tile/yellow/half/contrasted{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
},
/turf/open/floor/iron,
-/area/engine/break_room)
+/area/hallway/primary/starboard)
"pAL" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/sign/poster/random{
@@ -67500,6 +67656,18 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/chapel/office)
+"pBM" = (
+/obj/structure/table,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/item/radio/intercom{
+ desc = "Talk through this. It looks like it has been modified to not broadcast.";
+ name = "Prison Intercom (General)";
+ pixel_y = -24;
+ prison_radio = 1
+ },
+/turf/open/floor/iron/techmaint,
+/area/security/prison/shielded)
"pBT" = (
/obj/effect/turf_decal/tile/blue{
dir = 1
@@ -67509,13 +67677,6 @@
},
/turf/open/floor/iron,
/area/hydroponics)
-"pBW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/engine/atmos)
"pCT" = (
/obj/effect/turf_decal/tile/blue{
dir = 4
@@ -67526,6 +67687,14 @@
/obj/machinery/airalarm/directional/north,
/turf/open/floor/iron/white,
/area/medical/medbay/aft)
+"pDa" = (
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/white,
+/area/security/brig/medbay)
"pDc" = (
/obj/machinery/light/small{
dir = 1
@@ -67543,6 +67712,18 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/fitness/recreation)
+"pDq" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"pDE" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -67588,15 +67769,6 @@
},
/turf/open/floor/iron,
/area/science/storage)
-"pEs" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/science/research)
"pEw" = (
/obj/structure/disposalpipe/segment{
dir = 10
@@ -67642,34 +67814,6 @@
},
/turf/open/floor/iron/dark/textured,
/area/maintenance/disposal/incinerator)
-"pFd" = (
-/obj/structure/table/wood,
-/obj/item/folder/red,
-/obj/item/pen,
-/obj/machinery/button/door{
- id = "hosprivacy";
- name = "Privacy Control";
- pixel_x = 26;
- pixel_y = 7;
- req_access_txt = "58"
- },
-/obj/machinery/button/door{
- id = "hosspace";
- name = "Space Shutters Control";
- pixel_x = 26;
- pixel_y = -7;
- req_access_txt = "58"
- },
-/obj/machinery/light_switch{
- pixel_x = 38
- },
-/obj/machinery/keycard_auth{
- pixel_x = 26;
- pixel_y = 26
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/crew_quarters/heads/hos)
"pFf" = (
/obj/structure/window/reinforced{
dir = 4
@@ -67679,31 +67823,29 @@
"pFh" = (
/turf/open/floor/carpet/purple,
/area/vacant_room/office)
-"pFk" = (
-/obj/machinery/status_display/ai{
- pixel_x = 32;
- pixel_y = 32
- },
-/obj/item/radio/intercom{
- pixel_x = 26;
- pixel_y = 58
- },
-/turf/open/floor/carpet/red,
-/area/crew_quarters/heads/hos)
-"pFG" = (
-/obj/structure/chair/office{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+"pFm" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/door/airlock/external{
+ name = "Security External Airlock";
+ req_access_txt = "63"
},
-/obj/structure/cable/yellow{
- icon_state = "2-8"
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
},
-/obj/effect/landmark/start/security_officer,
-/obj/effect/turf_decal/tile/red/half/contrasted,
-/turf/open/floor/iron,
+/obj/machinery/atmospherics/pipe/layer_manifold,
+/turf/open/floor/plating,
/area/security/main)
+"pFt" = (
+/obj/structure/table/wood,
+/obj/item/clipboard,
+/obj/item/folder/red,
+/obj/item/pen,
+/obj/item/toy/figure/detective{
+ pixel_y = 16
+ },
+/turf/open/floor/carpet/grimy,
+/area/security/detectives_office)
"pFH" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -67744,6 +67886,20 @@
},
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
+"pFP" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/prison,
+/area/security/prison)
"pFV" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -67799,12 +67955,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/toilet/restrooms)
-"pGe" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/execution/transfer)
"pGf" = (
/obj/machinery/disposal/bin,
/obj/effect/turf_decal/bot,
@@ -67813,17 +67963,21 @@
},
/turf/open/floor/iron,
/area/medical/medbay/lobby)
-"pGh" = (
+"pGn" = (
/obj/structure/cable/yellow{
- icon_state = "4-8"
+ icon_state = "1-2"
},
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 4
},
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment,
/turf/open/floor/iron,
/area/engine/break_room)
"pGv" = (
@@ -67886,23 +68040,25 @@
/obj/item/pen,
/turf/open/floor/carpet/grimy,
/area/library)
-"pHn" = (
-/obj/machinery/light/small,
-/turf/open/floor/iron/freezer,
-/area/security/prison)
-"pHy" = (
+"pHq" = (
+/obj/structure/cable/yellow,
/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+ icon_state = "0-8"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/gateway)
+"pHM" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/shoes/magboots{
+ pixel_x = 3;
+ pixel_y = 3
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/item/clothing/shoes/magboots,
+/obj/machinery/airalarm/directional/east,
+/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
-/area/quartermaster/qm)
+/area/engine/storage)
"pIb" = (
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -67922,36 +68078,6 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/plating,
/area/maintenance/department/medical/central)
-"pIs" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron/dark,
-/area/security/execution/transfer)
-"pIX" = (
-/obj/structure/sign/directions/engineering{
- desc = "A sign that shows there are doors here. There are doors everywhere!";
- icon_state = "doors";
- name = "WARNING: PRESSURIZED DOORS"
- },
-/turf/closed/wall,
-/area/security/courtroom)
-"pJi" = (
-/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,
-/obj/effect/turf_decal/tile/brown/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/quartermaster/warehouse)
"pJp" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/camera/directional/east{
@@ -67963,6 +68089,16 @@
/obj/effect/turf_decal/tile/yellow,
/turf/open/floor/iron,
/area/hallway/primary/aft)
+"pJq" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/security/execution/transfer)
"pJy" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -68004,6 +68140,17 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
+"pJP" = (
+/obj/structure/chair/foldable,
+/obj/item/radio/intercom{
+ broadcasting = 1;
+ frequency = 1423;
+ listening = 0;
+ name = "Interrogation Intercom";
+ pixel_y = 24
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"pJR" = (
/obj/structure/table/wood,
/obj/machinery/microwave{
@@ -68053,13 +68200,6 @@
},
/turf/open/floor/iron,
/area/maintenance/port)
-"pKf" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/security/brig)
"pKl" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow{
@@ -68099,20 +68239,26 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/atmospherics_engine)
-"pKD" = (
-/obj/machinery/door/airlock/mining/glass{
- name = "Mining Office";
- req_access_txt = "31"
+"pKI" = (
+/obj/effect/turf_decal/bot,
+/obj/vehicle/ridden/secway,
+/obj/item/key/security,
+/obj/machinery/light,
+/obj/machinery/button/door{
+ id = "HOSarmory";
+ name = "Armory Shutters";
+ pixel_x = -6;
+ pixel_y = -24;
+ req_access_txt = "3"
},
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/iron,
-/area/quartermaster/miningoffice)
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/ai_monitored/security/armory)
"pKM" = (
/obj/structure/rack,
/obj/effect/decal/cleanable/dirt,
@@ -68128,16 +68274,6 @@
},
/turf/open/floor/iron,
/area/maintenance/disposal)
-"pKZ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/miningoffice)
"pLc" = (
/obj/machinery/light{
dir = 8
@@ -68161,14 +68297,6 @@
/obj/effect/turf_decal/tile/blue/half/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint/customs)
-"pLr" = (
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 8
- },
-/obj/structure/table/glass,
-/obj/item/healthanalyzer,
-/turf/open/floor/iron/white,
-/area/security/brig)
"pLw" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -68204,6 +68332,15 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/locker)
+"pMe" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/quartermaster/office)
"pMF" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -68236,13 +68373,10 @@
},
/turf/open/floor/carpet/blue,
/area/crew_quarters/heads/cmo)
-"pNj" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/obj/machinery/camera/autoname{
- dir = 6
- },
-/turf/open/floor/prison,
-/area/security/prison)
+"pMO" = (
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
"pNC" = (
/obj/structure/dresser,
/obj/structure/extinguisher_cabinet{
@@ -68264,6 +68398,17 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/engineering)
+"pNR" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/bed/dogbed/walter,
+/mob/living/simple_animal/pet/dog/bullterrier/walter,
+/turf/open/floor/iron/dark,
+/area/security/warden)
"pNW" = (
/obj/machinery/computer/card{
dir = 4
@@ -68281,14 +68426,6 @@
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint/customs/auxiliary)
-"pOl" = (
-/obj/structure/table/wood,
-/obj/item/clipboard,
-/obj/item/folder/red,
-/obj/item/pen,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/detectives_office)
"pOB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 5
@@ -68299,6 +68436,42 @@
/obj/effect/turf_decal/tile/brown/half/contrasted,
/turf/open/floor/iron,
/area/quartermaster/storage)
+"pOK" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/window/southright{
+ name = "Balistic Weapons storage";
+ req_one_access_txt = "1;4"
+ },
+/obj/item/ammo_box/magazine/wt550m9/rubber{
+ pixel_y = -4
+ },
+/obj/item/ammo_box/magazine/wt550m9/rubber,
+/obj/item/ammo_box/magazine/wt550m9/rubber{
+ pixel_y = 4
+ },
+/obj/item/ammo_box/magazine/wt550m9/rubber{
+ pixel_y = -4
+ },
+/obj/item/ammo_box/magazine/wt550m9/rubber,
+/obj/item/ammo_box/magazine/wt550m9/rubber{
+ pixel_y = 4
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/obj/item/gun/ballistic/automatic/wt550/rubber_loaded,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/rack,
+/turf/open/floor/iron/dark,
+/area/ai_monitored/security/armory)
"pOL" = (
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -68311,6 +68484,15 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/customs)
+"pOX" = (
+/obj/effect/turf_decal/siding/wideplating_new{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"pOZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral,
@@ -68341,6 +68523,18 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/dark,
/area/library)
+"pPt" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 1;
+ name = "Quartermaster Junction";
+ sortType = 3
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/fore)
"pPS" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
@@ -68360,26 +68554,16 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"pQc" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
+"pQe" = (
/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
+ icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
+/obj/machinery/door/poddoor/preopen{
+ id = "Prisongate"
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/warehouse)
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/prison)
"pQj" = (
/obj/machinery/door/window/northleft{
base_state = "right";
@@ -68405,16 +68589,6 @@
},
/turf/open/space/basic,
/area/space)
-"pQm" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/iron,
-/area/ai_monitored/security/armory)
"pQw" = (
/obj/effect/turf_decal/tile/yellow/half/contrasted{
dir = 8
@@ -68443,20 +68617,13 @@
},
/turf/open/floor/catwalk_floor/iron,
/area/engine/atmospherics_engine)
-"pQC" = (
-/obj/item/kirbyplants/random,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/security/brig)
-"pQU" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+"pQV" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high,
+/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
-/area/hallway/primary/starboard)
+/area/teleporter)
"pQX" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 1
@@ -68523,26 +68690,15 @@
},
/turf/open/floor/iron,
/area/maintenance/port)
-"pSF" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/cable_coil/white{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/stack/cable_coil/white,
-/obj/item/stock_parts/scanning_module{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/stock_parts/capacitor,
-/obj/item/stock_parts/manipulator,
-/obj/item/stock_parts/manipulator,
-/obj/machinery/airalarm/directional/east{
- pixel_x = 24
+"pSz" = (
+/obj/structure/table/wood,
+/obj/item/clipboard,
+/obj/item/toy/figure/lawyer,
+/obj/effect/turf_decal/siding/wood{
+ layer = 1
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/storage/tech)
+/turf/open/floor/wood/big,
+/area/lawoffice)
"pTk" = (
/obj/item/reagent_containers/glass/bottle/bromine{
pixel_x = -6
@@ -68635,34 +68791,11 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/bridge/showroom/corporate)
-"pTr" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 26
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/neutral,
-/turf/open/floor/iron,
-/area/hallway/primary/central)
-"pTt" = (
-/obj/structure/lattice,
-/obj/machinery/camera/motion/directional/south{
- c_tag = "Armory - External"
- },
-/turf/open/space/basic,
-/area/space/nearstation)
"pTA" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/atmos)
-"pTI" = (
-/obj/machinery/holopad,
-/obj/effect/landmark/start/lawyer,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron,
-/area/security/courtroom)
"pTJ" = (
/obj/machinery/light_switch{
pixel_x = -26
@@ -68680,6 +68813,24 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/science/explab)
+"pTQ" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/mining/glass{
+ name = "Delivery Office";
+ req_access_txt = "50"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/quartermaster/sorting)
"pUk" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -68789,18 +68940,10 @@
/obj/structure/chair/office,
/turf/open/floor/carpet/grimy,
/area/chapel/office)
-"pVX" = (
-/obj/structure/cable/white,
+"pVV" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "detectivewindows";
- name = "Detective Privacy Blast door"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
/turf/open/floor/plating,
-/area/security/detectives_office)
+/area/security/main)
"pWe" = (
/obj/machinery/status_display/ai{
pixel_y = 32
@@ -68831,6 +68974,18 @@
},
/turf/open/floor/noslip/dark,
/area/medical/genetics/cloning)
+"pWu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
"pWU" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
@@ -68839,6 +68994,25 @@
heat_capacity = 1e+006
},
/area/maintenance/starboard/aft)
+"pXs" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/mining{
+ name = "Cargo Warehouse";
+ req_access_txt = "31"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/quartermaster/sorting)
"pXv" = (
/obj/machinery/button/door{
id = "corporatelounge";
@@ -68912,6 +69086,44 @@
},
/turf/open/floor/wood,
/area/quartermaster/exploration_prep)
+"pYj" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/mask/gas/sechailer{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/clothing/mask/gas/sechailer,
+/obj/item/clothing/mask/gas/sechailer{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/flashlight/seclite,
+/obj/item/flashlight/seclite,
+/obj/item/flashlight/seclite,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/ai_monitored/security/armory)
+"pYv" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/quartermaster/storage)
"pYN" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock{
@@ -68942,43 +69154,25 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"pZy" = (
-/obj/structure/disposalpipe/segment{
- dir = 8
- },
-/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
- },
+"pZv" = (
+/obj/structure/cable/yellow,
/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/iron,
-/area/security/prison)
-"pZG" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/machinery/door/airlock/security/glass{
- name = "Brig";
- req_access_txt = "63"
+ icon_state = "0-2"
},
-/obj/effect/turf_decal/stripes/line{
- dir = 8
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/obj/effect/turf_decal/stripes/line{
- dir = 4
+/turf/open/floor/plating,
+/area/engine/engineering)
+"pZK" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/preopen{
- id = "brigfront";
- name = "Brig Blast door"
+/obj/machinery/camera/autoname/directional/west{
+ network = list("ss13","security")
},
+/obj/machinery/firealarm/directional/west,
/turf/open/floor/iron,
/area/security/brig)
"pZX" = (
@@ -69029,6 +69223,18 @@
},
/turf/open/floor/iron/dark/corner,
/area/engine/storage_shared)
+"qaU" = (
+/obj/item/kirbyplants/random,
+/obj/machinery/light/small,
+/obj/machinery/light_switch{
+ pixel_x = 26;
+ pixel_y = -26
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/engine/atmos)
"qbk" = (
/obj/structure/window/reinforced{
dir = 4
@@ -69047,6 +69253,15 @@
},
/turf/open/floor/iron/white,
/area/science/lab)
+"qbv" = (
+/obj/item/storage/secure/safe{
+ pixel_x = 32
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 6
+ },
+/turf/open/floor/wood,
+/area/security/detectives_office)
"qbX" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -69060,20 +69275,15 @@
},
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"qcb" = (
-/obj/item/kirbyplants/random,
-/obj/machinery/airalarm/directional/east{
- pixel_x = 24
- },
-/obj/machinery/light{
- dir = 4
+"qcj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
},
-/obj/machinery/camera/directional/east{
- c_tag = "Security Post - Cargo"
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
},
-/obj/effect/turf_decal/tile/red/anticorner/contrasted,
-/turf/open/floor/iron,
-/area/security/checkpoint/supply)
+/turf/open/floor/iron/freezer,
+/area/security/prison)
"qcp" = (
/obj/structure/bed/roller,
/obj/machinery/door/window/eastleft{
@@ -69095,18 +69305,13 @@
},
/turf/open/floor/iron,
/area/engine/storage_shared)
-"qcA" = (
+"qcT" = (
+/obj/effect/turf_decal/stripes/line,
/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/chair{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 1
- },
-/turf/open/floor/prison,
-/area/security/prison)
+/turf/open/floor/iron,
+/area/quartermaster/storage)
"qcV" = (
/obj/machinery/ai_slipper{
uses = 10
@@ -69136,20 +69341,17 @@
},
/turf/open/floor/iron,
/area/maintenance/port)
-"qdf" = (
-/obj/structure/chair/office{
- dir = 4
- },
-/obj/item/radio/intercom{
- pixel_x = 26;
- pixel_y = 26
+"qdr" = (
+/obj/structure/sign/directions/evac{
+ pixel_y = -8
},
-/obj/effect/landmark/start/security_officer,
-/obj/effect/turf_decal/tile/red/anticorner/contrasted{
- dir = 4
+/obj/structure/sign/directions/medical,
+/obj/structure/sign/directions/security{
+ dir = 4;
+ pixel_y = 8
},
-/turf/open/floor/iron,
-/area/security/main)
+/turf/closed/wall/r_wall,
+/area/security/detectives_office)
"qdu" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/iron,
@@ -69180,13 +69382,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/fitness/recreation)
-"qeb" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/storage)
"qeg" = (
/obj/structure/table/wood,
/obj/structure/cable/yellow{
@@ -69204,24 +69399,6 @@
},
/turf/open/floor/carpet/grimy,
/area/bridge/showroom/corporate)
-"qek" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/requests_console{
- department = "Mining";
- name = "Mining Dock RC";
- pixel_y = -32
- },
-/obj/machinery/camera/directional/south{
- c_tag = "Cargo - Mining Dock";
- name = "cargo camera"
- },
-/obj/effect/turf_decal/tile/brown/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/quartermaster/miningoffice)
"qen" = (
/obj/structure/table,
/obj/item/radio/intercom{
@@ -69301,22 +69478,6 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"qfi" = (
-/obj/machinery/door/airlock/security/glass{
- name = "Security Office";
- req_one_access_txt = "1;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 = "1-2"
- },
-/turf/open/floor/iron,
-/area/security/main)
"qfm" = (
/obj/structure/window/reinforced{
dir = 4
@@ -69355,25 +69516,27 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/carpet,
/area/chapel/office)
+"qfU" = (
+/obj/item/kirbyplants/random,
+/obj/machinery/newscaster{
+ pixel_x = -32
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/security/courtroom)
"qfW" = (
/obj/structure/bookcase/random,
/turf/open/floor/iron,
/area/quartermaster/exploration_prep)
-"qgd" = (
-/obj/structure/table/wood,
-/obj/item/radio/intercom{
- pixel_y = -32
- },
-/obj/item/folder/yellow{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/folder/blue,
-/obj/effect/turf_decal/tile/blue/half/contrasted{
- dir = 1
+"qfY" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
},
-/turf/open/floor/iron,
-/area/security/courtroom)
+/turf/open/floor/iron/dark,
+/area/security/main)
"qgH" = (
/obj/effect/turf_decal/bot,
/obj/machinery/airalarm/directional/east,
@@ -69395,6 +69558,21 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/science/server)
+"qhn" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/mob/living/simple_animal/sloth/citrus,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/quartermaster/qm)
"qhp" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 8
@@ -69522,6 +69700,17 @@
dir = 1
},
/area/hallway/secondary/entry)
+"qje" = (
+/obj/structure/closet/radiation,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/machinery/airalarm/directional/east,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/engine/atmospherics_engine)
"qjp" = (
/obj/structure/table/wood/fancy,
/obj/item/flashlight/lantern,
@@ -69555,6 +69744,10 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/fitness/recreation)
+"qkd" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/turf/open/floor/iron,
+/area/quartermaster/miningoffice)
"qke" = (
/obj/machinery/light{
dir = 8
@@ -69567,14 +69760,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/library)
-"qkm" = (
-/obj/structure/closet/secure_closet/genpop,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/red/half/contrasted,
-/turf/open/floor/iron,
-/area/security/prison)
"qkA" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -69590,14 +69775,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"qkP" = (
-/obj/structure/chair/stool,
-/obj/machinery/airalarm/directional/east{
- pixel_x = 24
- },
-/obj/effect/turf_decal/tile/neutral/half/contrasted,
-/turf/open/floor/iron,
-/area/science/research)
"qkT" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -69612,6 +69789,18 @@
"qkY" = (
/turf/open/floor/iron/grid/steel,
/area/medical/patients_rooms)
+"qlr" = (
+/obj/structure/disposalpipe/segment{
+ 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/iron,
+/area/hallway/primary/starboard)
"qlF" = (
/obj/structure/closet/secure_closet/security/med,
/obj/effect/turf_decal/tile/red/anticorner/contrasted{
@@ -69623,6 +69812,12 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/medical)
+"qlK" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/security/main)
"qlS" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -69648,6 +69843,32 @@
/obj/effect/turf_decal/tile/purple,
/turf/open/floor/iron/white,
/area/science/research)
+"qmo" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "innerbrig";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/security/brig)
+"qmr" = (
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_y = 32
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/security/courtroom)
"qmu" = (
/obj/structure/table/wood,
/obj/machinery/microwave{
@@ -69658,13 +69879,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/tcommsat/computer)
-"qmI" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/landmark/start/brig_physician,
-/turf/open/floor/iron/white,
-/area/security/brig)
"qnf" = (
/obj/structure/sink{
dir = 4;
@@ -69680,17 +69894,15 @@
},
/turf/open/floor/iron,
/area/science/research)
-"qnj" = (
-/obj/machinery/status_display/door_timer{
- id = "cell";
- name = "Solitary confinement timer";
- pixel_y = 32
+"qng" = (
+/obj/structure/sign/poster/official/work_for_a_future{
+ pixel_y = -32
},
-/obj/effect/turf_decal/stripes/corner{
+/obj/structure/fluff/hedge,
+/turf/open/floor/iron/dark/smooth_edge{
dir = 4
},
-/turf/open/floor/prison,
-/area/security/prison)
+/area/security/courtroom)
"qnm" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -69710,15 +69922,6 @@
},
/turf/open/floor/iron,
/area/maintenance/port/fore)
-"qnp" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/toilet{
- dir = 4
- },
-/turf/open/floor/iron/freezer,
-/area/security/prison)
"qnx" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/toxins_mixing_input,
/turf/open/floor/engine/vacuum,
@@ -69787,6 +69990,36 @@
/obj/effect/landmark/blobstart,
/turf/open/floor/iron,
/area/maintenance/aft)
+"qoh" = (
+/obj/structure/table/reinforced,
+/obj/machinery/microwave{
+ desc = "It looks really dirty.";
+ name = "maintenance microwave";
+ pixel_y = 5
+ },
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/obj/structure/sign/nanotrasen{
+ pixel_y = 32
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
+"qoi" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -24;
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/window/westleft{
+ name = "Bar Delivery";
+ req_access_txt = "25"
+ },
+/obj/structure/window/reinforced,
+/obj/structure/disposalpipe/junction/flip{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/crew_quarters/bar)
"qot" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -69841,19 +70074,36 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/quartermaster/warehouse)
-"qpA" = (
+"qpD" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/mob/living/simple_animal/kalo{
- desc = "The Perma brig's cute grass snake.";
- icon_dead = "snake_dead";
- icon_living = "snake";
- icon_state = "snake";
- name = "Hugel"
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
},
-/turf/open/floor/prison,
-/area/security/prison)
+/obj/structure/disposalpipe/segment{
+ 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
+ },
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "innerbrig";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/iron/dark,
+/area/security/brig)
"qpI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 5
@@ -69883,14 +70133,10 @@
},
/turf/open/floor/carpet/grimy,
/area/chapel/office)
-"qqp" = (
-/obj/structure/table/reinforced,
-/obj/machinery/recharger,
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/security/main)
+"qqu" = (
+/obj/structure/filingcabinet/chestdrawer,
+/turf/open/floor/iron/dark,
+/area/security/courtroom)
"qqw" = (
/obj/structure/disposalpipe/segment{
dir = 2
@@ -69898,18 +70144,6 @@
/obj/effect/turf_decal/tile/blue,
/turf/open/floor/iron/white,
/area/medical/medbay/aft)
-"qqx" = (
-/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
- },
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/atmos)
"qqF" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -69923,6 +70157,10 @@
},
/turf/open/floor/iron/white,
/area/science/research)
+"qqK" = (
+/obj/effect/turf_decal/tile/blue/half,
+/turf/open/floor/iron/large,
+/area/security/courtroom)
"qqU" = (
/obj/structure/chair/office{
dir = 1
@@ -69984,15 +70222,11 @@
},
/turf/open/floor/iron,
/area/maintenance/port/aft)
-"qrm" = (
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/machinery/light_switch{
- pixel_y = -21
- },
-/turf/open/floor/iron,
-/area/security/brig)
+"qrk" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/turf/open/floor/iron/dark/textured,
+/area/security/prison)
"qro" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -70053,6 +70287,37 @@
},
/turf/open/floor/iron,
/area/engine/storage_shared)
+"qrI" = (
+/obj/structure/closet/bombcloset/security,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/camera/motion/directional/south{
+ c_tag = "Armory - Internal";
+ network = list("ss13","security")
+ },
+/turf/open/floor/iron/dark,
+/area/ai_monitored/security/armory)
+"qrN" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/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 = 5
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark,
+/area/security/execution/transfer)
"qrU" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -70239,6 +70504,17 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/fitness/recreation)
+"quL" = (
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/nuke_storage)
"quQ" = (
/obj/structure/table/reinforced,
/obj/item/folder,
@@ -70251,6 +70527,17 @@
/obj/effect/turf_decal/tile/brown/half/contrasted,
/turf/open/floor/iron,
/area/quartermaster/office)
+"quR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/hallway/primary/central)
"quU" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -70279,12 +70566,19 @@
},
/turf/open/floor/iron,
/area/maintenance/starboard)
-"qvg" = (
-/obj/structure/table/wood,
-/obj/item/radio/intercom,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/courtroom)
+"qvh" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "Prisongate"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/effect/spawner/structure/window/reinforced/prison,
+/turf/open/floor/plating,
+/area/security/prison)
"qvi" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
@@ -70293,6 +70587,35 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/atmos)
+"qvp" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/iron/white,
+/area/science/misc_lab/range)
+"qvx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/cable/yellow,
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 1
+ },
+/area/security/main)
"qwa" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -70334,11 +70657,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/fitness/recreation)
-"qwX" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/storage/tools)
"qxa" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
@@ -70362,6 +70680,16 @@
},
/turf/open/floor/catwalk_floor/iron_smooth,
/area/tcommsat/server)
+"qxz" = (
+/obj/item/kirbyplants{
+ icon_state = "plant-22";
+ name = "legally obbligatory mapper potted plant"
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/entry)
"qxF" = (
/obj/machinery/power/solar_control{
dir = 8;
@@ -70390,6 +70718,10 @@
/obj/item/book/manual/wiki/sopservice,
/turf/open/floor/iron/dark,
/area/crew_quarters/heads/hop)
+"qxQ" = (
+/obj/machinery/gulag_teleporter,
+/turf/open/floor/iron/dark,
+/area/security/main)
"qxS" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -70471,6 +70803,13 @@
/obj/effect/turf_decal/tile/brown,
/turf/open/floor/iron,
/area/vacant_room/commissary)
+"qAc" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/storage/tools)
"qAi" = (
/obj/structure/table/reinforced,
/obj/item/stack/package_wrap,
@@ -70487,6 +70826,28 @@
},
/turf/open/floor/iron,
/area/engine/gravity_generator)
+"qAy" = (
+/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/maintenance/starboard)
+"qAO" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/prison,
+/area/security/prison)
"qAQ" = (
/obj/structure/table/reinforced,
/obj/item/paper_bin,
@@ -70497,23 +70858,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat_interior)
-"qAS" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/caution/stand_clear,
-/obj/machinery/advanced_airlock_controller{
- pixel_y = 26
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
"qAU" = (
/obj/structure/mirror{
pixel_x = -28
@@ -70533,33 +70877,21 @@
},
/turf/open/floor/circuit/green,
/area/ai_monitored/turret_protected/ai)
-"qBo" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/turf/open/floor/iron,
-/area/security/brig)
-"qBw" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/department/medical/central)
-"qBE" = (
-/obj/structure/cable/yellow{
- icon_state = "0-4"
+"qBi" = (
+/obj/machinery/disposal/bin,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light,
+/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
},
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+/obj/machinery/requests_console{
+ department = "Mining";
+ name = "Mining Dock RC";
+ pixel_y = -32
},
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/brig)
+/turf/open/floor/iron,
+/area/quartermaster/miningoffice)
"qCE" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/bot,
@@ -70567,24 +70899,51 @@
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
/turf/open/floor/iron,
/area/science/research)
+"qCL" = (
+/obj/effect/turf_decal/delivery,
+/obj/item/kirbyplants{
+ icon_state = "plant-22";
+ name = "legally obbligatory mapper potted plant"
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/exit/departure_lounge)
"qDa" = (
/obj/effect/landmark/start/assistant,
/obj/structure/chair/stool/directional/west,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/locker)
-"qDh" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+"qDc" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/obj/machinery/door/airlock/security{
+ name = "Armory";
+ req_access_txt = "3";
+ security_level = 6
},
/obj/structure/cable/yellow{
- icon_state = "2-4"
+ icon_state = "4-8"
},
-/obj/effect/turf_decal/tile/brown/half/contrasted{
+/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 = "2-8"
+ },
+/turf/open/floor/iron/dark,
+/area/ai_monitored/security/armory)
+"qDf" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
/turf/open/floor/iron,
-/area/quartermaster/miningoffice)
+/area/storage/tools)
"qDC" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/spawner/lootdrop/grille_or_trash,
@@ -70610,6 +70969,14 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"qDN" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron/dark,
+/area/security/execution/transfer)
"qDX" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/dark/textured,
@@ -70622,6 +70989,14 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/starboard)
+"qEl" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/quartermaster/office)
"qEq" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -70642,20 +71017,6 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron/grid/steel,
/area/medical/patients_rooms)
-"qEL" = (
-/obj/machinery/camera/directional/north{
- c_tag = "Security - Gear Room"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/item/kirbyplants/random,
-/obj/machinery/power/apc/auto_name/directional/north,
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/main)
"qEM" = (
/obj/item/stack/sheet/plasteel/twenty,
/obj/item/stack/sheet/rglass{
@@ -70716,19 +71077,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/chapel/office)
-"qFC" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/brig)
"qFO" = (
/obj/machinery/door/airlock{
name = "Auxiliary Storage Closet"
@@ -70740,11 +71088,25 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/maintenance/port/fore)
-"qGa" = (
-/obj/machinery/computer/prisoner/management{
+"qFU" = (
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
dir = 8
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/table,
+/obj/item/paper,
+/turf/open/floor/iron/dark,
+/area/security/prison)
+"qFX" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/hallway/primary/fore)
+"qFY" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/poddoor/shutters{
+ id = "HOSarmory";
+ name = "Armory Shutter"
+ },
/turf/open/floor/iron/dark,
/area/crew_quarters/heads/hos)
"qGo" = (
@@ -70753,25 +71115,27 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"qGC" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/sign/warning/electricshock{
- pixel_x = -32
+"qHd" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron,
+/area/hallway/primary/central)
+"qHj" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
},
-/obj/effect/turf_decal/stripes/line{
+/obj/structure/disposalpipe/junction/flip{
dir = 8
},
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 1
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
},
/turf/open/floor/iron,
-/area/security/brig)
-"qHd" = (
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/hallway/primary/central)
+/area/crew_quarters/cryopods)
"qHm" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small{
@@ -70794,11 +71158,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"qHu" = (
-/obj/item/kirbyplants/random,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/main)
"qHz" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/maintenance_hatch{
@@ -70822,6 +71181,15 @@
},
/turf/open/floor/iron,
/area/maintenance/starboard/aft)
+"qHA" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/glass/bowl,
+/obj/item/kitchen/fork,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"qHP" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
@@ -70885,6 +71253,12 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/starboard)
+"qIN" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/security/courtroom)
"qIZ" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -70902,16 +71276,32 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/atmos)
-"qJc" = (
+"qJI" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment{
- dir = 9
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
-/area/hallway/primary/port)
+/area/hallway/secondary/service)
+"qJK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/prison/dark,
+/area/security/prison)
"qKf" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -70925,12 +71315,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"qKi" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/bombcloset/security,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/brig)
"qKo" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/northleft{
@@ -70957,18 +71341,6 @@
},
/turf/open/floor/iron/dark,
/area/medical/virology)
-"qKp" = (
-/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/security/brig)
"qKq" = (
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
@@ -70994,13 +71366,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/bar/atrium)
-"qKW" = (
-/obj/structure/chair/stool,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/prison,
-/area/security/prison)
"qKX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -71031,21 +71396,17 @@
},
/turf/open/floor/iron,
/area/maintenance/starboard/fore)
-"qLz" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
+"qLw" = (
/obj/structure/cable/yellow{
- icon_state = "2-4"
+ icon_state = "2-8"
},
-/obj/structure/cable/yellow{
- icon_state = "1-4"
+/obj/structure/disposalpipe/segment{
+ dir = 10
},
-/obj/machinery/computer/holodeck/prison{
- dir = 4
+/turf/open/floor/plating{
+ broken = 1
},
-/turf/open/floor/iron,
-/area/security/warden)
+/area/maintenance/starboard)
"qLY" = (
/obj/structure/table/glass,
/obj/item/folder/white,
@@ -71093,24 +71454,6 @@
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/turf/open/floor/iron,
/area/science/research)
-"qMV" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/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/red/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron/dark,
-/area/security/execution/transfer)
"qNf" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -71187,6 +71530,14 @@
},
/turf/open/floor/iron,
/area/maintenance/port/fore)
+"qOj" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/prison/dark,
+/area/security/prison)
"qOm" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -71237,6 +71588,37 @@
},
/turf/open/floor/iron,
/area/science/xenobiology)
+"qOK" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/wood,
+/area/bridge/showroom/corporate)
+"qON" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/bot,
+/obj/machinery/door/window/southright{
+ dir = 1;
+ name = "Armour storage";
+ req_one_access_txt = "1;4"
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/obj/effect/loot_jobscale/armoury/bulletproof_vest,
+/obj/effect/loot_jobscale/armoury/bulletproof_helmet,
+/turf/open/floor/iron/dark,
+/area/ai_monitored/security/armory)
"qOY" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -71260,6 +71642,15 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/hallway/primary/central)
+"qPf" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "hopblast";
+ name = "HoP Blast door"
+ },
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/crew_quarters/heads/hop)
"qPz" = (
/obj/effect/landmark/event_spawn,
/obj/effect/turf_decal/tile/blue/half/contrasted{
@@ -71270,37 +71661,66 @@
"qPI" = (
/turf/open/floor/carpet/grimy,
/area/vacant_room/office)
-"qPO" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+"qPK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 8
},
-/turf/open/floor/plating,
-/area/security/brig)
-"qPQ" = (
-/obj/machinery/sparker{
- dir = 1;
- id = "justicespark";
- pixel_x = -22
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/holopad,
+/turf/open/floor/prison/dark,
+/area/security/prison)
+"qPZ" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/effect/turf_decal/tile/red/half/contrasted{
dir = 4
},
-/obj/effect/turf_decal/tile/red{
- dir = 1
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_y = 22
+ },
+/obj/item/folder/red{
+ layer = 2.9;
+ pixel_x = 8
},
/turf/open/floor/iron/dark,
-/area/security/execution/transfer)
-"qPR" = (
+/area/ai_monitored/security/armory)
+"qQh" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
/obj/structure/cable/yellow{
icon_state = "1-2"
},
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/structure/disposalpipe/segment{
- dir = 5
+ dir = 9
},
-/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)
+/turf/open/floor/iron,
+/area/hallway/primary/port)
+"qQm" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/effect/turf_decal/bot,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark/side,
+/area/security/brig)
"qQu" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -71362,6 +71782,13 @@
},
/turf/open/floor/iron,
/area/medical/morgue)
+"qQX" = (
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/security/warden)
"qRA" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -71417,20 +71844,6 @@
},
/turf/open/floor/iron,
/area/maintenance/department/medical/central)
-"qRW" = (
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "justicechamber";
- name = "Justice Chamber Blast door"
- },
-/obj/structure/sign/warning/electricshock{
- pixel_x = 32
- },
-/turf/open/floor/plating,
-/area/security/execution/transfer)
"qRX" = (
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -71522,24 +71935,53 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron/white,
/area/medical/virology)
-"qTp" = (
-/obj/effect/turf_decal/tile/blue/half/contrasted{
+"qSH" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/holopad,
+/turf/open/floor/iron/dark,
+/area/security/main)
+"qSX" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/engineering{
+ name = "Engineering Foyer";
+ req_one_access_txt = "32"
+ },
+/obj/effect/turf_decal/stripes/line{
dir = 8
},
-/obj/machinery/light,
-/obj/machinery/status_display/evac{
- pixel_y = -32
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
},
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 1
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
},
-/obj/machinery/camera/autoname{
- dir = 5;
- network = list("ss13","medbay")
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
},
-/turf/open/floor/iron/white,
-/area/medical/surgery)
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
+"qTf" = (
+/obj/machinery/computer/security/mining{
+ dir = 1
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/quartermaster/miningoffice)
"qTq" = (
/obj/effect/turf_decal/delivery,
/obj/structure/disposalpipe/trunk,
@@ -71573,6 +72015,28 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/catwalk_floor/flat_white,
/area/science/mixing)
+"qUh" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/science/research)
+"qUt" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/closeup,
+/turf/open/floor/iron,
+/area/ai_monitored/security/armory)
"qUB" = (
/obj/structure/window/reinforced{
dir = 4
@@ -71583,13 +72047,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/aisat)
-"qUM" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/security/main)
"qUN" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -71605,6 +72062,27 @@
/obj/machinery/atmospherics/pipe/layer_manifold,
/turf/open/floor/catwalk_floor/iron_smooth,
/area/tcommsat/server)
+"qUQ" = (
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 4
+ },
+/obj/item/bedsheet/brown,
+/obj/structure/bed{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/obj/effect/landmark/prisonspawn,
+/turf/open/floor/iron/dark,
+/area/security/prison)
+"qUV" = (
+/obj/machinery/computer/bounty{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron,
+/area/quartermaster/storage)
"qUW" = (
/obj/structure/table/reinforced,
/obj/machinery/status_display/evac{
@@ -71642,6 +72120,20 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/storage/tech)
+"qVl" = (
+/obj/machinery/computer/security{
+ name = "Medbay camera console";
+ network = list("medbay")
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/firealarm/directional/north,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/dark,
+/area/security/warden)
"qVn" = (
/obj/structure/table/wood,
/obj/item/flashlight/lamp,
@@ -71703,13 +72195,6 @@
/obj/effect/turf_decal/tile/red/half/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint/supply)
-"qVY" = (
-/obj/machinery/photocopier,
-/obj/effect/turf_decal/tile/red/anticorner/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/main)
"qWg" = (
/obj/structure/table/reinforced,
/obj/machinery/light/small{
@@ -71730,15 +72215,6 @@
/obj/machinery/firealarm/directional/west,
/turf/open/floor/iron,
/area/engine/storage_shared)
-"qWw" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/iron,
-/area/hydroponics)
"qWx" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -71752,30 +72228,14 @@
},
/turf/open/floor/iron,
/area/medical/medbay/aft)
-"qXg" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/hallway/primary/central)
-"qXn" = (
-/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
+"qWH" = (
+/obj/effect/turf_decal/stripes/closeup,
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Maintenance Hatch";
+ req_access_txt = "12"
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
-/area/security/main)
+/area/maintenance/starboard)
"qXs" = (
/obj/structure/closet/emcloset/anchored,
/obj/machinery/atmospherics/pipe/layer_manifold,
@@ -71786,6 +72246,12 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/transit_tube)
+"qXu" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
"qXv" = (
/obj/machinery/vending/cola/black,
/obj/effect/turf_decal/siding/wood{
@@ -71793,16 +72259,20 @@
},
/turf/open/floor/wood,
/area/quartermaster/exploration_prep)
+"qXy" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark,
+/area/security/execution/transfer)
"qYo" = (
/obj/structure/lattice,
/turf/open/space/basic,
/area/space/nearstation)
-"qYs" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/hallway/primary/central)
"qYx" = (
/obj/structure/table/reinforced,
/obj/item/stack/rods/fifty,
@@ -71842,11 +72312,24 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/central)
-"qZk" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/crayons,
-/turf/open/floor/prison,
-/area/security/prison)
+"qZl" = (
+/obj/structure/disposalpipe/segment{
+ 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/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/security/brig)
"qZq" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
@@ -71874,6 +72357,20 @@
},
/turf/open/floor/plating,
/area/maintenance/port/aft)
+"qZO" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/status_display/ai{
+ pixel_y = 32
+ },
+/obj/item/clothing/shoes/sneakers/white,
+/obj/structure/closet/secure_closet/hos,
+/obj/item/clothing/suit/armor/hos/trenchcoat,
+/obj/item/clothing/head/hats/hos/beret,
+/turf/open/floor/iron,
+/area/crew_quarters/heads/hos)
"qZP" = (
/obj/machinery/light/small{
dir = 4
@@ -71884,6 +72381,21 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/transit_tube)
+"rae" = (
+/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
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"rah" = (
/obj/structure/table/wood,
/obj/item/food/grown/flower/geranium{
@@ -71926,49 +72438,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"raN" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/prison,
-/area/security/prison)
-"raT" = (
-/obj/machinery/door/window/brigdoor/security/cell/eastright{
- id = "cell";
- name = "Solitary Confinement"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/iron,
-/area/security/prison)
-"raY" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/door/airlock/command{
- name = "Head of Security's Quarters";
- req_access_txt = "58"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/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/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/crew_quarters/heads/hos)
"rbg" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -71985,6 +72454,21 @@
heat_capacity = 1e+006
},
/area/maintenance/port/aft)
+"rbB" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/machinery/camera/autoname{
+ dir = 10;
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/iron,
+/area/medical/genetics/cloning)
+"rbE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/turf/open/floor/iron/smooth,
+/area/security/main)
"rbH" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -71998,15 +72482,6 @@
/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/kitchen)
-"rbQ" = (
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "aiuploadwindow";
- name = "AI Upload Lockdown Door"
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/ai_upload)
"rbT" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -72052,32 +72527,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/bar/atrium)
-"rcu" = (
-/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,
-/obj/item/storage/box/rubbershot,
-/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/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/ai_monitored/security/armory)
"rcC" = (
/obj/structure/rack,
/obj/item/storage/secure/briefcase,
@@ -72094,6 +72543,11 @@
},
/turf/open/floor/carpet/grimy,
/area/chapel/office)
+"rcY" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/science/research)
"rdd" = (
/obj/structure/table/wood,
/obj/machinery/light{
@@ -72111,6 +72565,14 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plating,
/area/maintenance/port)
+"rdF" = (
+/obj/effect/turf_decal/tile/red/anticorner/contrasted,
+/obj/item/bedsheet/brown,
+/obj/structure/bed{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/security/prison)
"rdG" = (
/obj/machinery/camera/directional/north{
c_tag = "Central Hallway - Fore Port";
@@ -72202,6 +72664,34 @@
},
/turf/open/floor/iron/white,
/area/science/research)
+"rej" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/door/airlock/security{
+ aiControlDisabled = 1;
+ id_tag = "prisonereducation";
+ name = "Solitary Confinement";
+ req_one_access_txt = "1;4"
+ },
+/obj/effect/turf_decal/tile/techfloorgrid{
+ dir = 5
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/security/prison/shielded)
+"ren" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
+/turf/open/floor/iron,
+/area/science/research)
"rey" = (
/obj/machinery/light{
dir = 4
@@ -72274,20 +72764,6 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/glass/reinforced,
/area/storage/primary)
-"rfX" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/airalarm/directional/east{
- pixel_x = 24
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/iron,
-/area/science/research)
"rgl" = (
/obj/structure/closet/secure_closet/security,
/obj/machinery/airalarm/directional/south{
@@ -72308,6 +72784,26 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/science/research)
+"rgt" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/wood,
+/area/security/detectives_office)
+"rgv" = (
+/obj/effect/turf_decal/siding/wideplating_new/dark,
+/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/prison/dark,
+/area/security/prison)
"rgK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 10
@@ -72323,32 +72819,6 @@
},
/turf/open/floor/iron,
/area/maintenance/department/science)
-"rhc" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/science/research)
-"rhj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/turf/open/floor/prison,
-/area/security/prison)
-"rhl" = (
-/obj/effect/spawner/structure/window/reinforced/tinted,
-/obj/structure/sign/poster/official/do_not_question{
- pixel_y = -32
- },
-/turf/open/floor/plating,
-/area/security/prison)
"rhy" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -72364,6 +72834,12 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/science/research)
+"rhC" = (
+/obj/structure/sign/nanotrasen{
+ pixel_y = 32
+ },
+/turf/open/floor/iron,
+/area/security/courtroom)
"rhD" = (
/obj/machinery/airalarm/directional/south{
pixel_y = -22
@@ -72407,6 +72883,19 @@
heat_capacity = 1e+006
},
/area/maintenance/starboard/aft)
+"rhW" = (
+/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/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"rhZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
@@ -72414,6 +72903,17 @@
},
/turf/open/floor/glass/reinforced,
/area/ai_monitored/storage/eva)
+"rid" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/closet/secure_closet/genpop,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"rio" = (
/obj/structure/closet/secure_closet/personal,
/obj/effect/turf_decal/box,
@@ -72441,6 +72941,18 @@
},
/turf/open/floor/iron,
/area/maintenance/department/science)
+"riw" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "hosspace";
+ name = "space shutters"
+ },
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/heads/hos)
"riy" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -72463,6 +72975,13 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/gateway)
+"riP" = (
+/obj/structure/cable/yellow,
+/obj/machinery/light/small,
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron/dark,
+/area/aisat)
"rjg" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/light{
@@ -72474,6 +72993,18 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
/turf/open/floor/wood,
/area/quartermaster/exploration_prep)
+"rjj" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wideplating_new{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"rjo" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -72492,13 +73023,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai)
-"rju" = (
-/obj/machinery/airalarm/directional/north,
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/prison)
"rjx" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -72533,14 +73057,26 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/aisat)
-"rjH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/purple/half/contrasted{
+"rjB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood{
dir = 8
},
-/turf/open/floor/iron,
-/area/quartermaster/storage)
+/turf/open/floor/wood,
+/area/security/detectives_office)
+"rjG" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/machinery/door/window/westleft{
+ base_state = "right";
+ dir = 4;
+ icon_state = "right";
+ name = "gas ports"
+ },
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
+/turf/open/floor/iron/dark,
+/area/security/execution/transfer)
"rjL" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/table/reinforced,
@@ -72550,17 +73086,6 @@
/obj/effect/turf_decal/tile/yellow/half/contrasted,
/turf/open/floor/iron,
/area/construction/mining/aux_base)
-"rjQ" = (
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/structure/cable/white,
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/brig)
"rjR" = (
/obj/structure/bed/dogbed/vector,
/mob/living/simple_animal/pet/hamster/vector,
@@ -72592,6 +73117,18 @@
},
/turf/open/floor/iron,
/area/ai_monitored/storage/eva)
+"rks" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"rkA" = (
/obj/machinery/vending/tool,
/obj/effect/turf_decal/bot,
@@ -72636,6 +73173,16 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/service)
+"rlC" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/closeup,
+/turf/open/floor/iron,
+/area/ai_monitored/security/armory)
"rlL" = (
/obj/structure/chair{
dir = 4
@@ -72645,6 +73192,41 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/engineering)
+"rlM" = (
+/obj/effect/turf_decal/caution/stand_clear/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/prison,
+/area/security/prison)
+"rms" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/red{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/folder/blue{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/lighter,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/item/restraints/handcuffs,
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/security/main)
"rmK" = (
/obj/structure/table,
/obj/item/food/grown/tomato/blood{
@@ -72669,6 +73251,27 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
+"rmO" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 8;
+ name = "Hydroponics Junction";
+ sortType = 21
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/maintenance/port/fore)
"rnd" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -72698,23 +73301,28 @@
heat_capacity = 1e+006
},
/area/maintenance/port/fore)
-"ron" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
+"rob" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/sorting/mail{
- dir = 1;
- name = "Security Junction";
- sortType = 7
+/obj/effect/turf_decal/tile/red{
+ dir = 4
},
/turf/open/floor/iron,
/area/hallway/primary/starboard)
+"roj" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/wood/big,
+/area/lawoffice)
"rou" = (
/obj/effect/turf_decal/trimline/blue/filled/line,
/obj/structure/disposalpipe/segment{
@@ -72731,18 +73339,39 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/central)
-"roP" = (
-/obj/machinery/light/small{
- dir = 1
+"roD" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/rnd/production/techfab/department/service,
-/obj/effect/turf_decal/stripes/box,
-/obj/effect/turf_decal/tile/neutral{
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/closeup{
dir = 1
},
-/turf/open/floor/iron,
-/area/hallway/secondary/service)
+/obj/machinery/door/airlock/security/glass{
+ name = "Security Office";
+ req_one_access_txt = "1;4"
+ },
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/security/brig)
+"roT" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/dark,
+/area/crew_quarters/heads/hos)
"roU" = (
/obj/effect/turf_decal/tile/blue,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -72832,6 +73461,21 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/customs)
+"rpN" = (
+/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 = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"rpS" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 1
@@ -72856,6 +73500,12 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"rpY" = (
+/obj/structure/cable/yellow,
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron/dark,
+/area/crew_quarters/heads/chief)
"rqc" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -72883,6 +73533,16 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
+"rqy" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp,
+/obj/item/taperecorder{
+ layer = 2.9;
+ pixel_x = -15;
+ pixel_y = 4
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"rqA" = (
/obj/machinery/light_switch{
pixel_y = 26
@@ -72890,32 +73550,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/library)
-"rqI" = (
-/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/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock/research{
- req_one_access_txt = "47";
- name = "Research Testing Range"
- },
-/turf/open/floor/iron,
-/area/science/misc_lab/range)
"rqS" = (
/obj/structure/closet/secure_closet/CMO,
/obj/item/clothing/under/rank/medical/doctor/nurse,
@@ -72939,11 +73573,19 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/hallway/secondary/command)
-"rrz" = (
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/brig)
+"rrE" = (
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ 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/iron/dark/smooth_half{
+ dir = 1
+ },
+/area/crew_quarters/heads/hos)
"rrG" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -72970,14 +73612,6 @@
},
/turf/open/floor/iron,
/area/science/xenobiology)
-"rsa" = (
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/machinery/flasher/portable,
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/iron/dark,
-/area/ai_monitored/security/armory)
"rsd" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -73009,6 +73643,15 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai)
+"rsA" = (
+/obj/effect/landmark/start/detective,
+/obj/effect/landmark/blobstart,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/effect/turf_decal/loading_area{
+ pixel_y = -8
+ },
+/turf/open/floor/iron/textured,
+/area/security/brig)
"rsB" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
@@ -73066,33 +73709,47 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/aft)
-"rtB" = (
+"rte" = (
+/obj/structure/bed/dogbed/ian,
+/obj/machinery/airalarm/directional/east,
+/mob/living/simple_animal/pet/dog/corgi/Ian,
+/turf/open/floor/wood,
+/area/crew_quarters/heads/hop)
+"rtH" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 1
+ },
/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
+/obj/effect/turf_decal/stripes/closeup,
+/obj/machinery/door/airlock/security{
+ id_tag = "laborexit";
+ name = "Labor Shuttle";
+ req_access_txt = "63"
},
-/turf/open/floor/iron,
-/area/security/brig)
-"run" = (
+/turf/open/floor/iron/dark,
+/area/security/main)
+"ruv" = (
/obj/structure/cable/yellow{
- icon_state = "4-8"
+ icon_state = "2-4"
},
-/turf/open/floor/iron,
-/area/security/brig)
-"ruo" = (
/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/qm)
+/turf/open/floor/iron/dark,
+/area/security/main)
"ruB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -73154,14 +73811,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/science/xenobiology)
-"rvd" = (
-/obj/machinery/photocopier,
-/obj/machinery/status_display/ai{
- pixel_y = 32
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/detectives_office)
"rvv" = (
/obj/effect/turf_decal/pool/corner{
dir = 8
@@ -73214,16 +73863,6 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/patients_rooms)
-"rwz" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/tile/purple/half/contrasted,
-/turf/open/floor/iron/white,
-/area/science/research)
"rwP" = (
/obj/structure/table,
/obj/item/storage/box{
@@ -73270,6 +73909,25 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/iron,
/area/quartermaster/exploration_prep)
+"rxh" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/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/quartermaster/storage)
"rxp" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -73295,23 +73953,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/maintenance/aft)
-"rxH" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/hallway/primary/fore)
-"rxI" = (
-/obj/machinery/door/airlock{
- name = "Jury";
- req_access_txt = "42"
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/courtroom)
"ryl" = (
/obj/machinery/door/airlock{
id_tag = "Dorm5";
@@ -73324,6 +73965,40 @@
broken = 1
},
/area/crew_quarters/dorms)
+"ryo" = (
+/obj/machinery/door/window/brigdoor/northright{
+ name = "Warden's Desk";
+ req_access_txt = "3"
+ },
+/obj/machinery/door/window/southright{
+ name = "Warden's Desk"
+ },
+/obj/item/pen,
+/obj/item/poster/random_official{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/poster/random_official,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/firedoor,
+/obj/structure/table/reinforced,
+/turf/open/floor/iron/dark,
+/area/security/warden)
+"ryu" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmos)
"ryM" = (
/obj/effect/turf_decal/tile/blue,
/obj/effect/turf_decal/tile/green/opposingcorners{
@@ -73352,6 +74027,19 @@
/obj/machinery/light,
/turf/open/floor/iron,
/area/science/storage)
+"rzm" = (
+/obj/machinery/light_switch{
+ pixel_x = 26;
+ pixel_y = 26
+ },
+/obj/effect/turf_decal/siding/wood{
+ layer = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/wood/big,
+/area/lawoffice)
"rzu" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -73385,32 +74073,19 @@
},
/turf/open/floor/circuit/green,
/area/ai_monitored/turret_protected/ai)
-"rzG" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/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/turf_decal/tile/brown/half/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/storage)
"rzP" = (
/turf/open/floor/plating,
/area/science/shuttledock)
-"rzZ" = (
+"rzR" = (
+/obj/structure/table,
+/obj/item/storage/box/bodybags,
+/obj/item/clothing/gloves/color/latex,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/machinery/light/small{
+ dir = 4
+ },
/turf/open/floor/iron/dark,
-/area/security/execution/transfer)
+/area/security/detectives_office)
"rAf" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -73439,6 +74114,11 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/library)
+"rAA" = (
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/checkpoint/escape)
"rAH" = (
/obj/machinery/light{
dir = 4
@@ -73473,27 +74153,6 @@
},
/turf/open/floor/iron,
/area/construction/mining/aux_base)
-"rAO" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/sign/warning/securearea{
- pixel_x = -32
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/security/brig)
"rBd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
@@ -73504,17 +74163,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"rBi" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
-/turf/open/floor/iron,
-/area/security/brig)
"rBm" = (
/obj/effect/turf_decal/tile/blue{
dir = 8
@@ -73559,28 +74207,6 @@
},
/turf/open/floor/iron,
/area/maintenance/disposal)
-"rBP" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/sign/nanotrasen{
- pixel_x = 32;
- pixel_y = 32
- },
-/obj/structure/sign/directions/engineering{
- desc = "A sign that shows there are doors here. There are doors everywhere!";
- icon_state = "doors";
- name = "WARNING: BLAST DOORS";
- pixel_y = 32
- },
-/obj/item/kirbyplants{
- icon_state = "plant-22"
- },
-/obj/effect/turf_decal/tile/blue/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron/dark,
-/area/bridge)
"rBZ" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/structure/cable/yellow{
@@ -73595,6 +74221,22 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
/turf/open/floor/wood,
/area/quartermaster/exploration_prep)
+"rCg" = (
+/obj/machinery/cell_charger,
+/obj/structure/table/reinforced,
+/obj/machinery/status_display/ai{
+ pixel_y = 32
+ },
+/obj/item/stock_parts/cell/high,
+/obj/item/rcl/pre_loaded,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron/dark,
+/area/crew_quarters/heads/chief)
+"rCh" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/hallway/primary/fore)
"rCn" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -73668,19 +74310,6 @@
"rDi" = (
/turf/open/floor/plating,
/area/maintenance/aft)
-"rDr" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock{
- name = "Law Office";
- req_access_txt = "38"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/wood,
-/area/lawoffice)
"rDt" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -73742,6 +74371,11 @@
},
/turf/open/floor/iron,
/area/engine/gravity_generator)
+"rEq" = (
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/effect/landmark/start/brig_physician,
+/turf/open/floor/iron/white,
+/area/security/brig/medbay)
"rED" = (
/obj/structure/table/wood/fancy,
/obj/item/storage/book/bible,
@@ -73760,6 +74394,16 @@
},
/turf/open/floor/iron,
/area/medical/genetics/cloning)
+"rES" = (
+/obj/machinery/firealarm/directional/north,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron/dark/side{
+ dir = 9
+ },
+/area/security/brig)
"rFc" = (
/obj/machinery/airalarm/directional/south{
pixel_y = -22
@@ -73772,16 +74416,13 @@
},
/turf/open/floor/iron/white/corner,
/area/hallway/secondary/entry)
-"rFo" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/turf_decal/delivery,
-/obj/item/kirbyplants{
- icon_state = "plant-22"
+"rFj" = (
+/obj/structure/lattice,
+/obj/machinery/camera/directional/north{
+ c_tag = "Armory - External"
},
-/turf/open/floor/iron,
-/area/hallway/secondary/entry)
+/turf/open/space,
+/area/space/nearstation)
"rFu" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/brigdoor/westright{
@@ -73812,51 +74453,23 @@
},
/turf/open/floor/carpet/grimy,
/area/chapel/main)
-"rGj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/iron/grid/steel,
-/area/medical/patients_rooms)
-"rGG" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/obj/machinery/light{
+"rFB" = (
+/obj/effect/turf_decal/stripes/closeup{
dir = 1
},
-/obj/machinery/camera/directional/north{
- c_tag = "Security - Office Fore"
- },
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/main)
-"rGM" = (
-/obj/structure/rack,
-/obj/item/storage/secure/safe{
- pixel_x = 32
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/obj/machinery/door/poddoor/shutters/window{
+ id = "armoryaccess_side";
+ name = "Armory Shutter"
},
-/obj/effect/turf_decal/bot,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/effect/loot_jobscale/armoury/bulletproof_vest,
-/obj/effect/loot_jobscale/armoury/bulletproof_helmet,
+/obj/machinery/door/firedoor,
/turf/open/floor/iron/dark,
/area/ai_monitored/security/armory)
-"rGR" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/security/brig)
+"rGj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/iron/grid/steel,
+/area/medical/patients_rooms)
"rGV" = (
/obj/structure/chair/office{
dir = 1
@@ -73889,15 +74502,17 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/starboard)
-"rHv" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+"rHh" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/iron/white,
-/area/security/brig)
+/turf/open/floor/iron,
+/area/quartermaster/office)
"rHE" = (
/obj/structure/displaycase/captain,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -73906,6 +74521,15 @@
/obj/machinery/firealarm/directional/east,
/turf/open/floor/wood,
/area/crew_quarters/heads/captain)
+"rHL" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/crew_quarters/heads/hor)
"rId" = (
/obj/effect/turf_decal/tile/blue/opposingcorners{
dir = 1
@@ -73918,13 +74542,6 @@
},
/turf/open/floor/iron/white,
/area/crew_quarters/heads/cmo)
-"rIk" = (
-/obj/item/kirbyplants/random,
-/obj/machinery/camera/directional/north{
- network = list("minisat")
- },
-/turf/open/floor/prison,
-/area/security/prison)
"rIo" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -74004,18 +74621,6 @@
dir = 1
},
/area/hallway/secondary/entry)
-"rIG" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/engine/break_room)
"rIY" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -74089,16 +74694,6 @@
},
/turf/open/floor/iron,
/area/engine/atmospherics_engine)
-"rKh" = (
-/obj/structure/table/reinforced,
-/obj/machinery/airalarm/directional/east{
- pixel_x = 24
- },
-/obj/item/book/manual/wiki/security_space_law,
-/obj/item/radio,
-/obj/effect/turf_decal/tile/red/half/contrasted,
-/turf/open/floor/iron,
-/area/security/checkpoint/engineering)
"rKk" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -74127,33 +74722,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"rKD" = (
-/obj/machinery/button/door{
- id = "brigfront";
- name = "Brig Access Control";
- pixel_x = -26;
- pixel_y = -36;
- req_access_txt = "63"
- },
-/obj/machinery/button/door{
- id = "Prisongate";
- name = "Prison Lockdown";
- pixel_x = -38;
- pixel_y = -36;
- req_access_txt = "63"
- },
-/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 = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/turf/open/floor/iron,
-/area/security/warden)
"rKG" = (
/obj/structure/window/reinforced{
dir = 4
@@ -74197,6 +74765,17 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/science/research)
+"rLk" = (
+/obj/structure/closet/secure_closet/genpop,
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot_white,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/security/prison)
"rLo" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -74226,6 +74805,11 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
+"rLG" = (
+/obj/structure/chair/office,
+/obj/effect/landmark/start/security_officer,
+/turf/open/floor/iron/dark/smooth_large,
+/area/security/main)
"rLP" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -74242,6 +74826,32 @@
},
/turf/open/floor/plating,
/area/quartermaster/warehouse)
+"rLQ" = (
+/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/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/research{
+ req_one_access_txt = "47";
+ name = "Research Testing Range"
+ },
+/turf/open/floor/iron,
+/area/science/misc_lab/range)
"rMb" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -74281,11 +74891,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/bar/atrium)
-"rMJ" = (
-/obj/item/kirbyplants/random,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/courtroom)
"rMV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
@@ -74330,6 +74935,17 @@
/obj/structure/window/reinforced,
/turf/open/floor/iron/techmaint,
/area/quartermaster/exploration_prep)
+"rNl" = (
+/obj/machinery/door/airlock/public/glass{
+ name = "Cell 3"
+ },
+/obj/effect/turf_decal/delivery/white,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/security/prison)
"rNn" = (
/obj/machinery/door/airlock/science{
name = "exploration preperation room";
@@ -74381,6 +74997,26 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/hallway/primary/central)
+"rOa" = (
+/obj/structure/table/wood,
+/obj/item/book/manual/wiki/security_space_law,
+/obj/item/book/manual/wiki/security_space_law,
+/obj/item/taperecorder{
+ pixel_x = 3
+ },
+/obj/item/clothing/glasses/sunglasses/advanced,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
+ },
+/obj/machinery/button/door{
+ id = "lawyerprivacy";
+ name = "Lawyer's Privacy Control";
+ pixel_y = 24
+ },
+/obj/item/computer_hardware/hard_drive/role/lawyer,
+/obj/effect/turf_decal/siding/wood/corner,
+/turf/open/floor/wood/big,
+/area/lawoffice)
"rOf" = (
/obj/item/kirbyplants/random,
/obj/effect/turf_decal/delivery,
@@ -74469,12 +75105,29 @@
/obj/effect/turf_decal/tile/brown/half/contrasted,
/turf/open/floor/iron,
/area/quartermaster/storage)
+"rPy" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/security/brig)
"rPE" = (
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plating,
/area/maintenance/department/medical/central)
+"rPK" = (
+/obj/structure/table,
+/obj/item/flashlight/lamp,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/security/execution/transfer)
"rQs" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -74489,6 +75142,18 @@
dir = 4
},
/area/crew_quarters/kitchen)
+"rQH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/starboard)
"rQJ" = (
/obj/machinery/rnd/production/protolathe/department/engineering,
/obj/effect/turf_decal/bot,
@@ -74658,13 +75323,12 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/exit/departure_lounge)
-"rUi" = (
-/obj/item/kirbyplants/random,
-/obj/structure/cable/white,
-/obj/machinery/power/apc/auto_name/directional/south,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+"rTO" = (
+/obj/effect/turf_decal/loading_area{
+ dir = 1
+ },
/turf/open/floor/iron/dark,
-/area/crew_quarters/heads/hos)
+/area/security/main)
"rUk" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance/three,
@@ -74673,24 +75337,6 @@
},
/turf/open/floor/iron,
/area/maintenance/port)
-"rUo" = (
-/obj/structure/disposalpipe/segment{
- 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/effect/turf_decal/tile/purple{
- dir = 8
- },
-/turf/open/floor/iron/white,
-/area/science/research)
"rUu" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
@@ -74701,20 +75347,22 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/chapel/office)
-"rUM" = (
-/obj/machinery/airalarm/directional/west{
- pixel_x = -23
+"rUF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/light{
- dir = 8
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
},
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/camera/directional/north{
+ c_tag = "Security Hallway - Port";
+ name = "hallway camera"
},
-/obj/machinery/rnd/production/techfab/department/security,
-/obj/effect/turf_decal/stripes/box,
/turf/open/floor/iron,
-/area/security/warden)
+/area/hallway/primary/starboard)
"rUZ" = (
/obj/structure/rack,
/obj/machinery/light/small,
@@ -74825,6 +75473,30 @@
},
/turf/open/floor/iron,
/area/science/robotics/mechbay)
+"rWp" = (
+/obj/machinery/door/airlock/security{
+ aiControlDisabled = 1;
+ id_tag = "prisonereducation";
+ name = "Prisoner Education Chamber";
+ req_access_txt = "3"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-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
+ },
+/obj/effect/turf_decal/stripes/closeup,
+/turf/open/floor/iron/dark,
+/area/security/execution/transfer)
"rWu" = (
/obj/machinery/door/airlock{
name = "Bar Backroom";
@@ -74849,21 +75521,21 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"rWU" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light_switch{
- pixel_x = -7;
- pixel_y = -26
- },
-/obj/item/flashlight/lamp,
-/obj/item/radio/intercom{
- pixel_x = -26
+"rWO" = (
+/obj/machinery/newscaster{
+ pixel_y = 32
},
-/obj/effect/turf_decal/tile/red/anticorner/contrasted{
- dir = 8
+/obj/machinery/light{
+ dir = 1
},
+/obj/structure/table/reinforced,
+/obj/item/storage/fancy/donut_box,
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
/turf/open/floor/iron/dark,
-/area/security/execution/transfer)
+/area/security/main)
+"rXl" = (
+/turf/open/floor/carpet/grimy,
+/area/security/main)
"rXt" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
@@ -74927,6 +75599,25 @@
},
/turf/open/floor/circuit/green,
/area/security/nuke_storage)
+"rXY" = (
+/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/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Maintenance Hatch";
+ req_access_txt = "12"
+ },
+/turf/open/floor/iron,
+/area/maintenance/starboard)
"rYh" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -74943,6 +75634,32 @@
},
/turf/open/floor/iron,
/area/maintenance/port)
+"rYk" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_corner{
+ dir = 1
+ },
+/area/security/main)
+"rYs" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/security/detectives_office)
"rYE" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -74970,6 +75687,52 @@
},
/turf/open/floor/iron/white,
/area/crew_quarters/heads/cmo)
+"rYK" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/light_switch{
+ pixel_x = -20;
+ pixel_y = -21
+ },
+/turf/open/floor/circuit/green,
+/area/security/nuke_storage)
+"rYS" = (
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/checkpoint/science/research)
+"rYU" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/camera/directional/west{
+ c_tag = "Cargo Bay - Aft Port";
+ name = "cargo camera"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/power/apc/auto_name/directional/west{
+ pixel_x = -24
+ },
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/quartermaster/storage)
"rZo" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
@@ -74983,6 +75746,18 @@
},
/turf/open/floor/catwalk_floor/iron,
/area/engine/atmos)
+"rZz" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 8
+ },
+/area/security/main)
"rZA" = (
/obj/structure/table/reinforced,
/obj/item/storage/belt/utility,
@@ -75004,6 +75779,13 @@
},
/turf/open/floor/plating,
/area/maintenance/port/fore)
+"rZI" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron,
+/area/engine/break_room)
"rZN" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -75051,6 +75833,14 @@
"saw" = (
/turf/closed/wall/r_wall,
/area/science/misc_lab/range)
+"sax" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/engine/storage_shared)
"saG" = (
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/turf/open/floor/iron,
@@ -75070,6 +75860,13 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/gravity_generator)
+"saY" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/fore)
"sbe" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -75143,13 +75940,6 @@
},
/turf/open/floor/carpet/grimy,
/area/hallway/secondary/entry)
-"sco" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/neutral/half/contrasted,
-/turf/open/floor/iron,
-/area/security/courtroom)
"scz" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -75167,6 +75957,16 @@
},
/turf/open/floor/iron,
/area/maintenance/starboard/fore)
+"sdo" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/starboard)
"sds" = (
/obj/item/kirbyplants/random,
/obj/effect/turf_decal/stripes/line{
@@ -75200,35 +76000,12 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"sdP" = (
-/obj/machinery/gulag_item_reclaimer{
- pixel_y = 28
- },
-/obj/item/kirbyplants/random,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
+"sdY" = (
/obj/effect/turf_decal/tile/red/half/contrasted{
dir = 1
},
/turf/open/floor/iron,
-/area/hallway/primary/starboard)
-"sdU" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/red/half/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/execution/transfer)
+/area/security/brig)
"see" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -75253,21 +76030,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/fitness/recreation)
-"ser" = (
-/obj/structure/cable/white,
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "hosspace";
- name = "HoS Space Blast door"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/heads/hos)
"seN" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -75352,24 +76114,28 @@
},
/turf/open/floor/iron/white,
/area/medical/genetics)
+"sgE" = (
+/obj/effect/turf_decal{
+ dir = 1
+ },
+/obj/effect/turf_decal/caution/stand_clear,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/prison,
+/area/security/prison)
+"sgJ" = (
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/ai_monitored/security/armory)
"sgR" = (
/obj/effect/landmark/start/shaft_miner,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
-"sgT" = (
-/obj/structure/table/reinforced,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/flashlight/lamp,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/effect/turf_decal/tile/purple/half/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/miningoffice)
"sha" = (
/obj/machinery/disposal/bin,
/obj/effect/turf_decal/bot,
@@ -75401,6 +76167,19 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/quartermaster/warehouse)
+"shl" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/security/prison)
"shC" = (
/obj/item/weldingtool,
/obj/item/clothing/head/utility/welding,
@@ -75476,6 +76255,15 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/gateway)
+"siI" = (
+/obj/structure/rack,
+/obj/item/storage/briefcase{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/storage/secure/briefcase,
+/turf/open/floor/carpet/grimy,
+/area/security/detectives_office)
"siK" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
@@ -75540,17 +76328,9 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
-"sjG" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/sign/warning/vacuum{
- pixel_x = -32
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/execution/transfer)
+"sjv" = (
+/turf/closed/wall/r_wall,
+/area/security/prison/shielded)
"sjY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -75567,16 +76347,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai)
-"skm" = (
-/obj/structure/cable/white,
-/obj/machinery/power/apc/auto_name/directional/south,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/crew_quarters/heads/chief)
-"skp" = (
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/security/courtroom)
"skq" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/maintenance_hatch{
@@ -75623,11 +76393,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/catwalk_floor,
/area/engine/transit_tube)
-"skx" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/security/main)
"skB" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
@@ -75650,11 +76415,35 @@
},
/turf/open/floor/iron/white,
/area/medical/genetics)
+"skH" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/prison/dark,
+/area/security/prison)
"skO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/turf/open/floor/iron/white,
/area/crew_quarters/kitchen)
+"slo" = (
+/obj/structure/cable/yellow,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/machinery/light_switch{
+ pixel_x = -11;
+ pixel_y = -22
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port/fore)
"slp" = (
/obj/structure/disposalpipe/junction,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -75682,6 +76471,11 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/science/research)
+"smd" = (
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/engine/atmos)
"smt" = (
/obj/effect/turf_decal/tile/dark_blue/opposingcorners,
/obj/effect/turf_decal/tile/blue/opposingcorners{
@@ -75692,15 +76486,14 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/central)
-"smN" = (
-/obj/structure/closet/l3closet/security,
+"smX" = (
+/obj/structure/cable/yellow,
/obj/structure/cable/yellow{
- icon_state = "4-8"
+ icon_state = "0-8"
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/brig)
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/quartermaster/qm)
"snu" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 1
@@ -75735,6 +76528,51 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/maintenance/port/fore)
+"snQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
+"snY" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor/northright{
+ dir = 8;
+ name = "Warden's Desk";
+ req_access_txt = "3"
+ },
+/obj/item/folder/red,
+/obj/item/pen,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/window/westleft{
+ name = "Warden's Desk";
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/security/warden)
+"sod" = (
+/obj/effect/decal/cleanable/dirt,
+/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/tile/neutral/anticorner/contrasted{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/maintenance/port/fore)
"soh" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -75801,36 +76639,27 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/hydroponics)
+"soX" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron,
+/area/security/brig)
"spd" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/medical/patients_rooms)
-"spB" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/airalarm/directional/west{
- pixel_x = -23
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red/half/contrasted{
+"spm" = (
+/obj/machinery/computer/secure_data{
dir = 1
},
-/turf/open/floor/iron,
-/area/security/brig)
-"spE" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
+/obj/effect/turf_decal/tile/red/anticorner/contrasted,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/iron/dark/side{
+ dir = 6
},
-/obj/structure/chair/stool/directional/west,
-/turf/open/floor/prison,
-/area/security/prison)
+/area/security/main)
"spM" = (
/obj/machinery/vending/autodrobe,
/obj/structure/cable/yellow{
@@ -75865,14 +76694,32 @@
},
/turf/open/floor/iron,
/area/science/research)
-"squ" = (
-/obj/machinery/camera/motion/directional/west{
- c_tag = "Vault";
- network = list("vault")
+"sqw" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
},
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
+/obj/machinery/door/airlock/external{
+ name = "Security External Airlock";
+ req_access_txt = "63"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/directions/engineering{
+ desc = "A sign that shows there are doors here. There are doors everywhere!";
+ icon_state = "doors";
+ name = "WARNING: EXTERNAL AIRLOCK";
+ pixel_x = 32
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ 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/plating,
+/area/security/main)
"sqz" = (
/obj/item/radio/intercom{
pixel_y = 26
@@ -75918,6 +76765,14 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/engineering)
+"sqY" = (
+/obj/item/kirbyplants/random,
+/obj/machinery/airalarm/directional/east,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/crew_quarters/toilet/restrooms)
"sri" = (
/obj/machinery/door/airlock/command/glass{
name = "Power Tools Storage";
@@ -75979,22 +76834,12 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat_interior)
-"ssb" = (
-/obj/machinery/light/small,
-/turf/open/floor/iron,
-/area/security/brig)
-"ssk" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
+"srR" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
+ dir = 9
},
/obj/effect/turf_decal/tile/blue{
dir = 1
@@ -76004,6 +76849,18 @@
},
/turf/open/floor/iron,
/area/hydroponics)
+"ssg" = (
+/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 = 8
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"ssL" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
@@ -76040,13 +76897,37 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint/escape)
-"ssV" = (
-/obj/machinery/airalarm/directional/south{
- pixel_y = -22
+"sty" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/detectives_office)
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/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/closeup{
+ dir = 1
+ },
+/obj/machinery/door/airlock/security/glass{
+ name = "Equipment Room";
+ req_access_txt = "1"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/security/main)
"stA" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -76059,6 +76940,13 @@
},
/turf/open/floor/iron/white,
/area/medical/chemistry)
+"stJ" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/fore)
"stM" = (
/obj/machinery/light/small{
dir = 1
@@ -76068,6 +76956,64 @@
},
/turf/open/floor/catwalk_floor/iron_smooth,
/area/tcommsat/server)
+"stS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/iron,
+/area/maintenance/starboard)
+"stV" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/rack,
+/obj/item/storage/box/chemimp{
+ pixel_x = 6
+ },
+/obj/item/storage/box/trackimp{
+ pixel_x = -3
+ },
+/obj/item/storage/lockbox/loyalty,
+/obj/machinery/door/window/southright{
+ base_state = "left";
+ dir = 1;
+ icon_state = "left";
+ name = "Implants storage";
+ req_one_access_txt = "1;4"
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/reagent_containers/glass/bottle/morphine,
+/turf/open/floor/iron/dark,
+/area/ai_monitored/security/armory)
+"stW" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/quartermaster/sorting)
"suk" = (
/obj/machinery/porta_turret/ai,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -76140,6 +77086,14 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/command)
+"suR" = (
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/turf/closed/wall/r_wall,
+/area/security/brig)
+"suT" = (
+/obj/structure/chair/office,
+/turf/open/floor/carpet/grimy,
+/area/security/detectives_office)
"suX" = (
/obj/structure/table/reinforced,
/obj/item/clipboard,
@@ -76229,22 +77183,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/storage/tech)
-"swh" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/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/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/storage)
"swo" = (
/obj/machinery/nanite_program_hub,
/obj/effect/turf_decal/bot,
@@ -76264,10 +77202,34 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/medical/break_room)
+"swE" = (
+/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 = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"swL" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/carpet/grimy,
/area/crew_quarters/bar/atrium)
+"swN" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/turf/open/floor/iron/freezer,
+/area/security/prison)
"swQ" = (
/obj/item/kirbyplants/random,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -76302,6 +77264,35 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/atmos)
+"sxo" = (
+/obj/machinery/door/airlock/security{
+ aiControlDisabled = 1;
+ id_tag = "prisonereducation";
+ name = "Prison access";
+ req_one_access_txt = "1;4"
+ },
+/obj/effect/turf_decal/delivery/red,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"sxs" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 1
@@ -76309,6 +77300,29 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat_interior)
+"sxH" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"sxM" = (
+/obj/item/kirbyplants/random,
+/obj/structure/sign/departments/minsky/security/security{
+ pixel_x = 32;
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/starboard)
"sxZ" = (
/obj/effect/turf_decal/bot,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -76331,70 +77345,15 @@
/obj/item/storage/fancy/donut_box,
/turf/open/floor/carpet/grimy,
/area/bridge)
-"syB" = (
-/obj/structure/bed/roller,
-/obj/item/radio/intercom{
- pixel_y = -26
- },
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 8
- },
-/obj/item/clothing/mask/muzzle,
-/obj/item/clothing/glasses/blindfold,
-/obj/item/clothing/suit/jacket/straight_jacket,
-/obj/item/clothing/glasses/blindfold,
-/obj/item/clothing/mask/muzzle,
-/turf/open/floor/iron/white,
-/area/security/brig)
"syE" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
/turf/open/floor/wood,
/area/crew_quarters/heads/captain)
-"syJ" = (
-/obj/item/kirbyplants/random,
-/obj/effect/turf_decal/tile/red/half/contrasted,
-/turf/open/floor/iron,
-/area/security/brig)
"syK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/maintenance/starboard/aft)
-"syP" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
-"syU" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/iron/white,
-/area/science/misc_lab/range)
-"syZ" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- 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/iron,
-/area/security/brig)
"szf" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -76437,43 +77396,69 @@
/obj/effect/turf_decal/tile/purple/anticorner/contrasted,
/turf/open/floor/iron/white,
/area/science/lab)
-"szn" = (
-/obj/structure/disposalpipe/segment,
+"szP" = (
+/obj/machinery/photocopier,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron/dark,
+/area/chapel/office)
+"szQ" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 10
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/effect/turf_decal/tile/neutral{
+/obj/item/radio/intercom{
+ desc = "Talk through this. It looks like it has been modified to not broadcast.";
+ name = "Prison Intercom (General)";
+ pixel_y = 24;
+ prison_radio = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 1
},
-/turf/open/floor/iron,
-/area/hallway/secondary/entry)
-"szN" = (
+/turf/open/floor/prison/dark,
+/area/security/prison)
+"szY" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/machinery/light{
- dir = 8;
- light_color = "#e8eaff"
+/turf/open/floor/iron/dark/side{
+ dir = 4
},
-/turf/open/floor/prison,
-/area/security/prison)
-"szP" = (
-/obj/machinery/photocopier,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/chapel/office)
+/area/security/courtroom)
+"sAk" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/central)
"sAw" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/atmospherics_engine)
-"sAF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+"sAO" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/detectives_office)
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/quartermaster/sorting)
"sBf" = (
/obj/machinery/light,
/obj/structure/table/glass,
@@ -76490,6 +77475,26 @@
/obj/machinery/light,
/turf/open/floor/carpet/grimy,
/area/crew_quarters/bar/atrium)
+"sBj" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow,
+/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/directional/west{
+ pixel_x = -24
+ },
+/obj/effect/turf_decal/trimline/black/filled/line{
+ dir = 8
+ },
+/obj/structure/chair/fancy/comfy,
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"sBw" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -76500,6 +77505,17 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/hallway/primary/central)
+"sBC" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/engine/storage_shared)
"sBL" = (
/obj/structure/table/wood,
/obj/item/storage/bag/books,
@@ -76510,17 +77526,6 @@
},
/turf/open/floor/carpet/grimy,
/area/library)
-"sBO" = (
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "justicechamber";
- name = "Justice Chamber Blast door"
- },
-/turf/open/floor/plating,
-/area/security/execution/transfer)
"sBS" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -76554,6 +77559,15 @@
dir = 1
},
/area/hallway/secondary/entry)
+"sCk" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 9
+ },
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 1
+ },
+/turf/open/floor/prison/dark,
+/area/security/execution/transfer)
"sCM" = (
/obj/structure/table/wood,
/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb,
@@ -76588,26 +77602,6 @@
},
/turf/open/floor/carpet/royalblue,
/area/crew_quarters/heads/hop)
-"sDu" = (
-/obj/item/radio/intercom{
- pixel_x = -26
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/computer/warrant{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/courtroom)
-"sDw" = (
-/obj/structure/disposalpipe/junction/flip{
- dir = 2
- },
-/obj/effect/turf_decal/tile/yellow/half/contrasted{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"sDx" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 8
@@ -76628,6 +77622,32 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/catwalk_floor/iron,
/area/engine/atmospherics_engine)
+"sEd" = (
+/obj/structure/filingcabinet,
+/obj/item/folder/documents,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/machinery/status_display/ai{
+ pixel_y = 32
+ },
+/turf/open/floor/iron/dark,
+/area/security/nuke_storage)
+"sEn" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron/dark,
+/area/security/main)
+"sEq" = (
+/obj/structure/curtain,
+/obj/effect/turf_decal/delivery/white,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/prison/dark,
+/area/security/prison)
"sEz" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
@@ -76636,27 +77656,39 @@
/obj/structure/sign/departments/minsky/medical/medical2,
/turf/closed/wall/r_wall,
/area/medical/chemistry)
-"sEM" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/regular,
-/obj/item/radio/intercom{
- dir = 8;
- pixel_x = 28
+"sEI" = (
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/structure/disposalpipe/segment{
+ dir = 5
},
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = -5
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
},
-/turf/open/floor/iron,
-/area/medical/medbay/lobby)
-"sFm" = (
-/obj/structure/closet/emcloset,
-/obj/effect/turf_decal/stripes/line{
- dir = 5
+/turf/open/floor/iron/textured,
+/area/security/brig)
+"sEO" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Virology Maintenance";
+ req_access_txt = "39"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "quarantineshutters";
+ name = "isolation shutters"
},
-/obj/effect/turf_decal/tile/red/half/contrasted,
/turf/open/floor/iron,
-/area/hallway/primary/starboard)
+/area/maintenance/aft)
+"sFl" = (
+/obj/structure/chair/stool/directional/west,
+/obj/effect/landmark/prisonspawn,
+/turf/open/floor/prison,
+/area/security/prison)
"sFo" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -76691,12 +77723,53 @@
/obj/effect/turf_decal/siding/white,
/turf/open/floor/glass/reinforced,
/area/hallway/secondary/exit/departure_lounge)
+"sGh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/turf/open/floor/iron/textured,
+/area/ai_monitored/security/armory)
"sGj" = (
/obj/effect/turf_decal/tile/blue/half/contrasted{
dir = 1
},
/turf/open/floor/iron/dark,
/area/bridge)
+"sGr" = (
+/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/neutral/fourcorners/contrasted,
+/turf/open/floor/iron,
+/area/engine/break_room)
+"sGx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/camera/autoname{
+ dir = 5;
+ network = list("ss13","security")
+ },
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 1
+ },
+/area/security/main)
"sGV" = (
/turf/closed/wall,
/area/janitor/custodian)
@@ -76780,6 +77853,31 @@
/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/aft)
+"sHY" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/turf/open/floor/iron/dark,
+/area/crew_quarters/heads/hos)
+"sHZ" = (
+/obj/machinery/door/airlock/external{
+ name = "Escape Pod 3"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/security/main)
"sIf" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -76789,10 +77887,64 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/atmos)
+"sIx" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/break_room)
+"sIK" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "atmoslock";
+ name = "Atmospherics Lockdown Blast door"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/engine/break_room)
+"sIS" = (
+/obj/effect/turf_decal/siding/wideplating_new/dark,
+/obj/structure/table/reinforced,
+/obj/item/book/manual/wiki/security_space_law{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/book/manual/wiki/security_space_law,
+/obj/item/book/manual/wiki/sopsecurity{
+ pixel_y = -3;
+ pixel_x = -3
+ },
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/iron/dark,
+/area/security/main)
"sIW" = (
/mob/living/basic/cockroach,
/turf/open/floor/plating,
/area/maintenance/aft)
+"sIZ" = (
+/obj/structure/table/wood,
+/obj/item/radio/intercom{
+ pixel_x = -26
+ },
+/obj/item/paper_bin,
+/obj/item/flashlight/lamp,
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 4
+ },
+/turf/open/floor/wood/big,
+/area/lawoffice)
"sJk" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 4
@@ -76838,27 +77990,6 @@
},
/turf/open/floor/plating,
/area/engine/engineering)
-"sJF" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
-"sJM" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/item/book/manual/wiki/sopcommand,
-/turf/open/floor/carpet/red,
-/area/crew_quarters/heads/hos)
"sJP" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -76872,12 +78003,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"sJS" = (
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/security/courtroom)
"sJW" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -76924,44 +78049,73 @@
},
/turf/open/floor/iron,
/area/hydroponics)
+"sKq" = (
+/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/brown/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/fore)
"sKr" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 8
},
/turf/open/floor/iron,
/area/maintenance/port/aft)
-"sKH" = (
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/security/prison)
-"sKI" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/neutral/opposingcorners,
-/turf/open/floor/iron/white,
-/area/crew_quarters/cryopods)
"sKO" = (
/obj/effect/turf_decal/delivery,
/turf/open/floor/engine,
/area/science/explab)
+"sKR" = (
+/obj/structure/chair/fancy/bench{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/sign/poster/official/obey{
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/obj/effect/landmark/prisonspawn,
+/turf/open/floor/iron/techmaint,
+/area/security/prison/shielded)
+"sKT" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"sKW" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 5
+ },
+/turf/open/floor/wood,
+/area/quartermaster/exploration_prep)
"sKZ" = (
/obj/effect/turf_decal/tile/yellow/half/contrasted{
dir = 1
},
/turf/open/floor/iron,
/area/engine/engineering)
-"sLa" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -26
- },
-/obj/item/kirbyplants/random,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/detectives_office)
"sLl" = (
/obj/machinery/disposal/bin,
/obj/effect/turf_decal/bot{
@@ -76975,31 +78129,6 @@
},
/turf/open/floor/iron/white,
/area/crew_quarters/heads/cmo)
-"sLo" = (
-/obj/structure/table/wood,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/item/folder/red,
-/obj/item/stamp/hos,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/item/book/manual/wiki/sopsecurity,
-/turf/open/floor/carpet/red,
-/area/crew_quarters/heads/hos)
"sLr" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -77017,6 +78146,23 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/maintenance/port/aft)
+"sLs" = (
+/obj/structure/closet/secure_closet/warden,
+/obj/item/clothing/mask/gas/sechailer,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 1
+ },
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/item/gun/energy/laser,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/iron/dark,
+/area/security/warden)
"sLE" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/effect/decal/cleanable/dirt,
@@ -77071,18 +78217,16 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"sMp" = (
-/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/turf_decal/tile/yellow/half/contrasted{
+"sMg" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
dir = 8
},
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
/turf/open/floor/iron,
-/area/engine/break_room)
+/area/quartermaster/office)
"sMs" = (
/obj/effect/turf_decal/tile/yellow{
dir = 1
@@ -77107,16 +78251,26 @@
},
/turf/open/floor/carpet/grimy,
/area/vacant_room/office)
-"sMK" = (
-/obj/structure/chair/stool,
+"sMU" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig Medical outpost";
+ req_access_txt = "63"
+ },
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/red/half/contrasted,
/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/machinery/light{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
},
-/turf/open/floor/prison,
-/area/security/prison)
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/security/brig/medbay)
"sMW" = (
/obj/machinery/light{
dir = 1
@@ -77209,17 +78363,6 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron,
/area/hallway/secondary/exit/departure_lounge)
-"sOX" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = -24;
- pixel_y = -32
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/carpet/red,
-/area/crew_quarters/heads/hos)
"sPr" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 1
@@ -77233,20 +78376,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"sPv" = (
-/obj/item/storage/box/teargas{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/storage/box/handcuffs,
-/obj/item/storage/box/flashbangs{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/ai_monitored/security/armory)
"sPz" = (
/obj/machinery/disposal/bin,
/obj/effect/turf_decal/delivery/red,
@@ -77294,6 +78423,25 @@
},
/turf/open/floor/iron,
/area/science/research)
+"sQl" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/event_spawn,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/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,
+/area/hallway/primary/starboard)
+"sQp" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron/white/corner,
+/area/hallway/primary/aft)
"sQD" = (
/obj/structure/table/reinforced,
/obj/item/stack/package_wrap,
@@ -77312,27 +78460,20 @@
},
/turf/open/floor/iron,
/area/construction/mining/aux_base)
-"sQE" = (
-/obj/structure/cable/white,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera/directional/south{
- c_tag = "Dormitories - Center";
- name = "dormitories camera"
- },
-/obj/machinery/power/apc/auto_name/directional/south,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/iron{
- heat_capacity = 1e+006
- },
-/area/crew_quarters/dorms)
"sQH" = (
/obj/item/kirbyplants/random,
/turf/open/floor/carpet/grimy,
/area/tcommsat/computer)
+"sQN" = (
+/obj/machinery/airalarm/directional/south,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/camera/autoname/directional/south{
+ network = list("ss13","prison")
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"sQX" = (
/obj/machinery/computer/security/mining{
dir = 4
@@ -77347,23 +78488,6 @@
/obj/machinery/status_display/ai,
/turf/closed/wall,
/area/medical/morgue)
-"sRl" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/security/brig)
"sRp" = (
/obj/structure/window/reinforced{
dir = 4
@@ -77371,6 +78495,16 @@
/obj/item/kirbyplants/random,
/turf/open/floor/carpet/grimy,
/area/crew_quarters/bar/atrium)
+"sRs" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "Prisongate"
+ },
+/obj/effect/spawner/structure/window/reinforced/prison,
+/turf/open/floor/plating,
+/area/security/prison)
"sRQ" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 8
@@ -77406,24 +78540,18 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
-"sTs" = (
-/obj/structure/cable/yellow{
- icon_state = "0-4"
+"sTd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
},
/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/warning/vacuum,
-/turf/open/floor/plating,
-/area/hallway/primary/starboard)
-"sTu" = (
-/obj/machinery/status_display/ai{
- pixel_y = 32
+/obj/effect/turf_decal/tile/red{
+ dir = 8
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/nuke_storage)
+/turf/open/floor/iron,
+/area/security/courtroom)
"sTw" = (
/obj/machinery/firealarm{
dir = 4;
@@ -77508,6 +78636,15 @@
},
/turf/open/floor/iron,
/area/crew_quarters/fitness/recreation)
+"sTT" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/delivery,
+/obj/structure/plasticflaps/opaque,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/quartermaster/office)
"sTZ" = (
/obj/effect/landmark/start/station_engineer,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -77519,13 +78656,23 @@
/obj/effect/turf_decal/tile/yellow/half/contrasted,
/turf/open/floor/iron,
/area/engine/engineering)
-"sUh" = (
-/obj/structure/cable/white,
-/obj/item/kirbyplants/random,
-/obj/machinery/light,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/ai_monitored/turret_protected/aisat_interior)
+"sUf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 8
+ },
+/area/ai_monitored/security/armory)
"sUF" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -77591,6 +78738,13 @@
},
/turf/open/floor/iron,
/area/hallway/primary/aft)
+"sVl" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/iron,
+/area/quartermaster/storage)
"sVr" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -77693,6 +78847,16 @@
},
/turf/open/floor/catwalk_floor/iron_dark,
/area/maintenance/disposal/incinerator)
+"sXo" = (
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/security/brig/medbay)
"sXx" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -77706,25 +78870,30 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"sXJ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/stripes/line{
+"sXL" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/fans/tiny/invisible,
-/obj/docking_port/stationary{
- dir = 4;
- dwidth = 1;
- height = 4;
- roundstart_template = /datum/map_template/shuttle/escape_pod/default;
- width = 3
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/turf/open/floor/plating{
- initial_gas_mix = "o2=0.01;n2=0.01;TEMP=2.7";
- initial_temperature = 2.7;
- luminosity = 2
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
},
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron,
/area/security/brig)
+"sXV" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/carpet/grimy,
+/area/security/main)
"sYh" = (
/obj/machinery/power/tracker,
/obj/structure/cable{
@@ -77732,24 +78901,39 @@
},
/turf/open/floor/iron/solarpanel/airless,
/area/solar/starboard/fore)
-"sYH" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+"sYk" = (
+/obj/structure/plasticflaps/opaque,
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=1";
+ dir = 1;
+ freq = 1400;
+ location = "Security"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/security/brig)
+"sYs" = (
+/obj/machinery/holopad,
+/obj/effect/landmark/start/lawyer,
+/obj/effect/turf_decal/bot,
+/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/effect/turf_decal/tile/yellow/half/contrasted{
- dir = 1
+/turf/open/floor/iron/large,
+/area/security/courtroom)
+"sYy" = (
+/obj/structure/curtain,
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/security/prison)
+"sYN" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/turf/open/floor/iron,
-/area/engine/break_room)
+/turf/open/floor/plating,
+/area/maintenance/starboard)
"sYX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -77809,13 +78993,6 @@
/obj/effect/turf_decal/tile/purple,
/turf/open/floor/iron/white,
/area/science/research)
-"sZK" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/turf/open/floor/prison,
-/area/security/prison)
"tad" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -77861,6 +79038,15 @@
"taz" = (
/turf/closed/wall,
/area/medical/virology)
+"taC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/security/brig)
"taD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -77873,22 +79059,6 @@
},
/turf/open/floor/iron/dark,
/area/medical/surgery)
-"taG" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
"taL" = (
/obj/structure/chair/stool/bar/directional/south,
/obj/machinery/newscaster{
@@ -77906,6 +79076,17 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/atmos)
+"taX" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/item/radio/intercom{
+ pixel_y = -26
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/starboard)
"tbc" = (
/obj/structure/filingcabinet/filingcabinet,
/obj/effect/turf_decal/tile/purple/half/contrasted,
@@ -77914,6 +79095,14 @@
"tbh" = (
/turf/open/floor/carpet/grimy,
/area/crew_quarters/bar/atrium)
+"tbu" = (
+/obj/structure/bed,
+/obj/item/clothing/glasses/blindfold,
+/obj/item/clothing/mask/muzzle,
+/obj/item/electropack,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/prison/dark,
+/area/security/execution/transfer)
"tbA" = (
/obj/structure/table/reinforced,
/obj/item/folder/blue,
@@ -77921,19 +79110,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai)
-"tbI" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/table,
-/obj/item/restraints/handcuffs,
-/obj/item/clothing/suit/armor/vest,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/security/brig)
"tbK" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -77965,17 +79141,12 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/fore)
-"tca" = (
-/obj/structure/chair/office{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/landmark/start/security_officer,
-/obj/effect/turf_decal/tile/red/half/contrasted,
+"tbP" = (
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/obj/machinery/vending/coffee,
+/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
-/area/security/main)
+/area/security/brig)
"tcl" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -77991,10 +79162,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/aisat)
-"tco" = (
-/obj/effect/spawner/structure/window/reinforced/tinted,
-/turf/open/floor/plating,
-/area/security/prison)
"tcx" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -78068,19 +79235,16 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/crew_quarters/dorms)
-"tdS" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+"tdP" = (
+/obj/structure/chair{
+ dir = 1
},
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer4,
-/obj/structure/cable/yellow{
- icon_state = "2-8"
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
-/turf/open/floor/iron,
-/area/security/brig)
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/iron/dark,
+/area/security/main)
"tec" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -78091,6 +79255,17 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/circuit/green,
/area/ai_monitored/turret_protected/ai)
+"teo" = (
+/obj/machinery/suit_storage_unit/hos,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/camera/directional/north{
+ c_tag = "Security - Head of Security's Quarters";
+ network = list("ss13","security")
+ },
+/turf/open/floor/iron,
+/area/crew_quarters/heads/hos)
"tep" = (
/obj/machinery/light/small{
dir = 1
@@ -78101,6 +79276,12 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/atmospherics_engine)
+"teq" = (
+/obj/structure/table/reinforced,
+/obj/machinery/fax/sec,
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/turf/open/floor/iron/dark,
+/area/security/main)
"tet" = (
/obj/machinery/button/door{
id = "Dorm1";
@@ -78125,11 +79306,30 @@
},
/turf/open/floor/iron/white,
/area/crew_quarters/heads/cmo)
+"teY" = (
+/obj/structure/chair/stool/directional/south,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"teZ" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/manifold/yellow/visible,
/turf/open/space,
/area/engine/atmos)
+"tfc" = (
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "rdoffice";
+ name = "Research Director's Shutters"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/heads/hor)
"tfd" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -78163,17 +79363,45 @@
/obj/effect/turf_decal/tile/purple,
/turf/open/floor/iron,
/area/maintenance/department/science)
-"tfH" = (
+"tfL" = (
/obj/structure/cable/yellow{
- icon_state = "0-4"
+ icon_state = "4-8"
},
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "hosspace";
- name = "HoS Space Blast door"
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 8
},
-/turf/open/floor/plating,
-/area/crew_quarters/heads/hos)
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/quartermaster/miningoffice)
+"tfM" = (
+/obj/machinery/door/airlock/research{
+ name = "Research and Development Lab";
+ req_one_access_txt = "7;29"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "rdrnd";
+ name = "Research and Development Shutters"
+ },
+/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/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/science/lab)
"tfT" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -78185,15 +79413,25 @@
dir = 1
},
/area/hallway/primary/aft)
-"tfX" = (
-/obj/structure/table/wood,
-/obj/item/folder/red,
-/obj/item/pen,
-/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
- dir = 1
+"tgs" = (
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
},
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"tgu" = (
+/obj/item/kirbyplants/random,
+/obj/machinery/airalarm/directional/east,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/camera/directional/east{
+ c_tag = "Security Post - Cargo"
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted,
/turf/open/floor/iron,
-/area/security/courtroom)
+/area/security/checkpoint/supply)
"tgL" = (
/obj/effect/turf_decal/tile/blue{
dir = 8
@@ -78222,6 +79460,16 @@
},
/turf/open/floor/iron,
/area/science/xenobiology)
+"thD" = (
+/obj/structure/chair/fancy/bench/left{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/iron/techmaint,
+/area/security/prison/shielded)
"thP" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -78255,22 +79503,17 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"tiY" = (
-/obj/structure/table/reinforced,
-/obj/item/flashlight/lamp,
-/obj/item/radio/intercom{
- broadcasting = 1;
- frequency = 1423;
- listening = 0;
- name = "Interrogation Intercom";
- pixel_y = -24
+"tjb" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
},
-/obj/machinery/camera/directional/south{
- c_tag = "Security - Interrogation"
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
-/area/security/brig)
+/area/security/warden)
"tjk" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -78282,6 +79525,29 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
+"tjq" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock{
+ name = "Bar Backroom";
+ req_access_txt = "25"
+ },
+/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/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/crew_quarters/bar)
"tjv" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -78373,12 +79639,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"tkM" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/fancy/donut_box,
-/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/security/main)
"tkX" = (
/obj/structure/bed,
/obj/structure/cable/yellow{
@@ -78395,20 +79655,6 @@
/obj/machinery/firealarm/directional/west,
/turf/open/floor/carpet/grimy,
/area/crew_quarters/dorms)
-"tlo" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/red,
-/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/security/brig)
"tls" = (
/obj/structure/flora/ausbushes/leafybush,
/obj/structure/flora/ausbushes/fullgrass,
@@ -78426,6 +79672,20 @@
},
/turf/open/floor/grass,
/area/medical/patients_rooms)
+"tlz" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow,
+/obj/machinery/status_display/evac{
+ pixel_y = -32
+ },
+/obj/machinery/modular_computer/console/preset/engineering{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron/dark,
+/area/engine/atmospherics_engine)
"tlQ" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -78453,6 +79713,12 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/central)
+"tmj" = (
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/machinery/iv_drip,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/white,
+/area/security/brig/medbay)
"tmw" = (
/obj/structure/chair/office{
dir = 8
@@ -78475,6 +79741,17 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/central)
+"tmD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/starboard)
"tmI" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -78561,6 +79838,19 @@
},
/turf/open/floor/carpet/grimy,
/area/chapel/office)
+"tnr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/sign/departments/minsky/security/security{
+ pixel_x = 32
+ },
+/obj/machinery/digital_clock/directional/south,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/starboard)
"tnC" = (
/obj/structure/rack,
/obj/machinery/newscaster{
@@ -78587,21 +79877,6 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/vacant_room/commissary)
-"tnT" = (
-/obj/structure/table/reinforced,
-/obj/item/clipboard,
-/obj/item/gps/engineering{
- gpstag = "CE0"
- },
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/crew_quarters/heads/chief)
"toc" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -78612,6 +79887,19 @@
},
/turf/open/floor/iron,
/area/medical/medbay/central)
+"toi" = (
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/turf/open/floor/iron,
+/area/quartermaster/qm)
"toj" = (
/obj/machinery/modular_computer/console/preset/engineering,
/obj/effect/turf_decal/tile/purple/half/contrasted{
@@ -78626,6 +79914,15 @@
},
/turf/open/floor/iron,
/area/hallway/primary/fore)
+"too" = (
+/obj/structure/sign/poster/official/report_crimes{
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/security/detectives_office)
"tou" = (
/obj/structure/closet/cardboard,
/obj/effect/spawner/lootdrop/maintenance,
@@ -78645,22 +79942,6 @@
},
/turf/open/floor/iron/telecomms,
/area/tcommsat/server)
-"toR" = (
-/obj/machinery/flasher{
- id = "justiceflash";
- pixel_x = 26;
- req_access_txt = "63"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/turf/open/floor/plating{
- broken = 1
- },
-/area/security/execution/transfer)
"tpl" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -78693,6 +79974,24 @@
/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint/science/research)
+"tpE" = (
+/obj/structure/disposalpipe/segment{
+ 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/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/security/brig)
"tpN" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/atmos{
@@ -78756,22 +80055,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/tcommsat/computer)
-"tqy" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/donkpockets{
- pixel_x = 2;
- pixel_y = 1
- },
-/obj/item/book/manual/chef_recipes{
- pixel_x = 2;
- pixel_y = 6
- },
-/obj/effect/turf_decal{
- dir = 1
- },
-/obj/machinery/light,
-/turf/open/floor/prison,
-/area/security/prison)
"tqB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -78813,6 +80096,25 @@
},
/turf/open/floor/iron/dark,
/area/engine/atmos)
+"tqN" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
+"tqT" = (
+/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/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/security/prison)
"tqV" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 32
@@ -78919,19 +80221,6 @@
/obj/effect/landmark/start/exploration,
/turf/open/floor/carpet,
/area/quartermaster/exploration_prep)
-"tsd" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/brig)
"tsr" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -78949,19 +80238,32 @@
},
/turf/open/floor/glass/reinforced,
/area/hallway/secondary/entry)
-"tsP" = (
-/obj/structure/chair{
- dir = 4
+"ttl" = (
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
},
-/obj/machinery/camera/directional/north{
- c_tag = "Courtroom - Fore"
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
},
-/obj/structure/sign/poster/official/report_crimes{
- pixel_y = 32
+/obj/effect/spawner/structure/window/reinforced/prison,
+/obj/machinery/door/poddoor/preopen{
+ id = "Prisongate"
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/courtroom)
+/turf/open/floor/plating,
+/area/security/prison)
+"ttt" = (
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenosecure";
+ name = "Secure Pen Shutters"
+ },
+/turf/open/floor/plating,
+/area/science/xenobiology)
"ttv" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -78976,12 +80278,6 @@
},
/turf/open/floor/iron,
/area/engine/storage)
-"ttx" = (
-/obj/machinery/light/small,
-/turf/open/floor/plating{
- broken = 1
- },
-/area/security/brig)
"ttM" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
@@ -79071,6 +80367,16 @@
},
/turf/open/floor/iron,
/area/crew_quarters/bar/atrium)
+"tuM" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "Prisongate"
+ },
+/obj/effect/spawner/structure/window/reinforced/prison,
+/turf/open/floor/plating,
+/area/security/prison)
"tuO" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/rack,
@@ -79088,16 +80394,6 @@
/obj/effect/turf_decal/tile/red/half/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint/supply)
-"tvh" = (
-/obj/structure/disposalpipe/sorting/mail{
- name = "CE's Junction";
- sortType = 5
- },
-/obj/effect/turf_decal/tile/yellow/half/contrasted{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"tvq" = (
/obj/structure/table/reinforced,
/obj/item/stock_parts/matter_bin{
@@ -79137,14 +80433,6 @@
dir = 1
},
/area/hallway/secondary/entry)
-"tvV" = (
-/obj/structure/cable/white,
-/obj/machinery/power/apc/auto_name/directional/south,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/security/brig)
"twg" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
@@ -79210,26 +80498,31 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/science/research)
-"twW" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 1
+"txd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/iron{
- heat_capacity = 1e+006
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
},
-/area/maintenance/department/medical/central)
-"txa" = (
-/obj/machinery/light,
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
-/obj/machinery/airalarm/directional/south{
- pixel_y = -22
+/obj/structure/sign/poster/official/report_crimes{
+ pixel_y = -32
},
-/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
-/area/hallway/primary/starboard)
+/area/security/brig)
+"txk" = (
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron,
+/area/hydroponics)
+"txu" = (
+/obj/machinery/suit_storage_unit/security,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/smooth,
+/area/security/main)
"txw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -79316,17 +80609,15 @@
},
/turf/open/floor/iron,
/area/construction/mining/aux_base)
-"tyZ" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/closet/secure_closet/security/sec,
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 4
+"tzf" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/item/radio/intercom{
- pixel_y = 26
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
},
-/turf/open/floor/iron,
-/area/security/main)
+/turf/open/floor/carpet/red,
+/area/crew_quarters/heads/hos)
"tzt" = (
/obj/effect/turf_decal/siding/wood/end{
dir = 8
@@ -79335,10 +80626,6 @@
broken = 1
},
/area/quartermaster/exploration_prep)
-"tzw" = (
-/obj/effect/turf_decal/tile/red/half/contrasted,
-/turf/open/floor/iron,
-/area/security/main)
"tzx" = (
/obj/machinery/door/airlock/command{
name = "Research Division Server Room";
@@ -79375,6 +80662,13 @@
},
/turf/open/floor/wood,
/area/quartermaster/exploration_prep)
+"tzQ" = (
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_y = -32
+ },
+/obj/machinery/photocopier,
+/turf/open/floor/carpet/red,
+/area/security/detectives_office)
"tAd" = (
/obj/machinery/computer/med_data{
dir = 4
@@ -79387,6 +80681,61 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/customs)
+"tAe" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ 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/iron{
+ heat_capacity = 1e+006
+ },
+/area/maintenance/starboard)
+"tAk" = (
+/obj/structure/closet/crate/secure/weapon{
+ desc = "A secure clothing crate.";
+ name = "formal uniform crate";
+ req_access_txt = "3"
+ },
+/obj/item/clothing/under/rank/security/officer/formal,
+/obj/item/clothing/under/rank/security/officer/formal,
+/obj/item/clothing/under/rank/security/officer/formal,
+/obj/item/clothing/under/rank/security/officer/formal,
+/obj/item/clothing/under/rank/security/officer/formal,
+/obj/item/clothing/under/rank/security/officer/formal,
+/obj/item/clothing/under/rank/security/warden/formal,
+/obj/item/clothing/under/rank/security/head_of_security/formal,
+/obj/item/clothing/head/beret/sec/navyofficer,
+/obj/item/clothing/head/beret/sec/navyofficer,
+/obj/item/clothing/head/beret/sec/navyofficer,
+/obj/item/clothing/head/beret/sec/navyofficer,
+/obj/item/clothing/head/beret/sec/navyofficer,
+/obj/item/clothing/head/beret/sec/navyofficer,
+/obj/item/clothing/head/beret/sec/navywarden,
+/obj/item/clothing/head/beret/sec/navyhos,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/ai_monitored/security/armory)
+"tAs" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/obj/machinery/light,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"tAJ" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -79406,6 +80755,19 @@
},
/turf/open/floor/iron,
/area/maintenance/starboard)
+"tAK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/iron{
+ heat_capacity = 1e+006
+ },
+/area/hallway/primary/central)
"tAW" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 8
@@ -79416,16 +80778,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/secondary/exit/departure_lounge)
-"tBw" = (
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/brig)
"tBx" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
@@ -79453,26 +80805,24 @@
},
/turf/open/floor/plating,
/area/maintenance/port)
-"tBJ" = (
-/obj/structure/closet/secure_closet/detective,
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/item/clothing/head/fedora/det_hat{
- icon_state = "curator"
+"tBE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 8
},
-/obj/item/clothing/suit/jacket/det_suit{
- icon_state = "curator"
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/quartermaster/storage)
+"tBN" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
},
-/obj/item/clothing/under/rank/security/detective{
- icon_state = "curator"
+/obj/structure/chair/office{
+ dir = 8
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
-/area/security/detectives_office)
+/area/security/warden)
"tBO" = (
/obj/structure/chair/fancy/comfy,
/turf/open/floor/carpet/grimy,
@@ -79522,12 +80872,31 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/quartermaster/exploration_prep)
+"tCx" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/maintenance/starboard)
"tCA" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/blobstart,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/quartermaster/warehouse)
+"tCC" = (
+/obj/structure/table,
+/obj/machinery/microwave{
+ pixel_x = -2;
+ pixel_y = 5
+ },
+/turf/open/floor/iron/dark,
+/area/security/courtroom)
"tCL" = (
/obj/structure/table/wood,
/obj/item/folder/blue{
@@ -79538,15 +80907,20 @@
/obj/item/pen,
/turf/open/floor/carpet/grimy,
/area/vacant_room/office)
-"tCQ" = (
-/obj/structure/table/reinforced,
-/obj/item/book/manual/wiki/security_space_law,
-/obj/item/taperecorder,
-/obj/effect/turf_decal/tile/red/anticorner/contrasted{
- dir = 8
+"tDl" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
},
-/turf/open/floor/iron,
-/area/security/main)
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/turf/open/floor/plating,
+/area/crew_quarters/heads/hor)
+"tDm" = (
+/obj/structure/table,
+/obj/item/storage/box/bodybags,
+/obj/item/clothing/gloves/color/latex,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron/dark,
+/area/security/brig/medbay)
"tDp" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -79607,22 +80981,6 @@
},
/turf/open/floor/iron,
/area/maintenance/port)
-"tEr" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/security/main)
"tEE" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/turf_decal/trimline/black/filled/line{
@@ -79630,21 +80988,6 @@
},
/turf/open/floor/iron,
/area/maintenance/department/science)
-"tEP" = (
-/obj/structure/table/reinforced,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/security/main)
"tFf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -79658,41 +81001,20 @@
/obj/machinery/digital_clock/directional/north,
/turf/open/floor/iron/white,
/area/science/research)
-"tFi" = (
-/obj/machinery/status_display/evac{
- pixel_x = 32
- },
-/obj/machinery/camera/directional/east{
- c_tag = "Courtroom - Center"
- },
-/obj/machinery/light{
- dir = 4
+"tFt" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/obj/effect/turf_decal/tile/neutral/half/contrasted,
-/turf/open/floor/iron,
-/area/security/courtroom)
-"tFs" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 4
},
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc/auto_name/directional/south,
-/obj/effect/turf_decal/tile/neutral,
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
+/turf/open/floor/iron/dark/smooth_large,
+/area/security/main)
"tFv" = (
/obj/structure/lattice/catwalk,
/turf/open/space/basic,
/area/space/nearstation)
-"tFM" = (
-/obj/structure/chair{
- pixel_y = -2
- },
-/obj/effect/turf_decal/tile/red/half/contrasted,
-/turf/open/floor/iron,
-/area/security/prison)
"tFQ" = (
/obj/effect/landmark/carpspawn,
/turf/open/space/basic,
@@ -79724,6 +81046,31 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/atmos)
+"tHf" = (
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron,
+/area/security/brig)
+"tHk" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/starboard)
"tHw" = (
/obj/structure/chair,
/obj/effect/turf_decal/tile/red/half/contrasted{
@@ -79819,6 +81166,22 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat_interior)
+"tJz" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/holopad,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
+/turf/open/floor/iron,
+/area/security/brig)
"tJK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -79853,15 +81216,67 @@
},
/turf/open/floor/iron,
/area/maintenance/port/fore)
-"tKd" = (
-/obj/structure/filingcabinet,
-/obj/item/folder/documents,
-/obj/machinery/light/small{
- dir = 1
+"tKz" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/airlock/public/glass{
+ name = "Dormitory Block"
+ },
+/turf/open/floor/prison/dark,
+/area/security/prison)
+"tKU" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/iron,
+/area/security/brig)
+"tKV" = (
+/obj/machinery/button/door{
+ desc = "A remote control switch for the medbay foyer.";
+ id = "outerbrig";
+ name = "Brig Exterior Doors Control";
+ normaldoorcontrol = 1;
+ pixel_x = -6;
+ pixel_y = -34;
+ req_access_txt = "63"
+ },
+/obj/machinery/button/door{
+ desc = "A remote control switch for the medbay foyer.";
+ id = "innerbrig";
+ name = "Brig Interior Doors Control";
+ normaldoorcontrol = 1;
+ pixel_x = 6;
+ pixel_y = -34;
+ req_access_txt = "63"
+ },
+/obj/machinery/button/flasher{
+ id = "brigentry";
+ pixel_y = -24
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted,
+/obj/machinery/camera/autoname/directional/south{
+ network = list("ss13","security")
+ },
+/obj/machinery/requests_console{
+ department = "Security";
+ name = "Security RC";
+ pixel_x = 32
+ },
+/obj/machinery/computer/crew{
+ dir = 8
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
-/area/security/nuke_storage)
+/area/security/warden)
"tKX" = (
/obj/structure/table,
/obj/effect/decal/cleanable/dirt,
@@ -79881,6 +81296,20 @@
/obj/effect/spawner/room/threexthree,
/turf/open/floor/plating,
/area/maintenance/aft)
+"tLg" = (
+/obj/machinery/door/airlock/public/glass{
+ name = "Visitation"
+ },
+/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/effect/turf_decal/stripes/closeup,
+/turf/open/floor/prison,
+/area/security/prison)
"tLD" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -79927,20 +81356,16 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/engineering)
-"tMg" = (
-/obj/machinery/door/airlock/security{
- name = "Courtroom";
- req_access_txt = "42"
- },
+"tMi" = (
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/obj/effect/turf_decal/stripes/corner,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/effect/turf_decal/bot,
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/iron,
-/area/security/courtroom)
+/turf/open/floor/prison/dark,
+/area/security/prison)
"tMj" = (
/obj/structure/lattice,
/obj/structure/window/reinforced,
@@ -79956,21 +81381,6 @@
},
/turf/open/floor/iron,
/area/science/misc_lab/range)
-"tMm" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/brig)
"tMo" = (
/obj/structure/chair/fancy/comfy,
/obj/effect/landmark/start/assistant,
@@ -79991,51 +81401,22 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/escape)
-"tMx" = (
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 1
- },
-/obj/machinery/requests_console{
- department = "Security";
- name = "Security RC";
- pixel_x = -32;
- pixel_y = 32
- },
-/mob/living/simple_animal/pet/dog/bullterrier/walter,
-/obj/structure/bed/dogbed/walter,
-/obj/item/radio/intercom{
- pixel_x = -33;
- pixel_y = -1
- },
-/turf/open/floor/iron,
-/area/security/warden)
"tMC" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/effect/turf_decal/box,
/turf/open/floor/iron,
/area/quartermaster/exploration_prep)
-"tMF" = (
-/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)
-"tMG" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+"tMO" = (
+/obj/docking_port/stationary{
+ dwidth = 2;
+ height = 5;
+ id = "laborcamp_home";
+ name = "fore bay 1";
+ roundstart_template = /datum/map_template/shuttle/labour/delta;
+ width = 9
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/brig)
+/turf/open/space/basic,
+/area/space)
"tMY" = (
/obj/structure/cable{
icon_state = "1-2"
@@ -80046,10 +81427,9 @@
/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/atmospherics_engine)
-"tNl" = (
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space)
+"tNF" = (
+/turf/closed/wall,
+/area/security/brig/medbay)
"tNG" = (
/obj/machinery/turretid{
control_area = "/area/ai_monitored/turret_protected/ai_upload";
@@ -80078,6 +81458,13 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/lobby)
+"tOs" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/science/research)
"tOQ" = (
/obj/structure/table/reinforced,
/obj/item/flashlight/lamp,
@@ -80154,19 +81541,6 @@
},
/turf/open/floor/iron/white,
/area/crew_quarters/heads/cmo)
-"tQq" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/iron,
-/area/hallway/secondary/service)
"tQz" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -80197,10 +81571,40 @@
},
/turf/open/floor/iron/dark/textured_half,
/area/maintenance/disposal/incinerator)
+"tQW" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/caution/stand_clear/red,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/turf/open/floor/iron,
+/area/security/brig)
"tRn" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/turf/open/floor/iron/white,
/area/crew_quarters/heads/captain/private)
+"tRx" = (
+/obj/effect/decal/cleanable/dirt,
+/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/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/quartermaster/storage)
"tRC" = (
/obj/structure/table/wood,
/obj/structure/reagent_dispensers/beerkeg,
@@ -80210,6 +81614,18 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/crew_quarters/bar)
+"tRG" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron/dark,
+/area/crew_quarters/heads/hos)
+"tRI" = (
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/main)
"tRM" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -80233,19 +81649,15 @@
},
/turf/open/floor/iron/white,
/area/science/shuttledock)
-"tSx" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
+"tSp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
},
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
},
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
+/turf/open/floor/plating,
+/area/maintenance/starboard)
"tSy" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -80274,6 +81686,17 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/port)
+"tSM" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/iron{
+ heat_capacity = 1e+006
+ },
+/area/crew_quarters/locker)
"tSP" = (
/obj/structure/table/reinforced,
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
@@ -80312,18 +81735,15 @@
},
/turf/open/floor/iron,
/area/maintenance/department/science)
-"tTl" = (
-/obj/structure/rack,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+"tTf" = (
+/obj/machinery/status_display/evac{
+ pixel_x = -32
+ },
+/obj/machinery/light{
+ dir = 8
},
-/obj/item/restraints/handcuffs,
-/obj/item/restraints/handcuffs,
-/obj/item/restraints/handcuffs,
-/obj/item/assembly/flash/handheld,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
-/area/security/brig)
+/area/security/courtroom)
"tTn" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Maintenance Hatch";
@@ -80358,14 +81778,6 @@
},
/turf/open/floor/carpet/grimy,
/area/crew_quarters/dorms)
-"tUn" = (
-/obj/machinery/status_display/evac{
- pixel_x = 32;
- pixel_y = -32
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/carpet/red,
-/area/crew_quarters/heads/hos)
"tUr" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 1
@@ -80382,6 +81794,18 @@
},
/turf/open/floor/catwalk_floor/iron,
/area/engine/atmospherics_engine)
+"tUx" = (
+/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/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/quartermaster/sorting)
"tUJ" = (
/obj/structure/table/wood,
/obj/item/paicard,
@@ -80447,6 +81871,14 @@
/obj/effect/turf_decal/tile/purple,
/turf/open/floor/iron/white,
/area/science/mixing)
+"tVh" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin{
+ pixel_y = 4
+ },
+/obj/item/pen,
+/turf/open/floor/prison,
+/area/security/prison)
"tVp" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
@@ -80471,6 +81903,18 @@
},
/turf/open/floor/iron,
/area/medical/medbay/central)
+"tVN" = (
+/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 = 9
+ },
+/turf/open/floor/iron,
+/area/quartermaster/miningoffice)
"tWh" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -80488,16 +81932,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/storage)
-"tWG" = (
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/brig)
"tWO" = (
/obj/structure/window/reinforced{
dir = 8
@@ -80505,15 +81939,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/atmos)
-"tWQ" = (
-/obj/machinery/airalarm/directional/east{
- pixel_x = 24
- },
-/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)
"tXk" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -80531,6 +81956,34 @@
},
/turf/open/floor/iron/white/corner,
/area/hallway/secondary/entry)
+"tXp" = (
+/obj/effect/landmark/event_spawn,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/crew_quarters/locker)
+"tXs" = (
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark,
+/area/security/execution/transfer)
+"tXK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/iron/dark/textured,
+/area/security/main)
"tXL" = (
/obj/effect/turf_decal/tile/blue/half/contrasted,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -80586,6 +82039,12 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
+"tYL" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"tYP" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light{
@@ -80599,19 +82058,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/storage)
-"tZg" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/structure/reagent_dispensers/peppertank{
- pixel_y = -32
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/brig)
"tZh" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -80687,6 +82133,14 @@
/obj/item/hand_labeler,
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
+"tZM" = (
+/obj/docking_port/stationary/random{
+ id = "pod_lavaland2";
+ name = "lavaland";
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
"tZV" = (
/obj/machinery/door/airlock{
id_tag = "sec Toilet 2";
@@ -80694,6 +82148,17 @@
},
/turf/open/floor/iron/freezer,
/area/security/prison)
+"tZZ" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "hosroom";
+ name = "space shutters"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/crew_quarters/heads/hos)
"uae" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -80712,14 +82177,19 @@
},
/turf/open/floor/carpet/grimy,
/area/library)
-"uaE" = (
-/obj/structure/closet/secure_closet/security,
-/obj/machinery/airalarm/directional/east{
- pixel_x = 24
+"uap" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
},
-/obj/effect/turf_decal/tile/red/anticorner/contrasted,
+/turf/open/floor/iron/textured,
+/area/ai_monitored/security/armory)
+"uaM" = (
+/obj/effect/decal/cleanable/oil,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
-/area/security/checkpoint)
+/area/quartermaster/storage)
"uaQ" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -80734,12 +82204,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/aisat)
-"uaU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/hallway/primary/fore)
"ubf" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/stripes/line,
@@ -80768,17 +82232,6 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/service)
-"ubt" = (
-/obj/item/stack/rods{
- amount = 25
- },
-/obj/machinery/airalarm/directional/east{
- pixel_x = 24
- },
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/ai_monitored/storage/eva)
"ubw" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 1
@@ -80794,14 +82247,30 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
-"ubR" = (
-/obj/structure/cable/yellow{
- icon_state = "0-8"
+"ubK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/power/apc/auto_name/directional/east,
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/starboard)
+"ubV" = (
+/obj/effect/landmark/secequipment,
+/obj/effect/turf_decal/bot,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/railing{
+ dir = 8
+ },
/turf/open/floor/iron/dark,
-/area/security/nuke_storage)
+/area/security/main)
"ubW" = (
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron/grid/steel,
@@ -80820,6 +82289,13 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/turf/open/floor/iron/white,
/area/medical/surgery)
+"ucj" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/closeup,
+/turf/open/floor/iron,
+/area/ai_monitored/security/armory)
"ucl" = (
/obj/effect/turf_decal/tile/blue{
dir = 8
@@ -80869,6 +82345,15 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/crew_quarters/heads/cmo)
+"udB" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 10
+ },
+/turf/open/floor/prison/dark,
+/area/security/prison)
"udG" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=hall4";
@@ -80877,22 +82362,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/port)
-"udU" = (
-/obj/structure/table/glass,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/item/clothing/gloves/color/latex,
-/obj/item/reagent_containers/spray/cleaner{
- pixel_x = 5;
- pixel_y = -1
- },
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 1
- },
-/obj/item/stack/medical/gauze,
-/turf/open/floor/iron/white,
-/area/security/brig)
"udX" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -80919,6 +82388,16 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/maintenance/port/fore)
+"ueC" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/carpet/grimy,
+/area/security/detectives_office)
"ueK" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/structure/cable/yellow{
@@ -80949,10 +82428,22 @@
},
/turf/open/floor/iron/white,
/area/medical/genetics)
-"ueX" = (
-/obj/effect/landmark/prisonspawn,
-/turf/open/floor/prison,
-/area/security/prison)
+"ueZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"ufb" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/hallway/primary/fore)
"ufe" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -81013,6 +82504,28 @@
},
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
+"ufT" = (
+/obj/machinery/holopad,
+/obj/effect/landmark/event_spawn,
+/obj/effect/turf_decal/bot,
+/obj/structure/chair/office{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/lawoffice)
+"uga" = (
+/obj/structure/cable/yellow,
+/obj/machinery/power/apc/auto_name/directional/west{
+ pixel_x = -24
+ },
+/turf/open/floor/iron/smooth,
+/area/tcommsat/server)
+"uge" = (
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/engine/storage)
"ugi" = (
/obj/structure/table/reinforced,
/obj/effect/decal/cleanable/dirt,
@@ -81030,18 +82543,6 @@
},
/turf/open/floor/iron/dark/corner,
/area/engine/atmos)
-"ugl" = (
-/obj/item/radio/intercom{
- pixel_x = 26
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/camera/directional/east{
- c_tag = "Auxiliary Tool Storage";
- name = "engineering camera"
- },
-/obj/effect/turf_decal/tile/yellow/half/contrasted,
-/turf/open/floor/iron,
-/area/storage/tools)
"ugB" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -81073,23 +82574,14 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/atmospherics_engine)
-"uhd" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
+"ugS" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/carpet/grimy,
-/area/security/detectives_office)
+/turf/open/floor/iron,
+/area/storage/tools)
"uhr" = (
/obj/machinery/firealarm{
pixel_y = 24
@@ -81160,29 +82652,6 @@
},
/turf/open/floor/iron/white,
/area/crew_quarters/heads/hor)
-"uii" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Surgery Maintenance";
- req_access_txt = "45"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "quarantineshutters";
- name = "isolation shutters"
- },
-/turf/open/floor/iron,
-/area/maintenance/starboard/aft)
"uit" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -81207,6 +82676,17 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/aisat)
+"uiv" = (
+/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 = 2
+ },
+/turf/open/floor/iron,
+/area/security/brig)
"uiw" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/rack,
@@ -81251,50 +82731,53 @@
"ujf" = (
/turf/open/floor/carpet/grimy,
/area/chapel/office)
-"uji" = (
-/obj/structure/table/reinforced,
-/obj/machinery/recharger,
-/obj/machinery/light,
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 8
+"ujy" = (
+/obj/machinery/computer/med_data{
+ dir = 1
},
-/turf/open/floor/iron,
-/area/security/main)
-"ujT" = (
-/obj/structure/table/reinforced,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+/obj/effect/turf_decal/tile/dark_blue/opposingcorners,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
},
-/obj/item/folder/red,
-/obj/item/storage/secure/briefcase,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/status_display/evac{
+ pixel_y = -32
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/obj/effect/turf_decal/bot,
+/obj/machinery/camera/autoname{
+ dir = 10;
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/iron/white,
+/area/medical/medbay/central)
+"ujB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/status_display/evac{
+ pixel_x = 32
},
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"ukd" = (
/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 = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
/turf/open/floor/iron,
-/area/security/main)
+/area/quartermaster/miningoffice)
"ukr" = (
/obj/effect/turf_decal/stripes/corner{
dir = 8
},
/turf/open/floor/plating/airless,
/area/space/nearstation)
-"ukt" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/security/brig)
"ukx" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -81305,6 +82788,16 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/storage/primary)
+"ukD" = (
+/obj/machinery/door/airlock/external{
+ name = "Labor Camp Shuttle Airlock";
+ req_access_txt = "2";
+ shuttledocked = 1
+ },
+/obj/machinery/atmospherics/pipe/layer_manifold,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/turf/open/floor/plating,
+/area/security/main)
"ukF" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -81314,14 +82807,25 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"ukX" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+"ukS" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light,
+/turf/open/floor/prison/dark,
+/area/security/execution/transfer)
+"ukT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/wood,
-/area/lawoffice)
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron/smooth,
+/area/security/main)
"ulh" = (
/obj/structure/table,
/obj/item/dest_tagger,
@@ -81365,30 +82869,18 @@
/obj/effect/turf_decal/tile/dark_blue/opposingcorners,
/turf/open/floor/iron/white,
/area/medical/medbay/central)
-"ulV" = (
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/closed/wall,
-/area/hallway/primary/starboard)
"ulX" = (
/obj/machinery/holopad,
/turf/open/floor/carpet/grimy,
/area/library)
-"umc" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
+"umd" = (
+/obj/structure/closet/secure_closet/evidence,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark/side{
+ dir = 5
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/storage/tools)
+/area/security/brig)
"umj" = (
/obj/structure/table/reinforced,
/obj/structure/cable/yellow{
@@ -81448,6 +82940,15 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/gateway)
+"umy" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark/side{
+ dir = 6
+ },
+/area/security/brig)
"umI" = (
/obj/structure/sign/warning/biohazard,
/turf/closed/wall,
@@ -81461,15 +82962,54 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/science/xenobiology)
-"uno" = (
-/obj/effect/landmark/secequipment,
-/obj/machinery/light/small{
- dir = 4
+"unz" = (
+/obj/effect/turf_decal/loading_area{
+ dir = 1
},
-/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/engine/atmos)
+"unB" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/cable_coil/white{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stack/cable_coil/white,
+/obj/item/stock_parts/scanning_module{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stock_parts/capacitor,
+/obj/item/stock_parts/manipulator,
+/obj/item/stock_parts/manipulator,
+/obj/machinery/airalarm/directional/east,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
-/area/security/main)
+/area/storage/tech)
+"unH" = (
+/obj/machinery/door/window/brigdoor/security/cell/southright{
+ id = "cell";
+ name = "Solitary confinement";
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/techfloorgrid{
+ dir = 10
+ },
+/turf/open/floor/prison/dark,
+/area/security/prison/shielded)
"unR" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -81518,6 +83058,31 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plating,
/area/maintenance/port/fore)
+"uof" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
+"uoR" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/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 = 8
+ },
+/turf/open/floor/iron/dark,
+/area/crew_quarters/heads/hos)
"upd" = (
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/simple/general/visible{
@@ -81564,18 +83129,6 @@
},
/turf/open/floor/iron,
/area/medical/genetics)
-"uqu" = (
-/obj/structure/table/wood,
-/obj/item/storage/briefcase{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/storage/secure/briefcase,
-/obj/effect/turf_decal/tile/blue/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/security/courtroom)
"uqv" = (
/obj/effect/turf_decal/tile/blue/half/contrasted,
/turf/open/floor/iron/white,
@@ -81598,22 +83151,6 @@
},
/turf/open/floor/iron,
/area/medical/medbay/aft)
-"uqW" = (
-/obj/structure/disposalpipe/sorting/mail{
- dir = 8;
- sortType = 30
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
"uqX" = (
/obj/item/clothing/suit/hazardvest{
desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks.";
@@ -81714,12 +83251,13 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/medical/genetics/cloning)
-"urz" = (
-/obj/effect/turf_decal/tile/red/half/contrasted{
+"ury" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 1
},
-/turf/open/floor/iron,
-/area/security/main)
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/prison,
+/area/security/prison)
"urE" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -81757,6 +83295,17 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/science/nanite)
+"urL" = (
+/obj/structure/closet/crate,
+/obj/item/storage/box/donkpockets,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron{
+ heat_capacity = 1e+006
+ },
+/area/maintenance/starboard)
"urZ" = (
/obj/effect/turf_decal/tile/white,
/obj/structure/cable/yellow{
@@ -81809,6 +83358,19 @@
},
/turf/open/floor/catwalk_floor/iron_smooth,
/area/engine/atmos)
+"usz" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ pixel_y = 22
+ },
+/turf/open/floor/iron/dark,
+/area/security/execution/transfer)
"usG" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -81842,13 +83404,16 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/atmospherics_engine)
-"uts" = (
-/obj/structure/table/wood,
-/obj/item/storage/secure/briefcase,
-/obj/item/book/manual/wiki/security_space_law,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/crew_quarters/heads/hos)
+"utq" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/prison/dark,
+/area/security/execution/transfer)
+"utw" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
+/turf/open/floor/iron/dark/smooth_large,
+/area/security/main)
"utR" = (
/obj/machinery/light{
dir = 4
@@ -81880,16 +83445,6 @@
},
/turf/open/floor/iron,
/area/maintenance/starboard/aft)
-"uuT" = (
-/obj/machinery/door/airlock/engineering/glass{
- name = "Auxiliary Tool Storage";
- req_access_txt = "12"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/turf/open/floor/iron,
-/area/storage/tools)
"uuW" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -81944,12 +83499,6 @@
/obj/machinery/airalarm/directional/south,
/turf/open/floor/iron,
/area/maintenance/aft)
-"uvG" = (
-/obj/effect/turf_decal/tile/black/fourcorners,
-/obj/structure/weightmachine/weightlifter,
-/obj/effect/turf_decal/bot_white,
-/turf/open/floor/iron,
-/area/security/prison)
"uvH" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -81987,15 +83536,6 @@
/mob/living/basic/cockroach,
/turf/open/floor/carpet/grimy,
/area/vacant_room/office)
-"uwc" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/iron,
-/area/security/prison)
"uwl" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -82026,21 +83566,6 @@
/obj/effect/turf_decal/tile/purple/half/contrasted,
/turf/open/floor/iron/white,
/area/janitor)
-"uwD" = (
-/obj/item/storage/box/chemimp{
- pixel_x = 6
- },
-/obj/item/storage/box/trackimp{
- pixel_x = -3
- },
-/obj/item/storage/lockbox/loyalty,
-/obj/structure/table/reinforced,
-/obj/machinery/airalarm/directional/north{
- pixel_y = 22
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/ai_monitored/security/armory)
"uwV" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -82077,6 +83602,12 @@
},
/turf/open/floor/carpet/blue,
/area/crew_quarters/heads/cmo)
+"uxY" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"uyu" = (
/obj/structure/closet/secure_closet/personal,
/obj/effect/turf_decal/box,
@@ -82096,15 +83627,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/fitness/recreation)
-"uyy" = (
-/obj/item/radio/intercom{
- pixel_y = -26
- },
-/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"uyz" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -82137,19 +83659,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/storage/tech)
-"uyS" = (
-/obj/effect/spawner/structure/window/reinforced/prison,
-/obj/machinery/door/poddoor/preopen{
- id = "Prisongate"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/security/prison)
"uyU" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -82163,19 +83672,18 @@
},
/turf/open/floor/iron,
/area/maintenance/port/fore)
-"uzf" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/landmark/start/head_of_security,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
+"uzA" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/window/northleft{
+ name = "Security Delivery";
+ req_access_txt = "63"
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 8
+/obj/structure/window/reinforced{
+ dir = 4
},
-/turf/open/floor/carpet/red,
-/area/crew_quarters/heads/hos)
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/security/brig)
"uzB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -82195,18 +83703,6 @@
/obj/machinery/power/apc/auto_name/directional/north,
/turf/open/floor/carpet/grimy,
/area/crew_quarters/bar/atrium)
-"uzU" = (
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/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,
-/area/security/brig)
"uzW" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 1
@@ -82256,14 +83752,6 @@
},
/turf/open/floor/catwalk_floor/iron,
/area/science/storage)
-"uBS" = (
-/obj/structure/chair/fancy{
- dir = 8;
- name = "Judge"
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/security/courtroom)
"uCd" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 8
@@ -82271,6 +83759,25 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/quartermaster/storage)
+"uCe" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/iron,
+/area/crew_quarters/heads/hor)
"uCN" = (
/obj/structure/rack,
/obj/item/book/manual/wiki/engineering_guide,
@@ -82283,12 +83790,6 @@
},
/turf/open/floor/iron,
/area/maintenance/port)
-"uCU" = (
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/prison)
"uDc" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -82307,6 +83808,15 @@
},
/turf/open/floor/plating,
/area/maintenance/port)
+"uDh" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/science/research)
"uDp" = (
/obj/structure/table/reinforced,
/obj/item/pen,
@@ -82331,18 +83841,16 @@
/obj/item/clothing/mask/breath/medical,
/turf/open/floor/iron/dark,
/area/maintenance/department/medical/morgue)
-"uDu" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
+"uDA" = (
/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 4
+ dir = 8
},
-/turf/open/floor/iron,
-/area/security/main)
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/prison/dark,
+/area/security/prison)
"uDH" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -82532,24 +84040,6 @@
},
/turf/open/floor/iron,
/area/ai_monitored/storage/eva)
-"uFZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 9
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/hydroponics)
"uGa" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
@@ -82560,6 +84050,16 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
+"uGi" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/open/floor/iron/dark,
+/area/security/execution/transfer)
"uGm" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -82598,44 +84098,29 @@
},
/turf/open/floor/iron,
/area/science/research)
-"uGI" = (
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/brig)
-"uGJ" = (
-/obj/structure/table/reinforced,
-/turf/open/floor/prison,
-/area/security/prison)
"uGU" = (
/obj/machinery/smartfridge{
name = "Sample Storage"
},
/turf/closed/wall,
/area/medical/virology)
-"uGY" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
+"uHw" = (
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/structure/chair/office/light{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
-"uHv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
+/turf/open/floor/iron/white,
+/area/security/brig/medbay)
+"uHy" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/turf/open/floor/prison,
-/area/security/prison)
+/obj/effect/landmark/start/security_officer,
+/turf/open/floor/iron/techmaint,
+/area/security/main)
"uHB" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -82712,14 +84197,17 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/aft)
-"uIc" = (
-/obj/structure/table/wood,
-/obj/item/folder/red,
-/obj/item/pen,
-/obj/effect/turf_decal/tile/green/half/contrasted{
- dir = 1
+"uIl" = (
+/obj/structure/table,
+/obj/item/storage/box/donkpockets,
+/obj/structure/sign/poster/official/report_crimes{
+ pixel_y = -32
},
-/turf/open/floor/iron,
+/obj/structure/extinguisher_cabinet{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/iron/dark,
/area/security/courtroom)
"uIt" = (
/obj/machinery/firealarm{
@@ -82775,15 +84263,6 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/aft)
-"uJd" = (
-/obj/structure/table/reinforced,
-/obj/item/reagent_containers/food/drinks/britcup{
- pixel_x = -5;
- pixel_y = 1
- },
-/obj/machinery/light,
-/turf/open/floor/prison,
-/area/security/prison)
"uJk" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
@@ -82876,23 +84355,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint)
-"uKy" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/iron,
-/area/security/brig)
-"uKC" = (
-/obj/effect/turf_decal/tile/black/fourcorners,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/security/prison)
"uLi" = (
/obj/structure/cable/yellow{
icon_state = "2-4"
@@ -82949,24 +84411,6 @@
/obj/item/storage/briefcase,
/turf/open/floor/carpet/grimy,
/area/vacant_room/office)
-"uMI" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/brig)
"uMP" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -82980,6 +84424,15 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
+"uMW" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"uNc" = (
/obj/structure/sink{
dir = 4;
@@ -82995,17 +84448,6 @@
},
/turf/open/floor/iron,
/area/science/research)
-"uNh" = (
-/obj/machinery/holopad,
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/quartermaster/miningoffice)
"uNj" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -83128,15 +84570,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"uON" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/brown/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/quartermaster/qm)
"uOP" = (
/obj/structure/window/reinforced{
dir = 8
@@ -83151,18 +84584,29 @@
},
/turf/open/floor/catwalk_floor/iron,
/area/engine/atmos)
-"uOY" = (
-/obj/machinery/light,
-/obj/structure/disposalpipe/segment{
- dir = 4
+"uPe" = (
+/obj/effect/turf_decal/siding/wood{
+ layer = 1
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/turf/open/floor/wood,
+/area/security/detectives_office)
+"uPu" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/stack/sheet/mineral/plasma{
+ amount = 20
},
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/tile/neutral,
-/turf/open/floor/iron,
-/area/hallway/primary/central)
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
+ },
+/obj/structure/cable/yellow,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/power/apc/auto_name/directional/south,
+/turf/open/floor/iron/dark,
+/area/ai_monitored/turret_protected/aisat_interior)
"uPv" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/girder/displaced,
@@ -83240,6 +84684,28 @@
},
/turf/open/floor/iron,
/area/maintenance/starboard)
+"uQv" = (
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/effect/turf_decal/bot,
+/obj/structure/closet/bombcloset/security,
+/turf/open/floor/iron/smooth,
+/area/security/main)
+"uQR" = (
+/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/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/quartermaster/storage)
"uRf" = (
/obj/effect/landmark/start/clown,
/obj/effect/turf_decal/tile/red/opposingcorners,
@@ -83248,6 +84714,20 @@
},
/turf/open/floor/iron,
/area/crew_quarters/theatre)
+"uRj" = (
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27
+ },
+/obj/item/kirbyplants{
+ icon_state = "plant-22";
+ name = "legally obbligatory mapper potted plant";
+ desc = "A little bit of nature contained in a pot. This one is located here due to acting as a space filler for mappers and whatnot"
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"uRN" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -83282,34 +84762,27 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/chapel/office)
-"uSt" = (
-/obj/item/kirbyplants/random,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/brig)
"uSu" = (
/obj/structure/flora/ausbushes/fullgrass,
/obj/structure/flora/ausbushes/sparsegrass,
/obj/machinery/light/floor,
/turf/open/floor/grass,
/area/quartermaster/exploration_prep)
-"uSN" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1;
- name = "Connector Port (Air Supply)"
+"uSR" = (
+/obj/machinery/button/door{
+ id = "teleporterhubshutters";
+ name = "Teleporter Shutters";
+ pixel_y = 26
},
-/obj/effect/turf_decal/bot,
-/obj/machinery/status_display/evac{
- pixel_y = -32
+/obj/machinery/bluespace_beacon,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
},
-/obj/machinery/camera/autoname{
- dir = 5;
- network = list("ss13","medbay")
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/open/floor/iron,
-/area/medical/patients_rooms)
+/area/teleporter)
"uTf" = (
/obj/structure/disposalpipe/segment{
dir = 6
@@ -83335,23 +84808,11 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"uTE" = (
-/obj/machinery/light/small,
-/obj/structure/toilet{
- dir = 8
- },
-/turf/open/floor/iron/dark,
+"uTK" = (
+/obj/machinery/hydroponics/constructable,
+/obj/item/seeds/redbeet,
+/turf/open/floor/prison/dark,
/area/security/prison)
-"uTI" = (
-/obj/structure/chair/office{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/qm)
"uTP" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -83365,16 +84826,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/locker)
-"uTQ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 9
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/iron,
-/area/ai_monitored/security/armory)
"uUa" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -83396,57 +84847,57 @@
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
-"uUk" = (
+"uUG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
-/turf/open/floor/carpet/grimy,
-/area/security/detectives_office)
-"uUm" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+/turf/open/floor/plating,
+/area/maintenance/port)
+"uUH" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
-/area/science/lab)
-"uUn" = (
+/area/hallway/primary/aft)
+"uUK" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/closed/wall,
+/area/medical/morgue)
+"uUZ" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/effect/turf_decal/stripes/line{
+/obj/structure/disposalpipe/segment{
dir = 8
},
-/obj/effect/turf_decal/tile/red{
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
dir = 1
},
-/turf/open/floor/iron,
-/area/security/brig)
-"uUG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
+/turf/open/floor/iron/dark,
+/area/security/main)
+"uVe" = (
+/obj/machinery/holopad,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/start/quartermaster,
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
-/turf/open/floor/plating,
-/area/maintenance/port)
-"uUH" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
-/area/hallway/primary/aft)
-"uUK" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/closed/wall,
-/area/medical/morgue)
+/area/quartermaster/storage)
"uVi" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 1
@@ -83459,6 +84910,22 @@
},
/turf/open/floor/iron/white,
/area/science/research)
+"uVk" = (
+/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/plating,
+/area/maintenance/starboard)
+"uVn" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/quartermaster/miningoffice)
"uVo" = (
/obj/machinery/gateway{
dir = 5
@@ -83488,20 +84955,6 @@
},
/turf/open/floor/iron,
/area/maintenance/port/aft)
-"uVH" = (
-/obj/structure/table/reinforced,
-/obj/machinery/microwave{
- pixel_x = -3;
- pixel_y = 6
- },
-/obj/effect/turf_decal{
- dir = 1
- },
-/obj/effect/turf_decal{
- dir = 8
- },
-/turf/open/floor/prison,
-/area/security/prison)
"uVL" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -83608,30 +85061,27 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/port/fore)
-"uWK" = (
-/obj/machinery/door/airlock/research{
- name = "Research and Development Lab";
- req_one_access_txt = "7;29"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "rdrnd";
- name = "Research and Development Shutters"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
+"uWF" = (
+/obj/structure/table/reinforced,
+/obj/item/radio{
+ pixel_x = -5;
+ pixel_y = 5
},
-/obj/effect/turf_decal/stripes/line{
- dir = 4
+/obj/item/radio{
+ pixel_x = 5;
+ pixel_y = 5
},
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/obj/item/radio,
+/obj/machinery/light{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+/obj/machinery/status_display/evac{
+ pixel_y = 32
},
-/turf/open/floor/iron,
-/area/science/lab)
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/obj/item/flashlight/seclite,
+/turf/open/floor/iron/dark,
+/area/security/main)
"uWP" = (
/obj/machinery/vending/cigarette,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -83649,6 +85099,14 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/fitness/recreation)
+"uXt" = (
+/obj/structure/cable/yellow,
+/obj/item/kirbyplants/random,
+/obj/machinery/light,
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron/dark,
+/area/ai_monitored/turret_protected/ai_upload)
"uXJ" = (
/obj/structure/table/wood,
/obj/item/food/chips,
@@ -83659,6 +85117,16 @@
/obj/structure/transit_tube/crossing/horizontal,
/turf/open/space,
/area/space/nearstation)
+"uYf" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron,
+/area/teleporter)
"uYg" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
@@ -83698,6 +85166,15 @@
},
/turf/open/floor/plating,
/area/maintenance/port/fore)
+"uZm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/hallway/primary/starboard)
"uZy" = (
/obj/effect/turf_decal/tile/blue{
dir = 8
@@ -83754,21 +85231,25 @@
"vau" = (
/turf/closed/wall,
/area/maintenance/department/medical/morgue)
-"vaH" = (
+"vaz" = (
+/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/open/floor/iron,
-/area/security/brig)
+/area/quartermaster/warehouse)
"vbb" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock{
@@ -83783,17 +85264,13 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/crew_quarters/toilet/restrooms)
-"vbk" = (
-/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/junction/flip{
- dir = 2
+"vbg" = (
+/obj/item/bikehorn/rubberducky,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
},
-/turf/open/floor/iron,
-/area/security/brig)
+/turf/open/floor/iron/freezer,
+/area/security/prison)
"vbA" = (
/obj/structure/table/glass,
/obj/effect/turf_decal/tile/yellow/opposingcorners,
@@ -83855,13 +85332,6 @@
},
/turf/open/floor/wood,
/area/bridge/meeting_room/council)
-"vbT" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/crew_quarters/heads/hos)
"vbY" = (
/obj/machinery/suit_storage_unit/exploration,
/obj/effect/turf_decal/delivery,
@@ -83901,10 +85371,14 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/atmos)
-"vcY" = (
-/obj/effect/turf_decal/tile/neutral/opposingcorners,
-/turf/open/floor/iron,
-/area/crew_quarters/cryopods)
+"vda" = (
+/obj/machinery/status_display/evac{
+ pixel_x = 32
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted,
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron/dark,
+/area/security/main)
"vdm" = (
/obj/item/kirbyplants/random,
/obj/effect/turf_decal/tile/blue/opposingcorners{
@@ -83932,6 +85406,13 @@
/obj/effect/turf_decal/tile/brown/half/contrasted,
/turf/open/floor/iron,
/area/quartermaster/warehouse)
+"vdt" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/engine/break_room)
"vdx" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
@@ -83991,6 +85472,22 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/hallway/secondary/service)
+"vet" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"vey" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/camera/directional/south{
+ c_tag = "Cargo Bay - Aft Starboard";
+ name = "cargo camera"
+ },
+/turf/open/floor/iron,
+/area/quartermaster/storage)
"veA" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/start/janitor,
@@ -84029,6 +85526,17 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
+"vfj" = (
+/obj/structure/chair/fancy/bench/right{
+ dir = 8
+ },
+/obj/effect/landmark/start/security_officer,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron/dark,
+/area/security/main)
"vfp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -84078,6 +85586,13 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai)
+"vfZ" = (
+/obj/machinery/computer/cargo/request{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/iron/dark,
+/area/security/main)
"vge" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/oil,
@@ -84123,6 +85638,43 @@
/obj/machinery/telecomms/bus/preset_exploration,
/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/server)
+"vhk" = (
+/obj/structure/table/reinforced,
+/obj/item/book/manual/chef_recipes{
+ pixel_x = 2;
+ pixel_y = 6
+ },
+/obj/item/book/granter/crafting_recipe/cooking_sweets_101,
+/obj/machinery/newscaster{
+ pixel_x = -32
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/prison,
+/area/security/prison)
+"vhp" = (
+/obj/structure/table/reinforced,
+/obj/item/tank/internals/emergency_oxygen/engi{
+ pixel_x = -5
+ },
+/obj/item/tank/internals/emergency_oxygen/engi{
+ pixel_x = 5
+ },
+/obj/item/geiger_counter,
+/obj/item/geiger_counter,
+/obj/machinery/airalarm/directional/east,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron,
+/area/engine/atmospherics_engine)
"vht" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
@@ -84176,26 +85728,13 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/locker)
-"vjn" = (
-/obj/machinery/cell_charger,
-/obj/structure/table/reinforced,
-/obj/machinery/status_display/ai{
- pixel_y = 32
- },
-/obj/item/stock_parts/cell/high,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/item/rcl/pre_loaded,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/crew_quarters/heads/chief)
-"vjt" = (
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 1
+"vje" = (
+/obj/structure/chair/office,
+/obj/effect/turf_decal/siding/wood{
+ dir = 10
},
-/turf/open/floor/iron,
-/area/security/prison)
+/turf/open/floor/wood,
+/area/security/detectives_office)
"vju" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 4
@@ -84230,14 +85769,6 @@
dir = 1
},
/area/hallway/secondary/entry)
-"vjE" = (
-/obj/structure/chair/office{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/brig)
"vjG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -84255,19 +85786,6 @@
icon_state = "chapel"
},
/area/chapel/main)
-"vjT" = (
-/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/effect/turf_decal/tile/red,
-/turf/open/floor/iron,
-/area/security/brig)
"vjX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
@@ -84325,6 +85843,26 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/quartermaster/exploration_prep)
+"vkU" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/hydroponics)
+"vld" = (
+/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/effect/turf_decal/bot,
+/obj/machinery/holopad,
+/turf/open/floor/iron/dark,
+/area/security/main)
"vli" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -84346,35 +85884,28 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"vlr" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2,
-/turf/open/floor/iron,
-/area/quartermaster/miningoffice)
-"vlt" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
+"vlq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
/turf/open/floor/iron,
-/area/security/main)
+/area/hallway/primary/fore)
"vlB" = (
/obj/effect/turf_decal/tile/blue,
/obj/effect/turf_decal/bot,
/turf/open/floor/iron/white,
/area/medical/medbay/lobby)
+"vlC" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/starboard)
"vlF" = (
/obj/structure/table,
/obj/item/clothing/under/suit/sl{
@@ -84410,6 +85941,15 @@
},
/turf/open/floor/iron,
/area/hallway/primary/port)
+"vmg" = (
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/prison/dark,
+/area/security/prison)
"vmt" = (
/obj/structure/table/reinforced,
/obj/item/flashlight/lamp,
@@ -84438,6 +85978,17 @@
},
/turf/open/floor/iron,
/area/maintenance/port/fore)
+"vmN" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "hosroom";
+ name = "space shutters"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/crew_quarters/heads/hos)
"vmR" = (
/obj/item/kirbyplants/random,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
@@ -84446,14 +85997,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/atmos)
-"vmY" = (
-/obj/structure/closet/secure_closet/security/sec,
-/obj/effect/turf_decal/bot,
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/security/main)
"vmZ" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -84470,22 +86013,6 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"vnj" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/machinery/light,
-/obj/item/kirbyplants{
- icon_state = "plant-21"
- },
-/obj/machinery/camera/autoname{
- dir = 5;
- network = list("ss13","medbay")
- },
-/obj/machinery/power/apc/auto_name/directional/south,
-/obj/structure/cable/yellow,
-/turf/open/floor/iron/white,
-/area/medical/medbay/lobby)
"vnn" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
@@ -84494,6 +86021,16 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/atmos)
+"vnp" = (
+/obj/structure/table,
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/rods/fifty,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/storage/tools)
"vnz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 9
@@ -84563,6 +86100,14 @@
},
/turf/open/floor/iron/white/corner,
/area/hallway/secondary/entry)
+"voM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/turf/open/floor/iron/smooth,
+/area/security/main)
"voT" = (
/obj/effect/landmark/event_spawn,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -84587,6 +86132,10 @@
},
/turf/closed/wall/r_wall,
/area/engine/atmos)
+"vph" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/crew_quarters/heads/hor)
"vpl" = (
/obj/structure/table/reinforced,
/obj/item/paper_bin,
@@ -84594,21 +86143,6 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/fitness/recreation)
-"vpF" = (
-/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/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
"vpP" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -84626,39 +86160,32 @@
/obj/effect/turf_decal/tile/blue,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"vpT" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/machinery/door/airlock/security/glass{
- name = "Brig";
- req_access_txt = "63"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
+"vpU" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
dir = 4
},
-/obj/machinery/door/firedoor,
+/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
- },
+/obj/effect/turf_decal/stripes/closeup,
/turf/open/floor/iron,
-/area/security/brig)
+/area/ai_monitored/security/armory)
"vpZ" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/secondary/exit/departure_lounge)
+"vqi" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/yellow,
+/obj/item/pen,
+/obj/effect/turf_decal/bot,
+/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"vql" = (
/obj/machinery/door/airlock{
name = "Auxiliary Office";
@@ -84672,6 +86199,16 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/wood,
/area/vacant_room/office)
+"vqA" = (
+/obj/structure/table/wood,
+/obj/item/storage/briefcase{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/secure/briefcase,
+/obj/effect/turf_decal/tile/blue/half,
+/turf/open/floor/iron/large,
+/area/security/courtroom)
"vqK" = (
/obj/effect/turf_decal/tile/red/half/contrasted{
dir = 8
@@ -84711,6 +86248,21 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/gravity_generator)
+"vqY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 4
+ },
+/area/security/main)
"vrg" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/atmospherics/pipe/simple/green/visible{
@@ -84736,20 +86288,21 @@
},
/turf/open/floor/iron/dark,
/area/crew_quarters/heads/cmo)
-"vrL" = (
-/obj/machinery/holopad,
+"vrJ" = (
+/obj/machinery/light{
+ dir = 8
+ },
/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 8
+/obj/machinery/newscaster{
+ pixel_x = -32
},
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
},
-/turf/open/floor/iron,
-/area/hallway/secondary/service)
+/turf/open/floor/wood/big,
+/area/lawoffice)
"vrP" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1
@@ -84757,6 +86310,15 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/science/xenobiology)
+"vrT" = (
+/obj/structure/chair/office{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"vse" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -84770,6 +86332,29 @@
},
/turf/open/floor/plating,
/area/maintenance/port/aft)
+"vsf" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron/smooth,
+/area/security/main)
+"vsg" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/hallway/primary/fore)
"vsB" = (
/obj/structure/table/reinforced,
/obj/item/paper_bin,
@@ -84789,25 +86374,6 @@
},
/turf/open/floor/iron/dark,
/area/science/explab)
-"vsC" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/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/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/engine/break_room)
"vsR" = (
/obj/effect/turf_decal/tile/red/half/contrasted{
dir = 4
@@ -84857,14 +86423,6 @@
/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint/science/research)
-"vtj" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/courtroom)
"vtk" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable/yellow{
@@ -84874,23 +86432,20 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/space,
/area/space/nearstation)
-"vto" = (
-/obj/structure/disposalpipe/sorting/mail{
- dir = 4;
- name = "Research Junction";
- sortType = 12
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 1
+"vtn" = (
+/obj/machinery/camera/directional/north{
+ network = list("ss13","security")
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
+/obj/structure/chair/fancy/comfy{
+ buildstackamount = 0;
+ color = "#742925"
},
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 4
},
+/obj/machinery/firealarm/directional/east,
/turf/open/floor/iron,
-/area/hallway/primary/central)
+/area/security/brig)
"vtt" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/atmospherics/pipe/simple/general/visible{
@@ -84901,17 +86456,6 @@
/obj/machinery/airalarm/directional/west,
/turf/open/floor/catwalk_floor/iron,
/area/engine/atmospherics_engine)
-"vtw" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/closet/secure_closet/security/sec,
-/obj/structure/sign/poster/official/help_others{
- pixel_x = 32
- },
-/obj/effect/turf_decal/tile/red/anticorner/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/main)
"vtI" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/segment{
@@ -84954,6 +86498,10 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/atmospherics_engine)
+"vuB" = (
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/turf/open/floor/iron/textured,
+/area/security/brig)
"vuH" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -84979,6 +86527,20 @@
},
/turf/open/floor/catwalk_floor,
/area/maintenance/solars/port/aft)
+"vuL" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/structure/disposalpipe/sorting/wrap{
+ dir = 2
+ },
+/turf/open/floor/iron,
+/area/quartermaster/sorting)
"vuW" = (
/obj/effect/turf_decal/tile/purple/half/contrasted{
dir = 8
@@ -85018,6 +86580,18 @@
},
/turf/open/floor/catwalk_floor/iron_smooth,
/area/engine/atmos)
+"vvI" = (
+/obj/effect/turf_decal{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/prison,
+/area/security/prison)
+"vvO" = (
+/turf/open/floor/iron/dark,
+/area/security/courtroom)
"vvU" = (
/obj/machinery/light/small{
dir = 1
@@ -85074,23 +86648,15 @@
},
/turf/open/floor/iron/white,
/area/medical/genetics/cloning)
-"vwg" = (
+"vwj" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "4-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
- },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
-/area/quartermaster/storage)
+/area/quartermaster/miningoffice)
"vwz" = (
/obj/structure/chair/office,
/obj/effect/landmark/start/cargo_technician,
@@ -85152,6 +86718,29 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"vxY" = (
+/obj/machinery/vending/wardrobe/law_wardrobe,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 8
+ },
+/turf/open/floor/wood/big,
+/area/lawoffice)
+"vye" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/security/detectives_office)
"vyB" = (
/obj/effect/turf_decal/siding/wood,
/obj/machinery/door/airlock/medical{
@@ -85240,6 +86829,38 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/plating,
/area/maintenance/port/fore)
+"vyT" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
+"vzf" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
+"vzn" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/security/prison)
"vzo" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -85259,6 +86880,30 @@
},
/turf/open/floor/iron/white,
/area/science/mixing)
+"vAj" = (
+/obj/structure/table/glass,
+/obj/machinery/door/window/eastleft{
+ dir = 1;
+ name = "First-Aid Supplies";
+ red_alert_access = 1;
+ req_access_txt = "5"
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/obj/effect/loot_jobscale/medical/medkits{
+ pixel_x = -6;
+ pixel_y = 2
+ },
+/obj/effect/loot_jobscale/medical/medkits{
+ pixel_x = 5
+ },
+/obj/machinery/camera/autoname{
+ dir = 10;
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/iron,
+/area/medical/storage)
"vAp" = (
/obj/structure/cable/yellow{
icon_state = "2-4"
@@ -85295,33 +86940,15 @@
/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/atmospherics_engine)
-"vAD" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock{
- name = "Law Office";
- req_access_txt = "38"
- },
-/obj/effect/turf_decal/bot,
-/obj/machinery/door/firedoor,
-/turf/open/floor/iron,
-/area/lawoffice)
-"vAN" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+"vAM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
dir = 4
},
-/obj/effect/turf_decal/tile/yellow/half/contrasted{
- dir = 1
- },
+/obj/structure/disposalpipe/segment,
/turf/open/floor/iron,
-/area/hallway/primary/port)
+/area/quartermaster/miningoffice)
"vAR" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/obj/structure/cable/yellow{
@@ -85376,6 +87003,15 @@
},
/turf/open/floor/iron,
/area/maintenance/starboard/aft)
+"vBs" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ pixel_x = -26
+ },
+/turf/open/floor/iron/dark,
+/area/security/courtroom)
"vBM" = (
/obj/machinery/disposal/bin,
/obj/effect/turf_decal/bot,
@@ -85384,28 +87020,29 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
-"vBZ" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/camera/directional/north{
- c_tag = "Security - Prison"
- },
+"vBR" = (
+/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
+ dir = 6
},
-/obj/effect/turf_decal/tile/red,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+ dir = 6
},
/turf/open/floor/iron,
-/area/security/brig)
+/area/quartermaster/miningoffice)
+"vCj" = (
+/obj/item/radio/intercom{
+ desc = "Talk through this. It looks like it has been modified to not broadcast.";
+ name = "Prison Intercom (General)";
+ pixel_x = -25;
+ pixel_y = -2;
+ prison_radio = 1
+ },
+/obj/structure/table,
+/obj/item/paper,
+/obj/item/pen,
+/turf/open/floor/iron/tech,
+/area/security/prison/shielded)
"vCq" = (
/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
dir = 6
@@ -85449,11 +87086,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/maintenance/port/aft)
-"vDP" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/tile/red/half/contrasted,
-/turf/open/floor/iron,
-/area/hallway/secondary/service)
"vDY" = (
/obj/structure/chair/office{
dir = 4
@@ -85469,6 +87101,16 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/aisat)
+"vER" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "executionfireblast"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/turf/open/floor/plating,
+/area/security/execution/transfer)
"vES" = (
/obj/machinery/light{
dir = 4
@@ -85505,15 +87147,6 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/supply)
-"vFe" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/iron,
-/area/security/prison)
"vFF" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -85523,10 +87156,6 @@
},
/turf/open/floor/carpet/grimy,
/area/chapel/main)
-"vFH" = (
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/courtroom)
"vFJ" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/camera/directional/east{
@@ -85603,6 +87232,11 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/secondary/exit/departure_lounge)
+"vGc" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark,
+/area/security/main)
"vGv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 10
@@ -85619,21 +87253,6 @@
/obj/machinery/power/apc/auto_name/directional/north,
/turf/open/floor/iron,
/area/engine/gravity_generator)
-"vGE" = (
-/obj/structure/table/glass,
-/obj/machinery/computer/med_data/laptop{
- dir = 4;
- pixel_x = 3;
- pixel_y = 2
- },
-/obj/structure/sign/poster/official/cleanliness{
- pixel_y = 32
- },
-/obj/effect/turf_decal/tile/red/anticorner/contrasted{
- dir = 1
- },
-/turf/open/floor/iron/white,
-/area/security/brig)
"vGN" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -85683,17 +87302,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/bridge)
-"vHd" = (
-/obj/effect/spawner/structure/window/reinforced/prison,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/door/poddoor/preopen{
- id = "Prisongate"
- },
-/obj/effect/turf_decal/tile/red/half/contrasted,
-/turf/open/floor/plating,
-/area/security/prison)
"vHo" = (
/obj/structure/table/wood,
/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{
@@ -85715,6 +87323,13 @@
icon_state = "wood-broken4"
},
/area/crew_quarters/dorms)
+"vHI" = (
+/obj/machinery/door/window/eastright{
+ name = "Detective's Morgue";
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/security/detectives_office)
"vIc" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -85759,6 +87374,30 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/captain)
+"vJd" = (
+/obj/item/kirbyplants{
+ icon_state = "plant-21"
+ },
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/fore)
+"vJe" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/iron,
+/area/maintenance/starboard)
+"vJj" = (
+/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/science/research)
"vJu" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Nanite Lab Maintenance";
@@ -85811,6 +87450,16 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
/turf/open/floor/wood,
/area/quartermaster/exploration_prep)
+"vKe" = (
+/obj/structure/bed{
+ dir = 8
+ },
+/obj/item/bedsheet/brown,
+/obj/machinery/camera/autoname/directional/west{
+ network = list("ss13","prison")
+ },
+/turf/open/floor/iron/tech,
+/area/security/prison/shielded)
"vKg" = (
/obj/structure/chair/office,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -85852,6 +87501,16 @@
},
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
+"vKB" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/starboard)
"vKI" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -85903,18 +87562,6 @@
heat_capacity = 1e+006
},
/area/maintenance/starboard/aft)
-"vLp" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/airalarm/directional/east{
- pixel_x = 24
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral,
-/turf/open/floor/iron,
-/area/hallway/primary/aft)
"vLr" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -85951,14 +87598,6 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
-"vLQ" = (
-/obj/machinery/camera/motion/directional/west{
- c_tag = "Vault";
- network = list("vault")
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/nuke_storage)
"vLV" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -85993,6 +87632,27 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/atmos)
+"vMP" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/prison/dark,
+/area/security/prison)
"vMR" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/tile/purple/half/contrasted,
@@ -86006,6 +87666,18 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plating,
/area/maintenance/port)
+"vNg" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp,
+/obj/machinery/button/door{
+ id = "hosroom";
+ name = "Privacy Control";
+ pixel_x = 24;
+ pixel_y = -24;
+ req_access_txt = "58"
+ },
+/turf/open/floor/carpet/red,
+/area/crew_quarters/heads/hos)
"vNo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -86033,22 +87705,12 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/chapel/office)
-"vNz" = (
-/obj/effect/turf_decal/tile/red/anticorner/contrasted{
- dir = 8
- },
-/obj/machinery/airalarm/directional/south{
- pixel_y = -22
- },
-/turf/open/floor/iron,
-/area/security/main)
-"vOb" = (
-/obj/machinery/computer/secure_data{
- dir = 1
- },
+"vNN" = (
+/obj/structure/closet/secure_closet/security,
+/obj/machinery/airalarm/directional/east,
/obj/effect/turf_decal/tile/red/anticorner/contrasted,
/turf/open/floor/iron,
-/area/security/main)
+/area/security/checkpoint)
"vOc" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 1
@@ -86076,19 +87738,6 @@
/obj/structure/sign/departments/medbay/alt,
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/cmo)
-"vOD" = (
-/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/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/brig)
"vOH" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -86121,14 +87770,6 @@
},
/turf/open/floor/iron,
/area/quartermaster/exploration_prep)
-"vPs" = (
-/obj/item/storage/box/firingpins,
-/obj/item/storage/box/firingpins,
-/obj/item/key/security,
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/ai_monitored/security/armory)
"vPv" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/curtain/directional{
@@ -86210,6 +87851,15 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/catwalk_floor/iron_smooth,
/area/engine/atmos)
+"vRk" = (
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron/dark,
+/area/security/prison)
"vRF" = (
/obj/machinery/light{
dir = 4
@@ -86217,23 +87867,15 @@
/obj/effect/turf_decal/tile/yellow/half/contrasted,
/turf/open/floor/iron,
/area/engine/break_room)
-"vRL" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/effect/landmark/event_spawn,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 6
+"vRR" = (
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "aiuploadwindow";
+ name = "AI Upload Lockdown Door"
},
-/obj/effect/turf_decal/tile/red/half/contrasted,
-/turf/open/floor/iron,
-/area/security/main)
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/ai_upload)
"vSn" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -86288,6 +87930,32 @@
},
/turf/open/floor/circuit/green,
/area/ai_monitored/turret_protected/ai)
+"vST" = (
+/obj/structure/cable/yellow,
+/obj/machinery/door/poddoor/preopen{
+ id = "Prisongate"
+ },
+/obj/effect/spawner/structure/window/reinforced/prison,
+/turf/open/floor/plating,
+/area/security/prison)
+"vSX" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/security/brig)
"vSZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -86349,22 +88017,6 @@
},
/turf/open/floor/iron,
/area/maintenance/solars/starboard/fore)
-"vTE" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/miningoffice)
"vTF" = (
/obj/effect/landmark/start/cook,
/obj/structure/disposalpipe/segment{
@@ -86384,6 +88036,15 @@
},
/turf/open/floor/carpet/grimy,
/area/library)
+"vTR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/quartermaster/storage)
"vUc" = (
/obj/structure/chair/office{
dir = 8
@@ -86405,13 +88066,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/chapel/main)
-"vUw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/turf/open/floor/prison,
-/area/security/prison)
"vUC" = (
/obj/structure/disposalpipe/segment{
dir = 6
@@ -86465,18 +88119,19 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"vUW" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 10
+"vVc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
/turf/open/floor/iron,
-/area/quartermaster/miningoffice)
+/area/science/lab)
"vVf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
dir = 4
@@ -86532,6 +88187,14 @@
/obj/effect/turf_decal/tile/blue/anticorner/contrasted,
/turf/open/floor/iron,
/area/engine/atmos)
+"vWb" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/hallway/primary/port)
"vWe" = (
/obj/structure/cable{
icon_state = "0-2"
@@ -86602,6 +88265,16 @@
},
/turf/open/floor/carpet/grimy,
/area/library)
+"vWO" = (
+/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
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
"vWT" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -86633,21 +88306,6 @@
},
/turf/open/floor/iron,
/area/security/checkpoint)
-"vXN" = (
-/obj/machinery/photocopier,
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Head of Security's Desk";
- departmentType = 5;
- name = "Head of Security RC";
- pixel_y = 32
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/crew_quarters/heads/hos)
"vXR" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -86721,6 +88379,23 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/maintenance/port/fore)
+"vYK" = (
+/obj/machinery/holopad,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/hallway/secondary/service)
"vYM" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 8
@@ -86744,15 +88419,6 @@
},
/turf/open/floor/iron/white,
/area/medical/genetics)
-"vYT" = (
-/obj/structure/table/wood,
-/obj/item/folder/blue,
-/obj/item/pen,
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/security/courtroom)
"vZk" = (
/obj/structure/window/reinforced{
dir = 4
@@ -86805,12 +88471,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/fitness/recreation)
-"vZC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/storage)
"vZE" = (
/obj/structure/sign/poster/official/random{
pixel_y = -32
@@ -86932,13 +88592,16 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/quartermaster/office)
-"wbG" = (
-/obj/structure/table/reinforced,
-/obj/item/folder/red,
-/obj/item/flashlight/seclite,
-/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+"wbN" = (
+/obj/structure/cable/yellow,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/bot,
+/obj/item/kirbyplants/dead,
+/obj/machinery/power/apc/auto_name/directional/west{
+ pixel_x = -24
+ },
/turf/open/floor/iron,
-/area/security/main)
+/area/crew_quarters/heads/hor)
"wce" = (
/obj/effect/turf_decal/tile/blue/opposingcorners{
dir = 1
@@ -87002,16 +88665,6 @@
heat_capacity = 1e+006
},
/area/crew_quarters/heads/chief)
-"wdm" = (
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/brig)
"wdo" = (
/obj/machinery/light{
dir = 8
@@ -87030,6 +88683,42 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/library)
+"wdw" = (
+/obj/machinery/newscaster{
+ pixel_y = 31
+ },
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/obj/structure/chair/office{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
+"wdB" = (
+/obj/effect/turf_decal/bot,
+/obj/item/storage/box/firingpins,
+/obj/item/storage/box/firingpins{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/machinery/door/window/southright{
+ name = "Firing pins storage";
+ req_one_access_txt = "1;4"
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/structure/rack,
+/turf/open/floor/iron/dark,
+/area/ai_monitored/security/armory)
"wdC" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
dir = 8
@@ -87038,6 +88727,36 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"wdK" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/hallway/primary/fore)
+"wek" = (
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/prison/dark,
+/area/security/prison)
+"wez" = (
+/obj/structure/chair{
+ pixel_y = -2
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/prison/dark,
+/area/security/prison)
"weF" = (
/obj/effect/turf_decal/tile/blue{
dir = 4
@@ -87065,6 +88784,15 @@
},
/turf/open/floor/plating,
/area/maintenance/department/medical/central)
+"weL" = (
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/obj/structure/chair/fancy/comfy{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/security/main)
"weS" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -87081,16 +88809,20 @@
},
/turf/open/floor/plating,
/area/maintenance/port/aft)
-"weY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+"weV" = (
+/obj/structure/closet/secure_closet/genpop,
+/obj/machinery/light{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/bot_white,
+/obj/effect/turf_decal/tile/red/half/contrasted{
dir = 4
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
-/area/security/courtroom)
+/area/security/prison)
"wfb" = (
/obj/structure/window/reinforced,
/obj/machinery/light/small{
@@ -87107,6 +88839,13 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint/medical)
+"wfj" = (
+/obj/structure/table/reinforced,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/flashlight/lamp,
+/obj/effect/turf_decal/tile/purple/half/contrasted,
+/turf/open/floor/iron,
+/area/quartermaster/miningoffice)
"wft" = (
/obj/effect/turf_decal/tile/blue/fourcorners/contrasted,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -87115,6 +88854,18 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/medical/medbay/lobby)
+"wfv" = (
+/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/status_display/door_timer{
+ id = "cell";
+ name = "Solitary confinement timer";
+ pixel_y = -30
+ },
+/turf/open/floor/prison/dark,
+/area/security/prison)
"wfG" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/door/firedoor,
@@ -87184,6 +88935,13 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron/grid/steel,
/area/medical/storage)
+"wgI" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/quartermaster/miningoffice)
"wgK" = (
/obj/structure/chair/fancy/comfy{
dir = 8
@@ -87209,6 +88967,30 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/escape)
+"whm" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/sign/departments/minsky/security/security{
+ pixel_x = -32;
+ pixel_y = 32
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/starboard)
+"whx" = (
+/obj/structure/closet/secure_closet/security/sec,
+/obj/effect/turf_decal/bot,
+/obj/item/clothing/mask/balaclava,
+/obj/item/radio/intercom{
+ pixel_y = -29
+ },
+/turf/open/floor/iron/techmaint,
+/area/security/main)
"whB" = (
/obj/item/bedsheet/medical,
/obj/structure/bed/roller,
@@ -87230,6 +89012,15 @@
/obj/machinery/power/apc/auto_name/directional/east,
/turf/open/floor/iron,
/area/science/xenobiology)
+"whT" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/carpet/grimy,
+/area/security/main)
"whV" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -87274,25 +89065,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/closed/wall,
/area/maintenance/starboard/aft)
-"wiL" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/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/iron,
-/area/hallway/primary/fore)
"wiO" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -87316,13 +89088,29 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/aft)
-"wjg" = (
-/obj/effect/turf_decal/stripes/line{
+"wiX" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
+"wjC" = (
+/obj/structure/chair{
+ dir = 8;
+ name = "Defense"
+ },
+/obj/effect/turf_decal/tile/green/half/contrasted{
dir = 1
},
-/obj/machinery/flasher/portable,
-/turf/open/floor/iron,
-/area/ai_monitored/security/armory)
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/security/courtroom)
"wjI" = (
/obj/effect/landmark/start/medical_doctor,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -87361,17 +89149,6 @@
/obj/machinery/firealarm/directional/east,
/turf/open/floor/iron,
/area/maintenance/department/science)
-"wjY" = (
-/obj/effect/spawner/structure/window/reinforced/prison,
-/obj/machinery/door/poddoor/preopen{
- id = "Prisongate"
- },
-/obj/structure/cable/yellow,
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/security/prison)
"wkh" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -87414,6 +89191,17 @@
},
/turf/open/floor/iron,
/area/science/mixing)
+"wkM" = (
+/turf/open/floor/holofloor/plating,
+/area/security/prison)
+"wkS" = (
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/machinery/computer/med_data{
+ dir = 8
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/white,
+/area/security/brig/medbay)
"wkV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -87427,6 +89215,24 @@
/obj/machinery/light/small,
/turf/open/floor/iron/smooth,
/area/tcommsat/server)
+"wlp" = (
+/obj/effect/turf_decal/siding/wideplating_new/dark/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wideplating_new/dark/corner{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/turf/open/floor/prison/dark,
+/area/security/prison)
"wls" = (
/obj/structure/chair{
dir = 1
@@ -87439,6 +89245,15 @@
},
/turf/open/floor/iron/dark,
/area/medical/surgery)
+"wlz" = (
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "corporatelounge";
+ name = "Corporate Lounge Shutters"
+ },
+/turf/open/floor/plating,
+/area/bridge/showroom/corporate)
"wlA" = (
/obj/structure/table/wood,
/obj/structure/extinguisher_cabinet{
@@ -87490,6 +89305,17 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat_interior)
+"wmk" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/fluff/hedge/opaque,
+/turf/open/floor/grass/no_border,
+/area/security/main)
"wmm" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -87508,19 +89334,19 @@
},
/turf/open/floor/iron,
/area/hallway/primary/starboard)
-"wmE" = (
-/obj/machinery/airalarm/directional/east{
- pixel_x = 24
+"wmF" = (
+/obj/structure/flora/rock/pile,
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/machinery/light{
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/effect/turf_decal/tile/red/opposingcorners,
-/obj/effect/turf_decal/tile/yellow/opposingcorners{
+/obj/structure/window/reinforced{
dir = 1
},
-/turf/open/floor/iron,
-/area/crew_quarters/bar/atrium)
+/turf/open/floor/grass/no_border,
+/area/security/prison)
"wmH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -87544,6 +89370,21 @@
/obj/machinery/pool_filter,
/turf/open/indestructible/sound/pool/end,
/area/crew_quarters/fitness/recreation)
+"wng" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/machinery/camera{
+ c_tag = "Courtroom - Fore";
+ dir = 5;
+ network = list("ss13","security")
+ },
+/obj/structure/fluff/hedge,
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 8
+ },
+/area/security/courtroom)
"wnn" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -87559,6 +89400,15 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/maintenance/port/fore)
+"wnq" = (
+/obj/item/kirbyplants/random,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron/dark,
+/area/engine/transit_tube)
"wnz" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
@@ -87605,6 +89455,18 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/engine/engineering)
+"woe" = (
+/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 = 8
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"wom" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -87658,6 +89520,21 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
+"wpj" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/advanced_airlock_controller/directional/west,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating,
+/area/security/main)
"wpk" = (
/obj/effect/spawner/lootdrop/maintenance/two,
/obj/structure/closet,
@@ -87690,6 +89567,12 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/engine/atmos)
+"wqd" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/space)
"wqg" = (
/obj/structure/table/reinforced,
/obj/machinery/newscaster{
@@ -87726,16 +89609,6 @@
/obj/effect/spawner/lootdrop/maintenance/two,
/turf/open/floor/plating,
/area/maintenance/department/medical/central)
-"wqw" = (
-/obj/item/kirbyplants/random,
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/obj/effect/turf_decal/tile/red/anticorner/contrasted{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/security/brig)
"wqx" = (
/obj/structure/window/reinforced{
dir = 8
@@ -87838,6 +89711,18 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/quartermaster/storage)
+"wrU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/security/courtroom)
+"wrX" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/carpet/red,
+/area/crew_quarters/heads/hos)
"wso" = (
/obj/machinery/atmospherics/components/binary/valve{
dir = 8
@@ -87863,6 +89748,22 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/engineering)
+"wsF" = (
+/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/iron,
+/area/hallway/primary/fore)
"wsH" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
@@ -87885,6 +89786,18 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
+"wta" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_y = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/security/execution/transfer)
"wtm" = (
/obj/structure/disposalpipe/segment{
dir = 10
@@ -87900,13 +89813,29 @@
},
/turf/open/floor/iron,
/area/hallway/primary/central)
-"wtY" = (
+"wtP" = (
+/obj/machinery/door/airlock/public/glass{
+ name = "Courtroom";
+ req_access_txt = "42"
+ },
+/obj/effect/turf_decal/bot,
+/obj/effect/landmark/event_spawn,
+/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 = "0-2"
+ icon_state = "1-2"
},
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/brig)
+/turf/open/floor/iron,
+/area/security/courtroom)
+"wtU" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 2
+ },
+/turf/open/floor/iron,
+/area/quartermaster/qm)
"wud" = (
/obj/machinery/light{
dir = 4
@@ -87924,6 +89853,20 @@
/obj/effect/turf_decal/tile/brown/anticorner/contrasted,
/turf/open/floor/iron,
/area/quartermaster/office)
+"wue" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "hosspace";
+ name = "space shutters"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/crew_quarters/heads/hos)
"wug" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -87957,13 +89900,30 @@
},
/turf/open/floor/carpet/grimy,
/area/hallway/secondary/entry)
-"wuC" = (
+"wuG" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/prison,
+/area/security/prison)
+"wuH" = (
/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/brown/half/contrasted{
+/obj/machinery/door/airlock/mining/glass{
+ name = "Mining Office";
+ req_one_access_txt = "31;48"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/iron,
-/area/quartermaster/qm)
+/area/quartermaster/miningoffice)
"wuL" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -88021,6 +89981,13 @@
/obj/effect/turf_decal/tile/purple/fourcorners/contrasted,
/turf/open/floor/iron,
/area/science/research)
+"wvf" = (
+/obj/structure/chair/fancy{
+ name = "Judge"
+ },
+/obj/effect/landmark/start/lawyer,
+/turf/open/floor/iron/large,
+/area/security/courtroom)
"wvg" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -88043,18 +90010,6 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"wvq" = (
-/obj/structure/table/wood,
-/obj/item/radio/intercom,
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/security/courtroom)
-"wvy" = (
-/mob/living/simple_animal/hostile/carp/lia,
-/turf/open/floor/carpet/red,
-/area/crew_quarters/heads/hos)
"wvH" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -88072,6 +90027,15 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/cryopods)
+"wvR" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ name = "justice gas pump"
+ },
+/turf/open/floor/iron/dark,
+/area/security/execution/transfer)
"wvT" = (
/obj/structure/closet/wardrobe/green,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -88110,6 +90074,11 @@
},
/turf/open/floor/plating,
/area/tcommsat/server)
+"wwm" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/science/lab)
"wwt" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -88132,6 +90101,11 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/hallway/primary/aft)
+"wwL" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/crew_quarters/locker)
"wwV" = (
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -88142,15 +90116,6 @@
},
/turf/open/floor/iron/white,
/area/crew_quarters/cryopods)
-"wxe" = (
-/obj/structure/table/wood,
-/obj/item/gavelblock,
-/obj/item/gavelhammer,
-/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/security/courtroom)
"wxf" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
@@ -88164,19 +90129,6 @@
/obj/effect/turf_decal/tile/blue/anticorner/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint/customs/auxiliary)
-"wxw" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/obj/machinery/door/airlock/external{
- name = "Security External Airlock";
- req_access_txt = "63"
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/layer_manifold,
-/turf/open/floor/plating,
-/area/security/brig)
"wxB" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/purple/half/contrasted,
@@ -88200,29 +90152,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/engine/atmos)
-"wxY" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/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/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/storage)
-"wyd" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/red/half/contrasted,
-/turf/open/floor/iron,
-/area/security/brig)
"wyn" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -88242,34 +90171,48 @@
/obj/machinery/aug_manipulator,
/turf/open/floor/iron,
/area/science/robotics/lab)
-"wyJ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/iron,
-/area/maintenance/starboard)
-"wyK" = (
+"wyt" = (
/obj/structure/table/reinforced,
-/obj/item/food/grown/carrot{
- pixel_x = -1;
- pixel_y = 6
+/obj/machinery/airalarm/directional/east,
+/obj/item/book/manual/wiki/security_space_law,
+/obj/item/radio,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron,
+/area/security/checkpoint/engineering)
+"wyw" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "hosspace";
+ name = "space shutters"
},
-/obj/item/food/grown/carrot{
- pixel_x = -6;
- pixel_y = 12
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/crew_quarters/heads/hos)
+"wyz" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
-/obj/item/food/grown/carrot{
- pixel_x = 4;
- pixel_y = 4
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/item/food/grown/carrot{
- pixel_x = -1;
- pixel_y = 11
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 1
},
-/obj/effect/turf_decal{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
dir = 1
},
-/turf/open/floor/prison,
-/area/security/prison)
+/turf/open/floor/iron,
+/area/security/brig)
+"wyE" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/security/main)
"wyN" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -88298,6 +90241,52 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"wyX" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/siding/wood/corner,
+/turf/open/floor/wood,
+/area/security/detectives_office)
+"wyY" = (
+/obj/machinery/computer/secure_data{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/newscaster{
+ pixel_x = -32
+ },
+/turf/open/floor/iron/dark,
+/area/security/detectives_office)
+"wzr" = (
+/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"
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
+"wzT" = (
+/obj/machinery/airalarm/directional/north,
+/obj/effect/turf_decal/tile/blue/half{
+ dir = 1
+ },
+/turf/open/floor/iron/large,
+/area/security/courtroom)
+"wAc" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/science/lab)
"wAe" = (
/obj/machinery/light{
dir = 4
@@ -88337,24 +90326,6 @@
},
/turf/open/floor/iron,
/area/maintenance/starboard/aft)
-"wAi" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/mining{
- name = "Cargo Warehouse";
- req_access_txt = "31"
- },
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/iron,
-/area/quartermaster/sorting)
"wAm" = (
/obj/structure/chair/stool/bar,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -88370,6 +90341,16 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/plating,
/area/maintenance/port/fore)
+"wAv" = (
+/obj/structure/rack,
+/obj/item/crowbar,
+/obj/item/storage/toolbox/mechanical,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron/dark,
+/area/crew_quarters/heads/chief)
"wBz" = (
/obj/structure/table/reinforced,
/obj/item/tank/jetpack/carbondioxide{
@@ -88417,6 +90398,29 @@
},
/turf/open/floor/iron/white,
/area/crew_quarters/heads/cmo)
+"wCx" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/sign/nanotrasen{
+ pixel_x = 32;
+ pixel_y = 32
+ },
+/obj/structure/sign/directions/engineering{
+ desc = "A sign that shows there are doors here. There are doors everywhere!";
+ icon_state = "doors";
+ name = "WARNING: BLAST DOORS";
+ pixel_y = 32
+ },
+/obj/item/kirbyplants{
+ icon_state = "plant-22";
+ name = "legally obbligatory mapper potted plant"
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/bridge)
"wCC" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -88428,19 +90432,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/catwalk_floor/flat_white,
/area/science/mixing)
-"wCI" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Central Access"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/prison,
-/area/security/prison)
-"wCJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/security/warden)
"wCM" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -88452,6 +90443,20 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/customs)
+"wCT" = (
+/obj/machinery/light_switch{
+ pixel_x = 26;
+ pixel_y = 26
+ },
+/obj/machinery/button/door{
+ id = "testimonyacess";
+ name = "Testimony Access";
+ pixel_x = 26;
+ pixel_y = -6;
+ req_access_txt = "3"
+ },
+/turf/open/floor/iron/dark,
+/area/security/courtroom)
"wCU" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -88506,6 +90511,14 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/aisat)
+"wDC" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/security/brig)
"wEl" = (
/obj/machinery/cell_charger,
/obj/structure/cable/yellow{
@@ -88516,21 +90529,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/storage/eva)
-"wEs" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/structure/sign/departments/minsky/security/security{
- pixel_x = -32;
- pixel_y = 32
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
"wEB" = (
/obj/structure/table/reinforced,
/obj/item/storage/toolbox/electrical,
@@ -88566,32 +90564,17 @@
heat_capacity = 1e+006
},
/area/maintenance/port)
+"wEO" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/maintenance/department/science)
"wFn" = (
/obj/item/banner/medical/mundane,
/turf/open/floor/plating,
/area/maintenance/aft)
-"wFq" = (
-/obj/machinery/door/poddoor/preopen{
- id = "ceblast";
- name = "Chief's Lockdown Shutters"
- },
-/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/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/engine/break_room)
"wFw" = (
/obj/machinery/light,
/obj/machinery/vending/medical,
@@ -88638,6 +90621,18 @@
/obj/item/clothing/neck/stethoscope,
/turf/open/floor/iron,
/area/medical/medbay/central)
+"wFY" = (
+/obj/machinery/light_switch{
+ pixel_x = -22;
+ pixel_y = 26
+ },
+/obj/structure/table,
+/obj/item/hand_labeler,
+/obj/item/stack/package_wrap,
+/turf/open/floor/iron/dark/side{
+ dir = 8
+ },
+/area/security/brig)
"wFZ" = (
/obj/effect/turf_decal/tile/green/fourcorners/contrasted,
/obj/structure/disposalpipe/segment{
@@ -88694,39 +90689,16 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/storage/tech)
-"wGw" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_x = -32;
- pixel_y = 6
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/machinery/button/door{
- desc = "A remote control switch.";
- id = "gulagdoor";
- name = "Transfer Door Control";
- normaldoorcontrol = 1;
- pixel_x = -24;
- pixel_y = -8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
+"wGF" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "Prisongate"
},
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
-"wGK" = (
-/obj/structure/closet/secure_closet/genpop,
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 8
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
},
-/turf/open/floor/iron,
-/area/security/prison)
+/obj/effect/spawner/structure/window/reinforced/prison,
+/turf/open/floor/plating,
+/area/security/main)
"wGP" = (
/obj/machinery/firealarm/directional/east,
/obj/item/kirbyplants/random,
@@ -88805,6 +90777,17 @@
},
/turf/open/floor/iron,
/area/engine/atmos)
+"wIe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/airalarm/directional/south{
+ pixel_y = -22
+ },
+/obj/machinery/light,
+/turf/open/floor/iron,
+/area/hallway/primary/starboard)
"wIg" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -88856,6 +90839,11 @@
},
/turf/open/floor/iron,
/area/medical/morgue)
+"wIv" = (
+/obj/effect/turf_decal/siding/wideplating_new/dark,
+/obj/structure/chair/office,
+/turf/open/floor/iron/dark/smooth_half,
+/area/crew_quarters/heads/hos)
"wIC" = (
/obj/structure/closet/secure_closet/personal,
/obj/effect/turf_decal/box,
@@ -88936,6 +90924,15 @@
},
/turf/open/floor/iron,
/area/hallway/secondary/service)
+"wJN" = (
+/obj/structure/sign/warning/vacuum/external{
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"wJT" = (
/obj/structure/cable/yellow{
icon_state = "2-4"
@@ -88968,15 +90965,11 @@
},
/turf/open/floor/iron,
/area/maintenance/port/fore)
-"wKr" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/bot,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red/half/contrasted,
-/turf/open/floor/iron,
-/area/security/brig)
+"wKx" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/science/research)
"wKy" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -89000,61 +90993,6 @@
},
/turf/open/floor/iron,
/area/maintenance/department/medical/central)
-"wKF" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/closet/secure_closet/injection,
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/effect/turf_decal/tile/red/anticorner/contrasted{
- dir = 4
- },
-/turf/open/floor/iron/dark,
-/area/security/execution/transfer)
-"wKI" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/brigdoor/northright{
- dir = 8;
- name = "Warden's Desk";
- req_access_txt = "3"
- },
-/obj/item/folder/red,
-/obj/item/pen,
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/window/westleft{
- dir = 4;
- name = "Warden's Desk"
- },
-/obj/item/toy/figure/warden,
-/turf/open/floor/iron,
-/area/security/warden)
-"wKK" = (
-/obj/item/kirbyplants/random,
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/airalarm/directional/east{
- pixel_x = 24
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/engine/transit_tube)
-"wKS" = (
-/obj/structure/rack,
-/obj/item/stack/package_wrap,
-/obj/item/stack/package_wrap,
-/obj/item/stack/package_wrap,
-/obj/item/stack/package_wrap,
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/obj/structure/railing{
- dir = 1
- },
-/turf/open/floor/prison,
-/area/security/prison)
"wKT" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 1
@@ -89088,6 +91026,19 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/maintenance/port/aft)
+"wLl" = (
+/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 = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/crew_quarters/heads/hos)
"wLp" = (
/obj/machinery/light{
dir = 1
@@ -89121,6 +91072,22 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/escape)
+"wLw" = (
+/obj/effect/turf_decal/siding/wideplating_new{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"wLH" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -89180,23 +91147,12 @@
},
/turf/open/floor/catwalk_floor/iron,
/area/engine/atmospherics_engine)
-"wLX" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/sign/nanotrasen{
- pixel_y = 32
- },
-/obj/structure/table/reinforced,
-/obj/machinery/microwave{
- desc = "It looks really dirty.";
- name = "maintenance microwave";
- pixel_y = 5
- },
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 4
+"wLW" = (
+/obj/structure/chair{
+ dir = 1
},
-/turf/open/floor/iron,
+/obj/machinery/light,
+/turf/open/floor/iron/dark,
/area/security/main)
"wLZ" = (
/obj/structure/chair/office{
@@ -89217,22 +91173,12 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/turf/open/floor/carpet/royalblue,
/area/crew_quarters/heads/hop)
-"wMm" = (
+"wMt" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/chair/office{
- dir = 8
- },
-/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/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/execution/transfer)
+/turf/open/floor/iron/techmaint,
+/area/security/main)
"wMv" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/trinary/filter{
@@ -89256,6 +91202,16 @@
/obj/machinery/light,
/turf/open/floor/iron/grid/steel,
/area/medical/storage)
+"wMX" = (
+/obj/item/kirbyplants/random,
+/obj/machinery/newscaster{
+ pixel_x = 32
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/security/courtroom)
"wNc" = (
/obj/structure/table/reinforced,
/obj/item/pen,
@@ -89331,12 +91287,21 @@
heat_capacity = 1e+006
},
/area/maintenance/port/aft)
-"wOm" = (
+"wNQ" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
/obj/structure/cable/yellow{
- icon_state = "2-4"
+ icon_state = "4-8"
},
-/turf/open/floor/carpet/grimy,
-/area/security/detectives_office)
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_edge,
+/area/security/main)
"wOI" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -89409,6 +91374,28 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/medical/medbay/central)
+"wPj" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron,
+/area/security/brig)
+"wPo" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 8
+ },
+/area/ai_monitored/security/armory)
"wPq" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -89424,6 +91411,17 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/maintenance/department/medical/central)
+"wPs" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/checkpoint/escape)
"wPC" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -89433,35 +91431,6 @@
/obj/item/hand_labeler,
/turf/open/floor/iron/dark,
/area/medical/morgue)
-"wPQ" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/red,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/iron,
-/area/security/brig)
-"wQe" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 5
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/science/research)
"wQo" = (
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -89481,14 +91450,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai)
-"wQy" = (
-/obj/machinery/door/airlock/security/glass{
- name = "Security Office";
- req_one_access_txt = "1;4"
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/security/main)
"wQF" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
@@ -89541,6 +91502,14 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/medical/medbay/aft)
+"wRw" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/edge{
+ dir = 4
+ },
+/area/security/courtroom)
"wRG" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/turf_decal/tile/neutral/anticorner/contrasted,
@@ -89556,6 +91525,25 @@
},
/turf/open/space,
/area/space/nearstation)
+"wRW" = (
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ desc = "Talk through this. It looks like it has been modified to not broadcast.";
+ name = "Prison Intercom (General)";
+ pixel_x = -25;
+ pixel_y = -2;
+ prison_radio = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 5
+ },
+/turf/open/floor/iron/dark,
+/area/security/prison)
"wSb" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow{
@@ -89638,14 +91626,6 @@
},
/turf/open/floor/iron,
/area/ai_monitored/storage/eva)
-"wSJ" = (
-/obj/structure/table/reinforced,
-/obj/item/folder/yellow,
-/obj/item/pen,
-/obj/effect/turf_decal/bot,
-/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko,
-/turf/open/floor/iron,
-/area/engine/break_room)
"wTc" = (
/obj/machinery/modular_computer/console/preset/curator,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -89667,15 +91647,6 @@
},
/turf/open/floor/plating,
/area/maintenance/port/aft)
-"wTQ" = (
-/obj/structure/closet/secure_closet/lethalshots,
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/turf_decal/bot,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/ai_monitored/security/armory)
"wTV" = (
/obj/effect/turf_decal/tile/yellow{
dir = 1
@@ -89686,13 +91657,15 @@
/obj/item/kirbyplants/random,
/turf/open/floor/iron/white,
/area/medical/chemistry)
-"wUi" = (
-/obj/structure/chair/office{
- dir = 1
+"wUr" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "Prisongate";
+ name = "Prison blast door"
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/detectives_office)
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced/prison,
+/turf/open/floor/plating,
+/area/security/prison)
"wUt" = (
/obj/effect/turf_decal/tile/blue{
dir = 4
@@ -89734,6 +91707,28 @@
},
/turf/open/floor/iron,
/area/maintenance/port)
+"wUV" = (
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"wVe" = (
+/obj/structure/weightmachine/weightlifter,
+/obj/effect/turf_decal/bot_white,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/prison/dark,
+/area/security/prison)
"wVj" = (
/obj/effect/turf_decal/bot,
/obj/effect/turf_decal/siding/dark{
@@ -89748,6 +91743,15 @@
/obj/item/clothing/under/color/white,
/turf/open/floor/iron,
/area/medical/patients_rooms)
+"wVp" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/crew_quarters/heads/chief)
"wVq" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
@@ -89769,23 +91773,15 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/port)
-"wVt" = (
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 10
+"wVw" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+/obj/structure/disposalpipe/segment{
dir = 10
},
-/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/maintenance/starboard)
+/turf/open/floor/iron/white,
+/area/science/research)
"wVI" = (
/obj/machinery/holopad,
/obj/structure/cable/yellow{
@@ -89811,19 +91807,6 @@
},
/turf/open/floor/iron/dark,
/area/medical/morgue)
-"wWe" = (
-/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
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard)
"wWj" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -89832,24 +91815,13 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/maintenance/starboard/fore)
-"wWN" = (
-/obj/structure/chair/office{
- 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/carpet/grimy,
-/area/security/detectives_office)
-"wXa" = (
-/obj/structure/sign/poster/official/help_others{
- pixel_x = 32
- },
+"wWn" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/execution/transfer)
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/quartermaster/storage)
"wXi" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -89926,6 +91898,17 @@
/obj/effect/turf_decal/tile/neutral/opposingcorners,
/turf/open/floor/iron/white,
/area/crew_quarters/cryopods)
+"wYu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"wYv" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -89948,12 +91931,6 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/aft)
-"wYD" = (
-/obj/structure/railing/corner{
- dir = 4
- },
-/turf/open/floor/prison,
-/area/security/prison)
"wYY" = (
/mob/living/basic/cockroach,
/turf/open/floor/plating,
@@ -89963,17 +91940,6 @@
/obj/effect/turf_decal/tile/purple,
/turf/open/floor/iron/white,
/area/science/shuttledock)
-"wZn" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "brigfront";
- name = "Brig Blast door"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/security/warden)
"wZo" = (
/obj/structure/table,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -90006,15 +91972,27 @@
},
/turf/open/floor/iron/dark,
/area/science/nanite)
-"xbJ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
+"xbo" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/loading_area{
dir = 1
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/iron,
-/area/crew_quarters/locker)
+/area/quartermaster/storage)
+"xbD" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/machinery/firealarm/directional/east,
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
+/turf/open/floor/iron/dark,
+/area/crew_quarters/heads/hos)
"xbW" = (
/obj/effect/landmark/event_spawn,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -90030,6 +92008,23 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/carpet/grimy,
/area/library)
+"xcA" = (
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/turf/open/floor/iron/dark/textured,
+/area/security/prison)
+"xcB" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/turf/open/floor/plating,
+/area/security/main)
"xcC" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
@@ -90087,6 +92082,19 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/security/checkpoint/customs/auxiliary)
+"xdv" = (
+/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/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"xdw" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 8
@@ -90135,17 +92143,22 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai)
-"xef" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/tile/red{
- dir = 1
+"xea" = (
+/obj/structure/chair/office{
+ dir = 8
},
-/obj/structure/disposalpipe/junction/flip{
- dir = 2
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
},
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
+/obj/effect/landmark/start/warden,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/iron/dark,
+/area/security/warden)
"xeo" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -90232,6 +92245,11 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/maintenance/port/fore)
+"xff" = (
+/obj/structure/closet/crate/silvercrate,
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/turf/open/floor/iron/dark,
+/area/security/nuke_storage)
"xfl" = (
/obj/effect/landmark/start/cargo_technician,
/obj/effect/turf_decal/bot,
@@ -90290,6 +92308,22 @@
},
/turf/open/floor/iron,
/area/engine/engineering)
+"xfF" = (
+/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/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/quartermaster/qm)
"xfV" = (
/obj/structure/table,
/obj/item/storage/secure/briefcase,
@@ -90353,6 +92387,10 @@
/obj/item/paicard,
/turf/open/floor/carpet/grimy,
/area/vacant_room/office)
+"xhR" = (
+/obj/machinery/washing_machine,
+/turf/open/floor/iron/freezer,
+/area/security/prison)
"xhU" = (
/obj/machinery/firealarm{
dir = 1;
@@ -90366,23 +92404,22 @@
},
/turf/open/floor/iron,
/area/tcommsat/server)
+"xhW" = (
+/obj/structure/closet/l3closet/security,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/ai_monitored/security/armory)
"xig" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/security/main)
-"xiq" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/airalarm/directional/west{
- pixel_x = -22
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/hallway/primary/starboard)
"xiy" = (
/obj/structure/table,
/obj/item/folder,
@@ -90472,22 +92509,25 @@
},
/turf/open/floor/carpet/grimy,
/area/hallway/secondary/entry)
-"xjG" = (
+"xjr" = (
/obj/structure/cable/yellow{
- icon_state = "1-2"
+ icon_state = "2-8"
},
/obj/structure/cable/yellow{
- icon_state = "2-8"
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 6
},
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 6
},
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
/turf/open/floor/iron,
-/area/engine/break_room)
+/area/quartermaster/sorting)
"xjH" = (
/obj/effect/turf_decal/trimline/blue/filled/warning{
dir = 1
@@ -90501,14 +92541,22 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/patients_rooms)
-"xjL" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 9
+"xjJ" = (
+/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/machinery/space_heater,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/execution/transfer)
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/engine/break_room)
"xjQ" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -90535,21 +92583,10 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/wood,
/area/bridge/meeting_room/council)
-"xjX" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/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/neutral{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/hallway/primary/central)
+"xjY" = (
+/obj/effect/turf_decal/tile/red/anticorner/contrasted,
+/turf/open/floor/prison,
+/area/security/prison)
"xke" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -90570,6 +92607,17 @@
},
/turf/open/floor/iron,
/area/crew_quarters/bar/atrium)
+"xki" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "detectivewindows";
+ name = "Detective Privacy Blast door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/detectives_office)
"xkx" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -90599,23 +92647,6 @@
},
/turf/open/floor/iron,
/area/maintenance/port/aft)
-"xkS" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/door/airlock/security/glass{
- name = "Security Transferring Control";
- req_one_access_txt = "1;4"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/iron,
-/area/security/brig)
"xkY" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/xeno_spawn,
@@ -90633,42 +92664,14 @@
"xlh" = (
/turf/open/floor/carpet/grimy,
/area/crew_quarters/dorms)
-"xlj" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron{
- heat_capacity = 1e+006
- },
-/area/hallway/primary/central)
-"xlk" = (
-/obj/item/kirbyplants{
- icon_state = "plant-22"
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 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/iron/white,
-/area/medical/medbay/lobby)
-"xlq" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/tile/red{
- dir = 1
+"xli" = (
+/obj/structure/chair/office,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/effect/turf_decal/siding/wood{
+ dir = 6
},
-/turf/open/floor/iron,
-/area/security/main)
+/turf/open/floor/wood,
+/area/security/detectives_office)
"xlC" = (
/obj/effect/landmark/start/botanist,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -90721,16 +92724,28 @@
},
/turf/open/floor/iron,
/area/science/mixing)
-"xmP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+"xmW" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
- dir = 8
+ dir = 1
},
-/obj/effect/turf_decal/tile/red/half/contrasted{
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
dir = 1
},
-/turf/open/floor/iron,
-/area/security/brig)
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
+"xnw" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/warden)
"xnx" = (
/obj/item/kirbyplants/random,
/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
@@ -90755,6 +92770,34 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
+"xnZ" = (
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "hosprivacy";
+ name = "HoS Privacy Blast door"
+ },
+/turf/open/floor/plating,
+/area/security/prison)
+"xod" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/fans/tiny/invisible,
+/obj/docking_port/stationary{
+ dwidth = 1;
+ height = 4;
+ roundstart_template = /datum/map_template/shuttle/escape_pod/default;
+ width = 3;
+ dir = 4
+ },
+/turf/open/floor/plating{
+ initial_gas_mix = "o2=0.01;n2=0.01;TEMP=2.7";
+ initial_temperature = 2.7;
+ luminosity = 2
+ },
+/area/security/main)
"xoi" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 4
@@ -90769,31 +92812,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/chapel/main)
-"xoz" = (
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 4
- },
-/obj/structure/table/reinforced,
-/obj/item/restraints/handcuffs,
-/obj/item/assembly/flash/handheld,
-/turf/open/floor/iron,
-/area/security/main)
-"xoC" = (
-/obj/structure/rack,
-/obj/item/clothing/gloves/color/fyellow,
-/obj/item/clothing/suit/hazardvest,
-/obj/item/multitool,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -26
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow/half/contrasted{
- dir = 1
- },
-/turf/open/floor/iron,
-/area/storage/tools)
"xoO" = (
/obj/item/kirbyplants/random,
/obj/effect/decal/cleanable/dirt/dust,
@@ -90819,6 +92837,12 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/quartermaster/office)
+"xoZ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/security/courtroom)
"xpk" = (
/obj/machinery/meter,
/obj/effect/decal/cleanable/dirt,
@@ -90865,6 +92889,21 @@
},
/turf/open/floor/iron,
/area/medical/chemistry)
+"xpQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/science/lab)
"xpR" = (
/obj/machinery/door/window/southleft,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -90879,6 +92918,13 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/crew_quarters/dorms)
+"xqG" = (
+/obj/machinery/computer/secure_data{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron/dark,
+/area/security/warden)
"xqH" = (
/obj/machinery/door/airlock/engineering/glass{
name = "Engineering Storage";
@@ -90953,6 +92999,17 @@
},
/turf/open/floor/iron/grid/steel,
/area/medical/virology)
+"xrt" = (
+/obj/item/kirbyplants/random,
+/obj/machinery/light/small,
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"xrw" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
dir = 4
@@ -90960,18 +93017,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
-"xrA" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/mob/living/simple_animal/sloth/citrus,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/quartermaster/qm)
"xrG" = (
/obj/structure/disposalpipe/segment,
/obj/structure/sign/departments/evac{
@@ -91008,18 +93053,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/gateway)
-"xsm" = (
-/obj/machinery/computer/prisoner/management{
- dir = 8
- },
-/obj/machinery/camera/directional/east{
- c_tag = "Security - Warden's Office"
- },
-/obj/effect/turf_decal/tile/red/anticorner/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/warden)
"xsJ" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "MiniSat Maintenance";
@@ -91038,16 +93071,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/aisat_interior)
-"xsN" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/security/brig)
"xsT" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 4
@@ -91081,34 +93104,27 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/ai_monitored/turret_protected/ai)
-"xtn" = (
-/obj/structure/cable/white,
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- dir = 4
- },
-/obj/machinery/power/apc/auto_name/directional/south,
-/obj/effect/turf_decal/tile/red/anticorner/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/execution/transfer)
-"xuw" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
+"xtq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light{
+ dir = 1
},
-/obj/structure/chair/stool/directional/west,
-/turf/open/floor/prison,
-/area/security/prison)
-"xuL" = (
-/obj/structure/table,
-/obj/machinery/microwave{
- pixel_x = -2;
- pixel_y = 5
+/obj/effect/turf_decal/delivery,
+/obj/item/kirbyplants{
+ icon_state = "plant-22";
+ name = "legally obbligatory mapper potted plant"
},
-/obj/machinery/newscaster{
- pixel_x = -32
+/turf/open/floor/iron,
+/area/hallway/secondary/entry)
+"xus" = (
+/obj/structure/cable/yellow,
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "councilblast";
+ name = "Council Chambers Blast door"
},
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/courtroom)
+/turf/open/floor/plating,
+/area/bridge/meeting_room/council)
"xvc" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/delivery,
@@ -91131,10 +93147,6 @@
heat_capacity = 1e+006
},
/area/maintenance/port/aft)
-"xvl" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/prison,
-/area/security/prison)
"xvn" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -91159,6 +93171,19 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/chapel/office)
+"xvt" = (
+/obj/item/kirbyplants/random,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"xvv" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -91195,19 +93220,12 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/aisat)
-"xwg" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/bodybags{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/storage/box/prisoner,
-/obj/structure/extinguisher_cabinet{
- pixel_y = -32
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/brig)
+"xvX" = (
+/obj/structure/table/wood,
+/obj/item/radio/intercom,
+/obj/effect/turf_decal/tile/blue/anticorner,
+/turf/open/floor/iron/large,
+/area/security/courtroom)
"xwp" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/stripes/line{
@@ -91230,6 +93248,14 @@
},
/turf/open/floor/plating,
/area/maintenance/disposal)
+"xwD" = (
+/obj/item/kirbyplants{
+ icon_state = "plant-22";
+ name = "legally obbligatory mapper potted plant"
+ },
+/obj/effect/turf_decal/tile/purple,
+/turf/open/floor/iron/white,
+/area/science/research)
"xwM" = (
/obj/machinery/light{
dir = 1
@@ -91346,6 +93372,34 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/bridge)
+"xxM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/security/courtroom)
+"xxT" = (
+/obj/structure/table/wood,
+/obj/item/taperecorder,
+/obj/item/folder/red,
+/obj/machinery/button/door{
+ id = "interrogationacess";
+ name = "Interrogation Access";
+ pixel_x = -24;
+ pixel_y = -6;
+ req_access_txt = "3"
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
+"xyD" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow,
+/obj/machinery/power/apc/auto_name/directional/south,
+/turf/open/floor/wood,
+/area/vacant_room/office)
"xyE" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/structure/cable/yellow{
@@ -91397,6 +93451,14 @@
},
/turf/open/floor/iron,
/area/maintenance/disposal)
+"xzP" = (
+/obj/structure/sign/directions/engineering{
+ desc = "A sign that shows there are doors here. There are doors everywhere!";
+ icon_state = "doors";
+ name = "WARNING: PRESSURIZED DOORS"
+ },
+/turf/closed/wall,
+/area/hallway/primary/central)
"xzS" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -91446,17 +93508,6 @@
},
/turf/open/floor/iron,
/area/maintenance/port/fore)
-"xAz" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron,
-/area/security/courtroom)
"xAY" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -91474,23 +93525,6 @@
/mob/living/basic/cockroach,
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
-"xBt" = (
-/obj/machinery/door/airlock/security{
- name = "Evidence Storage";
- req_one_access_txt = "1;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 = "4-8"
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/iron,
-/area/security/brig)
"xBv" = (
/obj/structure/chair/fancy/comfy{
dir = 8
@@ -91545,6 +93579,22 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/storage/tech)
+"xBW" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 9
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"xCe" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
@@ -91596,18 +93646,6 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/maintenance/port/aft)
-"xCU" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/obj/structure/railing{
- dir = 1
- },
-/turf/open/floor/prison,
-/area/security/prison)
"xCX" = (
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -91665,6 +93703,43 @@
},
/turf/open/floor/iron,
/area/maintenance/port/aft)
+"xDo" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "ceblast";
+ name = "Chief's Lockdown Shutters"
+ },
+/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/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/iron,
+/area/engine/break_room)
+"xDx" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/security/prison)
"xDH" = (
/obj/machinery/requests_console{
department = "Medbay Storage";
@@ -91706,12 +93781,44 @@
/obj/effect/turf_decal/tile/brown/anticorner/contrasted,
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
+"xDW" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/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/camera/autoname{
+ dir = 9;
+ network = list("ss13","security")
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/security/main)
"xDX" = (
/obj/effect/turf_decal/trimline/black/filled/line{
dir = 5
},
/turf/open/floor/iron,
/area/maintenance/department/science)
+"xEb" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 8;
+ name = "Cargo Junction";
+ sortType = 2
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/central)
"xEe" = (
/obj/structure/chair,
/obj/effect/landmark/start/assistant,
@@ -91720,6 +93827,15 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/lobby)
+"xEk" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"xEx" = (
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -91811,17 +93927,29 @@
},
/turf/open/floor/iron/white,
/area/science/xenobiology)
-"xGt" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+"xFV" = (
+/obj/structure/table,
+/obj/machinery/light{
+ dir = 4
},
-/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/machinery/airalarm/directional/east,
+/obj/item/wrench,
+/obj/item/clothing/mask/gas,
+/obj/effect/turf_decal/tile/yellow{
dir = 4
},
-/turf/open/floor/iron,
-/area/security/courtroom)
+/turf/open/floor/iron/dark/corner,
+/area/hallway/primary/port)
+"xHr" = (
+/obj/effect/landmark/start/detective,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/security/detectives_office)
"xHw" = (
/obj/structure/pool_ladder,
/turf/open/indestructible/sound/pool/end,
@@ -91855,18 +93983,18 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/quartermaster/qm)
+"xHJ" = (
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 1
+ },
+/turf/open/floor/prison/dark,
+/area/security/prison)
"xHL" = (
/obj/effect/turf_decal/tile/red/half/contrasted{
dir = 1
},
/turf/open/floor/iron,
/area/security/checkpoint/science/research)
-"xIe" = (
-/obj/structure/bed{
- dir = 8
- },
-/turf/open/floor/prison,
-/area/security/prison)
"xIk" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -91896,6 +94024,25 @@
},
/turf/open/floor/iron,
/area/construction/mining/aux_base)
+"xIx" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/closeup{
+ dir = 1
+ },
+/obj/machinery/door/airlock/security{
+ name = "Interrogation";
+ req_access_txt = "63"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/security/main)
"xIB" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
@@ -91905,6 +94052,19 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/maintenance/starboard/aft)
+"xIH" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer2,
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/starboard)
"xIS" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -91925,16 +94085,26 @@
/obj/item/flashlight/lamp,
/turf/open/floor/carpet/grimy,
/area/vacant_room/office)
-"xJq" = (
-/obj/effect/turf_decal/tile/red/half/contrasted,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+"xJm" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/obj/machinery/door/airlock/maintenance{
+ name = "Medbay Maintenance";
+ req_access_txt = "5";
+ req_one_access_txt = null
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "quarantineshutters";
+ name = "isolation shutters"
},
-/turf/open/floor/iron,
-/area/security/brig)
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
"xJC" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -92007,17 +94177,13 @@
},
/turf/open/floor/iron,
/area/quartermaster/miningoffice)
-"xKA" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/stripes/line{
+"xKs" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
dir = 4
},
-/turf/open/floor/plating{
- initial_gas_mix = "o2=0.01;n2=0.01;TEMP=2.7";
- initial_temperature = 2.7;
- luminosity = 2
- },
-/area/security/brig)
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
+/turf/open/floor/iron,
+/area/quartermaster/miningoffice)
"xKK" = (
/obj/structure/table,
/obj/item/storage/toolbox/mechanical{
@@ -92103,21 +94269,6 @@
},
/turf/open/floor/iron,
/area/crew_quarters/toilet/restrooms)
-"xMd" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/turf/open/floor/catwalk_floor/iron,
-/area/engine/atmos)
"xMk" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
@@ -92161,6 +94312,20 @@
},
/turf/open/floor/iron/dark,
/area/bridge)
+"xMP" = (
+/obj/machinery/computer/cryopod{
+ pixel_y = 26
+ },
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 9
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/obj/machinery/camera/autoname{
+ dir = 9;
+ network = list("ss13","prison")
+ },
+/turf/open/floor/prison/dark,
+/area/security/prison)
"xMT" = (
/obj/machinery/camera/directional/north{
c_tag = "Security Post - Medbay"
@@ -92185,6 +94350,22 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/aisat)
+"xNb" = (
+/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{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/quartermaster/storage)
"xNc" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -92223,6 +94404,26 @@
},
/turf/open/floor/iron,
/area/science/xenobiology)
+"xNk" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ desc = "Talk through this. It looks like it has been modified to not broadcast.";
+ name = "Prison Intercom (General)";
+ pixel_x = -25;
+ pixel_y = -2;
+ prison_radio = 1
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/prison,
+/area/security/prison)
"xNt" = (
/obj/structure/aquarium,
/obj/effect/turf_decal/siding/wood{
@@ -92234,16 +94435,6 @@
},
/turf/open/floor/carpet/red,
/area/medical/exam_room)
-"xNu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 1
- },
-/turf/open/floor/prison,
-/area/security/prison)
-"xNx" = (
-/obj/effect/turf_decal/tile/neutral/opposingcorners,
-/turf/open/floor/iron/white,
-/area/crew_quarters/cryopods)
"xNW" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -92273,32 +94464,6 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/port/fore)
-"xOx" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock{
- name = "Bar Backroom";
- req_access_txt = "25"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/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/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/crew_quarters/bar)
"xOE" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -92309,6 +94474,22 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/turf/open/floor/iron,
/area/science/research)
+"xOJ" = (
+/obj/structure/table/wood,
+/obj/item/folder/red,
+/obj/item/stamp/hos,
+/obj/item/book/manual/wiki/sopsecurity{
+ pixel_y = 2;
+ pixel_x = 2
+ },
+/obj/item/book/manual/wiki/sopcommand,
+/obj/machinery/status_display/ai{
+ pixel_y = -32
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/item/storage/secure/briefcase,
+/turf/open/floor/iron/dark,
+/area/crew_quarters/heads/hos)
"xOQ" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -92446,6 +94627,13 @@
},
/turf/open/floor/iron,
/area/medical/medbay/aft)
+"xQr" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/quartermaster/office)
"xQu" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -92462,6 +94650,19 @@
},
/turf/open/floor/iron,
/area/maintenance/port/aft)
+"xQx" = (
+/obj/machinery/photocopier,
+/obj/machinery/status_display/evac{
+ pixel_x = 32
+ },
+/obj/machinery/camera/directional/east{
+ c_tag = "Lawyer's Office"
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/turf/open/floor/wood/big,
+/area/lawoffice)
"xQB" = (
/obj/structure/table/reinforced,
/obj/item/folder/white,
@@ -92472,6 +94673,30 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/storage/tech)
+"xQD" = (
+/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/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/medical/central)
+"xQH" = (
+/obj/machinery/disposal/bin,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark,
+/area/security/main)
"xQR" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
@@ -92495,40 +94720,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/science/explab)
-"xRj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/security/brig)
-"xRy" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/crew_quarters/cryopods)
-"xRC" = (
-/obj/structure/lattice,
-/obj/machinery/camera/motion/directional/east{
- c_tag = "MiniSat Maintenance";
- network = list("minisat")
- },
-/turf/open/space,
-/area/space/nearstation)
"xRN" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -92602,6 +94793,15 @@
},
/turf/open/floor/iron,
/area/engine/storage_shared)
+"xTA" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/science/shuttledock)
"xTF" = (
/obj/effect/turf_decal/tile/red/anticorner/contrasted{
dir = 4
@@ -92613,6 +94813,20 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/medical)
+"xTI" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-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/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/science/research)
"xTN" = (
/obj/machinery/light{
dir = 1
@@ -92620,18 +94834,17 @@
/obj/structure/bookcase/random,
/turf/open/floor/iron,
/area/quartermaster/exploration_prep)
-"xTV" = (
-/obj/machinery/newscaster{
- pixel_x = 32;
- pixel_y = -32
+"xTZ" = (
+/obj/structure/table/glass,
+/obj/item/storage/backpack/duffelbag/med/surgery,
+/obj/machinery/camera/autoname{
+ dir = 5
},
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 32;
- pixel_y = 32
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
},
-/obj/effect/turf_decal/tile/red/half/contrasted,
-/turf/open/floor/iron,
-/area/security/main)
+/turf/open/floor/iron/dark,
+/area/medical/morgue)
"xUd" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -92639,6 +94852,18 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/secondary/exit/departure_lounge)
+"xUh" = (
+/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/plating,
+/area/maintenance/starboard)
"xUn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
@@ -92652,24 +94877,6 @@
"xUp" = (
/turf/closed/wall,
/area/maintenance/solars/port/fore)
-"xUt" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/iron,
-/area/security/brig)
-"xUB" = (
-/obj/effect/turf_decal/tile/neutral/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/courtroom)
"xUE" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -92704,30 +94911,16 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/gateway)
-"xVG" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Service Foyer";
- req_one_access_txt = "22;25;26;28;35;37;38;46"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+"xVl" = (
+/obj/effect/turf_decal/tile/red/anticorner/contrasted,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
+/obj/machinery/camera/autoname/directional/south{
+ network = list("ss13","security")
},
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
/turf/open/floor/iron,
-/area/hallway/secondary/service)
-"xVQ" = (
-/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/security/courtroom)
+/area/security/brig)
"xVS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
@@ -92752,6 +94945,19 @@
/obj/effect/turf_decal/tile/neutral/opposingcorners,
/turf/open/floor/iron,
/area/crew_quarters/cryopods)
+"xVW" = (
+/obj/machinery/light_switch{
+ pixel_x = -26;
+ pixel_y = 26
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/hydroponics)
"xVX" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -92793,6 +94999,20 @@
/obj/machinery/space_heater,
/turf/open/floor/plating,
/area/maintenance/department/medical/central)
+"xWc" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "detectivewindows";
+ name = "Detective Privacy Blast door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/detectives_office)
"xWh" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
@@ -92821,6 +95041,18 @@
},
/turf/open/floor/catwalk_floor/iron,
/area/engine/atmos)
+"xWq" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green,
+/obj/machinery/light_switch{
+ pixel_x = 23;
+ pixel_y = 6
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/carpet/red,
+/area/crew_quarters/heads/hos)
"xWv" = (
/obj/structure/cable/yellow{
icon_state = "2-4"
@@ -92845,6 +95077,15 @@
/obj/machinery/firealarm/directional/west,
/turf/open/floor/iron,
/area/hallway/secondary/entry)
+"xXl" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/science/research)
"xXm" = (
/obj/effect/turf_decal/loading_area{
dir = 1
@@ -92862,6 +95103,27 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
/turf/open/floor/engine/vacuum,
/area/science/mixing/chamber)
+"xXw" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/turf/open/floor/carpet/green,
+/area/lawoffice)
+"xXF" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/engine/engineering)
"xXN" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -92881,20 +95143,31 @@
},
/turf/open/floor/iron,
/area/crew_quarters/dorms)
+"xXZ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/firedoor,
+/obj/item/folder/red,
+/obj/item/pen,
+/obj/machinery/door/window/brigdoor/westright{
+ name = "Armory Desk";
+ req_access_txt = "3"
+ },
+/obj/machinery/door/window/southright{
+ dir = 4;
+ name = "Armory Desk"
+ },
+/obj/machinery/door/poddoor/shutters{
+ id = "armoryaccess";
+ name = "Armory Shutter"
+ },
+/turf/open/floor/iron/dark,
+/area/ai_monitored/security/armory)
"xYj" = (
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/quartermaster/office)
-"xYv" = (
-/obj/machinery/light{
- dir = 4;
- light_color = "#e8eaff"
- },
-/obj/effect/turf_decal/siding/wood{
- dir = 5
- },
-/turf/open/floor/wood,
-/area/quartermaster/exploration_prep)
"xYC" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -92909,46 +95182,39 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/maintenance/port/aft)
-"xYI" = (
+"xYW" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
/obj/structure/cable/yellow{
- icon_state = "4-8"
+ icon_state = "2-8"
},
-/obj/machinery/door/airlock/security/glass{
- name = "Storage Closet";
- req_access_txt = "63"
+/obj/structure/chair/office{
+ dir = 1
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
+/obj/machinery/light_switch{
+ pixel_x = 24;
+ pixel_y = 8
},
-/obj/effect/turf_decal/stripes/line{
- dir = 4
+/turf/open/floor/iron/dark,
+/area/security/warden)
+"xZk" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
},
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/tile/yellow{
dir = 4
},
-/turf/open/floor/iron,
-/area/security/brig)
-"xYY" = (
-/obj/structure/table/wood,
-/obj/item/folder/yellow,
-/obj/item/pen,
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/security/courtroom)
-"xZe" = (
-/obj/structure/cable/white,
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/poddoor/preopen{
- id = "detectivewindows";
- name = "Detective Privacy Blast door"
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/dark/corner{
+ dir = 1
},
-/turf/open/floor/plating,
-/area/security/detectives_office)
+/area/engine/break_room)
"xZq" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 4
@@ -93074,15 +95340,6 @@
/obj/effect/turf_decal/tile/blue/half/contrasted,
/turf/open/floor/iron/dark,
/area/bridge)
-"yaK" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/brown/half/contrasted{
- dir = 8
- },
-/turf/open/floor/iron,
-/area/quartermaster/office)
"yaQ" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -93145,13 +95402,6 @@
},
/turf/open/floor/plating,
/area/medical/genetics)
-"yby" = (
-/obj/structure/chair/stool/directional/west{
- pixel_x = 7;
- pixel_y = 6
- },
-/turf/open/floor/prison,
-/area/security/prison)
"ybT" = (
/obj/machinery/deepfryer,
/obj/effect/turf_decal/tile/red/fourcorners/contrasted,
@@ -93192,20 +95442,6 @@
/obj/effect/turf_decal/tile/yellow/fourcorners/contrasted,
/turf/open/floor/iron,
/area/engine/atmospherics_engine)
-"ycC" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/delivery,
-/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/engine/break_room)
"ycL" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/yellow{
@@ -93225,18 +95461,79 @@
},
/turf/open/floor/iron,
/area/crew_quarters/bar/atrium)
-"ycR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
+"ydf" = (
+/obj/structure/table,
+/obj/item/reagent_containers/glass/bottle/morphine{
+ pixel_x = -4;
+ pixel_y = 1
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
+/obj/item/reagent_containers/glass/bottle/chloralhydrate,
+/obj/item/reagent_containers/glass/bottle/toxin{
+ pixel_x = 6;
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/glass/bottle/morphine{
+ pixel_x = 5;
+ pixel_y = 1
+ },
+/obj/item/reagent_containers/syringe,
+/obj/item/reagent_containers/glass/bottle/facid{
+ name = "fluorosulfuric acid bottle";
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/obj/item/reagent_containers/syringe{
+ pixel_y = 5
+ },
+/obj/item/reagent_containers/dropper,
+/obj/machinery/button/ignition{
+ id = "executionburn";
+ name = "Justice Ignition Switch";
+ pixel_x = -25;
+ pixel_y = 36
+ },
+/obj/machinery/button/door{
+ id = "executionfireblast";
+ name = "Justice Area Lockdown";
+ pixel_x = -25;
+ pixel_y = 26;
+ req_access_txt = "2"
+ },
+/obj/item/assembly/signaler{
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/obj/machinery/button/flasher{
+ id = "executionflash";
+ name = "Justice Flash Control";
+ pixel_x = -36;
+ pixel_y = 36;
+ req_access_txt = "1"
+ },
+/obj/machinery/button/door{
+ id = "SecJusticeChamber";
+ layer = 4;
+ name = "Justice Vent Control";
+ pixel_x = -36;
+ pixel_y = 26;
+ req_access_txt = "3"
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
dir = 4
},
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+/obj/item/radio/intercom{
+ pixel_y = 20
},
-/turf/open/floor/iron,
-/area/security/brig)
+/turf/open/floor/iron/dark,
+/area/security/execution/transfer)
+"ydg" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/obj/effect/landmark/start/lawyer,
+/turf/open/floor/iron/dark,
+/area/hallway/primary/starboard)
"ydh" = (
/obj/structure/cable{
icon_state = "1-4"
@@ -93253,6 +95550,26 @@
},
/turf/open/floor/catwalk_floor/iron,
/area/engine/atmospherics_engine)
+"ydA" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/hallway/primary/central)
+"ydY" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/catwalk_floor/iron,
+/area/hallway/primary/port)
"yeb" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/segment,
@@ -93264,13 +95581,6 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
/area/maintenance/starboard)
-"yed" = (
-/obj/machinery/door/poddoor/shutters{
- id = "armory";
- name = "armory shutters"
- },
-/turf/open/floor/iron,
-/area/ai_monitored/security/armory)
"yej" = (
/obj/item/radio/intercom{
pixel_x = 26
@@ -93285,33 +95595,12 @@
},
/turf/open/floor/iron/white,
/area/medical/medbay/aft)
-"yem" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/hallway/primary/central)
"yer" = (
/obj/effect/turf_decal/siding/white{
dir = 8
},
/turf/open/floor/glass/reinforced,
/area/hallway/secondary/entry)
-"yev" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/iron,
-/area/security/brig)
"yeX" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
@@ -93333,18 +95622,11 @@
},
/turf/open/floor/iron/white,
/area/maintenance/aft)
-"yfb" = (
-/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/carpet/grimy,
-/area/security/detectives_office)
+"yfc" = (
+/obj/structure/bodycontainer/morgue,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/tech,
+/area/security/brig/medbay)
"yfd" = (
/obj/structure/cable{
icon_state = "1-8"
@@ -93386,6 +95668,13 @@
/obj/item/kirbyplants/random,
/turf/open/floor/iron/white,
/area/medical/medbay/aft)
+"yfJ" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/security/warden)
"yfU" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -93467,20 +95756,6 @@
},
/turf/open/floor/iron/dark/textured,
/area/maintenance/disposal/incinerator)
-"yhk" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/red,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/security/brig)
"yhm" = (
/obj/structure/table/reinforced,
/obj/item/book/manual/wiki/engineering_hacking{
@@ -93531,29 +95806,12 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron/dark,
/area/aisat)
-"yib" = (
-/obj/machinery/disposal/bin,
-/obj/machinery/airalarm/directional/south{
- pixel_y = -22
- },
-/obj/machinery/light,
-/obj/structure/sign/nanotrasen{
- pixel_x = 32;
- pixel_y = -32
- },
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
-/turf/open/floor/iron/dark,
-/area/crew_quarters/heads/hos)
-"yii" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red/half/contrasted,
-/turf/open/floor/iron,
-/area/security/brig)
+"yic" = (
+/obj/machinery/seed_extractor,
+/obj/structure/railing,
+/obj/effect/turf_decal/siding/wideplating_new/dark,
+/turf/open/floor/prison/dark,
+/area/security/prison)
"yin" = (
/obj/structure/cable/yellow{
icon_state = "0-8"
@@ -93573,6 +95831,25 @@
},
/turf/open/floor/iron,
/area/science/research)
+"yiH" = (
+/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 = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/prison,
+/area/security/prison)
+"yiM" = (
+/obj/structure/chair/fancy/plastic,
+/turf/open/floor/prison,
+/area/security/prison)
"yiO" = (
/obj/structure/table,
/obj/item/folder/yellow,
@@ -93595,6 +95872,23 @@
},
/turf/open/floor/iron,
/area/security/checkpoint/medical)
+"yiW" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
+ },
+/turf/open/floor/iron/dark/smooth_corner{
+ dir = 1
+ },
+/area/security/main)
"yjf" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/reagent_dispensers/watertank,
@@ -93642,20 +95936,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners/contrasted,
/turf/open/floor/iron,
/area/hallway/primary/central)
-"ykr" = (
-/obj/machinery/light/small,
-/turf/open/floor/prison,
-/area/security/prison)
-"ykw" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -26;
- pixel_y = 32
- },
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/iron,
-/area/security/main)
"ykx" = (
/obj/structure/table,
/obj/item/paper_bin,
@@ -93684,6 +95964,19 @@
},
/turf/open/floor/engine,
/area/science/explab)
+"ykO" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/hallway/primary/central)
"yld" = (
/obj/effect/turf_decal/tile/blue,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
@@ -93706,25 +95999,17 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer4,
/turf/open/floor/iron,
/area/hallway/secondary/service)
-"ylr" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
+"ylv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
+ dir = 9
},
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 8
},
-/turf/open/floor/iron,
-/area/security/warden)
-"yly" = (
-/obj/machinery/light/small{
+/turf/open/floor/iron/dark/side{
dir = 4
},
-/turf/open/floor/iron/freezer,
-/area/security/prison)
+/area/security/courtroom)
"ylC" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/spawner/lootdrop/maintenance,
@@ -93735,16 +96020,6 @@
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating,
/area/maintenance/aft)
-"yma" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer2{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer4{
- dir = 8
- },
-/obj/structure/chair/stool/directional/west,
-/turf/open/floor/prison,
-/area/security/prison)
(1,1,1) = {"
aaa
@@ -99785,7 +102060,7 @@ bRy
bTo
mJV
tuy
-bZZ
+uPu
bPC
bkE
sqE
@@ -100818,7 +103093,7 @@ bPC
cdt
cdt
chi
-rbQ
+vRR
cdt
cdt
aad
@@ -101584,7 +103859,7 @@ eLo
bYf
hDK
bYd
-sUh
+mHR
bPC
qnE
cfu
@@ -101592,7 +103867,7 @@ chl
clO
clO
iDR
-iUl
+uXt
cdt
bRO
bBX
@@ -102107,7 +104382,7 @@ kBx
ckq
clO
jzA
-rbQ
+vRR
cql
bBX
obd
@@ -103388,7 +105663,7 @@ bPC
cdt
cdt
chr
-rbQ
+vRR
cdt
cdt
aad
@@ -106466,7 +108741,7 @@ wRU
bRP
cui
gVr
-mhn
+riP
wiQ
aad
aad
@@ -112366,10 +114641,10 @@ aaa
aad
nyB
bAJ
-bCA
+kQG
hox
-bCA
-bHO
+kQG
+oUY
nyB
aad
wiQ
@@ -114179,7 +116454,7 @@ bVZ
aad
wiQ
cbO
-cdD
+mBZ
ctn
aaa
cja
@@ -114651,7 +116926,7 @@ aad
aFq
aGO
uWt
-lsY
+slo
gXZ
aMw
vKl
@@ -115449,8 +117724,8 @@ aRF
qYo
nBr
fbA
-lXl
-huX
+sax
+sBC
rTu
ieP
fjK
@@ -115460,7 +117735,7 @@ qZP
hzQ
bRV
jRK
-wKK
+wnq
esq
bLF
wiQ
@@ -116225,8 +118500,8 @@ nBr
fDj
nBr
bHV
-lJY
-bLM
+gHq
+iqz
kpU
kpU
kpU
@@ -116235,7 +118510,7 @@ bWg
lmA
bHV
cbS
-cdD
+mBZ
ctn
aaa
cja
@@ -116482,8 +118757,8 @@ fgE
nCl
ecY
bHV
-vjn
-bDq
+rCg
+wVp
dpA
qLq
bRZ
@@ -116739,14 +119014,14 @@ srp
fXP
rkA
bHV
-tnT
-bDq
+nZC
+wVp
dDi
nBn
hhv
umj
tsr
-skm
+rpY
bHV
cbT
cdG
@@ -116996,8 +119271,8 @@ ilS
bRp
tVa
bHV
-lkL
-bLO
+wAv
+klv
wsI
kOO
wuj
@@ -117253,8 +119528,8 @@ plk
tPe
eNy
bHV
-ofC
-nfi
+bib
+hpo
ngw
lbb
ggZ
@@ -117510,13 +119785,13 @@ oEi
uOq
mCL
bHV
-bJW
-iCO
-bNU
+aWm
+bXE
+igK
bPW
bSc
qic
-bWl
+frS
bHV
bHV
cbV
@@ -117767,8 +120042,8 @@ iRH
mTm
bGl
bHW
-bJX
-wFq
+bNV
+xDo
bNV
bHV
orR
@@ -118024,8 +120299,8 @@ bCQ
tam
bAR
bHX
-bJY
-pGh
+bAR
+hUq
bAR
bHV
bSe
@@ -118279,16 +120554,16 @@ iFs
xdm
nAp
fyJ
-sDw
-pAt
-tvh
-sYH
-uyy
+oul
+gVS
+oul
+oGq
+lJy
bHV
bSf
qwa
bWo
-bYy
+kPB
qTq
qjX
rJn
@@ -118536,11 +120811,11 @@ bzo
bAR
qQC
fLP
-jNs
loa
+ofT
loa
-klU
-mHk
+sQb
+oKf
bHV
bSg
bTW
@@ -118594,7 +120869,7 @@ drz
amT
saw
lJW
-kcF
+xTA
hVM
sMH
aad
@@ -118793,15 +121068,15 @@ sul
oCh
qQC
qsO
-noI
-man
+wAm
+gTV
loa
-klU
-exm
+sQb
+gqD
bPX
bSh
bTY
-bWp
+gkx
bPW
oRI
cbZ
@@ -119050,11 +121325,11 @@ bxE
bxE
lwd
dNM
-jrP
-wSJ
+kKQ
+vqi
wAm
-klU
-lWg
+sQb
+jnE
bHV
bHV
bTZ
@@ -119111,7 +121386,7 @@ hVM
sif
nGc
jXQ
-odT
+ega
npf
pQl
aaa
@@ -119307,11 +121582,11 @@ bzq
bAX
bCV
nzi
-isN
-bIc
+rZI
+mfL
wAm
-klU
-iny
+sQb
+uMW
bPY
bSi
iyi
@@ -119556,19 +121831,19 @@ xWo
jZS
fUS
jZS
-exR
-qPR
-gSx
-bZL
-huY
-lyK
-kZW
-xjG
-rIG
-kza
+mpG
+flT
+clI
+sIx
+oMk
+sIK
+xZk
+pGn
+frF
+hYx
sVy
-vsC
-sMp
+sGr
+fYa
egt
lpu
rOW
@@ -119589,7 +121864,7 @@ tkF
ctw
cuX
cwn
-cxH
+axN
cEc
cEc
xFd
@@ -119813,16 +122088,16 @@ bmW
bov
bqe
bjl
-qqx
-bvk
+rae
+qaU
aMK
bxP
bzs
bAZ
-bCX
+noz
bEN
-bGr
-sQb
+ahc
+xjJ
bKe
loa
iny
@@ -119848,10 +122123,10 @@ cuY
cwo
cwo
czu
-cEd
+fPc
xqH
-cEd
-cFU
+fPc
+uge
cwo
cwo
mof
@@ -119875,14 +122150,14 @@ cea
cYB
saw
dqa
-drC
-anB
+jXo
+oFh
saw
ulh
cLa
hMo
jXQ
-tMF
+ega
npf
aaa
aaa
@@ -120049,7 +122324,7 @@ sAw
kQN
alT
aKa
-aLu
+qje
aRF
wLp
lwT
@@ -120070,24 +122345,24 @@ bmX
aRF
aRF
bsi
-ouA
-bvl
+gWz
+smd
aRF
aRF
aRF
aRF
aRF
aRF
-kkx
-sQb
+qQC
+xjJ
loa
loa
lGW
bzg
bSl
bUd
-bWt
-bYC
+xXF
+hCv
bSl
cce
pNH
@@ -120131,8 +122406,8 @@ cea
cea
cea
saw
-kFK
-syU
+nxD
+qvp
bLc
saw
fdW
@@ -120327,16 +122602,16 @@ bmY
aRF
bsj
bsj
-qqx
-bvp
-bwB
+mTn
+eLb
+eyj
bxQ
bzt
bBa
tOQ
aRF
-iIN
-gJy
+oMl
+oES
vRF
oeJ
jaV
@@ -120375,10 +122650,10 @@ vSZ
cMY
cRR
cTB
-cVC
+ttt
iUO
-cYL
-daq
+deM
+bLC
dcc
cMY
cjp
@@ -120563,7 +122838,7 @@ sKl
ffH
aID
aKb
-inR
+tlz
aRF
uhB
aPT
@@ -120585,19 +122860,19 @@ aRF
bsk
bsk
aZt
-bvp
-pBW
+jOQ
+hvQ
jpr
mQQ
vMw
bCZ
aRF
-bGu
-pcb
+bzg
+qSX
bQa
bMa
bOf
-bQc
+mXn
bMa
pbk
vbH
@@ -120605,8 +122880,8 @@ ulA
bQg
ccg
vFY
-cfN
-chE
+pZv
+wUV
car
car
car
@@ -120842,15 +123117,15 @@ aRF
bqi
bsl
jzx
-xMd
-bua
+exU
+ryu
rrJ
bzv
lCK
bDa
aRF
-bGv
-pGh
+cJs
+hUq
bKi
bSm
huU
@@ -121099,15 +123374,15 @@ aRF
bqj
bud
bud
-bvp
-fLo
+jOQ
+oPr
hvQ
oPr
pTA
bDb
aRF
-opg
-mUu
+gok
+hYS
aTz
gQG
adM
@@ -121116,7 +123391,7 @@ oRw
siF
nBM
att
-caA
+pij
cch
gAd
cfP
@@ -121133,7 +123408,7 @@ cvc
cwo
cxM
czy
-cAU
+pHM
cCB
wBz
cFY
@@ -121160,11 +123435,11 @@ caE
caE
saw
ojn
-rqI
+rLQ
saw
saw
eaf
-ejb
+fPx
eaf
eaf
eaf
@@ -121356,22 +123631,22 @@ aRF
bqk
bsn
bue
-bvq
-bwF
+unz
+nsM
bxT
bzx
bBe
ugi
aRF
-bGx
-ycC
+lEW
+nQl
kbv
bSo
siG
hQo
bSo
gzR
-rKh
+wyt
kSf
bQg
cci
@@ -121413,7 +123688,7 @@ cfT
kIU
iVz
jDt
-hYq
+sBj
gpK
rip
jHQ
@@ -121577,7 +123852,7 @@ aad
aaa
alT
cVY
-peB
+vhp
fMS
fMS
sDW
@@ -121613,16 +123888,16 @@ aRF
aRF
bso
bwy
-bvr
-bwG
+bxU
+kdY
bxU
hTj
-bBf
+haw
aRF
aRF
-bGy
-htg
-bKl
+vdt
+nNP
+fee
bMe
bQg
bQg
@@ -121675,7 +123950,7 @@ ekA
fvV
ayk
aFc
-aXc
+wEO
ekA
coR
sbv
@@ -121870,15 +124145,15 @@ alf
ftd
pbq
pbq
-lTL
-hUG
+eCH
+oDS
eCH
inr
inr
jTe
pbq
-gqn
-vAN
+pbq
+gjO
sbX
sbX
cTt
@@ -122127,15 +124402,15 @@ alf
vBe
iCJ
ngu
-oiu
-pwW
+ydY
+ydY
lZY
pFW
pFW
wVr
wKy
-qJc
-etJ
+vWb
+qQh
bnA
bnA
fjZ
@@ -122223,7 +124498,7 @@ aad
eal
eaT
rVj
-dPa
+ePh
eal
aad
aad
@@ -122386,7 +124661,7 @@ vlU
lmQ
dVz
dVz
-bxX
+xFV
ezj
wOL
bsr
@@ -122837,7 +125112,7 @@ aaO
aaO
aaO
aaO
-aeS
+xtq
afu
afx
agk
@@ -123483,7 +125758,7 @@ jXa
cOj
aad
gSi
-dFE
+oxL
pvY
gFa
dJO
@@ -124448,7 +126723,7 @@ kdZ
swf
dsZ
tvq
-pSF
+unB
xQB
frH
cbH
@@ -124652,8 +126927,8 @@ aaO
fxq
dsQ
gFA
-xYv
-oRG
+sKW
+kAN
mPk
evS
eHD
@@ -125528,9 +127803,9 @@ see
mcj
slV
qCE
-asj
-icf
-oUa
+uDh
+dvy
+npn
jNx
ruK
fRm
@@ -125711,10 +127986,10 @@ arB
xAv
xAv
arB
-kNN
-bas
-bbS
-bdr
+rmO
+pkL
+nsR
+ffB
bvB
mCl
bhz
@@ -125785,9 +128060,9 @@ djO
cNq
dmN
swY
-rhc
-drR
-dtl
+qUh
+jSe
+hSw
dtl
gJO
nSj
@@ -125921,7 +128196,7 @@ ads
aaO
aaO
aaO
-rFo
+meF
afw
afT
agk
@@ -125968,14 +128243,14 @@ lJU
uhP
wAr
xfZ
-kcz
-eFN
-qWw
-ssk
+sKT
+bar
+txk
+ouf
bvB
bar
-bhA
-oCD
+vkU
+knr
ilY
vvf
mGz
@@ -126231,8 +128506,8 @@ bbU
lqu
xvc
iJr
-giA
-uFZ
+xVW
+srR
bwN
ttM
bqB
@@ -126692,7 +128967,7 @@ aaO
aaO
aaO
aaO
-aeS
+xtq
afu
afx
agk
@@ -126743,7 +129018,7 @@ rZH
bar
bbW
uYk
-fov
+ldx
bar
bhD
bjt
@@ -127099,7 +129374,7 @@ xvq
hKr
fGD
qFv
-fMC
+hOU
ezU
msg
hTa
@@ -127296,7 +129571,7 @@ xBM
tUM
hPJ
sBL
-cyn
+ccp
caG
cwz
jei
@@ -127571,11 +129846,11 @@ cOV
cQD
cSl
cTZ
-cWa
+hge
cQD
cQD
daF
-cWa
+hge
cQD
dfi
hPb
@@ -127585,7 +129860,7 @@ dlE
dmS
doM
dqC
-drX
+wbN
dtq
duK
dwo
@@ -127598,7 +129873,7 @@ dEz
dFQ
dHp
dIE
-lwQ
+crx
dKH
dMa
dMa
@@ -127837,16 +130112,16 @@ cZe
dfj
emU
wyn
-jdO
-dlF
-dmT
-doN
+xXl
+enV
+rHL
+lAn
dqD
drY
eQK
duL
dAF
-dxX
+tDl
dzB
dAF
gdk
@@ -128008,11 +130283,11 @@ gnI
ewe
aVV
auh
-jIs
-aCD
-aDJ
-roP
-aFZ
+sod
+arB
+aDI
+ePH
+gbI
aHq
chm
aOA
@@ -128031,11 +130306,11 @@ pDE
nYL
jVD
rVt
-vrL
-fkV
-xVG
-qXg
-fnk
+vYK
+pog
+pfM
+akm
+jtf
moz
buo
moz
@@ -128090,20 +130365,20 @@ nQH
vtb
twT
fLO
-ddX
+rYS
dfk
hNP
fjQ
-cUe
+xXl
dlG
dmU
-doO
-fwp
+vph
+iPd
gTF
gvP
lwp
avU
-iOM
+uCe
uih
xvn
dCk
@@ -128268,12 +130543,12 @@ pYN
lho
jMP
egK
-net
-tQq
-gFv
+gko
+nFf
+qJI
mPm
-jtE
-jtE
+hjk
+hjk
eHg
fYE
hXE
@@ -128288,11 +130563,11 @@ ylh
pJE
aDI
fWs
-krq
-vDP
-bnp
-gBR
-dEF
+pkT
+mwi
+bnn
+hcP
+epZ
cyH
bup
csJ
@@ -128326,7 +130601,7 @@ bSw
fQi
wHE
fQi
-cwA
+nhw
fQi
czP
fQi
@@ -128343,7 +130618,7 @@ jKw
mAd
tpm
rLi
-jeB
+jdD
cZg
fYY
mzB
@@ -128351,11 +130626,11 @@ daJ
dfl
uVi
fju
-cUe
+xXl
dlH
dmV
-doP
-oMU
+mgo
+cOp
eZN
lZy
gUQ
@@ -128364,7 +130639,7 @@ dxZ
dzD
dAH
dCl
-dDv
+gNS
lkM
qhh
vZo
@@ -128527,7 +130802,7 @@ qVx
aDL
aDL
aGb
-xOx
+tjq
aDL
aKt
aDL
@@ -128559,12 +130834,12 @@ bwU
bBw
miL
fGY
-bGP
+mYB
bIH
bIH
bMm
-bOv
-bQx
+cMb
+xus
bIH
bUB
bWO
@@ -128598,8 +130873,8 @@ cNo
cOV
cOV
cSl
-cUd
-cWa
+dAu
+hge
cOV
cOV
daJ
@@ -128608,7 +130883,7 @@ cQD
dfm
dYI
fjQ
-cUe
+xXl
dlI
dmW
doQ
@@ -128769,7 +131044,7 @@ anc
kea
pVa
apb
-aqg
+xyD
aky
gZj
asW
@@ -128783,8 +131058,8 @@ aBA
rZH
aDL
tRC
-aGc
-mdW
+qoi
+jfL
nUQ
aKu
aDL
@@ -128813,10 +131088,10 @@ buq
buq
buq
bwU
-rBP
+wCx
lpX
rpS
-eBL
+hnF
bIH
bKy
bMn
@@ -128854,7 +131129,7 @@ qkA
cNp
cOW
cQH
-cSp
+bUz
cUe
cWb
cXr
@@ -128865,10 +131140,10 @@ ddY
dfm
hWO
ajp
-cUe
+xXl
dlJ
-dmX
-dmX
+tfc
+tfc
vyN
dlE
dlE
@@ -129107,14 +131382,14 @@ cGg
cvo
fQi
qHr
-wtm
-cNq
-cOX
-rMq
-pRy
-rMq
-pRy
-cXt
+ePY
+cNp
+oJW
+kyv
+noG
+kyv
+noG
+ogT
cZj
daL
suJ
@@ -129122,12 +131397,12 @@ ddZ
dfo
vKj
uHD
-cUe
-cUe
-cUe
-cUe
-rUo
-dsc
+wVw
+tOs
+tOs
+tOs
+gGZ
+pDq
cUe
cUe
cUe
@@ -129330,7 +131605,7 @@ bwU
bBw
plm
ggk
-bGS
+oLa
bIH
bKA
bMp
@@ -129364,27 +131639,27 @@ cGh
cvo
cIC
qHr
-xjX
+nfB
cNr
-cOY
-pRy
-dDx
-dgv
-kyv
-cUe
+fJl
+vJj
+wKx
+fJl
+rcY
+lON
cZi
uGq
pvm
qID
cPi
sMW
-wQe
-cdP
+fZU
+eDN
rMq
pRy
xHF
-ndf
-rnd
+xTI
+oiK
mtI
rnd
ekD
@@ -129570,7 +131845,7 @@ aYC
baB
bcg
bdF
-bfb
+ihZ
aYC
bdJ
rbH
@@ -129621,11 +131896,11 @@ wFL
cHK
cIF
qHr
-vto
+sAk
fnR
qxS
-pEs
-kRR
+bfv
+gjQ
qxS
kzH
iYS
@@ -129635,8 +131910,8 @@ yan
uNc
pbF
red
-lZP
-kEv
+hSc
+wYu
itn
lvd
nmn
@@ -129645,7 +131920,7 @@ oSO
sFo
vKL
vFJ
-rfX
+dzU
vKL
vKL
nwB
@@ -129657,7 +131932,7 @@ lZU
fBF
cOR
xnx
-qkP
+nQQ
rgr
jML
jYj
@@ -129672,7 +131947,7 @@ dWR
dXI
dYz
dZm
-dZU
+bAg
dZk
dWN
ebZ
@@ -129776,7 +132051,7 @@ ads
aaO
cYD
aaO
-rFo
+meF
afw
afT
agk
@@ -129864,7 +132139,7 @@ ckX
cmA
kcv
cpE
-cqW
+qPf
psN
eJj
cvo
@@ -129881,18 +132156,18 @@ qHr
qkA
cNp
cOZ
-fjQ
+noG
wEL
dgv
kkX
-cXu
+nYq
cZk
daO
dcD
dec
dfp
cPf
-rwz
+ovF
djW
dlM
dlM
@@ -130138,7 +132413,7 @@ pkr
uMP
cNp
cPa
-ajp
+kyv
fFQ
dgv
noG
@@ -130149,7 +132424,7 @@ cZm
cZm
cZm
dgJ
-uWK
+tfM
djX
dlN
dmZ
@@ -130179,13 +132454,13 @@ dYu
jgN
dST
dTJ
-dUB
+qCL
qeN
dVl
dVl
dVl
dVl
-dZn
+pvd
dZV
eaE
ebk
@@ -130395,7 +132670,7 @@ ryS
qSp
cNs
xAr
-hYa
+ren
cXA
dgv
kyv
@@ -130406,7 +132681,7 @@ dcE
ded
liM
dij
-aCE
+xpQ
djY
dlN
dna
@@ -130631,7 +132906,7 @@ ckV
cgh
cib
cjD
-ckY
+rte
cmC
cod
cpD
@@ -130652,18 +132927,18 @@ qHr
qkA
cNp
cPc
-alH
-dCn
-cUj
-pRy
-cXx
-cZn
-daR
-srw
-rXt
-cMR
-rXt
-uUm
+kyv
+cXA
+lIA
+noG
+eYm
+cZo
+ezZ
+mdL
+wwm
+wAc
+wwm
+vVc
ojC
dlO
dnb
@@ -130807,7 +133082,7 @@ aaO
aeX
afx
afx
-agl
+gOs
aaO
enM
aaO
@@ -130872,7 +133147,7 @@ bwT
aZO
qqU
fqp
-gby
+fjw
bII
bKG
bMv
@@ -130901,7 +133176,7 @@ wEl
fau
cBn
fau
-ubt
+iEL
mVG
cvo
cII
@@ -130954,14 +133229,14 @@ vpZ
bkl
lsO
gEI
-dXK
+oBJ
dYD
-dXK
+oBJ
gEI
gEI
-dXK
+oBJ
dYD
-dXK
+oBJ
gEI
edz
eea
@@ -131124,7 +133399,7 @@ cyK
buq
aaa
bwR
-byf
+bXq
bwU
bBF
esA
@@ -131141,7 +133416,7 @@ iJK
cSI
cSI
iEp
-iSu
+uga
cSI
cSI
siA
@@ -131205,7 +133480,7 @@ njF
lQC
vWm
obz
-dSM
+fWI
dTF
vpZ
bkl
@@ -131225,7 +133500,7 @@ eeb
rOk
efw
kVC
-egF
+gtt
aaa
aad
aaa
@@ -131338,7 +133613,7 @@ akE
amm
anl
aok
-aph
+gxr
akE
akF
alf
@@ -131403,13 +133678,13 @@ wvZ
pJZ
eSz
vzo
-cmD
+gRj
aad
aad
cqZ
csu
byc
-cvr
+krI
aad
aad
czY
@@ -131417,7 +133692,7 @@ wXk
cCU
deI
dvD
-cHM
+wlz
fQi
qHr
qkA
@@ -131600,7 +133875,7 @@ api
abZ
arL
atg
-auk
+qxz
auj
orI
ayf
@@ -131668,7 +133943,7 @@ qRX
cpL
cqY
cwJ
-cvr
+krI
czZ
cBp
cDd
@@ -131860,7 +134135,7 @@ mHx
tYq
ouq
vaa
-iQE
+kbf
azh
aAp
auj
@@ -131871,7 +134146,7 @@ erE
aHE
fag
fDi
-wmE
+hZB
rOT
rOT
rOT
@@ -131940,7 +134215,7 @@ cPh
cQR
cPf
cXA
-cWf
+xwD
cXC
cZm
hOP
@@ -131964,7 +134239,7 @@ fjy
dyd
dyg
kOG
-tWQ
+ifp
wAe
wyq
dyg
@@ -131974,7 +134249,7 @@ dNL
dNL
dPg
dPZ
-dQO
+mMV
dNL
dNL
fHO
@@ -132176,7 +134451,7 @@ dzh
nmr
cmE
cof
-cpI
+kZj
cqY
csw
dpO
@@ -132370,11 +134645,11 @@ tst
jeW
abf
arN
-gCA
-szn
-cCa
-rxH
-gwR
+jda
+eXK
+kdk
+oqL
+dhn
oqL
qDH
icZ
@@ -132445,7 +134720,7 @@ pWe
cCY
cEN
fbi
-cHM
+wlz
cIL
cKy
wtm
@@ -132489,7 +134764,7 @@ dOG
gDy
gDy
gDy
-dRU
+dxe
dSQ
dTH
nzX
@@ -132631,8 +134906,8 @@ grw
cmn
avN
ovq
-gdC
-gDm
+fVm
+dVv
uRN
kUm
trs
@@ -132648,17 +134923,17 @@ kqm
nKt
ekH
sJP
-exK
-jhO
+dVv
+pPt
kqm
kqm
bcn
kqm
iJy
-lMP
+vsg
tbO
nOm
-kqm
+dVv
bnt
fqi
uEv
@@ -132702,7 +134977,7 @@ pTo
cCZ
cEO
bmE
-cHM
+wlz
cIM
cKz
vfp
@@ -132746,7 +135021,7 @@ dOF
lIk
dQb
nZK
-dRV
+sQp
dSR
dTF
vpZ
@@ -132888,13 +135163,13 @@ jLZ
auo
avN
awR
-eZW
-azk
+mXi
+aCN
aCN
rKr
aCN
aDN
-aFd
+gZC
bdU
bdT
bdT
@@ -132905,14 +135180,14 @@ aCN
aQA
rKr
aCN
-bgw
-aXe
+bhV
+saY
bhV
aCN
bnv
aCN
bhV
-oOQ
+jVW
bhV
bhV
blD
@@ -132959,7 +135234,7 @@ yfn
cDa
cEP
oWD
-cHM
+wlz
cIN
cKA
qhB
@@ -132982,7 +135257,7 @@ hOx
mpc
mpc
rVm
-vLp
+faT
mKl
fkQ
iWK
@@ -133003,7 +135278,7 @@ tfT
qnW
cun
owr
-gCR
+cUb
bBT
swT
kdu
@@ -133024,7 +135299,7 @@ pvO
tMu
cgU
ecL
-egF
+gtt
aaa
aad
aaa
@@ -133162,14 +135437,14 @@ aFe
aFe
aFe
aTO
-aVx
-aXf
+aYJ
+sTT
aYJ
aTO
aTO
bdN
bfk
-wiL
+wsF
bhW
bfk
bdN
@@ -133419,14 +135694,14 @@ hqP
rwP
aFe
xQd
-mNG
-aXg
+xQr
+mNf
poY
rhD
aTO
bnJ
hxc
-ejk
+sKq
blu
rsr
oxB
@@ -133482,7 +135757,7 @@ dYe
xdx
tNX
vVL
-xlk
+lXf
fyg
cRd
cnz
@@ -133510,7 +135785,7 @@ vGU
lgw
lAV
dCy
-dbq
+gOq
dNO
dNO
dNO
@@ -133520,7 +135795,7 @@ dPl
dNO
dST
uus
-dUB
+qCL
dVl
dWg
dVl
@@ -133656,7 +135931,7 @@ api
abZ
arR
atn
-auq
+cgq
avQ
avQ
avQ
@@ -133676,14 +135951,14 @@ prL
yiO
aHG
hzJ
-jxe
-kFG
+oQW
+nEA
xYj
-fXl
-bcp
-hRC
-fLQ
-gRu
+sMg
+aYJ
+vJd
+ovq
+vlq
ovq
ovq
skC
@@ -133724,7 +135999,7 @@ csE
jgi
cqY
cwR
-cvr
+krI
czZ
cBp
cDd
@@ -133794,8 +136069,8 @@ xsT
eej
iZF
efG
-egs
-egH
+wPs
+rAA
aad
wiQ
aaa
@@ -133908,7 +136183,7 @@ akP
amu
anu
aoq
-apo
+cKq
akP
akR
aig
@@ -133920,34 +136195,34 @@ awU
ucV
aAt
aBJ
-gFD
-aDP
-aFf
-aGq
+vaz
+awU
+aFe
+aYu
mHM
aJh
mQt
lTZ
aNn
-lNC
-irJ
-lnV
-gZp
-jKW
-kIk
+xjr
+sAO
+pTQ
+bab
+lIP
+pMe
txw
-yaK
-amy
-fGB
-uaU
-iaw
-bdU
-ovq
-ddP
-bnv
-egd
-qHr
-cmP
+jgX
+cHn
+wdK
+iSZ
+ufb
+qFX
+rCh
+emO
+fOb
+bmg
+eqN
+ydA
buq
aaa
bwS
@@ -133973,21 +136248,21 @@ fxl
vgZ
nUN
vzo
-cmD
+gRj
aad
aad
cqZ
csB
etA
-cvr
+krI
aad
aad
czY
hgl
-cDe
+qOK
vfF
qeg
-cHM
+wlz
cIS
qHr
sTH
@@ -134177,21 +136452,21 @@ aym
azn
aBJ
aBK
-jTh
-pJi
-wAi
-jZK
-wRg
+dMS
+lJH
+pXs
+vuL
+tUx
wRg
rVL
nmc
pva
-olH
-hzF
+stW
+jjz
aHG
jAa
kHy
-kFG
+nEA
xYj
gxS
aYJ
@@ -134208,7 +136483,7 @@ cmP
buq
aaa
bwT
-byf
+bXq
bwU
bBM
esA
@@ -134225,7 +136500,7 @@ utR
cSI
cSI
xVY
-eio
+dHX
jRP
hQb
utR
@@ -134434,21 +136709,21 @@ rec
qoQ
tie
hkL
-pQc
+gHE
mDy
aFe
aGs
-aHJ
+gEn
aJj
aKI
aLS
aNo
-aOQ
+dLe
aFe
aFe
omS
rfs
-mnQ
+eLF
xYj
xSO
bcr
@@ -134511,7 +136786,7 @@ nHy
jCv
wce
vIc
-vnj
+fUW
qrx
jAC
qMp
@@ -134536,7 +136811,7 @@ dDM
gBU
kOq
geg
-iCW
+iwh
dCy
bqp
dMy
@@ -134680,7 +136955,7 @@ fWh
eZf
nyr
dcy
-uaE
+vNN
akP
arU
shc
@@ -134691,21 +136966,21 @@ ayo
jnP
grZ
mny
-aCT
-aDP
-aFf
-aGt
-aHK
+mho
+awU
+aFe
+ppg
+kCw
aJk
aHK
aHK
aNp
-aHK
-aQF
-aSg
+oaI
+fEq
+aFe
hbZ
kHy
-aXl
+qEl
sFW
myg
aYJ
@@ -134953,29 +137228,29 @@ aDT
aFi
aFi
aHL
-aJl
-aKJ
+lyS
+dHZ
aFi
aFi
aOR
-aKJ
-aSh
+dHZ
+aFi
asC
wby
-ndZ
+rHh
xYj
nLS
eqS
bdT
ovq
bdU
-bdT
-ovq
-ddP
-bnv
-egd
-qHr
-cmP
+kEz
+rCh
+emO
+fOb
+bmg
+eqN
+xEb
buq
aaa
aad
@@ -135029,7 +137304,7 @@ kYX
bUx
ulF
tuF
-kzR
+ujy
cPy
msj
mHY
@@ -135216,17 +137491,17 @@ jTK
aNq
nCX
vFd
-aSi
+aNq
jAa
kHy
-fIR
+eQj
xYj
lml
aYJ
bdT
ovq
eEo
-ovq
+mUA
ovq
vCO
bfk
@@ -135286,7 +137561,7 @@ oqo
xDQ
hZY
tkr
-per
+naj
cPy
wFS
akv
@@ -135473,17 +137748,17 @@ xBz
pcF
gPs
lzM
-gTK
+puh
gZp
xoY
-kFG
+nEA
xYj
vwz
lUd
bdU
ovq
ovq
-ovq
+mUA
ovq
oKM
bfk
@@ -135515,8 +137790,8 @@ cgu
cij
hqR
cjL
-cmJ
-con
+fgW
+dyB
cpQ
crd
jIP
@@ -135539,7 +137814,7 @@ lgv
jCv
crb
nVA
-kiJ
+oiU
ats
saH
cPy
@@ -135558,7 +137833,7 @@ cNz
eyb
kfR
aMG
-ote
+rbB
dCy
dCy
dCy
@@ -135726,21 +138001,21 @@ ivK
tvg
qVU
tvg
-qcb
+tgu
aNs
xhm
sbe
-aSk
+aNs
pjA
eWz
-gdN
+fYn
quQ
wud
aTO
bdV
bdU
bgF
-bdT
+stJ
fit
kAf
bdN
@@ -135772,8 +138047,8 @@ cgv
bUQ
cjN
cjL
-cmK
-pyY
+pQV
+lzU
cpQ
cre
luv
@@ -135781,11 +138056,11 @@ rrl
cvz
cvz
cyD
-cAh
+pHq
cBC
cyD
cEX
-cGC
+ffl
cvz
cIT
qHr
@@ -135818,7 +138093,7 @@ kgl
dRr
dCy
lDW
-etd
+xTZ
sRe
wIq
kgf
@@ -135986,18 +138261,18 @@ aKN
aFi
aFi
aHL
-aQJ
-aSh
+fhV
+aFi
aTO
lIX
-aXq
+lQb
aTO
aTO
aTO
baU
bfq
baU
-bie
+wuH
baU
baQ
baQ
@@ -136012,12 +138287,12 @@ bwU
bBw
mgP
fGY
-bGS
+oLa
bIV
juV
bMM
maa
-bQV
+gOI
bIV
bUQ
bUQ
@@ -136025,12 +138300,12 @@ bUQ
cbg
ccQ
nSM
-cgw
+mbR
bUQ
cjO
cld
-cmL
-git
+fYG
+uYf
cpS
cjJ
qeD
@@ -136244,17 +138519,17 @@ tID
ald
xwp
gyj
-eoQ
-fnd
-lPD
-bqz
+rYU
+lmr
+pYv
+gEY
xxw
baQ
mnl
ouW
eEW
fWb
-nkp
+hqo
elE
mlc
baQ
@@ -136286,10 +138561,10 @@ cgx
bUQ
cjP
cjL
-cmM
-coq
+uSR
+ioI
cpT
-crf
+jJN
csE
jBK
cvD
@@ -136324,7 +138599,7 @@ iFX
ybj
vuW
ksi
-nrU
+cFo
sGV
dsE
dRI
@@ -136502,16 +138777,16 @@ vkn
aOW
neL
iMb
-lwO
-swh
-qeb
+qUV
+cXb
+wWn
gBf
baU
jwP
qug
qug
xrw
-qug
+wgI
ibS
blP
baU
@@ -136523,13 +138798,13 @@ buq
buq
buq
bwU
-rBP
+wCx
cbA
wKT
-fmO
+dio
bIV
bKT
-bMO
+hSa
bOW
bQW
bSR
@@ -136562,8 +138837,8 @@ cIF
qHr
rZN
dGo
-sEM
-jlI
+gDt
+hEF
tUL
ffv
vlB
@@ -136710,7 +138985,7 @@ aad
ace
act
nIT
-oZS
+erq
ace
aad
abi
@@ -136759,16 +139034,16 @@ nIb
aOW
sNU
qAi
-pvy
-mwU
-vZC
-rjH
-pKD
-keB
-fuM
-fuM
-uNh
-pKZ
+auD
+xNb
+vTR
+tBE
+bRW
+vAM
+lXR
+lXR
+bvS
+tVN
qug
blQ
bnz
@@ -136783,7 +139058,7 @@ bwU
bBw
rpw
msL
-bGS
+oLa
bIV
bIV
bIV
@@ -136847,7 +139122,7 @@ fIk
uvs
kDM
lUI
-dTT
+xJm
nGw
cKV
mYq
@@ -137016,9 +139291,9 @@ vkn
aOW
sNU
vkn
-ipD
-vwg
vkn
+tRx
+gNF
fea
baU
tgQ
@@ -137273,9 +139548,9 @@ nIb
aPa
sNU
vkn
-pix
-eqO
-vkn
+hLY
+uVe
+gNF
aYV
baQ
pFL
@@ -137329,8 +139604,8 @@ raM
cJq
cJq
cJq
-cJq
-oLK
+fMm
+ezA
vUH
cNE
pDS
@@ -137355,7 +139630,7 @@ peY
ruH
mff
qjw
-uSN
+npv
hUj
nYu
cWv
@@ -137530,9 +139805,9 @@ jNE
aOW
neL
vkn
-jnu
-fLc
-nIb
+uaM
+gcb
+cai
aYW
baQ
baQ
@@ -137565,29 +139840,29 @@ osy
qKf
vUC
iTK
-pTr
+iTK
wIN
rNZ
eeT
+eUb
iTK
-cKf
orm
vfT
iTK
rTx
iTK
-oyV
-yem
-qYs
+ykO
+bZl
uTf
iTK
+iTK
dqp
rNZ
uae
eeT
iTK
-qPe
ofS
+qPe
wvp
cNF
pDS
@@ -137787,10 +140062,10 @@ vkn
aPa
sNU
iDv
-pvy
-wxY
-fgb
-aYX
+auD
+uQR
+gOB
+avW
baQ
bcy
bBh
@@ -137805,10 +140080,10 @@ aig
bsW
bsW
bvO
-bxb
-jvS
-bzW
-bBS
+fBE
+aSs
+quL
+nkE
bsW
bsW
bHq
@@ -137821,19 +140096,18 @@ bSS
qQH
bXm
bZr
-cbj
-cbk
-cbk
-cbk
-cbk
-cbn
-ckk
-cbn
-cbk
-cbk
-cbk
-cbk
-pIX
+qdr
+bHr
+xWc
+efM
+bHr
+bHr
+bHr
+bHr
+bHr
+bsW
+bsW
+xzP
cyI
cwZ
nea
@@ -137847,6 +140121,7 @@ inw
bzn
inw
inw
+inw
nVV
nVV
hWR
@@ -137879,7 +140154,7 @@ dPq
dPq
dPq
dPq
-iXQ
+sEO
dPq
hFN
dPq
@@ -138044,18 +140319,18 @@ nIb
aOW
sNU
veC
-iqL
-kVR
-vkn
+nnH
+uQR
gBf
-baV
-bgP
-jwP
-mcA
+aEh
+bcB
+bed
+jBL
qug
-vTE
+vBR
+ukd
lnY
-bgP
+blW
aig
txW
aig
@@ -138072,28 +140347,27 @@ bHq
lJV
bHq
kxN
-xoC
+ijz
rDI
bMQ
-vpF
-efE
+jqU
+oVj
bZu
-cbk
-ltx
-xuL
-jCz
-rMJ
-vFH
-weY
-vFH
-sDu
-jSw
-mFe
-iMM
-cbk
+bHr
+nGr
+kJx
+jDr
+lHS
+bMW
+fHN
+wyY
+bHr
+eeo
+ksd
+bsW
cvJ
-qHd
-vUH
+hQV
+quR
cAm
lir
xLR
@@ -138102,9 +140376,10 @@ cAm
wqt
uiw
jBl
-fmt
-twW
+tHG
sOK
+eWS
+wMa
nVV
oXR
tqV
@@ -138297,25 +140572,25 @@ nIb
aGz
nIb
aBW
-vkn
-aPb
+sVl
+qcT
woy
gwW
-kTJ
-rzG
-gwW
-fZA
-baW
-bcA
-gsi
-mEt
-bgN
-aCf
-qDh
+rxh
+gpv
+mkM
+aEh
+bcB
+bed
+sgR
+rUu
+xKs
+lsJ
+bgO
blV
bnB
boZ
-aig
+aiJ
aaa
but
but
@@ -138325,31 +140600,30 @@ but
but
but
aaa
-bHq
+hYw
hLb
bHq
-ozZ
-kQK
-bQZ
-qwX
-fQr
+mcH
+ugS
+vnp
+bSV
+tHk
efE
bZu
-cbn
-vFH
-vFH
-vFH
-vFH
-vFH
-weY
-vFH
-vFH
-vFH
-vFH
-vFH
-cbn
+xki
+rjB
+rgt
+jeq
+gcL
+lLw
+ctP
+avS
+bHr
+aaX
+clw
+bsW
cvJ
-mNr
+qHd
vUH
cAm
lNA
@@ -138361,7 +140635,8 @@ fmt
gwy
iJm
fmt
-tHG
+fmt
+inw
nVV
pDS
pDS
@@ -138383,7 +140658,7 @@ wgz
tJK
vcM
hkQ
-hjn
+vAj
cRe
vau
lII
@@ -138554,60 +140829,59 @@ lsf
aBY
nIb
azD
-vkn
-aPc
+vey
aQO
aQP
-aUh
-nhr
+aQP
+aHN
aQP
aQP
aQQ
-bcB
-bed
-jBL
-bgO
-nIr
-jbK
-blW
+bcC
+bee
+sgR
+qkd
+vwj
+tfL
+qBi
+aig
aig
aiC
aig
aad
but
-hVe
-vLQ
-fsO
-hVe
-hVe
+xff
+oja
+rYK
+rXX
+gIo
but
aad
bHq
enK
bKW
-bMT
-umc
-ePP
-uuT
-tSx
-oEh
-bZu
-mIj
-vFH
-vtj
-kGQ
-jXJ
-dwk
-nDq
-jXJ
-jXJ
-dwk
-xVQ
-vFH
-mIj
-xlj
-hQV
-uOY
+qDf
+fXH
+iMk
+ePj
+xIH
+sQl
+kNE
+njr
+aWA
+nRF
+wyX
+xli
+nEL
+gGU
+eHo
+bHr
+ueZ
+lMT
+kWK
+tAK
+laZ
+mgU
cAm
cBJ
mst
@@ -138618,9 +140892,10 @@ jEv
dsp
wPq
nXO
-wMa
+fmt
inw
rPE
+fmt
ayi
fmt
pIp
@@ -138811,60 +141086,59 @@ azE
azE
azE
azE
-azE
-aPd
+lzQ
aQP
mFr
-oTU
-eAy
+ifg
+kMj
ifg
pUU
baX
-bcB
-bed
-sgR
-rUu
-jZR
-qek
-baQ
+bcD
+bjM
+qug
+bgP
+voT
+nhq
+lSe
aig
apw
+apw
aig
aaa
but
-ggn
-nWW
-pho
-rXX
-iRR
+sEd
+bxh
+uhW
+bxh
+grC
but
aaa
bHq
lJV
bHq
bMU
-nid
+qAc
bRb
bSV
-cYv
-jDV
-bZu
-cbn
-rMJ
-cvH
-cvH
-cvH
-vFH
-cvH
-lES
-cvH
-rMJ
-vFH
-vFH
-cbn
+eel
+efE
+wIe
+bHr
+bjR
+xHr
+uPe
+oCp
+jjP
+kYH
+tzQ
+bHr
+gvO
+pMO
+bsW
cvM
-rrG
-ckH
+qHd
+jsO
cAm
cAm
vvW
@@ -138878,6 +141152,7 @@ dsp
ayi
kON
fmt
+fmt
gEX
gEX
gEX
@@ -139068,60 +141343,59 @@ rPw
ocD
ocD
aGC
-aNw
-aPe
+xbo
aQP
lyE
-ruo
-pHy
+nbk
+xfF
hKY
ivH
aQP
-bcC
-bee
-sgR
-vlr
-vUW
-hpL
-blX
+bgP
+bgO
+qug
+bgO
+ePM
+jbK
+bgO
aig
+bpb
agW
aig
aaa
but
-sTu
+gkv
bxh
-uhW
+hsE
bxh
-ocU
+hOV
but
aaa
bHq
-ara
+kIu
bHq
dBE
-ugl
+lbl
fXg
bMQ
-jch
+rUF
efE
bZu
-cbk
-tsP
-cvH
-cvH
-cvH
-vFH
-cvH
-cvH
-cvH
-cvH
-llm
-oZR
-cbk
+xWc
+gwp
+gqY
+rYs
+vje
+ceH
+ctP
+ctP
+foH
+aVn
+ipl
+bsW
cvM
-qHd
-vUH
+rrG
+klf
cAm
cBL
iPK
@@ -139134,6 +141408,7 @@ gLW
fyb
dsp
inw
+fmt
idn
gEX
lmz
@@ -139325,32 +141600,32 @@ aHV
aHV
aHV
aLY
-aNw
-aPf
+xbo
aQP
amb
-hNa
-xrA
+wtU
+qhn
oGz
oOA
aQQ
-bcD
-bjM
-qug
-bgP
-voT
-nhq
-blY
+bcE
+iYy
+bfE
+vBR
+ceQ
+xKe
+qTf
aig
-bpb
+msI
+apw
aig
aaa
but
-tKd
-bxh
-bpf
-bxh
-mYX
+but
+but
+but
+but
+but
but
aaa
bHq
@@ -139360,22 +141635,21 @@ bMQ
bMQ
bMQ
bMQ
-bUW
+ubK
efE
-txa
-cbk
-ccZ
-ccZ
-ccZ
-ccZ
-cjX
-ccZ
-ccZ
-ccZ
-ccZ
-pxf
-rxI
-cbk
+bZu
+fWV
+dub
+vye
+dEU
+qbv
+icm
+ctP
+nXJ
+bHr
+tAe
+ipl
+bsW
cvN
qHd
kwS
@@ -139386,10 +141660,11 @@ vAp
cGI
cHZ
wKA
-fJf
-qBw
+myC
+xQD
wBD
-dsp
+eWS
+inw
inw
inw
gEX
@@ -139571,80 +141846,80 @@ xwV
aoF
axn
ayE
-azG
-aAI
+gcu
+nBv
aCb
hlZ
aEh
ldp
aGD
aHW
-azG
-azG
-azG
-azG
-aPg
+gcu
+gcu
+gcu
+ekM
aQQ
-opi
-uTI
+toi
+lsg
wVI
vDY
kJB
aQQ
-bcE
-iYy
-bfE
-qug
-agM
-xKe
-blZ
-aig
-aig
+bcF
+kzM
+hoO
+gJV
+wfj
+xfo
+bma
aig
+meo
+apw
+aiJ
aad
-but
-gkv
-hVe
-ubR
-hVe
-hOV
-but
+abj
+abj
+abj
+abj
+abj
+abj
+abj
aad
-bHq
-wVt
-wWe
+hYw
+pWu
+uVk
+aUt
+clw
+clw
+qWH
+fWe
+vKB
+bZu
+bHr
bMW
-dJn
-gxZ
+uLV
+eJd
bMW
-bZG
-bXy
-bZG
-cbk
-cPv
-kSI
-tfX
-exc
-nyp
-exc
-mPS
-kxP
-nIa
-fVf
-vFH
-cbk
+bMW
+too
+oeX
+bHr
+fFn
+bsW
+bsW
cyL
cxf
-tSy
+csO
cAm
hye
-lfV
+kwW
cFh
cAm
cAm
cAm
-jBl
fmt
+jBl
+dsp
dsp
dsp
eWS
@@ -139819,16 +142094,16 @@ aig
aig
aad
aoF
-apD
+gxh
aoF
aoF
asf
-atC
+jTG
jkz
aoF
aad
aad
-aad
+abj
aAJ
aCc
tZn
@@ -139836,63 +142111,62 @@ axn
tWh
aGE
aAJ
-aad
-aad
+abj
aad
aad
aad
aQR
-kgz
+aNH
hTw
lPE
nrX
fMV
-aQR
-bcF
-kzM
-hoO
-jzM
-sgT
-xfo
-bma
-bnC
+aQQ
+baQ
+fDk
+bel
+jPx
+uVn
+eUW
+nSZ
+aig
+aig
+aig
+aig
+aaa
+aaa
aad
aaa
aaa
-but
-but
-but
-but
-but
-but
-but
aaa
+aaa
+aaa
+aaa
+bHq
+aXh
+clw
+xUh
+clw
+urL
+bHq
+mNy
+efE
+bZu
bHr
-bHr
-nwu
-bHr
-nig
-ebI
+siI
+ueC
+suT
+pFt
bMW
-bUY
-efE
-bZx
-cbk
-ltX
-fVM
-mOq
-skp
-pTI
-skp
-wvq
-lFk
-cth
-qvg
-hQj
-cbk
+vHI
+nrh
+bHr
+lHU
+bsW
+bvI
cvM
-qHd
-rwT
+hQV
+quR
cAm
cBO
lxI
@@ -139900,6 +142174,7 @@ cFi
leQ
cIa
cAm
+fmt
sHv
inw
inw
@@ -140076,77 +142351,76 @@ aad
aad
aad
aoF
-apE
+ady
aqF
arf
asf
atD
xwt
aoF
-aaa
+aad
aaa
aaa
aAK
aCd
lpo
-aEi
+bOZ
lpo
aGF
-aHX
-aaa
+jFF
aaa
aaa
aaa
aad
-aQS
-wuC
+aQU
+jVg
nbk
-pnf
-lrb
-uON
-baY
-bcG
-bei
-bfG
-jPx
-gHZ
-bke
-bcG
-bkf
-aad
+azc
+nbk
+fMV
+aQQ
aaa
+bej
+bfH
+qUY
+bis
+lXG
aaa
aaa
-aad
aaa
aad
aaa
-aad
aaa
aaa
-bHr
-jad
-afC
-paY
-sAF
-sLa
-bHr
-bVc
-efE
-bZu
+abj
cbk
-hJN
-mQO
-xGt
-xAz
-ceY
-dkp
-cJm
-dkp
-dDH
-iSV
-ksZ
cbk
+ccZ
+cbk
+ccZ
+cbk
+cbk
+cbk
+cbk
+rXY
+cbk
+cbk
+cbk
+bZG
+bXy
+bZG
+bHr
+fvq
+bcJ
+pkl
+oAF
+bMW
+rzR
+lrF
+bHr
+qAy
+bsW
+bvK
cvM
qHd
rwT
@@ -140157,6 +142431,7 @@ cFj
cAm
cAm
cAm
+eWS
sHv
inw
fmt
@@ -140333,14 +142608,14 @@ aac
aac
aad
aoF
-apE
+ady
aqG
arg
asg
atE
auM
aoE
-aaa
+abj
aaa
aaa
aaa
@@ -140353,60 +142628,59 @@ aaa
aaa
aaa
aaa
-aaa
-aad
+abj
aQT
jRV
uWY
qSE
bUn
bYT
-aQT
-aad
-bej
-bfH
-qUY
-bis
-lXG
+aQQ
aad
+baQ
+bfI
+ufN
+bit
+eQt
aad
aad
+qYo
aad
aad
aad
-aac
-aac
-aac
-aac
-aac
aad
aad
-bHs
-tBJ
-kCZ
-mSn
-sAF
-ssV
-bHr
-bVc
-efE
-bZu
cbk
-kSJ
-kGl
-xUB
-wxe
-qgd
-mKc
-sJS
-skp
-fQP
-xYY
-ksZ
+njX
+vvO
+fzL
+cjT
+qfU
+qqu
+ccZ
+vBs
+drF
+tTf
+izi
cbk
-ioy
-hQV
-euY
+bVc
+sdo
+taX
+bHr
+bHr
+bHr
+bHr
+bHr
+bHr
+bHr
+bHr
+bHr
+qAy
+bsW
+bsW
+cvM
+qHd
+eDc
cAm
cBP
sEz
@@ -140414,6 +142688,7 @@ cFm
leQ
cIb
cAm
+fmt
jBl
inw
fmt
@@ -140590,13 +142865,14 @@ aaa
aac
aad
aoF
-apE
+ady
aqH
arh
ash
atF
lqJ
aoE
+abj
aaa
aaa
aaa
@@ -140609,9 +142885,7 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aad
+abj
aQQ
aQQ
aUp
@@ -140620,48 +142894,48 @@ aQQ
aQQ
aQQ
aaa
-baQ
-bfI
-ufN
-bit
-eQt
-aaa
+bel
+dQV
+bgT
+uVn
+hno
aaa
+aad
aaa
aaa
-abj
-abj
-abj
-abj
-abj
-abj
-abj
aaa
+aad
aaa
-bHs
-omK
-yfb
-fVZ
-cYW
-wOm
-xZe
+aad
+ccZ
+kmF
+kmF
+jio
+jwz
+bgt
+bgt
+ccZ
+gyK
+hlM
+xoZ
+fxp
+cbn
ovW
-mex
-hNe
-tMg
-kZt
-lnm
-vYT
-fYf
-uBS
-uqu
-uIc
-skp
-fQP
-qvg
-aZu
-cbk
-cvM
+pAK
+uZm
+kWK
+jOx
+meG
+pMO
+clw
+bAv
+pMO
+diX
+clw
+vWO
+clw
+bsW
+dHb
rrG
klf
cAm
@@ -140671,6 +142945,7 @@ cFl
cAm
cAm
cAm
+fmt
sHv
inw
fmt
@@ -140854,6 +143129,7 @@ dyp
atG
ibA
aoF
+abj
aaa
aaa
aaa
@@ -140866,68 +143142,67 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aad
+abj
aQR
tyz
ifg
eAy
aXF
aQR
-aad
-aaa
-bel
-bfJ
-bgT
-biu
-bkf
-aaa
-aaa
+abj
aaa
aaa
aaa
+bgU
aaa
aaa
aaa
+abj
aaa
aaa
aaa
aaa
aaa
-bHr
-inW
-emb
-wWN
-gfN
-uhd
-ovv
-fXc
-lOo
-tFs
-cbk
-dNd
-sco
-oRo
-iCE
-tFi
-ibm
-oRo
-mBV
-lIS
-lSp
-vFH
+aad
cbk
+rhC
+dUh
+iPe
+iwT
+oWF
+nEX
+ccZ
+gyK
+jCY
+vvO
+eDP
+cbn
+qlr
+fMK
+gJW
+bHv
+jDo
+tSp
+fwU
+jOx
+ujB
+jOx
+fwU
+jOx
+edT
+pMO
+bsW
cvM
vll
rwT
cAm
-cBR
+sqY
bKI
cFm
cGK
cIc
cAm
+eWS
xyY
inw
fmt
@@ -140953,7 +143228,7 @@ vVT
nqi
wqJ
xZP
-qTp
+laM
dma
dma
dma
@@ -141111,6 +143386,7 @@ aoE
aoE
aoF
aoF
+abj
aaa
aaa
aaa
@@ -141123,23 +143399,14 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aad
+abj
aQU
tkX
tjv
xHG
aXG
-aZi
-aad
-aaa
-aaa
-aaa
-bgU
-aaa
-aaa
-aaa
+jqc
+abj
aaa
aaa
aaa
@@ -141147,34 +143414,41 @@ aaa
aaa
aaa
aaa
+abj
aaa
aaa
aaa
aaa
aaa
-bHs
-eeW
-yfb
-oHD
-dRp
-bRj
-pVX
+aad
+cbk
+wzT
+gri
+puF
+sTd
+wRw
+wRw
+ccZ
+ltF
+ktd
+neT
+qng
+cbk
oxl
qIH
bZA
cbp
cbp
-vAD
cbp
cbp
cbp
cbp
-cbk
-cbk
-cbk
-cbk
-cbk
-cbk
+cbp
+clw
+clw
+cqd
+cqd
+cqd
cyO
cxi
nAB
@@ -141185,6 +143459,7 @@ cFn
cAm
cAm
cAm
+inw
qRV
inw
fmt
@@ -141213,7 +143488,7 @@ wnU
wnU
sJt
aLo
-dht
+cYg
evj
dma
jsc
@@ -141361,13 +143636,14 @@ aaa
aaa
aad
abj
-aaa
-abj
aad
aad
aad
aad
+aad
+abj
aaa
+abj
aaa
aaa
aaa
@@ -141380,24 +143656,14 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aad
+abj
aQS
vmt
mPt
xVZ
aXH
aQS
-aad
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+abj
aaa
aaa
aaa
@@ -141405,40 +143671,49 @@ aaa
aaa
aaa
aaa
+abj
aaa
aaa
aaa
+aad
aaa
-bHs
-kjG
-fFa
-bNc
-bPj
-bRk
-bSZ
-uqW
+aad
+cbk
+nUs
+wvf
+izS
+lty
+sYs
+oUR
+wtP
+hKf
+bRg
+kcQ
+lYq
+fyz
+owu
efE
eqm
cbp
-cdg
-ceW
-cgK
-ciu
-hlV
+rOa
+aII
+vrJ
+hRS
+sIZ
cbp
uQo
coB
cqc
eGa
csS
-cuw
-cvR
-xbJ
-jGT
+dRt
+aSn
+mqT
+gpk
cAo
cBS
-cDy
-elI
+tSM
+cFp
fOi
cqd
cJa
@@ -141618,13 +143893,14 @@ aaa
aaa
aaa
aad
-aaa
-aad
-aaa
aac
aac
aaa
+aac
+aac
+aad
aaa
+abj
aaa
aaa
aaa
@@ -141637,28 +143913,14 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aad
+abj
aQV
-aSB
+kjP
aQQ
aQQ
aXI
-aZj
-aad
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+smX
+abj
aaa
aaa
aaa
@@ -141666,22 +143928,35 @@ aaa
aaa
aaa
aaa
-bHr
-rvd
-uUk
-bNd
-bPk
-bRl
-bHr
-inT
+abj
+aad
+aad
+aad
+aad
+aad
+abj
+cbk
+qqK
+vqA
+xvX
+kEk
+mYF
+mYF
+ccZ
+gel
+gel
+lRY
+wng
+cbk
+wmm
efE
bZE
cbq
-cdh
+pSz
ceX
cgL
civ
-ian
+kBN
cbp
hst
uFk
@@ -141690,8 +143965,8 @@ mVE
csT
fUd
fUd
-fUd
-nqD
+hFh
+wwL
fUd
quU
fUd
@@ -141724,7 +143999,7 @@ mld
ucf
jQO
sZo
-mSt
+nbA
dma
noE
sKh
@@ -141874,16 +144149,15 @@ aaa
aaa
aaa
aaa
-abj
-aaa
-abj
-aaa
+aad
aaa
aaa
aaa
aaa
aaa
+aad
aaa
+aad
aaa
aaa
aaa
@@ -141899,11 +144173,11 @@ aaa
aad
aad
aad
-aaa
-aaa
aad
aad
aad
+aad
+abj
aaa
aaa
aaa
@@ -141911,34 +144185,35 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bAc
-aaa
-aaa
-aaa
-bHr
-bHr
-uLV
-bHr
-bHr
-bHr
-bHr
+abj
+aFm
+aFm
+cAA
+fff
+aFm
+aFm
+aFm
+rhC
+iLE
+giL
+xxM
+kFs
+aTB
+ccZ
+gyK
+gyK
+wrU
+nvs
+cbn
tcB
pAj
fsd
-rDr
-ukX
-pks
-jBh
-eIn
-ckg
+fak
+ccL
+xXw
+ufT
+jbl
+ljy
cbp
cnb
coD
@@ -141947,8 +144222,8 @@ mVE
csT
fUd
qDa
-iPl
-ndc
+tXp
+jhX
fUd
jjy
fUd
@@ -142131,16 +144406,16 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+abj
+aad
+aac
+aac
+aac
+aad
+abj
+aad
+aad
+aad
abj
abj
abj
@@ -142150,12 +144425,6 @@ abj
abj
abj
abj
-aaa
-aaa
-aaa
-aad
-aaa
-aad
aad
aad
aad
@@ -142165,37 +144434,43 @@ aaa
aaa
aaa
aaa
+aad
aaa
aaa
aaa
aaa
aaa
aaa
-ckj
-bWy
-ckj
-aaa
-bCf
-fsp
-bCf
-aaa
aaa
-bHr
-odL
-nxZ
-hTy
-pOl
-wUi
-bHr
-wmm
+aad
+tuM
+xvt
+xEk
+tYL
+tYL
+jep
+aFm
+qmr
+fSn
+szY
+ylv
+wjC
+wjC
+ccZ
+gyK
+gyK
+qIN
+tCC
+cbn
+inT
qEb
bZE
cbq
-cdj
-ceZ
+rzm
+plq
cgN
cix
-ckh
+roj
clt
cnc
lVy
@@ -142317,91 +144592,104 @@ aaa
aaa
aaa
aaa
-aaa
-"}
-(190,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aac
-aaa
-aaa
+aaa
+"}
+(190,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aaa
+aaa
+aad
+aaa
+aaa
+ddD
+aam
+vFS
+aaa
+aaa
+aad
+aaa
+aaa
+aac
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aad
aaa
aaa
-ddD
-aam
-vFS
aaa
aaa
aad
aaa
-aaa
-aac
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+aad
aaa
aaa
aaa
aaa
aaa
+aad
aaa
aaa
aaa
aaa
aaa
-aad
aaa
aad
aaa
@@ -142410,51 +144698,38 @@ aaa
aaa
aaa
aaa
-aac
-aad
aaa
-aaa
-aaa
-bgZ
-bgZ
-hir
-bgZ
-bgZ
-aaa
-abj
-abj
-abj
-abj
-aad
aad
-aad
-bth
-jxS
-qBE
-aad
-ulV
-qAS
-sTs
-aad
-aad
-bHr
-etl
-kTa
-aSJ
-fPS
-iit
-bHr
+aFm
+oLl
+ury
+neQ
+ltJ
+xjY
+puw
+cdc
+drx
+wCT
+fCN
+wMX
+qqu
+ccZ
+gyK
+vvO
+jOu
+uIl
+cbk
pJy
efE
-bZF
+kmP
cbp
-cdk
-cfa
-cgO
-ciy
-cki
+vxY
+mBe
+pci
+xQx
+ghe
cbp
-lpD
+qLw
oIF
cqd
crs
@@ -142653,65 +144928,65 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aad
-aaa
+aac
+aac
+aac
aad
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aac
-aaa
-aaa
-aaa
-aaa
-bgZ
-oyK
-iLx
-gGf
-bgZ
-aaa
+aac
+aac
aad
-aaa
-aaa
+aac
+aac
+aac
aad
-tBw
-rrz
-bgZ
-qBE
-iab
-qBE
-bgZ
-otN
-ivy
-otN
-bHv
-bHv
-bHr
-bHr
-bHr
-bHr
-bHr
-bHr
-bHr
+aad
+aad
+abj
+aad
+aad
+aac
+aad
+iqv
+tuM
+bMx
+bMx
+bMx
+bMx
+huM
+aFm
+aFm
+aFm
+qAO
+jWY
+aFm
+aFm
+aFm
+aKV
+cbk
+cbk
+cbk
+cbn
+cbk
+cbk
+cbk
+cbn
+hta
+cbk
+cbk
+cbk
grl
bXy
bZG
cbp
-puC
-puC
-puC
-puC
-puC
-puC
-gPU
+cbp
+cbp
+cbp
+cbp
+cbp
+cbp
+bHq
eGX
cqd
crt
@@ -142749,12 +145024,12 @@ pMM
nxN
dtK
dsR
-koE
+iWC
roU
dxp
hKz
dma
-fOF
+eLv
dma
dma
nHT
@@ -142912,63 +145187,63 @@ aaa
aaa
aaa
aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aac
aaa
aaa
aaa
aaa
-bgZ
-bRf
-oVM
-leN
-bgZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aad
-aad
-aad
-aad
-tWG
-wqw
-qGC
-uUn
-kmj
-eHS
-bgZ
-sdP
-syP
-kgR
-wGw
-nbp
-jno
-jaG
-jno
-xiq
-xef
-iLT
-jno
-wEs
+aaa
+aaa
+aac
+aaa
+ohx
+wkM
+wkM
+wkM
+wkM
+wkM
+lrM
+hbp
+lqr
+aFm
+awB
+bml
+jZD
+wUr
+ono
+mkm
+hvi
+kgK
+rQH
+ose
+ose
+cCt
+imy
+ose
+ose
+ose
+iaR
+tmD
+whm
efE
iUj
nmM
-aFm
-ibp
-oFP
-fmY
-qcA
-bLm
-aFm
+bHq
+elQ
+coD
+jFJ
+clw
+pMO
+clw
cne
cqd
cru
@@ -143007,7 +145282,7 @@ dtK
dtK
dma
dma
-uii
+ojF
dma
dma
dma
@@ -143169,63 +145444,63 @@ aaa
aaa
aaa
aaa
-aad
aaa
aaa
-aad
aaa
-aad
aaa
aaa
-aad
aaa
aaa
aaa
-aac
aaa
-aad
aaa
aaa
-bgZ
-bgZ
-daZ
-bgZ
-bgZ
aaa
-bgZ
-wtY
-rjQ
-rrz
-uGI
-elY
-hjy
-elG
-byb
-gCG
-xkS
-taG
-cJF
-hPY
-pxh
-egf
-egf
+aaa
+abj
+aaa
+aaa
+abj
+aaa
+qvh
+wkM
+wkM
+wkM
+wkM
+wkM
+lsH
+nOt
+xdv
+tLg
+xBW
+mck
+aKV
+aFm
+bHv
+lgP
+hLP
+eWM
+lve
+bZI
egf
egf
+mGZ
egf
-cfo
-mmy
-pQU
+vlC
+jdd
+jdd
+jaN
sUF
rHf
bZI
gOk
-eeK
-uCU
-aFm
-aFm
-aFm
-oyu
-aFm
+hUA
+diL
+clw
+clw
+clw
+clw
+clw
cne
cqd
crv
@@ -143426,63 +145701,63 @@ aaa
aaa
aaa
aaa
-aad
-aad
-aad
-aad
aaa
-aad
aaa
aaa
-aad
aaa
aaa
aaa
-aac
-aad
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aac
aaa
aaa
+aad
+aaa
+qvh
+wkM
+wkM
+wkM
+wkM
+wkM
+vvI
+ekb
+did
+aFm
+cGe
+hdq
+wez
+wUr
+ydg
+eAH
+hvi
+sxM
+hyj
+fVL
+rob
+rob
+gdZ
+gdZ
+gPb
+gdZ
+gdZ
+iGY
+ijk
+gMm
+eYT
+tnr
bgZ
-eRT
-vOD
-cPU
bgZ
-aaa
bgZ
-vGE
-udU
-nir
bgZ
-bTS
-qBo
-jXn
-tsd
-cSH
-bZN
-sFm
-igL
-jJa
-sJF
-fZN
-hpn
-hpn
-hpn
-icb
-lSr
-hpn
-lln
-lxS
-uGY
-ron
-hQm
-aFm
-hDH
-tFM
-vHd
-opf
-deg
-aFm
+bgZ
+jFJ
+pMO
cne
cqd
crv
@@ -143603,8 +145878,19 @@ aaa
aaa
aaa
aaa
-"}
-(195,1,1) = {"
+"}
+(195,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -143683,64 +145969,53 @@ aaa
aaa
aaa
aaa
-abj
aaa
aaa
+aac
aad
aad
+abj
aad
-aad
-aad
-aad
-aad
-aad
-aad
-aac
-aaa
-aac
-aaa
-aaa
-bgZ
-eRT
-qFC
-klC
-bgZ
-aaa
-bgZ
-kDW
-qmI
-pLr
-bgZ
-nOZ
-fzt
-jRh
-uMI
-oBE
-bgZ
-bgZ
-cvS
-hvn
-pZG
-bFL
-bFL
-bFL
-bFL
-bFL
-ftk
-wZn
-wZn
-bFL
-cSs
-lBK
+qvh
+wkM
+wkM
+wkM
+wkM
+wkM
+sgE
+fEe
+bWq
aFm
aFm
aFm
aFm
aFm
aFm
-psn
aFm
-eGX
+aFm
+iQF
+hWD
+bFL
+bFL
+lYp
+moo
+bFL
+gqp
+lYJ
+blo
+bFL
+moN
+eML
+kfQ
+bgZ
+bgZ
+jBJ
+wFY
+afg
+bgZ
+tgs
+sYN
+stS
cqd
cqd
mZu
@@ -143940,66 +146215,66 @@ aaa
aaa
aaa
aaa
-abj
-aad
-aad
-abj
aaa
-aad
aaa
aaa
-aad
aaa
aaa
aaa
-aad
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aac
+aaa
+aaa
aad
-aad
-bgZ
-wdm
-bXX
-lYa
-bgZ
-aad
+aaa
+qvh
+wkM
+wkM
+wkM
+wkM
+wkM
+vvI
+woe
+mNn
+xNk
+vhk
+gvH
+eZt
+qHA
+jbo
+aFm
+rLk
+iUV
+jqq
+oVb
+sLs
+nri
+tBN
+dCR
+tjb
+kbp
+etF
+amO
+wyz
+fQV
+fkr
bgZ
-ahf
-rHv
-dhi
+rES
+wDC
+vuB
+qQm
bgZ
-esg
-mjt
-dwP
-tMm
-gSU
-cds
-bNj
-kLB
-xUt
-cJV
-amO
-enW
-tMx
-rUM
-nUi
-dsS
-qLz
-ylr
-amO
-oMz
-kMh
-vjt
-mtp
-aFm
-hll
-eNB
-mkq
-fab
-aFm
+urL
+ppG
orS
-kkM
-fyt
+tCx
+vJe
pVe
bHq
bHq
@@ -144197,71 +146472,71 @@ aaa
aaa
aaa
aaa
-abj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
abj
-aad
-aad
-tFv
-qYo
-qYo
-qYo
-aad
-xRC
-aad
-aad
-aad
aaa
aaa
-bgZ
-gZO
-fXC
-aGu
-bgZ
+abj
aaa
-bgZ
-bnw
-qKp
-syB
-bgZ
-idR
-kvy
-vaH
-lMG
-yjE
-mUQ
-bNj
-dHd
-leN
-itt
-hfk
-bNM
-dme
-oeg
-gJE
-wCJ
-rKD
-lSL
-kkr
-uCU
-ofj
-dLy
-mbB
-hwA
+qvh
+wkM
+wkM
+wkM
+wkM
+wkM
+jBo
+fEe
nZc
-ueX
nZc
-fab
-aFm
-hYw
-gPU
+nZc
+nZc
+nZc
+nZc
+arm
+cMG
+fOj
+qrk
+shl
+lUE
+xYW
+nwg
+cUm
+cUm
+nwg
+cUm
+xea
+ryo
+goz
+eUq
+eCe
+bgZ
+hEk
+sEI
+rsA
+fWS
+bgZ
+aXh
+clw
+clw
+clw
adm
bgD
lZi
yeb
ycx
-nOX
+iDG
cAw
gIs
mWm
@@ -144454,72 +146729,72 @@ aaa
aaa
aaa
aaa
-abj
-aad
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aad
-abj
aaa
aaa
-tFv
-qYo
-bLs
-bLs
-bLs
-bLs
-bLs
-bLs
-bLs
-bLs
-bLs
-bLs
-bgZ
-xBt
-bgZ
-bgZ
-bgZ
-bgZ
-wtY
-mEW
-dkk
+aac
+aaa
+qvh
+wkM
+wkM
+wkM
+wkM
+wkM
+jBo
+fEe
+nZc
+sFl
+jsJ
+sFl
+ktZ
+vLr
+onW
+ttl
+fOj
+xcA
+apj
+bFL
+bFL
+qVl
+nYx
+yfJ
+eSx
+qQX
+pNR
+hhb
+ecw
+soX
+xVl
bgZ
-wtY
-lJk
-peM
-jdC
-rrz
+lkU
+bQI
+mub
+oIY
bgZ
-bNj
-cmQ
-rGR
-gJS
-amO
-oxa
-odG
-xsm
-fpj
-bTh
-lyc
-oFg
-pbc
-uCU
-nyw
-foh
-nAZ
-mOK
-nqB
-lWE
-hdh
-raN
-aFm
-aaa
-gPU
-aaX
-abX
-bHq
bHq
+pMO
+bwZ
bHq
+bwZ
+aaX
+lPw
+hXc
+clw
jBG
-cAx
+mKm
cCd
dHm
cFx
@@ -144717,64 +146992,64 @@ aaa
aaa
aaa
aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
abj
aad
-bLs
-gzi
-nXl
-rcu
-kss
-rsa
-wjg
-iET
-ciS
-bLs
-vjT
-kwc
-kPM
-hNx
-rAO
-etR
-etR
-lIi
-xRj
-spB
-xmP
-pQC
-rBi
-iSh
-kbg
-ssb
-bNj
-vpT
-bZN
-cbz
-bFL
-wKI
-jna
-bFL
-bFL
-cbG
-omU
-bXr
-bFL
-bFh
-pZy
-dLy
-sKH
-fIU
-fab
-yby
-jpM
+aad
+aac
+aad
+grf
+wVe
+gSB
+udB
+nGZ
+rjj
+elM
+pFP
+yiM
+ciH
+ecd
+tVh
+teY
nZc
-aFm
-aaa
-gPU
-wyJ
+nuU
+egB
+fOj
+xcA
+nMN
+qFU
+oVb
+dSV
+fWk
+aoI
+nbM
+xqG
+tKV
+bFL
+qpD
+eML
+qmo
+bgZ
+umd
+hSq
+eVz
+umy
+bgZ
+hmU
+inD
+clw
+bwZ
+qXu
+mED
+ogk
+vet
clw
-hdm
-abB
-adE
quV
cAw
cAw
@@ -144784,7 +147059,7 @@ cAw
cAw
cgY
scz
-sQE
+hIg
cAw
cAw
cAw
@@ -144974,64 +147249,64 @@ aaa
aaa
aaa
aaa
-tFv
-qYo
-bLs
-eof
-mCY
-bOB
-kIY
-pQm
-cFq
-mpl
-orB
-lDF
-jZH
-pKf
-kko
-jCZ
-hYG
-kko
-kko
-kVN
-ukt
-hNm
-azw
-xsN
-hOo
-amd
-rtB
-vbk
-cZN
-tdS
-yev
-bOD
-uKy
-mvu
-sRl
-uKy
-hJb
-mKK
-byo
-uzU
-bSO
-hUp
-dfa
-dLy
-wGK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aaa
+aaa
+aac
+aaa
aFm
-sMK
-uGJ
-jpM
+hjF
+lzq
+kib
+pOX
+nZc
+nZc
+fEe
nZc
+jsJ
+sFl
+jsJ
+fab
+wuG
+bWq
aFm
-aaa
-gPU
-hmU
+weV
+xcA
+dmg
+gsP
+bFL
+bFL
+snY
+xnw
+jVM
+hhb
+bFL
+bFL
+tpE
+sdY
+kKE
+bgZ
+bgZ
+fqd
+oiE
+suR
+bgZ
clw
-abx
-abJ
-adE
+aaX
+mzb
+clw
+clw
+eFd
+okM
+pMO
+bHq
aNF
cAw
cCe
@@ -145231,64 +147506,64 @@ aaa
aaa
aaa
aaa
-tFv
-pTt
-bLs
-uwD
-bNr
-dIJ
-jeh
-iYk
-orb
-lMm
-jDA
-oOp
-mZt
-eXg
-kko
-kko
-gXl
-kko
-oyX
-yjE
-wyd
-yjE
-kvy
-goo
-syZ
-cSH
-ipf
-goo
-run
-iUk
-kko
-kko
-kko
-aDO
-nDU
-kko
-run
-run
-kko
-kko
-bgZ
-rju
-uwc
-vFe
-kuG
-aFm
-qKW
-uGJ
-euE
-kWO
-aFm
aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abj
+aaa
+aaa
+abj
+aaa
+tuM
+daI
+dyi
+rgv
+wLw
+yiH
+iUW
+plW
+khv
+khv
+khv
+khv
+nDV
+vzn
+jWY
+sRs
+jIF
+nRh
+dmg
+eJB
+pQe
+cZJ
+rPy
+sdY
+nbL
+sdY
+sdY
+wPj
+qZl
+kko
+taC
+pZK
+sdY
+vSX
+oXU
+uzA
+sYk
+clw
+mJK
bHq
-bHq
-bHq
-bHq
-bHq
-adE
+evC
+hdm
+aaZ
+aaZ
+aaZ
+pkj
tAJ
cAw
cCf
@@ -145480,6 +147755,7 @@ aaa
aaa
aaa
aaa
+aab
aaa
aaa
aaa
@@ -145488,63 +147764,62 @@ aaa
aaa
aaa
aaa
-tFv
-qYo
-bLs
-vPs
-jhG
-iKI
-lco
-eVb
-kxT
-uTQ
-nXl
-yed
-jZX
-pKf
-bgZ
-bgZ
-xYI
-bhd
-bhd
-bhe
-bmk
-bhd
-bhe
-bro
-gOj
-buL
-bhd
-wKr
-lue
-xJq
-yjE
-yii
-yjE
-cYb
-mzN
-hUV
-lue
-lue
-dbQ
-yjE
-bgZ
-mSW
-qkm
-qkm
-kmJ
-aFm
-qKW
-uGJ
-nWE
-gGN
-aFm
aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aaa
+aaa
+aad
+aaa
+aFm
+jpu
+bXA
+hPQ
+iBE
+swE
+jWY
+cec
+bHu
+bHu
+gRk
+onI
+ogo
+pkM
+xdv
+aKY
+tqT
+jXx
+azj
+owZ
+ikZ
+tQW
+mLp
+cOy
+mru
+tKU
+nmW
+hxz
+eJa
+pne
+cLk
+uiv
+uiv
+tJz
+mPI
+mIl
+bgZ
+clw
+hRk
+adE
+clw
+abB
aaZ
aba
abk
-abo
-abM
eFj
xVU
cAw
@@ -145746,63 +148021,63 @@ aaa
aaa
aaa
aaa
-qYo
-bLs
-sPv
-fRZ
-oMd
-rGM
-mkC
-lKU
-wTQ
-mcC
-bLs
-cFP
-eXg
-bgZ
-nMm
-eQQ
-bhd
-iHS
-ykw
-qUM
-gVN
-xlq
-brp
-nES
-byL
-bhd
-wSb
-ftO
-qfi
-xig
-bgZ
-bgZ
-bgZ
-fNG
-aFm
-fXR
-eLx
-aFm
-aFm
-aFm
-aFm
-fIU
-fIU
-fIU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aad
+aad
+abj
+aad
aFm
-ows
-jsJ
-nWE
-ueX
+jaj
+jOd
+wmF
+aKV
+nLN
+jWY
+xHJ
+lzq
+lzq
+lzq
+mtr
+dmD
+gNg
+jWY
+osf
+imf
+hIb
+vRk
+hQI
aFm
-aaa
+vtn
+yjE
+yjE
+dDj
+tHf
+yjE
+wPj
+nEC
+kko
+eGY
+yjE
+yjE
+cdY
+yjE
+oPV
+hHN
+clw
+sxH
+adE
+clw
+abJ
aaZ
oQZ
-sKI
-cYT
-guD
-eGB
+hNs
+qHj
wwV
acU
cAw
@@ -146001,64 +148276,64 @@ aaa
aaa
aaa
aaa
-qYo
-qYo
-qYo
-bLs
-bLs
-bLs
-bLs
-bLs
-bLs
-bLs
-bLs
-bLs
-bLs
-ggo
-kgw
-bgZ
-qKi
-smN
-bhe
-uDu
-cpX
-tca
-pFG
-kxQ
-tca
-ffE
-cor
-bhd
-hcX
-dLm
-kkT
-vNz
-bgZ
-uSt
-fcu
-tMG
-aFm
-mDJ
-cBr
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aaa
+aaa
+aad
+aaa
aFm
-jcD
-jcD
+xMP
+wlp
+aZr
aKV
-uvG
-fCH
-iqj
-nZc
-fab
-diK
-jGc
-nZc
-aFm
-aaa
+gSh
+xjY
+jJu
+uTK
+iJQ
+kul
+yic
+dmD
+gNg
+sQN
+sjv
+sjv
+sjv
+gqe
+sjv
+sjv
+nAX
+tbP
+aaz
+tNF
+sMU
+nXU
+tNF
+sXL
+lXi
+txd
+bhd
+wSb
+sty
+xig
+bhd
+bhd
+bhd
+bhd
+bhd
+bHq
+bHq
aaZ
abc
pIk
-lpz
-dmj
wYi
ioZ
cAw
@@ -146258,65 +148533,65 @@ aaa
aaa
aaa
aaa
-qYo
aaa
-qYo
-qYo
-qYo
-squ
-qYo
-qYo
-qYo
-qYo
-qYo
-qYo
-bgZ
-kMB
-qrm
-bgZ
-bgZ
-bZN
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abj
+aaa
+aaa
+abj
+aaa
+tuM
+hDm
+vmg
+chI
+aKV
+oJL
+tKz
+aKV
+aKV
+aKV
+aKV
+aKV
+dmD
+ntQ
+tAs
+sjv
+lfo
+sKR
+iGS
+sjv
+yfc
+tNF
+tNF
+tNF
+tNF
+sXo
+khN
+tNF
+mPo
+yjE
+pnF
bhd
-iZg
-hHx
-abd
-lrV
-aQd
-wbG
-ujT
-mbg
+dMl
+ifq
+vfZ
+sIS
+nYt
+jhk
+whx
bhd
-xoz
-moA
-fEk
-vmY
-bgZ
-fcu
-vjE
-oPZ
-aFm
-mDJ
-uTE
-aFm
-nZc
-aGr
-aKV
-uKC
-fCH
-fCH
-uHv
-cJQ
-vUw
-rhj
-nZc
-aFm
-aaa
+abj
+abj
aaZ
hIp
-xNx
-vcY
-xNx
-xRy
+eiR
+hpY
nWz
cAw
cCi
@@ -146518,61 +148793,61 @@ aaa
aaa
aaa
aaa
-tFv
-tFv
-tFv
-qYo
-aaa
aaa
-tFv
-tFv
aaa
-bgZ
-kQb
-eXg
-tZg
-bgZ
aaa
-bhd
-wLX
-hHx
-tkM
-mCZ
-miq
-kPH
-tEP
-nTt
-bhd
-bdo
-qXn
-fEk
-cBV
-bgZ
-fcu
-mLB
-tiY
+wiQ
+aad
+aac
+aad
+aad
+aFm
aFm
-raT
-kxq
aFm
-iVq
-tco
aKV
-uvG
-fCH
-fCH
-yma
-dah
-vLr
-vLr
-jVJ
-wjY
+aKV
+aKV
+aKV
+jPw
+qJK
+rNl
+wRW
+xDx
+hZQ
+aKV
+elA
+bVE
+dnN
+bGt
+kjM
+kjF
+lRN
+sjv
+oeE
+lkg
+oDM
+ksc
+pDa
+bOq
+eGP
+tNF
+roD
+ivB
+bST
+bhd
+uWF
+rpN
+tXK
+ebi
+grN
+kiC
+exO
+jZp
+aaa
aaa
aaZ
abg
abg
-abu
-abz
wYi
wvO
cAw
@@ -146777,59 +149052,59 @@ aaa
aaa
aaa
aaa
-qYo
-aaa
-aaa
-aaa
aaa
+wiQ
aaa
+aad
aaa
-bgZ
-vBZ
-mhE
-tTl
-rrz
aad
-bhd
-rGG
-bku
-urz
-buP
-eLq
-bku
-nKP
-buP
-bhd
-qEL
-iKg
-fEk
-fjW
-bgZ
-jbW
-gHl
-lQD
aFm
-qnj
-nZc
-szN
-xNu
-xNu
-gAD
-xNu
-xNu
-xNu
-jie
-mjj
-nZc
-dMr
-qZk
-izL
+fCr
+tZV
+fmn
+xhR
+xhR
+aKV
+hfH
+skH
+sYy
+qUQ
+kZT
+rdF
+aKV
+oOe
+rlM
+kJV
+sjv
+thD
+dSZ
+pBM
+sjv
+tDm
+kdd
+otP
+eUF
+tmj
+rEq
+lUj
+tNF
+uUZ
+dzx
+eIo
+bhd
+wdw
+llz
+mWn
+erU
+wMt
+uHy
+wMt
+tRI
+aaa
aaa
aaZ
aaZ
abn
-aaZ
-abn
rdS
abn
cAw
@@ -146867,7 +149142,7 @@ aad
dyU
dAl
gJU
-byu
+lvF
dyU
aaa
aaa
@@ -147035,53 +149310,53 @@ aaa
aaa
aaa
aaa
+wiQ
aaa
+aad
aaa
-aaa
-aaa
-aaa
-aaa
-bgZ
-tlo
-eXg
-xwg
-bgZ
-aaa
-bhe
-eQF
-frY
-frY
-jjc
-kRr
-tCQ
-tEr
-frY
-wQy
-npE
-akr
-eLq
-uji
-bgZ
-fcu
-fcu
-lXo
-pcf
-pwe
-adl
-pNj
-xvl
-xvl
-wCI
-xvl
-pxZ
-kgT
-spE
-xuw
-nZc
-nZc
-oIr
+aad
aFm
-aaa
+aKV
+aKV
+swN
+vbg
+qcj
+sEq
+nUn
+bVb
+aKV
+aKV
+aKV
+aKV
+aFm
+jTo
+gIZ
+xnZ
+sjv
+sjv
+sjv
+sjv
+sjv
+sjv
+tNF
+pnn
+tNF
+iMX
+aOM
+uHw
+tNF
+fln
+qlK
+qvx
+bhd
+bfj
+vyT
+nWU
+jjG
+nYt
+hQA
+hQA
+bhd
aaa
aaa
aaa
@@ -147201,23 +149476,28 @@ aaa
aaa
aaa
aaa
-"}
-(209,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+"}
+(209,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -147287,59 +149567,54 @@ aaa
aaa
aaa
aaa
-wiQ
-aaa
-aaa
-aaa
-aad
aad
aaa
-bnG
-bnG
-bnG
-bnG
-bnG
-ldJ
-tvV
-bNj
-bgZ
+aac
+aad
aad
-bhd
-nnD
-frY
-frY
-qVY
-fMJ
-vOb
-vlt
-fmR
-xig
-npE
-frY
-fEk
-eqw
-bgZ
-bgZ
-bgZ
-bgZ
aFm
-iVq
-tco
-aKV
-iVq
-rhl
+ptp
+tZV
+fqN
+fqN
+jhc
aKV
-rIk
-fab
-ueX
-nZc
-nZc
-nZc
-aFm
+gEf
+uDA
+rNl
+wRW
+xDx
+hZQ
aFm
-aFm
-qYo
-qYo
+wek
+kcR
+qOj
+lGC
+nlM
+vCj
+mWN
+vKe
+nlM
+uRj
+liY
+mZr
+nqU
+lKh
+wkS
+tNF
+gbU
+utw
+sGx
+bhd
+bhd
+xDW
+vGc
+bLh
+pVV
+bhd
+bhd
+bhd
+aad
aad
aad
cuM
@@ -147543,60 +149818,60 @@ aaa
aaa
aaa
aaa
-wiQ
-aad
-aaa
-aad
-aad
-aad
-qYo
aaa
-bnG
-nvp
-cfx
-rWU
-bnG
-nky
-eXg
-bgZ
aaa
aaa
-bhd
-qdf
-tzw
-tzw
-tzw
-vRL
-eVX
-mqI
-mzO
-bhd
-mNK
-frY
-fEk
-qqp
-bhd
aaa
aaa
aaa
+aad
+aad
+aac
+nOg
+aad
aFm
-ueX
-ykr
-aKV
-nZc
-ykr
+aFm
+aFm
+nNa
+gwv
+pnE
aKV
-nZc
-fab
-nZc
-sZK
-hCo
-nZc
+pgl
+bVb
+sYy
+hTN
+bpg
+kFC
aFm
-qYo
-qYo
-qYo
-qYo
+ckd
+qPK
+tMi
+peP
+unH
+jta
+oUj
+nHv
+rej
+eIA
+gpR
+tNF
+tNF
+hNU
+igR
+tNF
+bpa
+aZx
+oAB
+onD
+pVV
+rks
+nWU
+rTO
+mTC
+bhd
+abj
+aaa
+aaa
aaa
aaa
cuM
@@ -147800,58 +150075,58 @@ aaa
aaa
aaa
aaa
-wiQ
-aad
aaa
-pvF
-bnG
-bnG
-bnG
-bnG
-bnG
-cie
-wMm
-nsC
-aXK
-wPQ
-mhE
-rrz
aaa
-aad
-bhd
-fir
-kMe
-qHu
-edI
-mIf
-edI
-edI
-uno
-bhd
-tyZ
-frY
-skx
-vmY
-bhd
aaa
aaa
aaa
+aaa
+aad
+aaa
+aac
+aaa
+aad
+sav
+sav
aFm
-xIe
-xIe
-aKV
-xIe
-xIe
-aKV
-nZc
-qpA
-yby
aFm
aFm
-hba
aFm
-aaa
-aaa
+aFm
+szQ
+nIR
+aKV
+aKV
+aKV
+aKV
+aFm
+fjc
+mnx
+wfv
+aKV
+sjv
+sjv
+oJZ
+sjv
+sjv
+jEp
+xIx
+beh
+xQH
+ruv
+fOk
+vqY
+yiW
+aZx
+aZx
+kEI
+mGH
+eKK
+mWn
+lPz
+oyY
+xig
+aad
aaa
aaa
bTl
@@ -148058,59 +150333,59 @@ aaa
aaa
aaa
aaa
-abj
-aad
-aad
-edh
-sjG
-qPQ
-rzZ
-sBO
-qMV
-ciA
-pIs
-bnG
-yhk
-eXg
-bgZ
aaa
aaa
-bhd
-biP
-biP
-fnb
-aMc
-cob
-aMc
-hKs
-biP
-biP
-vtw
-tzw
-xTV
-oPp
-bhd
aaa
aaa
aaa
+wiQ
+aaa
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
aFm
+vMP
+uDA
+rNl
+wRW
+xDx
+hZQ
aFm
-aFm
-aFm
-aFm
-aFm
-aFm
-wYD
-fab
-kXU
-aFm
-lPf
-fqN
-aFm
-qYo
-qYo
-qYo
-qYo
+wGF
+sxo
+nAF
+beh
+pJP
+xxT
+kgi
+jEp
+jqR
+sXV
+chq
+beh
+hQN
+wNQ
+aZx
+lpi
+adC
+lpi
+aZx
+lXT
+pVV
+aDh
+vfj
+kxG
+eut
+bhd
+abj
+aad
+aad
aad
aad
cuM
@@ -148315,57 +150590,57 @@ aaa
aaa
aaa
aaa
-abj
aaa
aaa
-edh
-rzZ
-eJu
-ijS
-bgb
-hSh
-fJZ
-bBD
-bnG
-kQb
-kaf
-bgZ
+aaa
+aaa
+aaa
+wiQ
aaa
aad
+aaa
aad
-biP
-kvN
-lss
-bmw
-mCQ
-btz
-sOX
-rUi
-biP
-bhd
-bhd
-bhd
-bhd
-bhd
+aaa
+aaa
+aaa
aad
aaa
-qYo
-qYo
-aFm
-mpr
-mpr
-mpr
-mpr
-mpr
-hQn
-fab
-uJd
+aaa
aFm
-jlH
-pHn
+iYH
+akZ
+sYy
+qUQ
+dvZ
+rdF
aFm
-aaa
-aaa
+rid
+kXk
+uof
+beh
+gne
+rqy
+kgi
+xcB
+kic
+whT
+jPT
+juO
+hpj
+mIr
+bLr
+kYq
+byL
+asE
+aZx
+fEb
+bhd
+biP
+biP
+biP
+biP
+biP
+aad
aaa
aaa
aaa
@@ -148571,62 +150846,62 @@ aaa
aaa
aaa
aaa
-wiQ
-abj
-aad
-aad
-edh
-gAR
-toR
-wXa
-qRW
-wKF
-sdU
-xtn
-bnG
-ldJ
-mhE
-rrz
aaa
-aad
aaa
-tfH
-gYm
-wvy
-hMI
-lfW
-kaR
-bmw
-fjd
-tfH
+aaa
+aaa
+aaa
+aaa
+wiQ
+aad
aad
wiQ
wiQ
-aad
wiQ
+aad
wiQ
wiQ
wiQ
-qYo
+aad
aFm
-mpr
-mpr
-mpr
-mpr
-mpr
-wKS
-fab
-jsJ
+ktc
+vST
aFm
-hrI
-fqN
aFm
-qYo
-qYo
-qYo
-qYo
-aad
+aFm
+aFm
+aFm
+btV
+ltU
+tdP
+beh
+bTV
+wiX
+irK
+fTN
+dlC
+rXl
+xrt
+beh
+qoh
+miG
+rLG
+ioE
+eLq
+hxk
+aZx
+luQ
+iHY
+biP
+eZO
+nmV
+oBk
+tZZ
aad
+aaa
+aaa
+aaa
+aaa
cuM
twt
gsU
@@ -148743,24 +151018,42 @@ aaa
aaa
aaa
aaa
-"}
-(215,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+"}
+(215,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -148801,6 +151094,7 @@ aaa
aaa
aaa
aaa
+aab
aaa
aaa
aaa
@@ -148819,69 +151113,50 @@ aaa
aaa
aaa
aaa
-aab
aaa
aaa
+aad
aaa
+aad
aaa
aaa
aaa
aaa
aaa
-wiQ
-aad
aaa
-aJD
-bnG
-bnG
-bnG
-bnG
-bnG
-dmK
-lFB
-fJo
-bnG
-fnC
-kOF
-rrz
-aad
-aad
aad
-jVf
-iNN
-btz
-sJM
-sLo
-brB
-btz
-hwq
-ser
-aaa
+wyE
+qxQ
+jgA
+jgM
+ssg
+wLW
+beh
+beh
+lnP
+beh
+beh
+beh
+eWs
+wmk
+beh
+rWO
+miG
+rLG
+rms
+nAq
+lxp
+aZx
+nuq
+bhZ
+biP
+qZO
+fUs
+gIE
+mlq
aad
aaa
aaa
-aad
-aad
-aaa
-aad
-qYo
-aFm
-mpr
-mpr
-mpr
-mpr
-mpr
-gmt
-fab
-uVH
-aFm
-hrI
-fqN
-aFm
-aFm
-aFm
-aFm
-tNl
aaa
aaa
cuM
@@ -149086,60 +151361,60 @@ aaa
aaa
aaa
aaa
-aad
-aad
-aad
-nOg
-nOg
-nOg
-nOg
-bnG
-pGe
-fKJ
-xjL
-bnG
-epk
-mhE
-rrz
aaa
-aad
aaa
-biS
-uts
-bmw
-bnY
-hss
-brC
-bmw
-vbT
-biS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abj
+aaa
aad
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aad
-wiQ
-wiQ
-wiQ
+eid
+phg
+vrT
+uxY
+ssg
+sEn
+pVV
+oAH
+oWQ
+dzx
+dzx
+ozi
+dzx
+kAs
+bAa
+dzx
+rYk
+aZx
+bxF
+weL
+spm
+jEE
+fcx
+fkX
+biP
+teo
+gcg
+vNg
+vmN
aad
aad
aad
-qYo
-aFm
-mpr
-mpr
-mpr
-mpr
-mpr
-aEC
-fab
-bfl
-aFm
-hrI
-fqN
-tZV
-fqN
-qnp
-aFm
aad
-wiQ
aad
cuM
twt
@@ -149343,61 +151618,61 @@ aaa
aaa
aaa
aaa
-wiQ
-wiQ
-aFo
-wiQ
-wiQ
-wiQ
aaa
-bnG
-bnG
-bnG
-bnG
-bnG
-kNm
-syJ
-bgZ
-aad
-aad
-aad
-biP
-vXN
-pFk
-bmw
-fNb
-brD
-tUn
-yib
-biP
aaa
-aad
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abj
aaa
aad
aaa
aaa
aaa
aaa
-qYo
-nvI
-mpr
-mpr
-mpr
-mpr
-mpr
-gmt
-fab
-opD
-aFm
-hrI
-fqN
-aKV
-aKV
-aKV
-aFm
aaa
-wiQ
-qYo
+aaa
+beh
+beh
+bhd
+dvC
+bvA
+nyn
+rhW
+rtH
+jYR
+oHM
+gYy
+vld
+fNx
+gYy
+tFt
+hMg
+dDk
+hGJ
+dLS
+dDk
+hgR
+fTY
+mXr
+bZd
+teq
+biP
+boa
+mgC
+ewo
+biP
+aad
+aaa
+aaa
+aaa
+aaa
cuM
jQL
jQL
@@ -149407,12 +151682,12 @@ cuM
cuM
cuM
cuM
-cuM
+cuL
xiV
cuM
cuM
cOh
-cuM
+cuL
cuM
cuM
cuM
@@ -149607,53 +151882,53 @@ aaa
aaa
aaa
aaa
-bTl
aaa
-bgZ
-aPn
-nJf
-ycR
-lcd
-bNj
-aad
+aaa
+aaa
+aaa
+abj
aaa
aad
+aaa
+aaa
+aaa
+aaa
+aaa
+tMO
+ukD
+ldQ
+eZl
+snQ
+dUH
+hcJ
+tqN
+pVV
+hUv
+eHH
+eHH
+eHH
+rZz
+eHH
+eHH
+bAa
+eHH
+eHH
+eew
+eHH
+vda
biP
+ljF
+kkE
biP
-pFd
-fkt
-enB
-qGa
-hZJ
biP
+jXf
+wLl
+xOJ
biP
aad
-aad
-aad
-wiQ
-aaa
aaa
aaa
aaa
-qYo
-iuG
-mpr
-mpr
-mpr
-mpr
-mpr
-xCU
-raN
-tqy
-aFm
-yly
-fqN
-tZV
-fqN
-qnp
-aFm
-aaa
-aaa
aaa
cuM
eEC
@@ -149661,9 +151936,9 @@ rJs
nnq
cuM
aaa
-aaa
aad
aaa
+aaa
cuM
pod
cuL
@@ -149671,8 +151946,8 @@ cLn
cOc
cuM
aaa
-aad
aaa
+aad
aaa
cuM
dak
@@ -149864,53 +152139,53 @@ aaa
aaa
aaa
aaa
-bTl
aaa
-wxw
-pgV
-odF
-ifm
-tbI
-rrz
-aad
aaa
-aad
aaa
-biP
-bmz
-boa
-raY
-eRI
-bmz
-biP
aaa
+abj
aaa
aad
aaa
-wiQ
aaa
aaa
aaa
aaa
-qYo
-iuG
-mpr
-mpr
-mpr
-mpr
-mpr
-juN
-nZc
-wyK
-aFm
-aFm
-aFm
-aFm
-aFm
-aFm
-aFm
aaa
-wiQ
+beh
+bhd
+bhd
+cOS
+oVS
+pnP
+bnG
+bnG
+bnG
+bnG
+bnG
+pVV
+jNA
+pVV
+bLs
+bLs
+rFB
+xXZ
+qDc
+jAt
+bLs
+biP
+jnB
+uoR
+pxu
+dhR
+coW
+wLl
+hRa
+biP
+aad
+aad
+aad
+aad
aad
cuL
cuM
@@ -149918,18 +152193,18 @@ cuM
cuM
cuL
aad
+cuL
cuM
cuM
-cuM
-cuM
+cuL
fOK
cuM
cuM
upk
+cuL
cuM
cuM
-cuM
-cuM
+cuL
aad
cuL
cuM
@@ -150123,55 +152398,55 @@ aaa
aaa
aaa
aaa
-bNj
-bNj
-bNj
-qPO
-ttx
-bNj
-aad
aaa
-aad
aaa
-biP
-bmA
-bmw
-emW
-brG
-jwk
-biP
-aad
+abj
aad
aad
aaa
-wiQ
aaa
aaa
aaa
-wiQ
-qYo
-gMa
-uyS
-uyS
-uyS
-uyS
-dfL
-dKY
-aFm
-aFm
-aFm
-qYo
-qYo
aaa
aaa
+aad
+wSb
+oZs
+lPz
+cuB
+gaz
+bnG
+maz
+qDN
+lGb
+bnG
+iPi
+ukT
+vsf
+bLs
+lWc
+wPo
+goR
+sUf
+dOJ
+bPJ
+biP
+cFk
+pvL
+ceD
+rrE
+rrE
+dWv
+jMX
+biP
+aad
+aaa
aaa
aaa
aaa
-wiQ
-aad
-aad
-aad
aad
+aaa
+aaa
aad
cuM
aaa
@@ -150285,25 +152560,28 @@ aaa
aaa
aaa
aaa
-"}
-(221,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+"}
+(221,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -150379,54 +152657,51 @@ aaa
aaa
aaa
aaa
+abj
aaa
aad
-bNj
-nsQ
-iMP
-nsQ
-bNj
-aad
-aad
-aad
-aad
-biP
-bmB
-oAW
-uzf
-brH
-btD
-biP
aaa
-aad
aaa
-aad
-aad
-aaa
-aaa
-aaa
-wiQ
-qYo
-qYo
-qYo
-qYo
-qYo
-qYo
-qYo
-qYo
-qYo
-qYo
-qYo
-qYo
-wiQ
aaa
aaa
aaa
aaa
+beh
+idl
+bhd
+vzf
+fbp
+ojR
+bnG
+pJq
+rjG
+gmk
+bnG
+txu
+rbE
+hFC
+bLs
+qPZ
+uap
+imd
+sGh
+fSA
+ceq
+qFY
+tRG
+eCC
+wIv
+efP
+jnb
+wrX
+lyx
+dyP
+aad
aaa
aaa
aaa
aaa
+aad
aaa
aaa
aad
@@ -150636,53 +152911,53 @@ aaa
aaa
aaa
aaa
-wiQ
-aad
-bNj
-xKA
-sXJ
-lRp
-bNj
aaa
aaa
-aad
aaa
-biP
-bmC
-boc
-bpD
-brI
-btE
-biP
-aad
-aad
+abj
aaa
aad
aaa
aaa
aaa
aaa
-wiQ
-qYo
-qYo
-aaa
-wiQ
-wiQ
-aaa
-aaa
-wiQ
-wiQ
-aaa
-aaa
-wiQ
-wiQ
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
aaa
+ukD
+dXJ
+eZl
+snQ
+qSH
+sEn
+vER
+bzK
+uGi
+eQU
+bnG
+mJl
+voM
+lFY
+bLs
+hxv
+jYT
+sgJ
+sgJ
+gVw
+pKI
+biP
+oRH
+sHY
+oAg
+jCO
+erl
+tzf
+gbh
+dXm
+abj
+aad
+aad
+aad
+abj
wiQ
aad
aad
@@ -150893,49 +153168,49 @@ aaa
aaa
aaa
aaa
-wiQ
-aad
-bNj
-aaa
-aaa
aaa
-bNj
aaa
aaa
-aad
-aaa
-biP
-biP
-bod
-cao
-oAi
-biP
-biP
+abj
aaa
aad
-aad
-wiQ
-aaa
-aaa
-aaa
-aaa
-wiQ
-wiQ
-qYo
-qYo
-qYo
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
aaa
aaa
aaa
aaa
aaa
+beh
+beh
+bhd
+wJN
+xmW
+wzr
+rWp
+qrN
+hUb
+jzY
+bnG
+txu
+rbE
+mQm
+bLs
+nix
+ucj
+hbN
+wdB
+qUt
+tAk
+biP
+xbD
+roT
+wIv
+xWq
+mVm
+wrX
+aPW
+biP
+aad
aaa
aaa
aaa
@@ -151151,47 +153426,48 @@ aaa
aaa
aaa
aaa
-aad
-bNj
-aaa
aaa
aaa
-bNj
-aaa
+abj
aaa
aad
aaa
aaa
-aad
aaa
-aad
aaa
-aad
aaa
aaa
aad
-aaa
-wiQ
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+bhe
+gKq
+lPz
+cuB
+qfY
+mnz
+dNB
+tXs
+qXy
+bnG
+uQv
+gOp
+cpW
+bLs
+oYT
+ucj
+qON
+jaE
+qUt
+xhW
+biP
+biP
+wue
+wyw
+biP
+pzZ
+riw
+biP
+biP
+aad
aaa
aaa
aaa
@@ -151199,7 +153475,6 @@ aaa
aaa
aaa
aaa
-wiQ
aad
cuM
aaa
@@ -151409,47 +153684,47 @@ aaa
aaa
aaa
aaa
-hBO
-aaa
-aaa
-aaa
-lsi
-aad
-aad
-wiQ
-wiQ
-wiQ
-aad
-wiQ
-wiQ
-wiQ
-wiQ
-wiQ
-wiQ
-aad
-aaa
-wiQ
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
+aac
aaa
+aac
aaa
aaa
aaa
aaa
aaa
aaa
+beh
+beh
+bhd
+jbO
+oqH
+ubV
+bnG
+usz
+pmh
+wta
+bnG
+bnG
+bnG
+bnG
+bLs
+oCl
+ucj
+ejc
+pOK
+vpU
+qrI
+bLs
aaa
+aad
aaa
+aad
aaa
aaa
aaa
aaa
+aad
aaa
aaa
aaa
@@ -151667,46 +153942,46 @@ aaa
aaa
aaa
aaa
+aac
aaa
-gmH
-aaa
-aaa
-aaa
-aaa
+aac
+aad
aaa
aaa
aaa
aad
-aaa
-aaa
aad
-aaa
-aaa
-aaa
-aaa
-aaa
+pFm
+wpj
+sqw
+lLS
+bYJ
+mbT
+bnG
+rPK
+pmh
+nCT
+fzh
+hJo
+gZt
+utq
+bLs
+iqS
+ucj
+cIU
+jBV
+qUt
+hfP
+bLs
+rFj
aad
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+aad
+wiQ
+aad
+aad
+aad
+aad
+abj
aaa
aaa
aaa
@@ -151827,24 +154102,8 @@ aaa
aaa
aaa
aaa
-"}
-(227,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+"}
+(227,1,1) = {"
aaa
aaa
aaa
@@ -151929,17 +154188,6 @@ aaa
aaa
aaa
aaa
-aad
-aad
-wiQ
-wiQ
-wiQ
-wiQ
-wiQ
-aad
-wiQ
-wiQ
-aad
aaa
aaa
aaa
@@ -151951,19 +154199,46 @@ aaa
aaa
aaa
aaa
+aac
aaa
+aac
aaa
aaa
aaa
aaa
aaa
+aad
+beh
+jhp
+bhd
+dNg
+gbe
+edI
+bnG
+ydf
+jDk
+wvR
+dOC
+sCk
+tbu
+ukS
+bLs
+jbr
+ucj
+stV
+bSB
+rlC
+aVt
+bLs
aaa
aaa
aaa
+qYo
aaa
aaa
aaa
aaa
+qYo
aaa
aaa
aaa
@@ -152181,46 +154456,46 @@ aaa
aaa
aaa
aaa
+aad
aaa
+aad
aaa
aaa
aaa
aaa
aaa
+aad
+aad
+aad
+bhd
+asw
+nxk
+edI
+bnG
+ehS
+mRX
+lrx
+fzh
+jRZ
+bqh
+jlM
+bLs
+dPu
+gLG
+emR
+emR
+gfu
+pYj
+bLs
aaa
aaa
aaa
+aad
aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+qYo
aaa
aaa
aaa
@@ -152438,68 +154713,68 @@ aaa
aaa
aaa
aaa
+wiQ
+aad
+wiQ
+aad
+aad
+aad
+aad
+aad
+aad
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aab
-aaa
-aaa
+bhd
+pVV
+sHZ
+pVV
+bnG
+bnG
+mnz
+bnG
+bnG
+kZa
+kZa
+kZa
+bLs
+bLs
+bLs
+bLs
+bLs
+bLs
+bLs
+jPs
aaa
aaa
aaa
wiQ
aad
+aad
+aad
+aad
+abj
+qYo
+aad
+aad
+abj
+aad
+aad
+wiQ
+aad
cuL
aad
+cuL
cuM
cuM
-cuM
-cuM
+cuL
xiV
cuM
cuM
cOh
+cuL
cuM
cuM
-cuM
-cuM
+cuL
aad
cuL
aad
@@ -152699,37 +154974,37 @@ aaa
aaa
aaa
aaa
+aad
aaa
aaa
aaa
+aad
aaa
aaa
+beh
+hgY
+xod
+ooz
+beh
aaa
aaa
aaa
+aad
aaa
aaa
aaa
+aad
aaa
aaa
aaa
+gIM
aaa
aaa
+aad
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+aad
aaa
aaa
aaa
@@ -152745,9 +155020,9 @@ aaa
aad
cuM
aaa
-aaa
aad
aaa
+aaa
cuM
mbL
cLn
@@ -152755,8 +155030,8 @@ cuL
cOi
cuM
aaa
-aad
aaa
+aad
aaa
cuM
aad
@@ -152955,38 +155230,38 @@ aaa
aaa
aaa
aaa
+wiQ
+wiQ
+wiQ
+aad
+wiQ
+wiQ
+aad
+aad
+beh
aaa
aaa
aaa
+beh
+aad
+aad
+aad
+aad
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+aad
+wiQ
+wiQ
+aad
+aad
+wiQ
+wiQ
+wiQ
+aad
+wiQ
+aad
+aad
aaa
aaa
aaa
@@ -153005,12 +155280,12 @@ cuM
cuM
cuM
cuM
-cuM
+cuL
fOK
cuM
cuM
upk
-cuM
+cuL
cuM
cuM
cuM
@@ -153220,12 +155495,19 @@ aaa
aaa
aaa
aaa
+beh
aaa
aaa
aaa
+beh
aaa
aaa
aaa
+aad
+abj
+abj
+abj
+aad
aaa
aaa
aaa
@@ -153236,6 +155518,7 @@ aaa
aaa
aaa
aaa
+aad
aaa
aaa
aaa
@@ -153250,14 +155533,6 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aad
-aad
aad
aad
aad
@@ -153477,9 +155752,11 @@ aaa
aaa
aaa
aaa
+hWF
aaa
aaa
aaa
+hWF
aaa
aaa
aaa
@@ -153498,8 +155775,7 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
+aad
aaa
aaa
aaa
@@ -153515,7 +155791,6 @@ aaa
aaa
aaa
wiQ
-wiQ
aaa
wiQ
aad
@@ -153526,8 +155801,8 @@ cOf
upD
cJE
aad
-aaa
wiQ
+aaa
wiQ
aaa
aaa
@@ -153757,7 +156032,7 @@ aaa
aaa
aaa
aaa
-aaa
+aad
aaa
aaa
aaa
@@ -153993,6 +156268,7 @@ aaa
aaa
aaa
aaa
+tZM
aaa
aaa
aaa
@@ -154013,8 +156289,7 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
+aad
aaa
aaa
aaa
@@ -155019,11 +157294,11 @@ aaa
aaa
aaa
aaa
-aab
aaa
aaa
aaa
aaa
+bct
aaa
aaa
aaa
@@ -155533,7 +157808,7 @@ aaa
aaa
aaa
aaa
-aaa
+aab
aaa
aaa
aaa
@@ -157087,7 +159362,7 @@ aaa
aaa
aaa
aaa
-aaa
+wqd
aaa
aaa
aaa
@@ -157344,7 +159619,7 @@ aaa
aaa
aaa
aaa
-aaa
+hVJ
aaa
aaa
aaa
@@ -157601,7 +159876,7 @@ aaa
aaa
aaa
aaa
-aaa
+hVJ
aaa
aaa
aaa
@@ -157858,7 +160133,7 @@ aaa
aaa
aaa
aaa
-aaa
+hVJ
aaa
aaa
aaa
@@ -158115,7 +160390,7 @@ aaa
aaa
aaa
aaa
-aaa
+hVJ
aaa
aaa
aaa
From 12ddaab7ae94733c3a309b6cb44726a9d88724fa Mon Sep 17 00:00:00 2001
From: XeonMations <62395746+XeonMations@users.noreply.github.com>
Date: Sun, 1 Sep 2024 02:23:38 +0300
Subject: [PATCH 036/106] Heirloom changes for medical (#11404)
* aaaa
* Update negative_quirk.dm
---
code/datums/traits/negative_quirk.dm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/code/datums/traits/negative_quirk.dm b/code/datums/traits/negative_quirk.dm
index 561f23594f8cf..e1ec8aa8e7132 100644
--- a/code/datums/traits/negative_quirk.dm
+++ b/code/datums/traits/negative_quirk.dm
@@ -192,11 +192,11 @@
heirloom_type = pick(subtypesof(/obj/item/toy/mecha)) //look at this nerd
//Medical
if(JOB_NAME_CHIEFMEDICALOFFICER)
- heirloom_type = pick(/obj/item/clothing/neck/stethoscope, /obj/item/bodybag)
+ heirloom_type = pick(/obj/item/clothing/neck/stethoscope, /obj/item/flashlight/pen)
if(JOB_NAME_MEDICALDOCTOR)
- heirloom_type = pick(/obj/item/clothing/neck/stethoscope, /obj/item/bodybag)
+ heirloom_type = pick(/obj/item/clothing/neck/stethoscope, /obj/item/flashlight/pen, /obj/item/scalpel)
if(JOB_NAME_PARAMEDIC)
- heirloom_type = pick(/obj/item/bodybag)
+ heirloom_type = pick(/obj/item/flashlight/pen, /obj/item/sensor_device)
if(JOB_NAME_CHEMIST)
heirloom_type = /obj/item/reagent_containers/glass/chem_heirloom
if(JOB_NAME_VIROLOGIST)
From 14431515f9cf6239714d01ff7205294d1f358189 Mon Sep 17 00:00:00 2001
From: ss13-beebot <56381746+ss13-beebot@users.noreply.github.com>
Date: Sat, 31 Aug 2024 18:33:13 -0500
Subject: [PATCH 037/106] Automatic changelog generation for PR #11404 [ci
skip]
---
html/changelogs/AutoChangeLog-pr-11404.yml | 5 +++++
1 file changed, 5 insertions(+)
create mode 100644 html/changelogs/AutoChangeLog-pr-11404.yml
diff --git a/html/changelogs/AutoChangeLog-pr-11404.yml b/html/changelogs/AutoChangeLog-pr-11404.yml
new file mode 100644
index 0000000000000..445a3b6c59f1e
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-11404.yml
@@ -0,0 +1,5 @@
+author: XeonMations
+delete-after: true
+changes:
+ - tweak: Bodybags can no longer be heirlooms.
+ - tweak: Medical flashlight pens, scalpels and suit sensors can now be heirlooms.
From a2fe909eb91042f64df2d3c5a30986ab31d3dee0 Mon Sep 17 00:00:00 2001
From: ss13-beebot <56381746+ss13-beebot@users.noreply.github.com>
Date: Sun, 1 Sep 2024 00:15:17 +0000
Subject: [PATCH 038/106] Automatic changelog compile [ci skip]
---
html/changelog.html | 25 ++++++----------------
html/changelogs/.all_changelog.yml | 4 ++++
html/changelogs/AutoChangeLog-pr-11404.yml | 5 -----
3 files changed, 11 insertions(+), 23 deletions(-)
delete mode 100644 html/changelogs/AutoChangeLog-pr-11404.yml
diff --git a/html/changelog.html b/html/changelog.html
index ee03e5010776c..a6e19c8b7a70a 100644
--- a/html/changelog.html
+++ b/html/changelog.html
@@ -56,6 +56,13 @@
-->
+
01 September 2024
+
XeonMations updated:
+
+ - Bodybags can no longer be heirlooms.
+ - Medical flashlight pens, scalpels and suit sensors can now be heirlooms.
+
+
31 August 2024
PowerfulBacon updated:
@@ -872,24 +879,6 @@ spockye updated:
- adds lights to the abductor pods
-
- 30 June 2024
- ClownMoff updated:
-
- - adds the bananium e-sword (3TC) and bananium shield (16 TC) to the uplink, restricted for clowns
-
- MarkusLarsson421 updated:
-
- - Surplus Implant duffelbag.
- - Cargo order for surplus implant crate.
-
- rkz, HowToLu/Dakae, PigeonVerde/PestoVerde, Floria/BriggsIDP, Spockye, made using code from TGcoders(wallem, vincentiusvin, paxilmaniac, tralezab, colovorat, coconutwarrior97, timothymtorres, OrionTheFox, coldud13) updated:
-
- - Adds glass tiles, a new, craftable tiletype that you can see through!
- - Adds catwalk tiles. They come in multiple different colors and look much like regular lattice catwalks, but you can move their grille for ease of access instead of having to crowbar the whole tile!
- - adds zmimic hooks for tiles and material turfs
- - Medium buff to floor bot logic making them more discerning when repairing or placing tiles. They will now also actually repair tiles instead of always replacing them, if possible.
-
GoonStation 13 Development Team
diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml
index 34b3c7436c5ed..0fa7933bfbf90 100644
--- a/html/changelogs/.all_changelog.yml
+++ b/html/changelogs/.all_changelog.yml
@@ -44046,3 +44046,7 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py.
2024-08-31:
PowerfulBacon:
- bugfix: Fixes some mapping issues with RuntimeStation
+2024-09-01:
+ XeonMations:
+ - tweak: Bodybags can no longer be heirlooms.
+ - tweak: Medical flashlight pens, scalpels and suit sensors can now be heirlooms.
diff --git a/html/changelogs/AutoChangeLog-pr-11404.yml b/html/changelogs/AutoChangeLog-pr-11404.yml
deleted file mode 100644
index 445a3b6c59f1e..0000000000000
--- a/html/changelogs/AutoChangeLog-pr-11404.yml
+++ /dev/null
@@ -1,5 +0,0 @@
-author: XeonMations
-delete-after: true
-changes:
- - tweak: Bodybags can no longer be heirlooms.
- - tweak: Medical flashlight pens, scalpels and suit sensors can now be heirlooms.
From 314bd7b122b2f81e24b3ee4149a6817160af2b57 Mon Sep 17 00:00:00 2001
From: Penwin <53474257+Penwin0@users.noreply.github.com>
Date: Sun, 1 Sep 2024 04:37:24 +0200
Subject: [PATCH 039/106] Plague Doctor hat no longer covers the face, is no
longer a subtype of the bio hood. (#11394)
* the thing
* item state
---
code/controllers/subsystem/traumas.dm | 2 +-
code/game/objects/effects/spawners/bundle.dm | 2 +-
code/modules/clothing/head/hat.dm | 4 +++-
code/modules/vending/autodrobe.dm | 2 +-
code/modules/vending/wardrobes.dm | 2 +-
icons/mob/clothing/head/bio.dmi | Bin 4258 -> 4365 bytes
icons/mob/clothing/head/costume.dmi | Bin 45870 -> 48613 bytes
icons/obj/clothing/head/bio.dmi | Bin 2026 -> 980 bytes
icons/obj/clothing/head/costume.dmi | Bin 20353 -> 22032 bytes
9 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/code/controllers/subsystem/traumas.dm b/code/controllers/subsystem/traumas.dm
index 056bdb65eb4f6..2f5953ff772c3 100644
--- a/code/controllers/subsystem/traumas.dm
+++ b/code/controllers/subsystem/traumas.dm
@@ -148,7 +148,7 @@ SUBSYSTEM_DEF(traumas)
/obj/structure/sign/departments/medbay, /obj/machinery/door/airlock/medical, /obj/machinery/sleeper, /obj/machinery/stasis,
/obj/machinery/dna_scannernew, /obj/machinery/atmospherics/components/unary/cryo_cell, /obj/item/surgical_drapes,
/obj/item/retractor, /obj/item/hemostat, /obj/item/cautery, /obj/item/surgicaldrill, /obj/item/scalpel, /obj/item/circular_saw,
- /obj/item/clothing/suit/bio_suit/plaguedoctorsuit, /obj/item/clothing/head/bio_hood/plague, /obj/item/clothing/mask/gas/plaguedoctor)),
+ /obj/item/clothing/suit/bio_suit/plaguedoctorsuit, /obj/item/clothing/head/costume/plague, /obj/item/clothing/mask/gas/plaguedoctor)),
"authority" = typecacheof(list(
/obj/item/clothing/under/rank/captain, /obj/item/clothing/under/rank/civilian/head_of_personnel,
diff --git a/code/game/objects/effects/spawners/bundle.dm b/code/game/objects/effects/spawners/bundle.dm
index 0404b0517b67a..1acc5cf623b07 100644
--- a/code/game/objects/effects/spawners/bundle.dm
+++ b/code/game/objects/effects/spawners/bundle.dm
@@ -84,7 +84,7 @@
name = "plague doctor costume spawner"
items = list(
/obj/item/clothing/suit/bio_suit/plaguedoctorsuit,
- /obj/item/clothing/head/bio_hood/plague,
+ /obj/item/clothing/head/costume/plague,
/obj/item/clothing/mask/gas/plaguedoctor)
/obj/effect/spawner/bundle/costume/nightowl
diff --git a/code/modules/clothing/head/hat.dm b/code/modules/clothing/head/hat.dm
index 0444630fb8dd7..1ec1a0b6b5979 100644
--- a/code/modules/clothing/head/hat.dm
+++ b/code/modules/clothing/head/hat.dm
@@ -37,13 +37,15 @@
icon_state = "mailman"
desc = "'Right-on-time' mail service head wear."
-/obj/item/clothing/head/bio_hood/plague
+/obj/item/clothing/head/costume/plague
name = "plague doctor's hat"
desc = "These were once used by plague doctors. They're pretty much useless."
+ item_state = "that"
icon_state = "plaguedoctor"
clothing_flags = THICKMATERIAL | BLOCK_GAS_SMOKE_EFFECT | SNUG_FIT
permeability_coefficient = 0.01
armor = list(MELEE = 0, BULLET = 0, LASER = 0, ENERGY = 0, BOMB = 0, BIO = 100, RAD = 0, FIRE = 0, ACID = 0, STAMINA = 0)
+ flags_inv = HIDEHAIR
/obj/item/clothing/head/costume/nursehat
name = "nurse's hat"
diff --git a/code/modules/vending/autodrobe.dm b/code/modules/vending/autodrobe.dm
index ffd1bdb5887ad..e92544a2a746c 100644
--- a/code/modules/vending/autodrobe.dm
+++ b/code/modules/vending/autodrobe.dm
@@ -59,7 +59,7 @@
/obj/item/clothing/under/suit/sl = 1,
/obj/item/clothing/mask/fakemoustache = 1,
/obj/item/clothing/suit/bio_suit/plaguedoctorsuit = 1,
- /obj/item/clothing/head/bio_hood/plague = 1,
+ /obj/item/clothing/head/costume/plague = 1,
/obj/item/clothing/mask/gas/plaguedoctor = 1,
/obj/item/clothing/suit/toggle/owlwings = 1,
/obj/item/clothing/under/costume/owl = 1,
diff --git a/code/modules/vending/wardrobes.dm b/code/modules/vending/wardrobes.dm
index eb39dbefb83d5..1e810e04b5928 100644
--- a/code/modules/vending/wardrobes.dm
+++ b/code/modules/vending/wardrobes.dm
@@ -534,7 +534,7 @@
/obj/item/storage/backpack/virology = 2,
/obj/item/storage/backpack/satchel/vir = 2)
contraband = list(/obj/item/clothing/suit/bio_suit/plaguedoctorsuit = 1,
- /obj/item/clothing/head/bio_hood/plague = 1,
+ /obj/item/clothing/head/costume/plague = 1,
/obj/item/clothing/mask/gas/plaguedoctor = 1)
refill_canister = /obj/item/vending_refill/wardrobe/viro_wardrobe
dept_req_for_free = ACCOUNT_MED_BITFLAG
diff --git a/icons/mob/clothing/head/bio.dmi b/icons/mob/clothing/head/bio.dmi
index ad9e34ae1e8fa7bc10b7b3822d95551d178cf73a..a1de696fcd4391671e5bac8fb24c092ebd18a843 100644
GIT binary patch
literal 4365
zcmai2cR1VM_kW{im7Z7#p*I5
zlva(19ec$d^-Z7O|G&@koO9Q?&vVat?tR^JU-y-niT(waD=Yv2Trf1yF{jpff0c=W
zTA~OZlGG|Q+|o8k$1Tw1iI;znm!B^Hz}_YhT3I@!d1I%Q8mr6i}ZcNPyyQ*#aPdyG;XOz8{r01*7bDx8S=nMLSa%VGBx>~@LgKj51_+1mH
z6<9EAAY&nAwwT}G)_g=8+m+M^O&hun9B5U&
zdG3eskoo=L%SPySW!Py#7xKCxeAH9!5joLO
z#EpIAh)yBP*seBQe#|Ws%YT(8ZhQO54Nk@>=RTXOtkW)4qfq2eZ~BXBn@0HyPOl$-
z*#2Q^-9_FwJYlX5NWN|urh1l+sg>u>!@FD5>~H9o^wRfsYYW!l4j3bLMvwRDp0P)(
zXyBm>EB`u5>D(rHf7+A41s9Q6rPRc3H^$9Y-&bm)Bs!~tIz#OALY-N%VvOq&dVG$-
zUkW7BQ`RTV`hKZi*sukU@81SIr8-4;oJcdM(E}*+xclL}$R%wk2b(ndu>r<4h~~S2ejTS)AeD|LdMTJ~
z$&@qcu4GN8Y=i;P_&85!|Ig8w1W5-lVzz2#3kKUtu#={52&Z$Ic+)|qw@9YO0blBI
z!yo^GUtj{VxjSC1L*GQ)ML3p_UG{c)8|dfzaDp+fUrYuHF{fUi9=G$I0{b^sG|3!H
zyZ{s44LC&ao*nU@eqLqG+XWMP4pNGHr3Un8SkD2*cs#F$??hg2$|Jce4^Cq49_{S2
zZy!qYx-<96^0K~cGUH@@Da1@piYm1sy?iM*do16+5&dHlaEqJ2X*_nREi5B~JXoGvyf;VK-_hrt{XkcJY<=~DoM$vRX(2n(wrsv?Ur@%}SK
z;dRjZ@z@2`dVx8+<&{Cum041cr`!yCSw$7?=AoM=qfGw_yUl>i;{ykA!{j$g7Y__+zSKH2xucxO6Hh6e)2a=wi&e#e*%Oi4V
zF^N3C`2QDcT1RYNO2=KX*K(N)?%Li|7**I?AyAR>ee9EV3C;?iE-r4Yw?3^Xs&F>l
zH!^{_HgP)LnF6u4{t9Lh>Jl5*o6IG+-r3qs!Nk1blSqr7x0ajmnqLu9yPULa|FZ|d
zeNw-9$R3I-q_wPH#AF}IK@ik~@O(_j#0U4&d(8?CR8@M}SJ@D2fo^_JQY@->GQ)l*`6~8kbp=
z5#KA686?z!4C*?d&ZmFWVqYJX(*YEzeDi^CVyNRir~%-1i2
zjmMEz9;7G=r%5Er4{bsa3Jr1F61B~&*7|p
zndLu4COPXKP^~{cni|s|2#dXDwl3qQBMLuP_1Ir0Rz0l9pxD1IsA%Hw^wG8tzIORY
zkGa=zk)J;JSGqIWBuP*A-uW~zp*ASV-6AiUrK+TH>3q5_#yjIPB+IDKNl~nX@1TW-
zD$IyX7mhdCo9W7z(R3wzCS9s%T>829@VcF_K8)Ab-K%!~Kf}$;S31T?Fow#9><*s<
z9Y`s$cCw7?g8aVfxqbul1hhKV3!;r3*}wk1-*?;ubLI%KFDgzl>z-
ziXyo(Gc#?^0R+j;t=Vr|3r4b3Q|HPqOD|(|U9<-5#7cK$GC-({_78Z2zf^=L4~*3Z
zg9R1*CRy|L@tTo#7nWC6!VpRi&e&BCk1ZYmY4|KfipKtO0Cc=Ap;ey=jhOq+0Zg@S
z8HsV7&2zoU&B%E9HkUjV^)1rX-F@a@Yt|MAR~BGnydx`H9Z8UQ$tM`|`LhnkmVuFx
zPRA=+*YX|!h&MD@7{`<@4-OAMf5t_Rp!
zA=vG5XuyU!he~dZvP32Q2kf-u&M%EyMjm&`qFK$TQ*-ON
z)Y1e}eMB;f_`RJ85xOf@cb8wZU>K+ZQgkw#
z6cul6rT_fkx00o`_3d{8(O9iNu5=n~m~VMY_|>U0cDR)lH*Ir`%ILO6eGdlp5QRue
zT5-ba3-l+ftDI07P!e*+jvV5afK_?R@96&?0Q{Xu>TmA`TI&S0&Dihk
z6Cf_*i5_qDs2=3E+NnOh*iZYA^79KLfMWnr{nK*Asi2mmaQ3reVp@tKG{B~ydWiQe
zEj+QhGL5J??Z#u0AUNt1`GFJ4B{rt1T%?zzLmi~rE@JRV&=)20L$_G|PZ!iJts7Dv
zy$xLZ8!t20=N-2PNDu25{VJ!3}4!
zk=^32-q-;lK=|Me(T0e9Uo06bu?vrXdG+0rhqj7$7fV#a7Vwp>m>S{Q*cFtL1WOsuMw=gfmw()J{^~sG!W`1t2Bq4I7
ztRW0mk6ySOe^oJLVBVl4#73mnDd5MTm5I8L{1C_+!)Q#eWVTUnITYle{FWb&=ArSA
zn7H4-ztESZp$OYQo)FD>(|F5pt2zK~Uk1^m%CqH2
zQOdX~oo3*9(yvLrcIl48Wtrl`D=oGN(QF>#7>}v&@7sU8eWk!?xP?bMHlwco-16?*)Toh;XCqB)Rm7lv;NY>mumQ1HP7}x)Q
z$*`1YRUBgDyoT~I+j(a((dI1ZI(gEF9EHB{wx1!3DSr}
zwr&;dt{g?GN~YdjeqUb*JE~kcN%A=|aJ7hneamZGw7FTD!Sk#cT!>*!OwmczPpx)kA7VP)R2BJ8RtgJvqeA@Zk~-r4KpL{WB|CgmZ)T
z7HWg&qKg@KXu1eHJ8gUl@*Oj3xW?6G%UPT!WDx4Y$mJ^jd
zSE~HY5x>>jA~|GFjFf3XhN`T_h^mJF;<*@G6qrN*JS}qxt_YTgQL;l1YZl=^LzSHU
zh}HD5xw^*Yl*@qCbXRP_CPVSY=ii6XF5w5T5G{kpQOGwzFq13l1i(8fappb!l#j@;_-qhT@P
zJp{60U6V+g@T4txm4fQiSTvpf=5*8L3JWzK-qXU(Km6CL=M(xzn*Exh#hvq)#Y?a>
zy3JG%iwuHaN;SqFw>7-?nXu3Qt0<{Pdfn2YlW`v8i#OkbUKpCv0#TH*dH|p{-#gFC
zOpgL)t*eqme+ckYFH^&I>n9X+N&N+8EwFU-6zgqVRoxvZ;s-@Jku!##S=_aeM8?w~on5=3j~FP1x<2
zUk|9-f7QbX=$3Z*L!vcQDv5gdJ+16xy^<=p0>gfS`7jhT9PH3c^kGF>Do)u7=}?Hv
zsT+k7*wa;ENDkCM?^82!zi4Po$hY|Kj+RtzP33|oX#i;>)0ktuTL^~eP{bC4nCTA}
zf@&N4G4Ij5X*ee@H~Yln*ye==8}&11KDz&W?rD7=u{0nN`|x1s*qIyq2wA6?lpL>vwPN#rpcGtd~jS}qQ9de#Wp`bfB!mLdsha?
zkTc>IoI2UK`XQAHei-~dqW^@g)6jxu461M=;w&ny$-(xC+>3q4&4&m`ZYx4V_y8!T
zP$>!yH$1PEzg=PN(>611J=}WHgFYE_TM+P9??+OIVftu;7N&7GK4R>l0rzzB`6|CH
zJote926R02143^wJbge^p!@(3#zPZrISMoJEr8utn9AjxJ5nsZxvz$LeolPR+V*hI
zw${T#U@Sm>ZF}AOz}{iq40nYORaIs>AEhxEuIib8GgRy6%%OnW)0+;+3&PIp6R9`!
zUH%fB;(+ZF+?Q`vqL(WCzMdIgQv)_f8zYkYS(4&{6fz3>1)NP=o#+lULXbw!;HBFEtimWtRA$W)>UB8D?!+keA2w!y)>UzWL4(BH&$FK?0Uv
zA%s;;zwgN4ltDpW(dDEeAVx|bIq3O35S4GL@hiG`i~0o+(;@s1!AaW5wpH#tkXBgj
z@4NJ)%uh#9S6fQ6UiCM+o=Q~qN*`#bNG1CDq`O5qexBs6+}cMp~V6sAia2K2~wqlRDlE$q=*!yNiPy4^xh>X
z(yJ&f2%#E+^bjBgxSadl?|%QDKfayW-PxU;XXf3R-}62(26~zttU{~+0Dwd5p}NuO
z-f=qfSk9iV7Ls<>e;Y%)X2m6b;{0-*J%X?-Rp75lFPAAc
z9S>_i!y2RY1}7lq!Q-jVc8<-yHK|=W+q%SVwl2FwuRKdsyfBZ`1#6+Rb7uerX)Wgy
z8GU~I{%gjQ)GlUB;uqUTI_j@oe=y1fk-D-Z-uy@kcKrOupuk(wd?sfvAL%v6J)1{a
z8kq|x?g#Kz9+`CTIc?K`aayaKVUzPYT;r_=007q~E%m!5fms{bY`%Qsf<0K3i#EJ-
z4gnYQB6{vhNgHTzf4&Sd;a+63_+|tJ%Bsgkj267a6q|^?bK(7VS;(^FtLEiGX$CHX
z*9EVpY&&*Y`Yf`Uus
zB4Dt7trPk^q&P=;$z5H&LqjPZjK3ws#Y<=*
z3(SsjpO?OaecBYape0I^hcr7&jc*EU#}5Z;<`UJ8k0);L0T&lNHBPhoGGvKQYo40D(@Du>ssDq!?%GJVn@G^YeqNxJNfa05krgD~Fk
zUSC~(fhvB#2)XSCOA}!VLQb5EZjqxd%!#b7(RmVP%|xl|o-&2?Hz)g#SUCmxJCaBW
zRs{caYLKivjg26OC16$Q5)GcZ=qX@7c9i)Up
zjehF{hT?D`LEne}R=PXiM-i;>X_ceGfq=_du)#U({FezvJ{(cHC2*b3+uHeYct)oO;(a^@6q9xH$Q8
z;zO7C@i&6+F)H3KmFhgVsy+S;k(ejsMkF9cyE`30S9C`lYYlsEGwU%p43f5jCrYrO
zzQU6!+k%AXc!?1At;6a0dJ|*(l%Vi~o-Ldsze1Ipw7!Y-WNUa&3r`#TY8)6g_cl4X
zaQ2u|9)1TaKHS@zXIg4TL2?vNR#sFLnZ12$fp2b6dL0w+uq3K
zH)VJ^xbp6Lf2~ZXC!A?9ZgB2Xu#|#Al3D0G!T~;XB*HshP{Fa78geufsreN7Q7-Fo
zC3X}nZyPaLsqv|uaeKWp{OYwAzh{7vG>W32mG+63x4fx|$-{9cp$j@}XO3sBSS=lg
zv!sS7WGazJbji*}Oo=KSPNyGUOwNwYPUH#es9KW$=~>_ZoPC)TG$x0)e6+H%lF^=i
zBF=E?I{$E>x*Cw3m(X|E4UVY)Z69!q@qE9<6dWXi_fv~{T73`@{bmc
z%LeUbqBaD%%xyM5Sj)1g?zEDR`~Ff3GRRBi#@*eC+_282^)gp`DKy9OeKbA85=3QWy{i?nhF*T3FIQJK$6)`FF>
zvo0Tk9L@_BH3_C!A!fLlZg>;uXLy+02tZ!<`BvS{fLDBKzAWXV_27V;mZ>^-S0%&p
z>R0OBb@?0I&?&FoAM6nQyA(FFpguorB!^_`D>qvZ)@QtP4y#SwSCI(4HRj8dpVyj+
zLy=CX4cl1PO|OP6&No^`q?K1*O6ir4AWPk)ezjSM1h`L%txhYXy}XV6Wc*fx2Tl$6
zGJ~V3_=S4=;gssRb#*+|esCrFXp37poAQ;?#v}ZI;_W$Oon~KixWB3Vw4rAB+WVBj
zMx@c^-8%Ac_04rsXz|fojuD0jo}b$dOieYatE)YJyGg8sNSeZK5`-7s=xsZ^g$CxY
zqub@SE`T1iW`^GV4wh*>?jG(BbR7ZV6zghLpWsRCsz>K@8Y
z^K{9lgA_PGPt;+s9c$g#NjkOBa8W?ei|U6Webzhv(E)n8yWCgU9&3=Qan-CW53Q|y
zK=Q8HOV4QWaZwBD`dzP95hcArU9!jJMWw-&`84_bM3UZ(@%E&hQ2Q%KE_Ql+>Z0ru
z_6;-sbe+6O-_)57lwt>AP7E02!uAxd6ME8iyqO*&--2^_AiZ=!jw$l_tV@Cp&`E
zM=%VfLRgwy<5}SOf!5)d^0bXmg9YBG@PrAV1d`Em0?;)G@RX0T(#Fe5N*N7q(*>z2
zBFC&}{81uHLJqUazN-fHd@P`*Wjxlq6Sm_HnBHbKuUmEiV*mX0?sr%NMyzA0!|sxu
zihT~~5P)E*X2zwaMhxzB{Kfc>EP+Kjq(6VRhZz$e4&-tn=copc`H+ls2YSZF_L#S1
zMj&00_($1eGRiO0?YQ^Vv5wO{Yls;KzW_I#Nv>N|pvob(WecUPossWu6%b%(f7*T#
z@TP~egH>U-BH*IkFS099xa*6ugL94EK1<0kX5@W^vs~NX`)Z{cjQK6(y=S=!kk5u!
zn@a4??-}8EF|~Q{TryLEN2Hqa+`_x=3(2$Ys!wNssNxQIMEXJ3$TXHvP@_3b?aS&4
za=oH~j@rE7Y$uwfufP1+4u?9z%^Gbnm5mI;Cu`5Ws`MO$2?gnvjZoou2CMAQA437_
zyr9YEY?{N+y_~Gvg%&sDr_{X9l+dU6dNwk)qOpZ2`~$z;{EE}H1~M~03^897hGRX&
z*Xe%xs3*{Un}!zap9nt+Z1+XJSfbZ4YUjSc@K3}&hn|vXor+k|#F&3~$HchO2NWp+
zyG-|ei0vR5m*Yl~P@zSB4KO{J-kF8M4hAe(iDdqDHz$mm(IXvvh-E3QWXsryd`>e<
zFYwo3`v0`kUb9^_-Y*1y;o#apH^iG24kaUh!)YuxNb3nRj`jT-u*)#eR2cd?zPQIh
zYczDh3O2CXp0xUFcA)g
zfeQi$hGU_tgOu)s!upu#e42u1v_jA|1oZjhm3mkFu-&Xo;L*?sY(Qegb;HB(Jjc8R`BK+NV3e|glC)}0I$qT*5H^BBnX
zyN~;U%`GQ$mX)RG@|kg8H=73ZQ`%(Y2*D4KoRW%hAU9jod?d%lI-f_Ay+NMUElcz`
z_=ztv`^HAj4{DQ$v^l~vTm&AZYn`44J-UpA%bK37B!EZje#!zJj!{L27%QDdbd19~
z{gvf}F`ayWe1A#5a;J~s(~4KMkAtzLrH)t^u(xPk(~mCbeZ80rk=KnU{aMM_VOuZB
zfAEAl&>HH;+T4b;Y06DV`i$PA%}^gsI!%P+fD4`~PMw_~;D;Ri!evKPj>>}GxE=8$
zg6_JWgLw5}5viyH53|MTqi+&U7zI^jTa!$P3wUyx(tIjZE@uN`5({q783+C&8vp$$
zXNVNyV=u@jGK-LCa-Dq_4O4YbMw$dwwjunN7YZLd&D7LQJT`(NGuok
zDt$YwAq;r35G7KOoXqFG)Y2NuD?^QmiCJ@uFnjr5%}QbD6>3+`r+
zdgh+#d~Pr!NH!FmH`Ta`HUihuude7BNRl@R|CeeHLN(r^t5sv#X9H7hFO>JK8Gk`;
zN#X982p2pxbT!Q^)&uzvHnm
zgJ_8a$Mr{R7t~tiO!Qw*sZGW!i?B`)>}mCM#y
z-%Kgus>+aOR7jD~Gl<&XP@Nchxy3}$(wK-?x8oc8oL({KSgZAY$tNn6pJNfJ>7cAZ
zD=-bcy~|w5cqca?J6pBwiPRUXDZk`?qi3cBg^a)J@R*nvt&(ZS%CsQ};*jRraYS;m
zB234(r6F}+jo;H9G#&_CZuriDY3cI5K^_?&$LPt;pPHdQ;TQVxF&~@?C6S!$d&dz;
zeBY~R;n4{sR-b%Hh=K76mZ>O}iapC#ZDlKf~k&
zWq3Aup^$HKNq2rL#4mJ4wQfwcJ+JL#0-Y%j)p+7trNXK9!3uyFrWk*_ov}ZI_kZ|}
zYu^drDfdneia#O(PBm=**avLyGYVd8*?pFI92oj!FT@KqfBr!ZLz|zp`7rR~Sya!q
z<}RS=-5tP-yt52|mqJVc78h=SXz|_u?~7wDu-~HCJ@%BwzyC~2Lr=Zpp3TdD0YVK)
AApigX
diff --git a/icons/mob/clothing/head/costume.dmi b/icons/mob/clothing/head/costume.dmi
index 1b302902a179900df96bbe7576b9a0dbb9fb6301..5c7146529650ff62ed8c06a03348c762835bc3d9 100644
GIT binary patch
literal 48613
zcmc$`cQ{;M^fx*}l&B%m5=00ILG*6)7B$gA7$Jz>i86)|qW9=ViQap(K?G5T=-ueO
zL}!?BkMHl^`@HwR`~LOL^O&=Xv(MUVukzV@tuvuo8cL-1=xSG3IJGogqI)Ff*(-V`B8jpA>{D*qq8aOFDB>H<6_xf(J
zNIPe#dev;{7Gh?*-5yB@kF`eui{W1JS&4JZ-L})TW
zDXCRp%s(|T!4JfjLCxT#aDO@vhZQ{<$F{TsB~l#MoHnYs1#+4CFBf0b@fa5FTxM{6
zvk#{1PashhwFp1d81YE^^F=X+BHKiW(fj&K`}WNpeI}QiP#M+)hmGvXg5B|awi>Ba
zV@N5OS4^XGioKPsg1YVHljP@5!X%F&G0)xO{**>*$`d{-kQuUH%6|A@Lf6BbvT*Z*
z&NQBPH`cW1dH#o)T-%H^RdvQ$i7jWQDGdrz#QqYmwxh+}Qx1l|4C@0ms^>)$RE|g_
zd&z#F=~KR11C6o7`x5*5bpbG(VO-=~YPh8IJ#~3Pu9$K!{{#ZLhWlg&soyBRn7$AL
ztMKl1-d9Ypv?OX80j_sU9CP%mU&!@&3r8E+FDOz3f8zMl}`~WZT;hsp^w2-DHjhGB;jaj+0IHxiCg;n#=q7U&L(bJUZB+3u%
zH(8EkJ)Xzc321r8CTI8UhjH@g;?>9auQJvcwDdVt&5g?O-j=I>BvUzG{)bX$njo1E
z3V^P~OTzZ|86E$VL8klC&K}ftz{-%hGn|7WOX(b_K-5ef{7}^yTfNsKXrUc{6s-W
zEAWAkKjoG5pY)mqu*O8Ml=xM|wC#bbOXk5wyyhU|pr4;lnWV%dW#bg5t&VtzMHE2
zfIBlgE6CreYiL+ZH@U-w?iML7E|xg1uBpKR>FVk}=i;hc^ENavcz)7^Hb~g>DLAw~
z*!yE{_v$~0L4;bBX6r>?h0k%401RzsQd>f#CRxeDOqDbQ!@KI;V~8+KyN&O*U;>Ha|oSC8El@@YZ<*coG#~!e|1Zh*d{z&ul4MV{QccYJ
zob!?3xbE{34uyVkD!Xw4e+6Qm;{oyN8oC|E^7?1NqMlZv9d~;(w}g}0a6zj5rWgN~
zK>o$W9I;7B8!4!fkvm!a4@jA$9zPPY(<+9;;p8Bv#`h*@Tmmwke0W+KXLsbIkfqL$
z+~VSU)6>%;?%NM0%8WupUDuz8i$5BnE#b>?xf<~;H)unu
zdB+#t()?$xqB~giz+5FGtJ>x_lnif5%TjTv=X)1*z%|ohJ{!gy(IPiTs4zx4ZN}c
z(s@slyXVjQto){XEUp2zFc;DFxeSYb1iNv)`kdQ_Cogw1MIO_>97^TIrud7yfy8n4
zF9LT=dZ~btWE0TS`EytH_8(*2riHSf2A`dI>~+yV@IXKE@|H3@7Y+>(4)bC_1qWo}
zd#KRQ@8pf?2qehO%exyH8TrY$NW~$+M(Vq#I8;=6ZrmV@b`U%uP{{Y%ztw^u#ipD$5+g{agMAD?73E7s}-o1yz@7
zWi>S&n|4Ynst@^PlbUL3BrVLue|KieNIxfiMM&uE3}#9i&DKMGggbM^W@%rby{lbZ
z1ak8uG!-6O&VD}zYIZlnx^Lb*U4>}YQ@vT_I~EmrxH(BcyFfnWLn$(S@3FNGoXGeU
ziP_oK{t%st@o{ux{1XG1v^|?!$E$B+@}^^;hC_b7S9G6Unw$8N(+He*-bvfLo?D3T
z1Q_=ObPLs4!~op7WxbM7Yd=2^uOwN8#Cbi}yFa&*+H(A+>Sk1NjLA+8{a5~vbu(Yg
zWNREdUogAbN`Es5^c6)P%pyLYm?MU7T}wd2ntRd-1^K6dX}_BL%qCc7Ti{cGG&01#
z1_$F0RoB)EMBnG&nwrF((fyg5d(Ue<
z!m8P=t0^OcGcr0)6BNSaXOM!Up{z{diGm7)vJePHanJqTdW|=4DC_N}bAFKdm)pVV
zJOshwc|7K?_|w#p$of?Ogw<6Ci{Xh0OD{Uwn#kfd8f)~A@VGe2*p!sefq?;s{_X8;
zEq(ohdLpbci@(m|s`L5DI(_`wJ!>jy-M5~{NwKR!ruIUsizn-@R?u@kEoA&`YXLj?
zc3;q){e41?ceVfcBw+76b6w{-lS12C%+E-7rf;lSjs{Xj;>VRysaZx0A!zN
z`ZqUnqpH>Z`SrxBmd0xayQ-?IfQ3aiV?7RPt`?G>vpaO1RL-{+hG%kr@*`F2c(7Y<
z7S-qad@%N6GdEcR+N1{yS)PR=>k`Tm!yMJcp_`e}kf;$b3IrGFyJPKd04X
zkFn6!(+fTx6elMKU%vu9Mz)oQi7&CyD+SZ;Ye{&|urRH`uL&{e~`$BwhO*g;Fe2E%_M(-7eDgz&Gu&M
zR3n_swZAK8EL~0AtDUggxAIAY5k>};|H86rCj^zZinaO2c
zQa#V*Y^mBi@IAYaO#`9p{DSu{CUMT;qw8-gjAzFl>f7W%ajVl;oAi%@>?j)mNr}=e
ze3>*|W0mG0EG#_v-Fz?^2MWV@!{2FhT01&UPLvymkB#XVoyaQGUE=v?-z3iEuIX(G
zC+eqRize8De)bLw$R97XioBzZUT^hLzY4;CJvOHkIe-lOqv3o`RM+pj4_+!=A_?Al
zN8yDTCs%x0_0^AJ5bz?+4EiI<#dcqY`upVujmgbX)w4K12^gNSvVN}4;!Yy2tE=lH
zU{-i@_V#H_RxtsyXlMnFw0|pd2rcq7k0=v)ATNl1xj9P3Zf1r;OnGlVaF}Tl+?7$*
zPQpoSX=X}gSbs}Nx=!WP^YbQXR6AxNXu6e$6V^UIxN>FMa1>k5aKl+v0H78lFDeof4#
zp8C;9amHb0W=8FXkl7}M&mv4uUq9sN$i??2kld*|Rqz5!z?9X}B5_NUt+WNc&S?#g
z#Toz1x5WIyP`Ub3kK{*bZNrio@84}Ou@!KFQ;i~m?`-H{rM&uSXzH=43BKpZ+d28JE
z!J)?aYAHD?EX70K!RAr{&xNu)DAd&tygyPWuq7A-_@3qYP89I0c5asCmz5!pcZd3}
z9F8Rdbu6V%hgc)SYtG`<4=&-}fI$&V3D8lfMBcPY5~~tAQ(KF53TDO?3TAl-bX3f2
z2)PV@lzKK2RL%69hz8TSv9i2eX*15z))VK~`0$+;EZQV4SSROz-qf9X>=OqxMcP_c
z_kLKpDvKH+vmQkq{)5Vb8!LfSO%;J2ji=!(N>O-qndA5ap9CJ!)5oNyZYOT3y?))<
z8_zB|s%I%vQe50Z;`HWC9K0?=fyqcoDP+xE1{jEP96x~~hpaWA7Z4~}*)OOFGvNDA
ze?LFQPvp;evE$s&;n5y`E-vJlY2P|5ssC%_BVli78+$Ea`xF!u7^!APMwT01>a-Cr
zki6UH+nF974#>%Qn&)WoG$CWm#3^
zC!qN)2c+M>PoE6j2q@nzT!`rtehNJqR+5|$?ta>j^AAGpVfNCq-S|wSM}d$zz!ad?
zOx4Gy`Flpj9&daA`r$Ux%EQAWT3rih6avKbj}`YlW?=qds~^whdH}h+&%_jcbG>2?
zYPkxCdL%sfhDylm=%d|KCG%!=B^9*MajFt0o?X*J&bbbCvBQ1Mrt9)5E44maSTKu<(%IYFn^Y|0&2{Ve?Qd>s9li1v
zeX{dAlxnKQiyyR8T_UOQ9kbdSKimd`S@7UKVSQuJ=GU6+H1Te#9x84*lv#Fd00CMm
z<$CVryqG8?jH94z{xiIbzJCaOKy!h))zxzc>*eL;XTD0~voSx2xVX8a3T-#Wir(Hu
zvWGs~xA&v-PCBlY{{kyjtU+LtW{n-bdjhhw?7I|;*%DwI@Ut+E4L59BQ
z4&{jk7W{%!^H`$g#l;x5#9EjCaMQ#-mqsa(h)6lj8~K$sMWLBaUd?a8t~=i7a1M
ztYX`kfSty|o-)2$U&0GR6_wEBh*(gu-MAn41(7+)=#O*$a?=(7Hzc&_2C3pcxQkXb
zcQS-Tw;YPPQ~9|}I~<~C&!_WIUUD@2gT|XFlWs>@xooSw7R?Hyy@8(`M7L7(Po`ar
z1_*YToLp`K%Eg>=Zs&~Hb>b$rN%Wh-*AW7X2MqjN)|#w+i@X7udY&cyetgIOdwhIg
zb+xgSeqV2|3^2dUQ=eGB$+LcsY`YDz2u@n2=lK1H4L5vjiD*jbL|159I`8$ww;p(gl`V$HxVrl-zQ-gOwCD+P*t))9x%ybf
z_7Ydjav<5^7yyRekJSow)+fx>^2MoV({9B3vqsi2nfQxp)2j>9*O>&1uhXitMrG40
zz6gt*pOVf?wS6$Bp2C5W`ippJOYh45akk
zy9rAyab7A7kByDZ*J+~~o^YGmv7DT6qt!Cl_Z~=nyeGh{0Oty^3zHmQmqq;+nN=@b
z@XfSw_3Fw`wdfD}>7Eko%5J=paz6cCzsfF!qW`;f-#KI(bzDQ5>D9pf$T|&yz%pHT
zzIJm@=_vA?(lUhO;{MUhZ@ifo^VlkwDI^C)gO=}0KgKaVV^2DN108CtGh4GMHE3*_
zwOa8mKH)OtvE$<#aRQhTc{Oiuc-Jy@#J6}I5S%V^PrslrmJp|$qTyqG=T!>E=3^Fk
zAam(hoBOo#P%T3AWWs_aaR*kvrfc8bNPM`+WQhYpvvn_(vm@?iaZ(k(VfrTo_mn*3
zI#G8+$=sb^lJ02uht2B;)u!Z<+l3LXx(_+H6K#Za@o4C@NG=Hz5S%TZA=^3
z9lIk>3Mvj7{R{wT>{LyM9NVqYnrEODHv8rRwU+vbU*EXK8W)fDviQ9lh67@3#K@)FxGuq9Z4c7wkbQNI#zK_w
zT_3OEMvOfy4Y19J@eJyfBfe)llbX2xei*bhyJqGC8l)CC=@Y(f$kA%`{AbMGRZCwd
z*@*?>;^^vw-F>aE0}^cKIJMS)f3p!@wte`9Rx31tXu2>xd5_5=EtER`6r6q#MAYhP
z$MJ7~{|`8!Tn7^63tLaI(y_~=Xd9b^1%`z|Gp(Vv^2Wvt+dFMlx+uHGd2}~5T_W#o
z@9*Eg9a7QO;}(Cx&+5{KXG-n6OP>{~x}VZUeivXq+wruX`5<*_c(Y+;j6A46!{9ch
zl--iPq0!V`#Y?AQUT`^PEB0>Pj7r|C>Z6{qLIwm}>E4tug+X$kb{k+@69Q`{BC>AUlMh%ylo_KWgwX-+$ya
zPjhsCI{?cvjqPNaxI6-By~6wCaQDm+r+6FZ0j^hk)A!lDilHw;4Z#&mZcJLxn;~E;
ze1W!8I;$xvDoQ(>6`u3g?qKqp%ZDE&3&@lBJM3I%;wt0
z`272U9-qbk{w4gFjIX_5Yu{I6Je%oa4{lpXUex#Z`bo5%{TUHJdMJ6cnl+`bu%v8|3&T}Cm&GPhq()OsAG-&JQQ(LUWfHoAfQSbPjSbX`X
zn;qg6r)TOLS;A0mO7EjJV00ewbY6drPY`j2<;3VLV-pG1ZBbF<3N!F8wXx5NxpF9N3&x7VcAoWo@QS4J0
z@I(qks%`cV;XPnuw1ZN?81!r%c^aZre+g%`;UZePFo*qQivuX!iM!g`E0@>-Q4w
zgbO@U{`VU(RU3=WzUSg{e_@L_*(3g2rw5YaWT1cTH1D;8g^}m9
zgOVaq;RTudx{MsdNtah$1QNW;a&{p&6%c2Fh0h&dYn?S0BWWCzFk#{#A73yiD|^?Y
z<#>zAmUju?8j!mwK+qO4_UB<^o~i86DiKUg*zi}0)iDmA)V82E;j3oGk7hq%4Nhc
z>sCYAR2TW$$LI=3x#3Ox@5j-X-iyQyICx`^q^-Z4FaFe*=sxn#`BB@(*T90y`R=fb
z;(cgmAx|@|^kY3=UcC1EiE$<^m)lzJz3Ppc5xZoi7iNXH=n(P9hO3^K42vhHIBpXG
zKAAR9=Aa>5pYcsyp*g(t@uWX#(ZhtZAHHNvFuwBU5DOwcG)%Yh3vv3;zFE|#o;3;_
znxD84CUK#U`!~XCwKqQRwfP{#?3pWjF|cA#RMzx(#OlwFAnEs3k2!|g{tSEGK(u&a
z#fR6n9)cn6WWjdQdBEO3U~B)T7wT^~Wqv0Qk>nw{NS~tzarDdoExe3H%HnE#^Askw
zSCPq`DxLDbO3j
zqObiY4Q;s&9@FofZ}K)-H^o_h&X~)F|2zi2N#u+1ao=jFfE`SH;&8EK
zJ&C(>L$o5@@1q(;9imOwUP$tpWCI`|(@Qi=Q^OiKCviI1i2H&k(Kek4S+E2yYcGzE
z`NkeO$$o>$w&E!C)f4f`jlNPxoe!s3XTY|rV_S{el%nz)>vkM(sLxx9y|Xs`c1X>J
zF%-I|`$Ja^pKW{Y2^RQ=iJe*jBO
zPnVnq%2-f;r(5{b9pwP>a2I^Vq7g1vQ!@Q((jJj&j5H8LD>p=Za2yd<;t?jbL>^-a
zFQWjs_(?o`J`i>S(>;|Qmjp2qSk75NU9TgqvX-116m_AVn2fIdsnUr^R{YbuQl)O$
zIfM2hU!Bq_0IIHKpyNHJA-$wY%2AQ>-~hBx;=}JRTCpN!8kW+!kH*H$^=x}M
z!kQ*iEv=CU4`V`2$hmJoUiXgB|*Ri@|l^*1gzpuiHrqxL{;b(+X5e&JCh&Q%8
zF_Dl`f}U}KjXN8T1QW)8{v9J5g1n0)M)gg`z{?SYw{{xp@%JlF$vk_@JFlq##6VlA
z$5Kro_iW}}RkNg}*tUYfUzc5`
z)eAXrEfno>P7I-d?}eG4bq4O2;$`GNcd|ZAZp^QH64KCnK+9XOk366bHbT0#xW;R6
zO89bKJS9A*_vn27Jp%^qe|6mkOniR*^;-^gr@yl`Y^7668Mc&N$7!v|!L_@G%fY?I
zf$=)bk(nvOM-6HZZ;tomc{w`gX+|B6+53Gbc^BJmit6WxdQquuMJ{F*?cqL^I|^xj
zS$icD?qb2Wgz~Wu5dAcnuXoqdz0uev2$QQTALYdpt6z2H%MiQK-606;yh#6Rx)do+
z!p-xIMiH03e_ELTZ8>E#37FZxb)AFql!c27R``wA;F!H?hETMO$?ma7vR1Qs46+w7
zkcen}S8l$>ORIvmoE_gGM}22;HV%?@z@7q@zLYY&D2TmxP}SPxdpkrgM*?S%DZPbLG}SE?G3W
zBE*YH3vkNMzO-hQG#vuGZm(yX$jsvCZnEEbY0NWoVop?Jmn-lk0AafuLO1B2r93t%
zpmw!i&MYpA@p}TL2kz!&9^1`bxYpGuO`mwnzgdfD+f(Au>;5z#h0o`SUeo)?oG}sY
z9>?Bs1*s(ZRZe~Qoc>BT`-HPJ
z-9Qw%{qn~sx+?1MnqNr#HC4T*tVMKM8;dsT8yKU-UoMdKA7BzY(uwXo6X{*jW|~eCyZ_Y^*dz$twuG^t
zsRNFXX%dl|AV@kI?AR|XspvC8!bpVfuzO9fU4uR^_>W2)rzWB~Ym5OKz+^mIUmaRj
z;6Nd9Y4!-mEkzo#v!$MzxB&-z58IjPiQHG}X|A9Y@J<;meQcEUh}4tTX4
zGI}yZ@|-#7BFn{WO#mjW2N9Mlap>0AA!t??M@D5hUvR)uzVi2X-z~2BG$QOE9H%r@
z@|h~WqB>zCWBORMETY32y5fOUbJC39CItox3K$)F=cbC^QlTx`#s<&Z
zXYb2ZA}6p>qMQU+`8Y%h(Oz#m`>k*g;jSo5Zn0@LpRhP*#Z&Q$8k1@4oa^~Ysw$rq
zCE#;uU53ow@Vz-*gHNwy{~G^q$tZ<1J~FZJ62JE5IpS3sNl!_6)he^QwFp-hsd)43
z|H%ay6ZW}i$<$hiVa>i>XG($CPuQotY$HB@A8}aYM=A$?60mJmM@{-{Mb119lD|Fd
z8jgae&jz;9fg=Uh(u%gQkS+z{V8RYLFs-JEu(1f
zbVlDbc@mAJHb4@;3Fro(1-7p&)*X=zr8gF}n>(nfA2&=Sz7&!GqnQ&zno3^D0vry^
zAV)M@F<*5c0_SQ5C)~exZ`Ar}H3>;xo6y^hS3DlKx&j34V6LL?$wbBPe}e=a=hPT!
zs3<49p2nm7%O$EA+<(^6M9i$9k(1=sls^~sl!i{}tkgatjpT5{6u^9e;IR*yb&K28
z+;n}bpg|P#eUMRs**>6aLEhjiTMz{?2lZ#+<9DUWW*-0>dXT>q0@FJQ4B+*M+F~4
z6e#=Pm+^%HAAm)q3bBEf)X9016;k{{aqJV-E>3NX_
zmz3p@AP1Pn=3SnuqRubDRE`n8EYIT~a2ucBq|AS(8-nEoOP`iBVaq1Sdi}Wz4YHaq
zX*GYU8))%PQN+~IzyZnt0y_H*=I!6LP=^3jJl{_?0z3VCsav@1oHO*ABpkK+ky2mu
zYX$TBEz~&9=PlxUqjfOSJIQo%B}9sy#pcqZugchGx3?N;chGvisIZSgeL;$~TUWLL
zDp9Y4t8CK~KcjA%bEA=4d@RE<%*tm~cD*L&SBt(zEUQWDXk3ds6$-
zOdI0IKIdHv_Spqo4~rZMF0=Q-c-F%kqTK_{_)V1^0sJ^sCjP;JT^DaL9YL55q
zb6R7wh}FQ9e~Yv$(dX?^Jx-dA7YtKIFCoZhke+{ixpWZA-v((~r4GYv$9mG^V;DU^dVL<2|DIKk
zb?Q1tM|}|=RU58P_*V+&9@WWa4!{Pzb>9~)d$V$Ec$9NL9QnvxHp$xku
zdeek2@hLTb%@L_NEuQTX*yrMD2wAp$;0tU}J{eXmYyW+#P-C0Rat=EXY3WCC&ny2u
zP|scL^d&32ysNQx_4&AA-LWtI75k#M`|N~FmwG$kB%PIwMa%m9gDC?O@qFxnu~D_2
zvd=)ak$_JPSboLdrZ>^%=hN}~?^{Xp-HvqFv(IE`5ubR!ERpT{vcSF-jqbak&W1IX
zvE#Oa$y}{L@WaU`1*a@3lSNQg#C=&paX79`qTZiJ!zj~$eHw8uCqpl)6Zc`R4%g%_
z@XzX3VVtR_(5?>!2&qSwV`G{|7P6}-)^Fb`CGP#r>#Fx!67?Lu;PQD2SC7@K@6TE&+`;L&RfA9aq|?5MyY
zWiL6JHtQaY;|W8t|#hr_46^#F@YXNmS;7Q|S{{pxyo%+9kJ5XHjDeH~lq
z_?|lSqCYH{vSGTZ`?wfyD24G{FC7MS{7yp5<2_Q+j5b>FTC7KejoGS+KDr)h5ZKiA!ir}f5JS)!Sz^>sMRiCf
z!jSdj`KuB>XTUoBQiGsQ)$ht?867tlQwvi*3cBFX_>6{a^FJykmxW9dK&drMK(~Il
zMvQo?7I7bj_Q;y#?=}-W`Z+>g$!qd)?PP%{(JvArLbIU^n3YaA0$lp4y89Rfd9PksT;g#{f0JW&Z=notnt~hBl
z&p1+ZGbYHpbc*ST82Si5KV%b`Iyyi97V~MM;rL3U$40TTTWOpez|VmSd5HNdOM$lm
z1GVQVx(e+XNFEwxmPJ}#;CgG&k?>*kW+>E+4BNZ_W?sb31ewD
z@JnPlIfq(UL0T`KY1o=kv@aAoj~+Qc5kGZ>R^KUF*|`>GWRV=^BLm$#$+`QGi%Dbq
zDy&Bh#a+Yc9>F6Sd-zIDRhD`2`Dcub!|t~-baso2v}RVw?DmyR-+{rQGyv|O1@swg
z6O3vj*f$%P3J;1N_I$N_6K4ztAm4dk`F6A>hM!~2g>xIF0+kFnIUPdjjNg@WfM97y
zclv*p4zwR+XoXTrY)m(p^8Y&ueIUsND>yyXq$E^C?Fv@v-QVT4mmn+Kym^6yU?;BC
z5d-k|lNTA8pOn5JoUgDado9?VVF+&W>9g!bVcczU2zyo-BwN;$ii9q&$$sJ8PhjX?
zkRcu59Q?5~mTLlb##S@rui*@DBP(7eVFiEqyR(hiA+9XnTYC?@yUhJ#jd7^L)2`Rs
zA(+YJ7@f~Ep0-C|$K%o5Jbcu)uxrt>gM62q^GnCGmnOPk>4>W2tw-t&534T38cy>6
zPU(*V0gZTcw}BmO%PYo>;Zb5#w@glW7TP~mP%!z_^U!no^hEZf2bF*cNcT)T>;V*G
zp7{eY5HZDTqi3V6P8Wz>&-Hc!QVO4(-6ukKt0m6|;tmYL9zvr7>0-&8Q6UgdFrN&*jNWkmO-t5!WVTWxsw;K(3FYatZdc8XzoKoAZlmNgjSK6}BS#QN4JksvcRr|8iVSo^X9;CeYsbc3cx+zHW**Mf
zsG>@TirTy*gYKV5itd{kL)L`KB$x(Ln|03uA_bt5mK8*GhMhlw6tvKXz^u?|Q59*?
zRqy^rQN5zADc~am)T>v@z(Tt8TUQwE>XXMSE-Sp&r{vkn!{_4#gP&g-79H3cS@yK~
zX_@`($<$R0K~L2C%YWgWNMnTIE02>q0|PvJ1M{aaW8K~GNB7|u*_UdE}g?U`;yXgDhr;wq)$)$S!|IF5$^Gv*r1>viO`YOyZ8FI{-MH%edD(~e
zHJ70mji|0b@HsDSr$JGZX9FhsMLBd+L}tcd9i6U{obcBITS`aK^QI;?p(X2M5))!-9LV@GPD~C(z8~KL$FRsO?jAFF}Xq3YzA72%3%d3L|c(~n8#XP
z&apJ_Vb-vc)a8@)p^M$umrfVgWyZpyLt;jg?~V+@l!t}oV24BLuL!1^9H_DoqKYP_
zYY307szEnQ=0bu1X_M8SF4|aszd14bStuR=$2Xb6&Gaz@K3JnXx`ElQQmLD#3gG9)
zA%ie+!ZY7D&RB&ney^Hh-LO=YFF%04E$lQf0j0EDt*b1M`NRe#iJAe+#@rp
z0xcK<|5theU2$bcn#2|zeReZMMHqR3Xl*{uImWkz1$`U$
z2`%7q+ofNwMU3*w|H8&knQxC3;o_vY#xu-URlKqzlN>cSr#JGYpA8xv%$Ek7Fu%~4vP9O
z40ZBU9Uf!wWAqyNoPz^R<6k3wGqjnG+Bp?B|8vL5SzCK}CMPGS4#d5mPD6#(qx_D8
zR33OJ3RMjK&`b5Za+T;Q3-9DanzW)>`77*n5q#7tVG>LJI`fGOI)W0k`>j)_`7Pu{
z3AUlCHBY^>zKmdn{XtZ}gzNQ>h=3GQWz~^o;vss1xtc1rw(B>|B#(
z9P669lT*W23IUMGovfJ}3zTi|aITg_sN)8DRArd!t
zdXx5>d*qtSu=dk4P&)K%+VPGwz%A7&(>w0#qp#ce8I9Bm1z_RST;A$~oE#k9q(Uju
z8J8!Up512Q*j93>kKSd6f?x{f^Zz)Cd$qc>6Ri37Lw`p1o`^%e;n^
zc>{j8vyn3SQsa(47aAo0<~^i>4wteT2c%@kk!5WoMDDfl0HJh3pZ)%bsK7QnP<}*K96)Zd)P@-Zbri&
z?gfUVGq(A7D%cu=^=(mOB4Z4rmF_#kfnUGUv1EERx|~OXwI(0)2n1Zgn$10Zl$78t
z+2!5AZ|PlJHG8b->>1P}Pl-~6o|GS%%Joo@7dBH6Gye`~A=Vo9rXOTX3K{X?<3$G$
zKMA5p-3|obImw9X*upR+3yp0==GQMhIkj&eq;*5igPdk^6vFiu+(y++b|f$-qkuRY
zikf#vaOP`dpw&0*UZ-|NqJi{2PPiZ1deeOKy5$HdjH-R##*Ytm^;`#THfi38tpyQa&qFf
zSs=&!5!btPj{=mnHA(_%@A%F$46J2T9dzZu_Pc9KYoGabT%8~76gzokZ_vK&f~6Sb
zd#Gxv6jIu{Q<#wpQe~h{@cv@5J0tlfgWqY!IN!$W*#Rm^>*vdhSNjL#3taZUUGKBgv
z4CQWL95Ff^P~Rv?h@^!U0BYi6I-_-1K?A!xd0g@@T1rWKw+|Pj7C9SzP`kdktocMI
zwbEcRiMIuY{rnd5^AYvpFDA^)HtnD{=5+GrF35JGRL09ol#Ee=5M#^1LqKA0v<4yycoxJ-;=S7~^&*b$g4?3kIv4N6E#Dj6a0SE*>jq5)L*GSKUI
zeQB!zjt^?Qsn|N^Y>w54*X_53#B{JbV4~mV>KVvm&$J_Hso&$#O
z7ho6XvG=&$(o74j!)QSA9bdf|%f94!G47>HiiT~kh24k_Z>rMA2xSfZD+n(>-#>J{kp!%04Ef+R5
ze9w7!lz>GCRbbla+o^TYipKGn216#$znQSaJD_fw2U$(|_#iFgw}FRu@0#?>F|&4l
zk4@%8cQqdzaFxFW`RfgTOgm&5JPKE;-(}?e0UIyJ)S<9@75UyS``{aQXDl6y5{%D7
z2dWn=agGRAOG{}%n&-kX;t~z_Kw^Ewp)#e
zD9q;;LX3nDsexfGFgX6kWVEBBj8bPWWZo-t4Y^qDxb@m`Y$BRrRCukuV>=jnm9{-3
z#t+-{ccY17l=|#sJggGIH8WG%&gH
zS)tq7>b*oYzS@@rU2Gl)e>e6qjE;PiHU^vAp9rc&6#cx8V^uO|Z6${VLRgFWW2#D-
zUhu|DtrcxRC{~E?y=q#cW+hAhR=;AT9ed)lJJm=fjB0uz(p?tsuoA_(e*hXrN
zp?U?=XmemYSz_;xCV4b63_IBzT^Y|@_~Ig=*Iy9K_?EY&o92l3w^l!Zmq1TN#3|+EQ_o9#jIzNLA)D&
zpQ+NT^`xYp;j1}SqCh8ZyDQJZbcVAbL0{kOzrELrB$y2!AF_2)6~(tD!8cc(OMPlf
zx5CnLypUa09u?d@mLMf~16={azFBb)EIQtkAD{F}LsizbM_oAL<68+J64gIUE^=?u
z_l_?WB~hH|06VBq01kR0|G2!x_vFw0&bTK?D?>wqILdLU@T&?(yS}2LY5kl28^%d6
zC6XN^aZ+-;F)_AZ93CBw+HiXb1V_Eu^&wtg^&k)w%dv{G&hfEDUbB9S@rV8r_5OGM=CIGZ>AHjZkl5_sDH7|d=p0QI14
z(T(K)NSa!eZ{s%$z|VdQ!m!^GV@3B})EgJr&TP@9k5N-G(<3gmzJ)rm0{NozybNB48&QsTQJs
z=Pm$vc8@M(%y0XW#%^@dwr{BT9P$#vZDVVz@ao1V*YCOW?_!}H)TJ1JKy8h(Y;$kcd$iJkbMYaf6C_MYt
z4^^6PXso6DEy#q)MDRQZfq0aNu}czHFh@fMDdHxey;k_zBvVN*}GiQr9-
zKYM;;1q*XOkA7PYm6_#CuE`=v+!^YWk|1l(#K8V_5b)ZJ75eW0Z?u)@ZxcKUQN<`v
z=-o23qq_rbh3Uzu-@YYAC~Cp*CY4YDYjbO>Knz4~+nPyDT2bJ=qT)Rzh)%<`dXp$g3YPtkHBD+l7HpMM^Qf=@5_
zJBZos-`GeeIi}#V16f#r>?_w&B?hb95VD45Oe+4fD
z9ed^eA5qo+H3ZE(Pa(o|=gysto*%a-1Kn8So?75IXp8po!VMVuFYD(L`SIg$<_SP)
zmza!DZf-Z`#^5(*PnM`AM@d)L*TwWMqpX|NhuVw`XK@x$^=Uv%2heXmzJIa64`KYz
z?*g1bYHRDot-hpBc!~upPr)chcPnNUpdnS9!9JEz_qN5TcD;x5D^x3b@J|N#hjzEv
za^9p-Q2NyF`O4Qmgmcb#NIms)+tt1HO9-Ce*{9@kjI3Mx#k7Og=vh3$D&_diZoKt@
zVtU}8?k>(c^35Q?>$e(q#-0a>4n%ue<*hcMvZM7W(4=n)edF
z6;TLg`16?5xf;I^OZx{+o`qg9DLZf@DTPsC=1VA&z@YN(8gF;Z5JT)U^!ZNUWCO!V
z<6ak4a2OT4(cymPwn@Q3xL0R&SL*-8+k3~u5q}M%gD440M3fLD5hQBV6>YVUrbQ<~
zh~6bSix5GA2%-}th~B$hiQaqfZS}g^F1vfj?|GklKkvWydGDRiXLo0IW@qP|@A;l{
zzNh->yxsbA(W>BsZa6{`_@KJz#Z
zwNT3fKi}B)fY)^&7_oMpo?CmcPZN#LJ0TjIUt+{|Z`H8~l;KH$pT{ik>hb@!=03!?
zoB03Ko@Z+QO~43)ztG3WKdFih95F^WTM2Eq-Fbd}ElGfcK~Oaw
zul2fYL8!lCr4UKDS(H@VZ1?IKvEK3S&n2x-g1FTvNbBzx9uLQ%U*2NO73&MLgvmg>
zqm2zewhY4*x7rlh3LolOn*ST=HY>vm)^k((Sz2aQ_RL|^T`k0~kym*bsaQ~f)=ZlT
zD?|Y|7oXvg&N>)A%E&4aAeEyIHAzU1Qh{M9XpZh@J{bLx8~)b@XS!^PE64ko<6eM6
z@98wky4$nnkN8>{6?OR1<4A_%h|)H9y-Y^Fw_4tR$HX7d_W$}Ke)r#0yUN43cnbkB
zl2%JGvs0dmw?qLt58z%h*>EXR2lBp%4XhJC3pIFkg#Y8n#BqoQ5AvYY-xTFWG7wGx
zoFACl-!Hqm;hP9Du(NcX{CyZ+msyG-hLP`jvQ=-{NVG~r)xS%o`H*@HwuOuzMJjDU
zDPjWnyT9hSjyERCPS&i8r^3MHo>@n~AwROHszFTGdSm(Srbp8_A+n-0ay{Me
zJ!#o1(TnB8+ODHxq1Ud>w%X9Ez6T@L(_M07{wn7Dvfg=2H~~qB7Q*fEb6H;&ZrB;w
zuv6MKK*)f=LU6s!O;fQjjZA#|0#|H+6+DuXxhhi3VrqBm`qo=cT7{?AD||hJF0rF5
z006#w_5LkJ{)C5s$FTiuw9IoS-$Nl0#MgjfEajd=Xf^MsY}mr#g=pzTX+~shAOb&~
z@4l3k6E1{9{dw9UV2bl#9(*w;lUaeEPnOb8xCLe?1n5)phF@3ss5BS6^)d;wU31V{
z2Qt?GXe^+{{r@7Z?|(Pcyo7UO^V&X=G?Ex=6|VhgX&S#
zDIj;gLE|`M(fyaP;749U%2?FR#;1c^EngBvNG%<&i1%F)chvTHIrW>4ulvr2^qnx3
zAAzY!l5CAz*IfRNxG+6(mWUkRZAE_RwilCE+md1pikYgO@rvKC+&+zx&6Ea}5FeJS
zG8os3Fx~tm3d8RBjcBw^>q-UuXH81evmHJEaku40l=!*R$LL>sV360AkI;KdJw6dA
zvB=$6rYwu=P0CJhxK-DMDeP1JB+unqA|sL}*2Nb@ppqtJ_bqEy`|4Xh6JFB*5-yo@
zB1nJ2hkn;Mt^pfA8M^+YrC|z^rm-E)AFUa$@>S&fSbp%2ZReN$Zd!}%xPd!A{<}3z
zjU6$Pew!=dQbxbG`=?5pE9cnntre?M_(?u8h)I_CX%F#KUSOlowwPQoo_eWb@gY;}
zY;aQEP2ckBPIufQN5k5r0U7w%8U4T^EY`Cm$9>h2h!ryzi(MgAk4|B
z$48bD+u@(P8T{0raSgpRG5ajL;BZAHMT{93fb#d+rS7CVmX7#tR`yFeeIIYofdY`xwlyDtlXC|5nj+{$`el
z*eF~8W0s21NW?Vcl`*
zlrYSipJ$fKZ9_2G>`B0?g{dxn0xgDx^tI~zvGClTK0Wnh|G1b6o&T45?oLE-qYD8Z
zTmgt~+AeF5FWd}}B9g|Uj7~N@%s%5=%CjkKBn7>2kgs#bO9tXE;Aa#AX;?xnUDAU{;rYd(>dCu>qe=C!R0EAHqS%Qz
za7@#WrvicuG@9y7?)~KAeOO*tHYvrBoObMIdc0bAhfWd%2MDmbQRd=<66(KTWF}k8
z;fV6dCe-)1U-htD(=-A!@79!eQYA#lEi&K;)b8_Bt7LA1RCSnF<;u9`
z8okurlXA&|2J*bLtU0=0^i7u`VBlUyg#dZWKZdl7B@T8;SR6
z?{##syT37x*?GCJNkp9(>qP_mJr}S$OTtv%^f;)lYw;t-*6i%mmcrmf#jYVf&dC+p
zEM*JEat13w?j93G+(%ypMAK(A4Y;CT%{>m9X;XIv?-Xe3Q_&4|OGNHSy#hqNQ28sP
z^YXDf?*8J`z)*a9P4uSOL_PU~_cX+<5!K!xHe|cqrA8RRAmgXngIV%VgC|tYeoWin
z5{}sISz+@r`(}xr-|%ZDbazC^5Ujdi7GG
zg~@s@-?@K9_WVj_cAii6dky!PLR8G<3CoEq>Q5=wd)J^o$uHOFz&p3Vz^L%xK+$w>
zy363+Zwsa|ckjNvbDl=*yDxdUQ2Ngb>;KC)+K&u<@h7m@2Z!*zJL4nc0_m`2RQKI~z`(~G(o#U!?D#*>
zTzND5!VeEt%`6sOdC&=!8V`ljD=-Cpxv~
zOJUq;*W0|R=i&7ZtF-@Xz0`iGkLdqNz24O|w7rqDx|XticY-kR_V=U&7{yXIX)gHj
zq*txKVwOvLw;tSk7u85{&W@Ecpc?YbPLCr4*uV*5)ZH!Q(!=y}`?ZIkS1nK=mO139
zc3T8Ag-`#XT=87`R@$krlPGT^o1AY*1auns4S4>%rHGKZu9YsMl`Ecs=&@3>R3d6-Ba
zw9qY0d<_?{3Frx~NXY;`cd4xdq
z#;rs>AM{K~<+1|q<9bYpEOcA(Wa7)W!GDC5b#3U
zE1v9!<^K7zagr}bFD52-&*w~O1y=@Hsv!Pth|NZ!Hg!eysx#p}B;oPCf9M4W(?sZ>&hLR%dYTnjGJ^Nf@t@AgOmZMfNM`Z*`i#+_yecgyg^R|!H^^?{Lb^$V;I^=?<5aP^N@tc2D6p;
zw9bq_Kt9bziuRAeY<6Xvtx<)=iPq2|_OaY6E;0!7yDzc;6|*P>Kd+#hoku1QC3ZRR
zpk^`r6=Xm4O$rEH;aQ?j@8WTj<5Qn07v>%7Eyqv;;V+07rji=XkN-E
zE>WYsHbu5i4!#RkuIVv^vq&Cq3pW7!a79JE$AZjvEMcQMc-_0I@uIH-rhQpun4{87
z(s$BaWUj}%Q2_hm0ndP{4@Kwf`w3Yk!mi$EjLVvIEpAIHCmBH;;10+c7)ZOi_PjLf
z7tWB6BMITn4HyPo=V2^cK%bUL-ceQg9r*eC0tN)wg-yV
zeDOan>%qD!>fBQD2D6w1Mao17?!PC_aP-eNO_*mcNeDd6F|`R>p?Uz^$F0RP&oDwE
z0b`FHDDR0;KJ5~{5wA$tZ}&feieJ2AwzFOGMB_9^vP!;ULM*C_p`UR4
zgHXqIJ-Tus0rMH%dzDAb?$ioH@qv8o^f=h>LBmR(zi4hS!eZ<$zwFkxY&W*k7@z@I
z_|k`r8jP!?VziN66*pNQAqtQNvP4{Ewooe{JX^hvtQ+EOwy)y5h@9g;v4S;)pctC1
zk*=U5SDIi^qoFGs$<5}e1QBr|o@&->L-x<;emPM`xd}*l8f!aB-F%1ku^O(|d+(bY
z>>Gb#A-*G;K`Z~|TzK9_mi2GeZ07EdEI+$^D*|yMU*pvw|9&2v9M=o>bRBGl^~76+
z2#f2_F~Q9_>9#dnMeeHUPrmj`uCNC6`N{y+G(eK5qKtf!dadeD-eK-&uA}uqPhh_V
zyOA@-@QLs9VAf(B=IfQd-3up>J(*3P>=>g&c)8oVgB_<4Z=zk_E!Yv>CC=133p*ll
z?iN^(b4l&KmY94o9NHxbmUXF*$Mke{9tdZY8WPH0!V^oCyl@0z^RW1A+R@`;Xu84U
z$HrWuw;kMUGUwD@WxrZx6yR;e-?)PpWvz71!i}T#Mx>gFN*E>-O`HhsQomeF?sM&a!$CGs_HDNlW#w(8@deg
zZ;fnR3!VDH;A(QC=%r~vF!h`X@E|L~u4}4usrBip-XBBu5W_xf8>}7^21>2|>#B43
z3L8Oq|Br_zSht(VbIvET*eSSG=93p!&`+Q3trXQyiIqpMut3`=
z8-qaV$YtXG*NG#1tevl3(l+UND+
z%1C!z$IPG9CTr^JhYk(B0vyXR%by7-3t5kysZZb+HyIcV`Dazx_jhUjq&t1a=W1pR
zKsj5>U-~Z-=8LCd*IBCl^8WlWqT<<-LlQ2*gP%>Z8l#4Hu}G>nxVtZCl+|!Zks~cm
zY@36W0pV=$3De0EIY>CKcfL_s-w87RLUcHKe=z9`^BZC*%h+|Ss5jE%4y&oFP
zJIgW9`!Y(0tHZwjlz7R$2BLo+c|}`0q21;a!o^3=c(QU7k)7
zPj)cnR5%)qgPxAk(0G@qc*!NAHJD@=M!@qPxINdmmkSGhaL@Ia!&uk6LqCPE!jO-#
zB6+T)L@TnH01a2a{N~GleWRolVs?4vzduE(m3JdiMSEw>m?&x%jm!J}54RYb!Po1T
zN>$+WZtYrHZV@jny0_@>_H_C-#&X>BWJmqv!t+mH=!59r%HDz8X`Tuf-M!GP{mE*-
z>8ZU2G9Z{%y-65Gp?KI^ByWlQFsXxZsCLAb-<>>&WmkID>%ZJ5cwVKNeD0xGw)_wl
zdR2x%9#u&RB)odXbck(!te%N#*UG+CYZ--{#2m!hC>KpG7xTb4zu!~#T53hk_`V;|
z3DjrioktIRd5$J(0za}NhicL{spZr1eu+zI$#Sp;F+2U*^zSx*+e5`XKPnn22?!(}Y>_O(##2KF0OQ
z82AVGR=KMmV)B*5Yd-ZO`1Sl$G{ndbWbu}3-Sm^~JPhIITXu0hNPB0Kx^14?O)28F
z`4r#Ud*>UdjU~`-swYe+`|B`+u>enf%oFO!EjaR_9V!;SEj=c%VgnX|E&Y0IV`s~J
z`~mY%WDH}rx=`wVSA=)Yv-#W0#&GDI9Ing)VW?dk?1IO+;JMo_R4Ry*DAKyNo_1_S
z2HRJ?qx&__nzsFl;C96I(70IYM%mOvMpOdj`8{F{%?foPiNjom0kGk){=uqqk-yT7cZ=0BLX!;XQPPnRdSs(ItjM~AARrLHr_(uG#
zr>nQW9xr7cwvq!yb&DaI#r_4u<~u2QJUe+Tjsx2ByQUSZ-Ie){HS(0l9}9TiOXox}
zuK6>q!48Lm!g7gNw>sT2kpP!epTFz!1$VKt$?LC<3LQ+~EXuaUa~Km9<`=UcDA3s_
z^T-H{hdLa3_7vMc4!ERbgA+P+=|J#kA^x$hLuu7T?>LdC-hyEiE4r|yb0@E}cGtPy
z&&0AH`I@w-@f^O2Ht{*d!4u6#8SI{j;IB2+6OVguCpdAcIqLDVu@hYBCG^gV4l(_s
zh^@;zio!?5#4_u$+rB}4S`;!zS@<~|tuiAm3brCoT|%o6CG)}B1_oiQQtoH)`RE)e
z&FaQig9l95i$oEtd)=1k)UjpP4CnQ=`V{xvsjD9G!@Kdf^qc1zeM-&SsX5JmB5~dG
zzO2Rkjem6QyzzzCHOI6Xk_PpD@4D-`EH(_ZE)AQ+`Zn$
zUrVwj){B>`*=!q^$}YZi^324XP+4-(6c2aDsfuR?@kRc$NqU-#|KaGxFS3_-ji}Ee
z2eswXh15@%NSeMerbnv=xJ=6V_7gzjP~4e4^@$p6*cRr*V88Oktikl4bSeHUlC6T#
z`FRfmJGf6O;kij76c`2ToIzRsK|mgM<|
zgUuNqVVGs#a#1i9LdQY}LV?iF{jMBx^ETsZ3>F*hnnF~BTJeg@e;y;y?Zk8UvuTXMU
zDd9r-!rA{Lo6MBO(!(lP#1q|-&r=9*J0%FQ!Jbs6;Pj%S)x5WS?E&roWE*^%G)a0L
zyhCe!>slHYakbw?R7}W;W}w)8SNP^x_gzq;CDkyb`y?ea-iI_6dLbMVpQr&jS2>d8
zCeKpgAXbjsK-T}7?+^pou{W8gKCz^-sHJr!_4GyM
zycBWmW%DmbFFzdad7bI7HU3qf)Tm^MsCoCZ#+wsyM$o7ey
zzmRR(j6gr5o%yV>2A%I2C-=WNNjplP~AM(`QeYv2#EYRHv5^YgBKa;aFQp*j>>jWXDYe^F=e7j^
z^VqR!s&4hu^Iwhs9SiW{1sW&7(o|5ur+7$oho2t;77HuU=Nk}(5DwT0M8H{}2O_KD
z>P!_JECFd1Dd@D?6$hSws;c^_eOZ(CDo}&9i)jrDn(avc9-#r58#PJh1H|f=EZ{y`
zAx_h!8E`#hFNG_kFS3z}J4*EP?I>r?*%*sVEcoPKGy4G;cN
z3YvC)=S-0D5OCj}3F9}aT9BH@P-C%J=Y=LB&UTJXwAL$Sw#RD+p0TKI=G)ZduU@?Z
z3-N}5rNJrgmVh-)U;7=8K6v<0UQsb<=)$1fa&e;6+;c6}qr|NBnspLc^>oDCoUx}g
zTSaAMtF%8jRl)|7)HgCYN$=%9ct4|RaAz_ga%>{xeVYD==J%a9VGd4Rp`AM`l=QT;
zgAd-3Pyn}X-CEz{1zPzRuaA}X%1Fm{kP-JAtIvnjKsF3Xh-P|i+$%evI>y3
z0&{PCmmwmrGRIieZ}?HsHNx+OvtzkRs;e3O{QOD`3p;v_5D)V0@x*ANGcknn%70K%
zS6BBfIr$4XmimRdm!z7NMZ(X||D0uEX~}G2$6cR~;pq4{BPWL(3@Pg9?9?3c{cdQE
zpoD`$Q+Xsq>E5{PkIf|JyDWSs8ggQrcoICiag?%U4ZL^2e3%1Jpd0AS!!Ku^!h
zm9;hS!RcI+H&H6-G-t)$%+Z2&)^>J^YHHMFWo4$N`i~?eLh*R`(aA}qAL;VQ^z;|-
z2z)4Pq@M*kvF1$v=&J4iEv(;_G-Y>%j?OCCFJaE^(DyjHf|KzOjgJ2DBP1=2t!CEI
zM5~|-LCVWEaLI>2Kp(knYJ-99cR(WF*w_eZBuRe>M*VUGU%y(ObSF4rKcC$!baOf}
z*F4esbkezV+M?xRt6bY6*KA}tC^R%vq=+Vy8x7`U6V1i3Av(CC-sk0sUVUVVx6r-!
ztR*Qd^!rtofh%oXqO~q~aJ{2hN~G%idgGa6ia)ppQnHt`(N4;?39I_23;rhq|LYFa
z*U-=hYL{1qjWE61{*yugZ&*=SS^0DXde@<_aMh~m25sv@P_(@)IwHC#IezzU<$`;N
zT{29YmzFl-uBL1xr{?BYQVu7(Oy6IzJz@dw~&ZCEe@&{%UO#@nPc^
z&Rb!>5c;D+hLF;RUT_KM4Ys4W4$g)py1Po|=2>9pj-ZTU=;fDY4~!_@dLrgFNAsV6
zXPl(9*E)rq?Co#n>lL$k7~B40tg(I;nBZMR8nkOOaeBZ8G;LT(e4D0zDO1hPm?76<
z#(6X;kTDy!sH`k55x|wUb7M*!9io07JzRgyLzQblm_qyX+(exZ-OZPD7XAJmUL7r3
z`iR3Fvp9x!7u2vMicATA^4!z*v!jU{vYJe%+DkOu9=5>p1&vY{^KBj7_O%(8&6%jo
zXX}nPHnoNnH)1j*&bP0n$Z+%zyiQ&o`ljw(RMp#MCnV)x!A#YqUiw&oRaA(5PsX0k
zh>ZpB*NJP=^WPTUhM&zfiy!pr6(8Xci)|i|{`BfcEP(T92-pZg4{=N(x1vo=P(}{tRQFj($G7uFE(0N}GYGO|;rdR*{`R|(AhTA@;yY%20@%!vRQc{wJ
zv2kQ}HrKp6$6?SzK|ylhVja`lRh|Zii@?Dj2-PD($+kg8XV!M~66uh0?Yz|L%k*?`
zc1?+szf+G#D@ikNz$k7mWb1R?c%w=xac|IEc0rwqD#?9xR0?qtd0-`JGi`n(WvoHK
zvp<`M$MB?_tGJ!GO6kp;XVF@IRkzP|+DVVzXG*f{i^DIoFea_^&Z>5%bfUoeuS`P}
zNvXx$$^GCy0Dwswxec^_JH0fYWcxd~Mo=}{E31=ltEXKI4SzVDKl7lGl$2cf07klh
z?CBdH*D%&c#Y37xFK&X!{@Wle1)N1FYWbAktu_%ism9^fYH-NCW;EgGeZ$%6Ih9?&
zQEz(MASUwGCxpW|ZX5>$OcTy!UmtrV4>99?vlXQY>M#&J8zv!yYu3}_j@ES8Wp)A+
zInhg^{rzT|<_?t8@#g5#K!&0x7(02;!4YM8xY8MdA|E>}bn>HIU0s!+FwM(;Shx)4
zdR}XQoOKH#rFW-U2d}NqSKS^j3m3-Wu>$gBmV!hl_BJHIJN>MweD)t^-Oj_mxsyxH
zzLZ(V8Z?ZX%JE_eHIEvJg))<=srEw$qbw-+6y6D`{XX>m2BjBbQXR
zSFffgLk?W&icgwKCh|<~Bhr%!e{RL}1LEmaJZumenPE9X@xxTS$xCLB7z))xJ5NzNu*lp%y0LeBwDmiavc
zr*`o2Up(%?C>%(fW9lWC(*XN6r}Ojv!3LxOh6!i_CwC=ig9{^P_q|>%b4W2(Y~o~%
zuJ%5*bpTQQZyTkhN2yz&f0xa7Uw+jqEjv3Q5>r#WvRSOk@M#sd?$E2~R7@#TXsat1
zxVQ|lI}dbP12`EV?PR3*^6qJ%aW>!mSQD8{Fq&)@67-oRZ_%$Un
zO0Wea#cBAVZ%LrW-w~sS8`sYJ1uA(nGLodTl3?X%iy!vE?_IY;_Q>KvEQS{qQFj=A
zt-+}irtiCKSj>^jZ^YvRveMxYpu|gy5x=v+K?i5_HN~4l{it!CDWKQM2EuLRaSfL+
zPv}a7=j1a7WtJB)#_%#^phnq48t{26?DU^Es}-Jr)2TZ<{*$yi8gI!ICzve9;ejJZ
zUowU!D;mt`Z(AzsrLfM_|A5Y^=)(!>l6x16-@d
zrGe^KC&w=xivI*r@tlv@c$cAOMttUGo~?p^Qcl>jKXcnU?Vt9}UNrf?)D{iIqVyu6
zz8dB|bi{kPDq{
zqJsUAS&(AhTVI9@pcFa7^@ma;)@0MOtD4a`@Y!kA%ISA8nVs?Vh<>j#lMCiSkP>q7
z2mTLdA^a>FiCQiMQkUTs`c${ZT>ovwd9V=uZ|5f$T)#9T-F%Rz6(?<*JVDngli#fF
zdf340UR&Ih5MO^2`fdINA2TY4vY~Jv1*P%UlQh|7Grl6UZd>KP
zlczU!rOVPzR9XD3aCb*G^xG{kzMsn7Y5eu9GFKa{_Hf-+E1vdOsm_pnn-p%>Bg?+#
z;7yOw+1&sIkiWL;1dU@S*(>V|lWRUG-^E|_=7c0Um*;0HU59!sId?#bJ5g5fI*(CW
zCOCH$ZT&)ViOt0N4TLYIp7t{kYY^g5P0sfDG3?EbfOG9NW(kxXWeCkDYc|on_j0Q&
z@3h5#DkG<*=lHNu|2BSH9COyqrA^e34M4QR*L$n>l^R)ir?4c9M1K)Q4&2~kxN#|}MBo`gL))G$9
z*oFEA(Y3zKBK+}GRbZUlFXqLd!8j$R?S34_Vz|4Z7d0Q0UNn?}Ed&}=ts{nhb!;T7
zXF79^P^v5>f4iSG7kq^ZNy)lj1aytIPr=P)L!OQSo_Z`K?aiU|8i^e3uMz0^+-Y^C
z&L{pA>BVJZygQC9=pnjz%2{s!dQWW6X>13s`<^P-1A4Kq@(6^V9Jpzc
zf07liVB^(&7dRW$(wmNOLU?oP$vxz|T29R4f$R=Z*(Liix66tZlvZTdF3yW=qREJ7
z2b|uaIboju6$ctm(mC2^Li=SoGgox=rXeHlG=4`>-PL|`|LpDYeld5&zPevnP0PB~
zvN-zc#VJB-lsq!3bCEnu?~JiGfRoQH^V)I+Oay
z_GRkuhvLZSA?wGRX~8yfjjEA^&1|@sz{Cb!Dqeg(ks}JC^TP7}vL~IUEA!NEKHvHU
zl1L&Q94eVy)`vn2#y0tStO2VCspA@XkTFN0- WsB#&vI){0!=W8JV#&co8VL)vUk#AOuEey
zCkD)wve~7y=fz#>j2RUTt4xCc>2!9N56yHig7ybw65NSJMY-XWBjhC>=e2*lyl$g|
zOB>#JTB4dVabfgZHC_|q&UgP+;ibdi|J){e*T#}jPD$xNWm`GUoy?ZFnn?e~_JtVq
z3-|F_(Ny6q#Pr32o05L>8!@X;ZcS2cT$_(yAZF^8C(jHvs~{r}Wm!rOXpsEus`txf
zd$_)H+X-UcE5DFHA~)*jKnt`iRnd_qNqH0j0Y*-Z|1mJn+}06HWOkqhmumlPD{T*b
zD#l}SF=b@H(~yfKD@Vq|wSs~I+MLs)qceCBb`C96%sq!b7R&7zAAh8a2xngMyXXbA
zo=1Tw|F8)eSEF<~buz~pw;Z{GWObO>oMrwdbZRybqbTM$=)}@>JPMnW%!4mGY})o+
zH_{|Y!G)3ev5ra4uuAA+neX*7*1L=kxJiqRIB)WAykF|PWA3QG{P?%ory4)Z9$3QH
zr2Q}UI0T7LOhlr%YwtNvlhC+vDMAoEUBocF@1Nco{mmWl{GsL8`1vo;lq6gSwM7?8Hfu%
z6b^EPno%vefzXk2^<8w+SIKgxRiGAkP1j1tNRN~h`TI4NuTqHx4;BHNNk#lR^_BH@
zefvd6$Bz$w3D$QdPeY4Q&!)Ww-VKX?@bbeMDPK`C{tR`kt|p?^Rb0^DunVoYI@;Hy
zRiu9B;{{Pb6RO;H>)ugnULZK`EsolxW4F6Qw8i0q2!mh@`qj4+OWLuE`+7{H6m5$5
zFHQ`9e~3VmvNNjR69!In-)eL4*>&`!QUli&nnp)+>&S#Wc3%T?D6L`8(%?G}X6_G6
zO@)t*=>}3H4TQ1`Y;M|WYHBW47a|aIC0sq*AX<)(kH5`F^z3bI(P6hiEGi~x)XzqC
zlK#~*DH9$7QBt=D{^8=-oQzfDAGTC5Ru|_M)u|`QPvbE8sBtud=o{J>)#8vDsWoxT5=#t_%eGJ!!UUk>j3$Nnl
zwD|Dq{G6m8=?Hy%v}6jJ?pqqk8+h#5iCUEjFxbQHQ=Uw%5Vj
zc`&D5!Oo61JUm=k20egj88{W%qR1z5aB^Y<1|}vzeIaaj*AZy?NJ_cC_?g}8??=-0
z-Cbojx5@-@2WH@BNy#J2AX9gEE_1eOGRi1iT-am|57OVuWO2wW*jQ6C^*Oq{tW2Tk
z;wffwL&A;ch*A_yS4~##9SCp>aI@G~mQJFdFirE{*?Q_zPQm$m_yFy**X}>}
zC^Q}E4%o5>_r&d7lxnz%&w@OQ;K=4NK@LE
zk;)cD@IPH_D&HJWrc(u#yx7B0wzz40pDUq+cabTlTf5GnTR#Z{MHTe16&5S>YUGJJ(PwODz3tWcaR
z%SS}RbonYUCe0UKwfMchEHHpfI-L1K^+RT(i#C7jucg$v*wuSi>c{RZv&WdbtacgM
zgjHKOAKRUsZ2e(60{Ugo0AOLgRI5vuC}@?E$T}&+q*zE6HZW-3G$KX1uTc<#Q*9is
z|9p-NaYT1Wn#qz)4LG_r91XpIb5ktJT-yh^7AdejQA$GnnFMTy)!LUT)!aqn!`PtN
z&eUcHmmV>7M`-KnG8|bwrv_bZKb;ha&UB$ctc=Vxhc>;<_w45OkCmcvHv@87c9ZHa
zbQRZ##_|Fbfras-)?bT<^*bgbP3z1n7D17Ou4stMe2!RCPBYR7?OZL^@3U>k=Z=IC
zrp8_NGfJZbQ(l!SZuUi&F)GNsqp7CXMA5wZI9J==aG_x&;R
zJ08Ec^u)v*-rWLQ6Mj9b%YrjXa|+_Rj7oHB-kG;_#ivc0_hC-0jxJadb6{-ROz%m>}tI&ObG)fnuc%n+Y9VsgWkdUZ(3OKKpWwlk}fHLmqr8
z%$YCrg<9QPJ3XrB{s0j^Po>#(K5j+(PLufSr8@o4z#N{iJSJqcy?z40j!NM6yaV^f
zB1f&9sSm^&upxZ=(mb;82m4ho?#i;>$%Z)RGAnmeH@xKQ7)5%;t1`MJBk0OXlRYLW
z%|_MDkk=lf%hB12o)>zs-$iV4FNo?=ZFS{wdUB`jM|I{IIqzYPHE1co3`v}KgGJ-o
zbl7g7CQE=~`zV|$ViMD-7D*Uo>~DTw3_;G#md>18F1|}8G#zNH&JzBhaeVDFPqW0t
z@??Epjr;0sAkLX(YTq1NnQRuDm?-9=a|`b3lN1S`pR6L=KYn`H(OtO^8Ox}&W1=jc
zK`H1jFMYZ|<9xVc+M~BXJytw^DM31z3vO}vEFj=SR%>^vM!jQw*|OoJHvvbl1=7;x
z;*4Y$4juR^>7xH_K0UC|KWMNFoONvP!}TVJcM<{CZYNmTn3991EZgq&^Pk_USNN`2
zU{|4RHt2H$3q--9lI>>bOjEkf$aM+)e4S&d(}fRq_8E-uf}!^|o+`tXl@`dvNA
zh$R2=PqrmJXHGCn!sokLXm-zBtz?k=ei?lE7SEo^1wiK;Z|ov;In&$!6w4C?J~R==%7Z{i-2>8H`bhrej#fXU=T$Nu^y=t5EP_iK!Gw0^14Ec;IG7%zF7?c3U|CMr);5nr
zr4mAzT3Ar325=_4MZAWfa8=FJ7S~~s|Swf$K>a+
zqnY;vhbX~#7SP`UG%Y&+EGz^K93aQEE*3E>I{9^`eFhC2wMtS{Vbb7j=y*LZ}w0?fEZmWpWI}L{0P_Nmo+lm!cz_#&fb4-EVQ=ig_
z>v9y8U4?Q$6RdU{2lTp6@i>1f|2ZL%`R!>(U4A5K%M&2!!}LnOvbcQN0T1~dmVt&0
z!>@UYk)*(d!+L%6B=EBz>Uv?pAyM8DQqUv1Vo9trJ^MiLMKfwA^?B03C2#_%>0h!f
zq0cFY2V7@JqL^CdbQuHISq7g9+<&+HkOlemD;4OMA=wvyd&v853u0utY@neL@cTvl
z(oXffGMJgYxwS=<>m&yPzThn3+$%P|0M-I(IaqEdVww)^G6dYJp_+%ixqmx+Cw-s)
zO&Yj_^{fqwAiC_aEaVXKQOr0{HTS~&<*UiB8(WyEaYP8%i}r)NI~GB5>4P&%Lb|R#
zCo)wUW5@54&wG8fl}oQZRSf!-@J0QBzM1D#ysuiry1brG=6
zP$t;7&W6PB_3N*ouXVbBJb$x9yb6&lon^>;>I6dQAE@}Gn
z@H=O>fhJYx?8^AJwz>nzQBNad`1d8gcUD%*?|gU&iYq3`feZ=~M=vtq
zn|swFrh5?lh#Y$MRJ~vB%^Q+{320{7K?>A~fs710=zbI`Sa0w8*nMPAq18I@FI#gV)xcJY8}DYgW7`U%7u1~WM^`2p+zz2pNCatgM9
zSk!KSt&d}d7q^+44q^mWRv9z%%NfT;Zf@J4i$bYuWWF6ojRj|iXa(3`>>>&9k&%%F
zu;C&+#|rdgmzCWB+npnnHN@YR-m|MY9y2;XB|BlOJlxzCL7WAS+8(E>{00XF^bO8a
znt;lWw~vosWh1CGAuQjJ-VL_4wQs4|81{>qs_{pHc^@3iC7vDeFlc?5rmO=qS>z~3
z<1b?6k)KYo!!LLSMkYdqjjH!Vbua?)r-A&*cl?_Fm|#-Y@%x`)cS>lfUif)aejK1jb84DRCU*!DG0d^_hH
zd>+dJ#EPdMN?y(lO}+5|FSI4bf@Cgk0OTDS8#^##lPIt^_xv6}yT{jx!
zsPx!n85NHHYH&9}_ByeiyrKn?fIok(Cns3D@?EoCes$BT1f^~}gEWa%PtN{8Kd|i!
ztWO?uM|+LE@;zJpT(j_z5}+#fgYer>k(A`t$cVJ)2hg_rX6hW-^OvEya*jsV=o5RZ$w}1eSiP^r|>~X`+*4&|L1BVRy*mh
zpihPUOopbVENvPg`2uLdSY`hmwNo_20%{Us^E_E|OOrMd?yrNUcmCSA2PWZmUG}~s
zck;`XTHjG(&xZ!5_mtJdAFZn?!qWnL?yy$9WWP~1E18s`3fbU@^H^Kpo0!Vw<{2a=9&HsfAwefrA_x>KNSh)suro^P#?0
z4ov-Rwnw|W&)y%Goybc7TY572Bo4I>4tA;MPs+Jhf6nj7tGSc8+LJiDLrmNM5`iYq
zWR@`jPhq`Z5pN1u2mvoh*H@K9)YEJ-+9DvZ+Dxw
z_qd;|!O><~Asxrw8T*v?XWrJ!*wQX+KrP4mmxvHxGT4l2VMtA^F3TT4TjT5DVP
ztcphv{&t!DQ2A{KHzELz`->qg?JH4ssgRQ~-I~_|
z6ZYaa8R#<#eqHG=FoG_ko%HLp0Xd%+lt9zy_~$A*Zs)!RFVCHwYDg^&9}>l^`9_ai
z1uko^yXW__q=pID$0j@R-8<6YI%+^2D-*@jtM9@1pupyVFdXvfi5Z
z!x6wotn)MWUte~(LQu;){B3{#QK}$!A<5p}I<(-x-pT1yRr&4Pj71MQRC2O<
z=UU|NFHcHmLr{Nj^rVQ8+x+?CoG$sP(Zn}UxLc^=L(Tq7GCOa*;9Tj4($m)YNeDk@
z>t3f6Z2bInt}xi66YkJw{BCN92xu%K0s<@r+nosKNQl>MJQ{|Jxz4HzEa-ja5Y)1v
z^F9x!zYL5~p=NI*lzR$=U!xqHnu{c$584wxU^hypcRax;qE$?hWqBFwDgw
zhU;NJ^6kc}!MPz~J6(pu!^43ZC-$MCp#|64{azR!;BS18@5H@nawWjEMo{l$FU04GpOr6n5O}
z9|#DX
??pwS`Xi=ZB
zzLr)=PH+7^$%T`Jf+0R%_X_UK?EN2KtSG!#h5f6VLl9bQD=U`&yfRryb0)vV$3!-M
zZcq>IO(jA2()WT$^}sx0pC_kOgulT?FvKYDP5noTM&->HVaaA(K!=ub}U91Yxa{7q(V$@RSk{Eh6`
zmF7&Frgc3Y5>)5pND|lFxlL1bPgtY1L{+*pVh+YVNqfW51t}RJ-Imi_bH+hpb3tlf
zLs~*FoGSsXMydRJprZt250XWY5WvkUy2b=}ud@qh)iUcv&R(o@kb;s2`U6J+MrR
zt+gzfV9hYw+9V?H@w8?^o)h!L$jn&ik@XnJGZlJu_F#$d)f5h>KVMPOQW;ihH`V?^
zYfRNxQJK_A97h6`zD_5YTSCy6k`SR9#P~z!qtPg@!i&D1KVKQ84@2A3GxRY_jupq*
zvR5f^pn=xd$N2SyR+He({oOCcP4s}n#2*C%a))Vp2$X1R*ZXzfd3yFHxy(`gAIKu$
zSoO3m{^Q%;G}p4yMP!JYabCU!GTKhwScZuCy>`z)tE-QSi@-52ucyYQOn~x>34n1&
zoR_~KM}Pz&6TbJUsdMV
z%hTre4@XhpgnQpP0E9X+Hbz;TRDN^<$Q}~7qm@;FyA6mAIYBJw`+1g?8Ns#X(s0t4opRF%vXQ9ca0HGo_bkn+t-c>PygrJc%RJ#{_)E7G%_l(!P_W
z^4-@jRd8*%h;e>N>NDHuo6jN6LTvx+Bd9Cy#cY)&)TyZjoswq^&k$=}x0HMT7=R#$
zb}qGNi1~bp&>y|